@charset "UTF-8";

/* 全体の基本スタイル */
body {
    margin: 0;
    padding: 0;
    font-family: "游明朝", "Yu Mincho", "Shippori Mincho", serif;
    color: #4a4a4a;
    background-color: #fdfaf6;
}

/* ヘッダー全体 */
.site-header {
    background-color: #fffaf0;
    padding: 30px 20px;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

/* タイトル構成 */
.site-title {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 30px;
}

.title-left,
.title-center,
.title-right {
    color: #7a6c5d;
    letter-spacing: 1px;
}

.title-left {
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.title-center {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #ccc;
    margin-top: 0;
}

.title-right {
    font-size: 16px;
    font-style: italic;
    font-weight: 500px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ナビゲーションメニュー */
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin-top: 50px;
}

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #a67c52;
}

/* プロフィール欄 */
.profile-section {
    max-width: 800px;
    margin: 40px auto; /* ページ全体を中央寄せに */
    padding: 60px 20px;
    text-align: center;
    background-color: #fcfbf9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(200, 180, 160, 0.2);
}

/* ロゴのコンテナ */
.profile-logo {
    display: block;
    width: 200px; /* ★ ロゴのサイズを固定 */
    height: 200px;
    margin: 0 auto 40px; /* 中央寄せと下部の余白 */
}

/* ロゴ画像そのもの */
.profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縦横比を維持して表示 */
    display: block;
}

.profile-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    line-height: 1.8;
}

.bio {
    font-size: 16px;
    line-height: 1.8;
}

/* フッター */
.site-footer {
    background-color: #faf3ea;
    color: #7a6c5d;
    text-align: center;
    padding: 30px 20px;
    font-family: "Shippori Mincho", serif;
    font-size: 0.9em;
    border-top: 1px solid #d8cfc0;
    margin-top: 60px;
    position: relative;
}

.footer-text {
    margin: 0;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.footer-subtext {
    margin-top: 8px;
    font-style: italic;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    body {
        font-size: 0.95em;
        padding: 0 1em;
    }

    .site-header {
        padding: 20px 10px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1em;
        padding: 1em 0;
    }

    .profile-section {
        padding: 30px 15px;
    }

    footer {
        font-size: 0.85em;
        padding: 1.5em 1em;
    }
}
