/* ========================================
   profile.html 専用CSS
======================================== */

/* ページタイトル */
.page-hero {
    padding: 90px 24px;
    background: #f8f5ef;
}

/* タイトル */
.page-hero h1 {
    margin: 0;
    color: #1f3b57;
    font-size: 42px;
}

/* 説明文 */
.page-description {
    margin-top: 16px;
}

/* レイアウト */
.profile-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: center;
}

/* 写真エリア */
.profile-image-area {
    width: 100%;
}

/* 仮画像 */
.profile-image-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #f3f3f3;
    border-radius: 24px;
    font-size: 22px;
    letter-spacing: 0.08em;
}

/* 肩書 */
.profile-position {
    margin-bottom: 12px;
    color: #b08a4a;
    font-weight: bold;
    letter-spacing: 0.08em;
}

/* 名前 */
.profile-content h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #1f3b57;
    font-size: 40px;
}

/* メッセージセクション */
.profile-message-section {
    background: #f8f5ef;
}

/* メッセージボックス */
.message-box {
    max-width: 920px;
}

/* メッセージタイトル */
.message-box h2 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #1f3b57;
    font-size: 34px;
    line-height: 1.6;
}

/* スマホ */
@media (max-width: 768px) {
    .page-hero {
        padding: 64px 18px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .profile-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .profile-content h2 {
        font-size: 32px;
    }

    .message-box h2 {
        font-size: 28px;
    }
}