body {
    font-family: -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", sans-serif;
    /* line-height: 1.6; */
    color: #333;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #fff;
}

h1 {
    color: #1a73e8;
    font-size: 2.2em;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    display: flex;
    /* アイコンと文字を並べるため */
    justify-content: center;
    /* 中央寄せ */
    align-items: center;
    /* 垂直方向を中央に */
    gap: 10px;
}


p {
    margin-top: 5px;
    margin-bottom: 5px;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.title-icon {
    width: 40px;
    height: auto;
}

/* --- スマホ向けのレスポンシブ微調整 --- */
@media (max-width: 600px) {
    body {
        padding: 10px 15px;
        /* 左右の余白を狭くする */
    }

    /*     main {
        padding: 20px 10px
    }
 */

    h1 {
        font-size: 1.8em;
    }

    .title-icon {
        width: 32px;
    }

}