body {
    font-family: "Segoe UI", "Rounded Mplus 1c", sans-serif;
    background-color: #fff8f0;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ヘッダー全体 */
.site-header {
    background: #fff0f5;
    padding: 1.5em 1em;
    text-align: center;
    border-bottom: 2px solid #ffd6e0;
}

/* ロゴ部分 */
.site-header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 1.6em;
    font-weight: bold;
    color: #d25a7c;
    margin-bottom: 1em;
}

.site-header .logo svg {
    width: 36px;
    height: 36px;
    fill: #d25a7c;
}

/* メニューバー */
.menu-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2em;
}

/* メニュー項目 */
.menu-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-size: 0.85em;
    width: 70px;
    transition: all 0.3s ease;
}

/* SVGアイコン */
.menu-bar a svg {
    width: 30px;
    height: 30px;
    fill: #d25a7c;
    margin-bottom: 0.3em;
    transition: fill 0.3s;
}

/* ホバー効果 */
.menu-bar a:hover svg {
    fill: #ff8fab;
}

.menu-bar a:hover span {
    color: #d25a7c;
}

/* メイン */
main {
    padding: 2em 1em;
    max-width: 900px;
    margin: auto;
}

/* フッター */
.site-footer {
    background-color: #fff0f5;
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
    color: #777;
    border-top: 2px solid #ffd6e0;
}
