/* =========================================
   物語ページ（story / soul-memory）固有設定
   ========================================= */

/* メインビジュアル (story固有) */
.story-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.kooga-portrait {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--star-gold);
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.kooga-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    letter-spacing: 0.15em;
    color: var(--star-white);
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--star-gold);
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
    margin: 0 auto 1.5rem;
    display: block;
}

/* コンテンツレイアウト */
section.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
    position: relative;
    z-index: 1;
}

.speech-bubble {
    background: linear-gradient(145deg, rgba(30, 30, 74, 0.6), rgba(18, 18, 46, 0.8));
    border: 1px solid rgba(107, 91, 154, 0.3);
    border-radius: 25px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.speech-bubble::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--soft-purple);
    opacity: 0.3;
    font-family: serif;
}

h2.sub-section-title {
    font-size: 1.5rem;
    color: var(--star-gold);
    margin-bottom: 2rem;
    border-left: 3px solid var(--star-gold);
    padding-left: 1.5rem;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: var(--light-silver);
    text-align: justify;
}

.text-highlight {
    color: var(--star-gold);
    font-weight: 500;
    background: linear-gradient(transparent 70%, rgba(212, 175, 55, 0.15) 70%);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--soft-purple), transparent);
    margin: 4rem 0;
}

/* 物語用リスト (✦付き) */
.story-list {
    list-style: none;
    margin: 2.5rem 0;
}

.story-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-silver);
    font-size: 1.05rem;
}

.story-list li::before {
    content: '✦';
    position: absolute;
    left: 0.5rem;
    color: var(--star-gold);
}

/* 引用・エピソード枠 (点線) */
.emphasis-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--star-gold);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3.5rem 0;
}

/* CTAエリアの調整 */
.cta-container {
    text-align: center;
    margin-top: 5rem;
}

/* 物語ページ用メディアクエリ (固有パーツ用) */
@media (max-width: 768px) {
    .speech-bubble {
        padding: 2.5rem 1.5rem;
    }
    .story-hero {
        padding-top: 10rem;
    }
    .hero-title {
        font-size: 1.4rem;
    }
}