/* =========================================
   案内メッセージページ固有設定 (message-style.css)
   ========================================= */

/* メインコンテナの余白調整 */
main {
    position: relative;
    z-index: 1;
    padding-top: 120px; /* ヘッダーの高さを考慮 */
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

/* ヒーローセクション */
.message-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.kooga-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kooga-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--star-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--star-white);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--star-gold);
    letter-spacing: 0.1em;
}

/* 記事全体のカード状装飾 */
.content-section {
    background: rgba(30, 30, 74, 0.3);
    border: 1px solid rgba(107, 91, 154, 0.2);
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

/* 案内役の小見出し */
.kooga-voice {
    color: var(--star-gold);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 600;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .content-section {
        padding: 2.5rem 1.5rem;
    }
}