/* =========================================
   Learning Architect Lab - Architectural Play Design System
   『知的な建築遊び』をテーマにした診断アプリ
   ========================================= */

/* -----------------------------------------
   CSS Variables (カラーパレット)
   建築ブロックカラー: テラコッタ、スレートブルー、マスタード、セージグリーン
   ----------------------------------------- */
:root {
    /* Base Colors - オフホワイト系 */
    --color-base: #FAFAF8;
    --color-base-warm: #F7F6F3;
    --color-paper: #FFFFFF;
    --color-ink: #2D3142;
    --color-ink-light: #4F5565;
    --color-ink-muted: #9095A0;
    
    /* Architectural Block Colors - マットな質感 */
    --color-terracotta: #C4594A;
    --color-terracotta-light: #F9EFED;
    --color-terracotta-muted: #E8A99F;
    
    --color-slate: #5B7C99;
    --color-slate-light: #EDF2F6;
    --color-slate-muted: #A3BDCF;
    
    --color-mustard: #D4A03A;
    --color-mustard-light: #FDF8EC;
    --color-mustard-muted: #EACF8C;
    
    --color-sage: #7A9E7E;
    --color-sage-light: #F0F5F0;
    --color-sage-muted: #B5CFBA;
    
    /* Grid & Lines - 設計図風 */
    --color-grid: #E8E8E4;
    --color-grid-dark: #D4D4CF;
    --color-line: #E0E0DC;
    --color-blueprint: #E8EEF4;
    
    /* Shadows - 立体感 */
    --shadow-block: 4px 4px 0 rgba(45, 49, 66, 0.08);
    --shadow-block-hover: 6px 6px 0 rgba(45, 49, 66, 0.12);
    --shadow-card: 0 8px 32px rgba(45, 49, 66, 0.08);
    --shadow-soft: 0 4px 16px rgba(45, 49, 66, 0.06);
    
    /* Border Radius - 積み木風 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Typography */
    --font-sans: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', 'SF Mono', monospace;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* -----------------------------------------
   Base Styles
   ----------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-ink);
    background-color: var(--color-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Blueprint Grid Background - 方眼パターン */
.blueprint-bg {
    background-color: var(--color-base);
    background-image: 
        linear-gradient(var(--color-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
}

.blueprint-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-base) 70%);
    pointer-events: none;
    z-index: 0;
}

/* -----------------------------------------
   Container
   ----------------------------------------- */
.container {
    max-width: 920px;
    margin: 0 auto;
    padding: var(--space-lg);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* -----------------------------------------
   Typography
   ----------------------------------------- */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--color-ink);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.625rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

.mono {
    font-family: var(--font-mono);
}

/* -----------------------------------------
   Screen System
   ----------------------------------------- */
.screen {
    display: none !important;
    width: 100%;
    animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.screen.active {
    display: block !important;
}

#start-screen.active {
    display: flex !important;
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(24px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* -----------------------------------------
   Buttons - 積み木風の立体感
   ----------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: var(--color-terracotta);
    color: white;
    border-color: var(--color-terracotta);
    box-shadow: var(--shadow-block);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-block-hover);
}

.btn-primary:active {
    transform: translate(0, 0);
    box-shadow: 2px 2px 0 rgba(45, 49, 66, 0.08);
}

.btn-secondary {
    background: var(--color-paper);
    color: var(--color-ink);
    border-color: var(--color-line);
    box-shadow: var(--shadow-block);
}

.btn-secondary:hover {
    border-color: var(--color-slate);
    color: var(--color-slate);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-block-hover);
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* -----------------------------------------
   Badge - ブロックタグ
   ----------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-mono);
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-sm);
    color: var(--color-ink-muted);
    box-shadow: 2px 2px 0 rgba(45, 49, 66, 0.05);
}

.badge-terracotta {
    background: var(--color-terracotta-light);
    border-color: var(--color-terracotta-muted);
    color: var(--color-terracotta);
}

.badge-slate {
    background: var(--color-slate-light);
    border-color: var(--color-slate-muted);
    color: var(--color-slate);
}

.badge-mustard {
    background: var(--color-mustard-light);
    border-color: var(--color-mustard-muted);
    color: var(--color-mustard);
}

.badge-sage {
    background: var(--color-sage-light);
    border-color: var(--color-sage-muted);
    color: var(--color-sage);
}

/* =========================================
   START SCREEN (LP) - アトリエ風
   ========================================= */
#start-screen {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.start-hero {
    max-width: 680px;
}

/* Lab Label */
.start-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--color-slate);
    background: var(--color-paper);
    border: 2px solid var(--color-slate-muted);
    border-radius: 100px;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-block);
}

.start-label svg {
    width: 18px;
    height: 18px;
}

/* Title */
#start-screen h1 {
    font-size: 2.5rem;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

#start-screen h1 span {
    color: var(--color-terracotta);
    position: relative;
}

#start-screen h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--color-mustard-muted);
    opacity: 0.5;
    z-index: -1;
}

/* Subtitle */
.start-subtitle {
    font-size: 1.1rem;
    color: var(--color-ink-light);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

/* Hero Image */
.start-visual {
    margin: var(--space-xl) 0;
    position: relative;
}

.start-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* Block Visual - 積み木アイコン */
.block-visual {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.block-item {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-block);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.block-item:nth-child(1) {
    background: var(--color-terracotta);
    color: white;
    transform: rotate(-3deg);
}

.block-item:nth-child(2) {
    background: var(--color-slate);
    color: white;
    transform: rotate(2deg) translateY(-4px);
}

.block-item:nth-child(3) {
    background: var(--color-mustard);
    color: white;
    transform: rotate(-2deg);
}

.block-item:nth-child(4) {
    background: var(--color-sage);
    color: white;
    transform: rotate(3deg) translateY(-2px);
}

.block-visual:hover .block-item {
    transform: rotate(0) translateY(0);
}

/* Badges Row */
.badges-row {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

/* CTA */
.start-cta {
    margin: var(--space-lg) 0;
}

.start-cta .btn-primary {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Note */
.start-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-lg);
}

/* =========================================
   QUESTION SCREEN (診断)
   ========================================= */
#question-screen {
    padding: var(--space-xl) 0;
}

/* Block Progress Bar - ブロック積み上げ */
.block-progress {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-block);
}

.progress-block {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--color-base-warm);
    border: 2px solid var(--color-grid-dark);
    border-radius: var(--radius-sm);
    color: var(--color-ink-muted);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-block.completed {
    background: var(--color-sage);
    border-color: var(--color-sage);
    color: white;
    box-shadow: 2px 2px 0 rgba(122, 158, 126, 0.3);
    transform: translateY(-2px);
}

.progress-block.current {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: white;
    box-shadow: 3px 3px 0 rgba(196, 89, 74, 0.3);
    transform: scale(1.1) translateY(-4px);
}

/* Legacy Progress Bar (hidden) */
.progress-bar {
    display: none;
}

/* Question Container */
.question-container {
    background: var(--color-paper);
    padding: var(--space-2xl);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-card);
    position: relative;
}

.question-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 0%, 
        var(--color-slate) 33%, 
        var(--color-mustard) 66%, 
        var(--color-sage) 100%
    );
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.question-number {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-slate);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

#question-text {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
    line-height: 1.5;
}

.question-subtext {
    font-size: 0.95rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-xl);
}

/* Choices - カード式選択肢 */
.choices {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.choice-btn {
    padding: 20px 24px;
    text-align: left;
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    box-shadow: var(--shadow-block);
}

.choice-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--color-slate);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* PCのみホバー効果を適用（タッチデバイスでは無効） */
@media (hover: hover) and (pointer: fine) {
    .choice-btn:hover {
        border-color: var(--color-slate-muted);
        background: var(--color-slate-light);
        transform: translate(-3px, -3px);
        box-shadow: var(--shadow-block-hover);
    }
    
    .choice-btn:hover::before {
        transform: scaleY(1);
    }
}

/* タッチデバイス用：アクティブ状態のみスタイル適用 */
@media (hover: none) {
    .choice-btn:active {
        border-color: var(--color-slate-muted);
        background: var(--color-slate-light);
    }
}

.choice-btn.selected {
    border-color: var(--color-terracotta);
    background: var(--color-terracotta-light);
    box-shadow: 4px 4px 0 rgba(196, 89, 74, 0.2);
}

.choice-btn.selected::before {
    transform: scaleY(1);
    background: var(--color-terracotta);
}

/* Text Inputs */
.free-text-input,
.free-text-input-single {
    width: 100%;
    padding: 18px 22px;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    line-height: 1.7;
    background: var(--color-paper);
    box-shadow: inset 0 2px 4px rgba(45, 49, 66, 0.04);
}

.free-text-input {
    min-height: 140px;
    resize: vertical;
}

.free-text-input:focus,
.free-text-input-single:focus {
    outline: none;
    border-color: var(--color-slate);
    box-shadow: 0 0 0 4px var(--color-slate-light);
}

/* Input Examples (Q7回答例) */
.input-examples {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-slate-muted);
}

.examples-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-ink-muted);
    margin: 0 0 var(--space-sm);
}

.examples-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.examples-list li {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    line-height: 1.8;
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed var(--color-line);
}

.examples-list li:last-child {
    border-bottom: none;
}

/* =========================================
   Q7 Multi-Select UI (複数選択)
   ========================================= */
.multi-select-btn {
    text-align: left;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.multi-select-btn .option-key {
    font-weight: 700;
    color: var(--color-slate);
    min-width: 24px;
    flex-shrink: 0;
}

.multi-select-btn.selected {
    position: relative;
}

.multi-select-btn.selected::before {
    content: attr(data-select-order);
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--color-terracotta);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(196, 89, 74, 0.4);
}

.multi-select-status {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
}

.status-hint {
    color: var(--color-ink-muted);
}

.status-partial {
    color: var(--color-mustard);
    font-weight: 500;
}

.status-complete {
    color: var(--color-sage);
    font-weight: 600;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

/* =========================================
   RESULT SCREEN (結果) - Blueprint風
   ========================================= */
#result-screen {
    padding: var(--space-xl) 0;
}

/* Blueprint Card (結論BOX) */
.blueprint-card {
    background: var(--color-paper);
    border: 3px solid var(--color-ink);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 rgba(45, 49, 66, 0.08);
}

.blueprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 25%, 
        var(--color-slate) 25%, 
        var(--color-slate) 50%, 
        var(--color-mustard) 50%, 
        var(--color-mustard) 75%, 
        var(--color-sage) 75%
    );
}

.blueprint-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    padding: 6px 12px;
    background: var(--color-base-warm);
    border-radius: var(--radius-sm);
}

.blueprint-label::before {
    content: '◆';
    color: var(--color-terracotta);
}

/* =========================================
   RESULT HERO SECTION (タイプバナー)
   ========================================= */
.result-hero {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl) var(--space-2xl);
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--color-paper);
    border: 3px solid var(--color-line);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* タイプ別カラーテーマ */
.result-hero.type-a {
    background: linear-gradient(135deg, var(--color-terracotta-light) 0%, var(--color-paper) 60%);
    border-color: var(--color-terracotta);
}
.result-hero.type-b {
    background: linear-gradient(135deg, var(--color-slate-light) 0%, var(--color-paper) 60%);
    border-color: var(--color-slate);
}
.result-hero.type-c {
    background: linear-gradient(135deg, var(--color-mustard-light) 0%, var(--color-paper) 60%);
    border-color: var(--color-mustard);
}
.result-hero.type-d {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-paper) 60%);
    border-color: var(--color-sage);
}

.hero-badge {
    position: absolute;
    top: -8px;
    right: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-block);
}
.type-a .hero-badge { background: var(--color-terracotta); }
.type-b .hero-badge { background: var(--color-slate); }
.type-c .hero-badge { background: var(--color-mustard); color: var(--color-ink); }
.type-d .hero-badge { background: var(--color-sage); }

.hero-character {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-paper);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 3px solid white;
}

.hero-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    flex: 1;
    min-width: 0;
}

.hero-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-ink-muted);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.hero-type-name {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}
.type-a .hero-type-name { color: var(--color-terracotta); }
.type-b .hero-type-name { color: var(--color-slate); }
.type-c .hero-type-name { color: #9A7B0A; }
.type-d .hero-type-name { color: #4A6A4E; }

/* =========================================
   RESULT HERO NEW (リニューアル版ヒーロー)
   キャラクター画像を大きく、サブタイトル付き
   ========================================= */
.result-hero-new {
    text-align: center;
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: var(--color-paper);
    border: 3px solid var(--color-line);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* タイプ別カラーテーマ */
.result-hero-new.type-a {
    background: linear-gradient(180deg, var(--color-terracotta-light) 0%, var(--color-paper) 100%);
    border-color: var(--color-terracotta);
}
.result-hero-new.type-b {
    background: linear-gradient(180deg, var(--color-slate-light) 0%, var(--color-paper) 100%);
    border-color: var(--color-slate);
}
.result-hero-new.type-c {
    background: linear-gradient(180deg, var(--color-mustard-light) 0%, var(--color-paper) 100%);
    border-color: var(--color-mustard);
}
.result-hero-new.type-d {
    background: linear-gradient(180deg, var(--color-sage-light) 0%, var(--color-paper) 100%);
    border-color: var(--color-sage);
}

.result-hero-label {
    font-size: 0.9rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.1em;
}

.result-hero-character {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-paper);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 4px solid white;
}

.result-hero-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.result-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}
.result-hero-new.type-a .result-hero-badge { background: var(--color-terracotta); }
.result-hero-new.type-b .result-hero-badge { background: var(--color-slate); }
.result-hero-new.type-c .result-hero-badge { background: var(--color-mustard); color: var(--color-ink); }
.result-hero-new.type-d .result-hero-badge { background: var(--color-sage); }

.result-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 var(--space-sm);
}
.result-hero-new.type-a .result-hero-title { color: var(--color-terracotta); }
.result-hero-new.type-b .result-hero-title { color: var(--color-slate); }
.result-hero-new.type-c .result-hero-title { color: #9A7B0A; }
.result-hero-new.type-d .result-hero-title { color: #4A6A4E; }

.result-hero-subtitle {
    font-size: 1rem;
    color: var(--color-ink-light);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   OTHER TYPES SECTION NEW (3カラムカード形式)
   ========================================= */
.other-types-section-new {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--color-base-warm);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-line);
}

.other-types-title {
    font-size: 1.2rem;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.other-types-section-new .other-types-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-xl);
}

.other-types-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.other-type-card {
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.other-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.other-type-card.type-a { border-top: 4px solid var(--color-terracotta); }
.other-type-card.type-b { border-top: 4px solid var(--color-slate); }
.other-type-card.type-c { border-top: 4px solid var(--color-mustard); }
.other-type-card.type-d { border-top: 4px solid var(--color-sage); }

.other-type-card:hover.type-a { border-color: var(--color-terracotta); }
.other-type-card:hover.type-b { border-color: var(--color-slate); }
.other-type-card:hover.type-c { border-color: var(--color-mustard); }
.other-type-card:hover.type-d { border-color: var(--color-sage); }

.other-type-image {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-base);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.other-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.other-type-badge {
    display: inline-block;
    padding: 4px 12px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}
.other-type-card.type-a .other-type-badge { background: var(--color-terracotta-light); color: var(--color-terracotta); }
.other-type-card.type-b .other-type-badge { background: var(--color-slate-light); color: var(--color-slate); }
.other-type-card.type-c .other-type-badge { background: var(--color-mustard-light); color: #9A7B0A; }
.other-type-card.type-d .other-type-badge { background: var(--color-sage-light); color: #4A6A4E; }

.other-type-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0 0 var(--space-xs);
}

.other-type-summary {
    font-size: 0.8rem;
    color: var(--color-ink-light);
    line-height: 1.5;
    margin: 0 0 var(--space-md);
}

.other-type-link {
    font-size: 0.75rem;
    color: var(--color-ink-muted);
    transition: color 0.2s ease;
}

.other-type-card:hover .other-type-link {
    color: var(--color-terracotta);
}

/* =========================================
   SHARE SECTION (シェアのお願い)
   ========================================= */
.share-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 2px solid var(--color-mustard);
    border-radius: var(--radius-xl);
    text-align: center;
}

.share-header {
    margin-bottom: var(--space-lg);
}

.share-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.share-title {
    font-size: 1.2rem;
    color: var(--color-ink);
    margin-bottom: var(--space-xs);
}

.share-subtitle {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    margin: 0;
}

.share-text-box {
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.share-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-ink);
    margin: 0;
    white-space: pre-line;
}

.share-actions {
    margin-bottom: var(--space-lg);
}

.btn-copy {
    background: var(--color-mustard);
    color: #fff;
    padding: var(--space-sm) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--color-mustard-dark);
    transform: translateY(-2px);
}

.btn-copy.copied {
    background: var(--color-sage);
}

.share-sns {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-line);
}

.share-sns-label {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-md);
}

.share-sns-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.sns-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sns-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sns-x {
    background: #000;
    color: #fff;
    font-size: 1.2rem;
}

.sns-facebook {
    background: #1877F2;
    color: #fff;
    font-size: 1.4rem;
    font-family: Georgia, serif;
}

.sns-line {
    background: #06C755;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .share-section {
        padding: var(--space-lg);
    }
    
    .share-text-box {
        padding: var(--space-md);
    }
    
    .share-text {
        font-size: 0.85rem;
    }
}

/* =========================================
   JOURNEY SECTION (学習デザイナーとしての旅へ)
   ========================================= */
.journey-section {
    margin: var(--space-2xl) 0;
}

.journey-content {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.journey-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 25%, 
        var(--color-slate) 25%, 
        var(--color-slate) 50%, 
        var(--color-mustard) 50%, 
        var(--color-mustard) 75%, 
        var(--color-sage) 75%
    );
}

.journey-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.journey-section .journey-intro {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.journey-section .journey-formula {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-mustard);
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.journey-section .journey-body {
    margin-bottom: var(--space-xl);
}

.journey-section .journey-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.journey-section .journey-highlight {
    font-size: 1.05rem;
    color: white;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-mustard);
    margin-bottom: var(--space-xl);
    line-height: 1.9;
}

.journey-section .journey-closing {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-align: center;
    font-size: 0.95rem;
}

/* Journey内のCTA */
.journey-cta {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.journey-cta .cta-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xs);
}

.journey-cta .cta-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
}

.journey-cta .btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.journey-cta .btn-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive for Other Types Cards */
@media (max-width: 768px) {
    .other-types-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .other-type-card {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        text-align: left;
        padding: var(--space-md);
    }
    
    .other-type-image {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .other-type-card > *:not(.other-type-image) {
        flex: 1;
    }
    
    .result-hero-character {
        width: 160px;
        height: 160px;
    }
    
    .result-hero-title {
        font-size: 1.6rem;
    }
    
    .journey-content {
        padding: var(--space-xl);
    }
    
    .journey-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .result-hero-character {
        width: 140px;
        height: 140px;
    }
    
    .result-hero-title {
        font-size: 1.4rem;
    }
    
    .result-hero-subtitle {
        font-size: 0.9rem;
    }
}

/* =========================================
   DECLARATION CARD (設計宣言)
   ========================================= */
.declaration-card {
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.declaration-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.declaration-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.declaration-quote {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-ink);
    line-height: 1.6;
    margin: 0 0 var(--space-md);
    padding: 0;
    border: none;
    quotes: "「" "」";
}

.declaration-quote::before {
    content: open-quote;
    color: var(--color-terracotta);
}

.declaration-quote::after {
    content: close-quote;
    color: var(--color-terracotta);
}

.declaration-note {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    margin: 0;
}

/* =========================================
   REPORT CONTAINER (レポート本体)
   ========================================= */
.report-container {
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-soft);
}

.report-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-2xl);
    background: var(--color-base-warm);
    border-bottom: 2px solid var(--color-line);
}

.report-header-icon {
    font-size: 1.25rem;
}

.report-header-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0;
}

.report-container .report-body {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

/* (旧Q8セクションとresult-title-sectionは削除 - 新デザインに統合) */

/* Report Body */
.report-body {
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-card);
}

/* セクション区切り線 */
.report-section-divider {
    height: 1px;
    background: var(--color-line);
    margin: var(--space-xl) 0;
}

.report-intro {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: var(--space-lg);
    color: var(--color-ink);
    padding: var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-slate);
}

/* Maybe Section */
.report-maybe {
    background: var(--color-mustard-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border: 2px solid var(--color-mustard-muted);
    box-shadow: var(--shadow-block);
}

.report-maybe h3 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-maybe h3::before {
    content: '💡';
}

.report-maybe ul {
    margin: 0;
    padding-left: var(--space-lg);
}

.report-maybe li {
    margin-bottom: var(--space-sm);
    color: var(--color-ink-light);
    line-height: 1.7;
}

/* Strength Intro */
.report-strength-intro {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-sage-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-sage-muted);
    box-shadow: var(--shadow-block);
}

.report-strength-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-ink);
}

.report-strength-intro strong {
    color: var(--color-sage);
    background: linear-gradient(transparent 60%, var(--color-sage-muted) 60%);
}

/* Abilities */
.report-abilities {
    margin: var(--space-xl) 0;
}

.report-abilities h3 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.report-abilities ul {
    padding-left: 0;
    list-style: none;
}

.report-abilities li {
    padding: 14px 0 14px 40px;
    position: relative;
    border-bottom: 1px solid var(--color-line);
    line-height: 1.6;
}

.report-abilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: var(--color-sage);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 2px 2px 0 rgba(122, 158, 126, 0.2);
}

.report-abilities li:last-child {
    border-bottom: none;
}

/* Struggle */
.report-struggle {
    margin: var(--space-xl) 0;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-ink-light);
    padding: var(--space-md);
    border-left: 3px solid var(--color-grid-dark);
}

/* Prescription */
.report-prescription {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--color-slate-light);
    border-radius: var(--radius-xl);
    border: 3px solid var(--color-slate);
    box-shadow: 6px 6px 0 rgba(91, 124, 153, 0.15);
}

.report-prescription h3 {
    color: var(--color-slate);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-prescription h3::before {
    content: '🔧';
}

.report-prescription p {
    line-height: 1.9;
    margin-bottom: var(--space-md);
    color: var(--color-ink);
}

.key-phrase {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-ink);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-paper);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    border-left: 5px solid var(--color-slate);
    box-shadow: var(--shadow-block);
}

/* Steps */
.report-steps {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--color-base-warm);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-line);
}

.report-steps h3 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.report-steps ol {
    padding-left: 0;
    counter-reset: step;
    list-style: none;
}

.report-steps ol li {
    padding: 14px 0 14px 56px;
    position: relative;
    counter-increment: step;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.report-steps ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    background: var(--color-terracotta);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 3px 3px 0 rgba(196, 89, 74, 0.2);
}

.report-steps ul {
    padding-left: var(--space-lg);
    margin-top: var(--space-md);
}

.report-steps ul li::before {
    content: none;
}

.report-steps p {
    margin-top: var(--space-lg);
    color: var(--color-ink-light);
}

/* Today Step */
.report-today {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--color-terracotta);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 rgba(196, 89, 74, 0.3);
}

.report-today::before {
    content: '▶';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.15;
}

.report-today h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-today p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 90%;
}

/* AI Prompt */
.report-ai-prompt {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--color-paper);
    border: 2px dashed var(--color-line);
    border-radius: var(--radius-lg);
}

.report-ai-prompt h3 {
    color: var(--color-ink);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.report-ai-prompt h3::before {
    content: '🤖';
}

.ai-prompt-box {
    background: var(--color-base-warm);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
}

.ai-prompt-box pre {
    white-space: pre-wrap;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
}

/* Steps Outro */
.report-steps-outro {
    margin: var(--space-lg) 0 var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-sage);
}

.report-steps-outro p {
    color: var(--color-ink);
    line-height: 1.8;
    margin: 0;
}

/* Prescription Detail (タイプD用) */
.report-prescription-detail {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--color-slate-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-slate-muted);
}

.report-prescription-detail h3 {
    color: var(--color-slate);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.report-prescription-detail p {
    color: var(--color-ink);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.report-prescription-detail ul {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.report-prescription-detail li {
    color: var(--color-ink-light);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

/* Journey Section (学習デザイナーとしての旅へ) */
.report-journey {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.report-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 25%, 
        var(--color-slate) 25%, 
        var(--color-slate) 50%, 
        var(--color-mustard) 50%, 
        var(--color-mustard) 75%, 
        var(--color-sage) 75%
    );
}

.report-journey h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.journey-intro {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.journey-formula {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-mustard);
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.journey-body {
    margin-bottom: var(--space-xl);
}

.journey-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.journey-highlight {
    font-size: 1.05rem;
    color: white;
    line-height: 1.9;
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-terracotta);
}

.journey-closing {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-align: center;
    font-size: 0.95rem;
}

/* Steps Additional styling */
.steps-additional {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px dashed var(--color-line);
    color: var(--color-ink);
    font-weight: 500;
}

/* Postscript Section (付箋カード風) */
.postscript-section {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: #FFFEF5;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-mustard-muted);
    position: relative;
    transform: rotate(-0.5deg);
    box-shadow: 6px 6px 0 rgba(212, 160, 58, 0.15);
}

.postscript-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: var(--space-xl);
    width: 60px;
    height: 20px;
    background: var(--color-slate-muted);
    border-radius: 2px;
    opacity: 0.7;
}

.postscript-section h3 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px dashed var(--color-mustard-muted);
}

.postscript-intro {
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.postscript-content {
    color: var(--color-ink);
    line-height: 1.8;
}

.postscript-no-match {
    font-style: italic;
}

/* =========================================
   BOTTLENECK PRESCRIPTION SECTION (ボトルネック処方箋)
   Q7の複数選択結果に基づく処方箋表示
   ========================================= */
.bottleneck-section-title {
    color: var(--color-ink);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.bottleneck-section-intro {
    color: var(--color-ink-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.bottleneck-card {
    background: var(--color-paper);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-line);
    margin-bottom: var(--space-xl);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(45, 49, 66, 0.08);
}

.bottleneck-header {
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--color-slate) 0%, #4a6a85 100%);
    color: #fff;
}

.bottleneck-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.bottleneck-title {
    font-size: 1.2rem;
    margin: 0;
}

.bottleneck-selected-issue {
    padding: var(--space-md) var(--space-xl);
    background: var(--color-base-warm);
    border-bottom: 1px solid var(--color-line);
    font-size: 0.9rem;
    color: var(--color-ink-light);
}

.bottleneck-selected-issue .issue-key {
    font-weight: 700;
    color: var(--color-slate);
}

.bottleneck-content {
    padding: var(--space-xl);
    line-height: 1.9;
}

.bottleneck-content h5 {
    color: var(--color-ink);
    font-size: 1rem;
    margin: var(--space-lg) 0 var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-mustard-muted);
}

.bottleneck-content h5:first-child {
    margin-top: 0;
}

.bottleneck-content p {
    margin-bottom: var(--space-md);
    color: var(--color-ink);
}

.bottleneck-content strong {
    color: var(--color-terracotta);
}

.bottleneck-content ul,
.bottleneck-content ol {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.bottleneck-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

/* ボトルネック処方箋の見出しスタイル */
.bottleneck-content .bottleneck-heading {
    color: var(--color-ink);
    font-size: 1rem;
    font-weight: 700;
    margin: var(--space-lg) 0 var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-mustard-muted);
}

.bottleneck-content .bottleneck-heading:first-child {
    margin-top: 0;
}

/* 番号付きリストのスタイル */
.bottleneck-content .bottleneck-ordered-list {
    counter-reset: bottleneck-counter;
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.bottleneck-content .bottleneck-ordered-list li {
    counter-increment: bottleneck-counter;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: var(--space-md);
}

.bottleneck-content .bottleneck-ordered-list li::before {
    content: counter(bottleneck-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background: var(--color-terracotta);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 箇条書きリストのスタイル */
.bottleneck-content .bottleneck-unordered-list {
    list-style: none;
    padding-left: 0;
    margin: var(--space-md) 0;
}

.bottleneck-content .bottleneck-unordered-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
}

.bottleneck-content .bottleneck-unordered-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-slate);
    font-weight: bold;
}

/* サブ項目（例：など）のスタイル */
.bottleneck-content .sub-item {
    display: block;
    margin-top: 0.3rem;
    padding-left: 0.5rem;
    color: var(--color-ink-light);
    font-size: 0.9em;
}

/* ボトルネック G（今は特にない）の特別スタイル */
.bottleneck-g .bottleneck-header {
    background: linear-gradient(135deg, var(--color-sage) 0%, #5f8f63 100%);
}

.bottleneck-g .bottleneck-label {
    background: rgba(255, 255, 255, 0.25);
}

/* PDF誘導ティーザー（残り処方箋はPDFで） */
.bottleneck-pdf-teaser {
    background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
    border: 2px dashed var(--color-mustard);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    margin-top: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.bottleneck-pdf-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-mustard) 0%, var(--color-terracotta) 100%);
}

.pdf-teaser-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.pdf-teaser-content {
    flex: 1;
}

.pdf-teaser-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.pdf-teaser-preview {
    background: var(--color-slate);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.pdf-teaser-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
}

.pdf-teaser-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.pdf-teaser-issue {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
}

.pdf-teaser-issue .issue-key {
    font-weight: 700;
    color: var(--color-slate);
}

.pdf-teaser-cta {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-mustard-dark);
    margin: 0;
}

/* レスポンシブ：スマホ対応 */
@media (max-width: 600px) {
    .bottleneck-pdf-teaser {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
    
    .pdf-teaser-preview {
        display: flex;
        flex-direction: column;
        gap: var(--space-xs);
    }
}

/* =========================================
   CTA SECTION (ラーニングシフト)
   ========================================= */
.cta-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 25%, 
        var(--color-slate) 25%, 
        var(--color-slate) 50%, 
        var(--color-mustard) 50%, 
        var(--color-mustard) 75%, 
        var(--color-sage) 75%
    );
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: var(--space-xl);
}

.cta-body {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.cta-body:last-of-type {
    margin-bottom: var(--space-xl);
}

.cta-brand {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-mustard);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.cta-company {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-lg);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, #d66a5b 100%);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(196, 89, 74, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 89, 74, 0.4);
}

/* Thanks page variant */
.cta-thanks {
    margin-top: var(--space-2xl);
}

/* Other Types Section */
.other-types-section {
    margin: var(--space-xl) 0;
    padding: var(--space-xl);
    background: var(--color-paper);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.other-types-section h3 {
    color: var(--color-ink);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.other-types-note {
    color: var(--color-ink-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

#other-types-list {
    list-style: none;
    padding: 0;
}

#other-types-list li {
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-grid-dark);
    font-size: 0.95rem;
}

#other-types-list li:nth-child(1) { border-left-color: var(--color-terracotta); }
#other-types-list li:nth-child(2) { border-left-color: var(--color-slate); }
#other-types-list li:nth-child(3) { border-left-color: var(--color-mustard); }

#other-types-list li strong {
    color: var(--color-ink);
}

/* Opt-in Section (Legacy) */
.optin-section {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-slate-light) 0%, var(--color-base) 100%);
    border: 2px solid var(--color-slate-muted);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-card);
}

/* =========================================
   OPT-IN SECTION NEW (リニューアル版)
   ========================================= */
.optin-section-new {
    margin: var(--space-2xl) 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(30, 58, 95, 0.25);
}

.optin-header {
    padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
    text-align: center;
    position: relative;
}

.optin-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--color-mustard), #E8B84A);
    color: var(--color-ink);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(212, 160, 58, 0.4);
}

.optin-title {
    font-size: 1.5rem;
    color: white;
    margin: 0 0 var(--space-md);
    line-height: 1.4;
}

.optin-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* PDF版限定特典ハイライトボックス */
.optin-highlight-box {
    margin: var(--space-lg) var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, #FFD54F 0%, #FFCA28 100%);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
}

.optin-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.optin-highlight-label {
    position: relative;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5D4037;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.optin-highlight-text {
    position: relative;
    font-size: 1.1rem;
    color: #3E2723;
    line-height: 1.8;
    margin: 0;
}

.optin-highlight-text strong {
    color: #BF360C;
    font-weight: 700;
}

.optin-highlight-emphasis {
    display: inline-block;
    margin-top: var(--space-xs);
    padding: 6px 16px;
    background: #BF360C;
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    font-size: 0.95rem;
}

/* PDF限定コンテンツリスト */
.optin-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.optin-highlight-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: #3E2723;
    line-height: 1.6;
}

.optin-highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #BF360C;
    font-weight: 700;
}

.optin-highlight-list li:first-child {
    font-weight: 600;
    color: #BF360C;
}

.optin-highlight-list strong {
    color: #BF360C;
}

/* スマホ用改行 */
.sp-only {
    display: none;
}

@media (max-width: 600px) {
    .sp-only {
        display: inline;
    }
}

/* Benefits Grid */
.optin-benefits {
    padding: 0 var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.optin-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.optin-benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

/* PDF版限定特典アイテム（ハイライト表示） */
.optin-benefit-special {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.5);
    position: relative;
}

.optin-benefit-special::after {
    content: 'PDF版限定';
    position: absolute;
    top: -8px;
    right: 16px;
    padding: 2px 10px;
    background: linear-gradient(135deg, #FFD54F, #FFC107);
    color: #3E2723;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
}

.optin-benefit-special:hover {
    background: rgba(255, 193, 7, 0.25);
}

.benefit-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.benefit-content h4 {
    font-size: 1rem;
    color: white;
    margin: 0 0 var(--space-xs);
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Form Wrapper */
.optin-form-wrapper {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
    background: var(--color-paper);
    border-top: 4px solid var(--color-mustard);
}

.optin-form-lead {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0 0 var(--space-lg);
}

.optin-section-new #result-optin-form {
    max-width: 420px;
    margin: 0 auto;
}

.optin-section-new #result-optin-form input {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: var(--space-md);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--color-base);
    transition: all 0.2s ease;
}

.optin-section-new #result-optin-form input:focus {
    outline: none;
    border-color: var(--color-slate);
    box-shadow: 0 0 0 4px var(--color-slate-light);
    background: var(--color-paper);
}

.optin-section-new #result-optin-form input::placeholder {
    color: var(--color-ink-muted);
}

.btn-optin {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    background: linear-gradient(135deg, var(--color-terracotta), #D4695A);
    box-shadow: 0 4px 16px rgba(196, 89, 74, 0.35);
}

.btn-optin:hover {
    background: linear-gradient(135deg, #B54A3B, var(--color-terracotta));
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 89, 74, 0.45);
}

.btn-icon {
    font-size: 1.2rem;
}

.optin-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-ink-muted);
    margin: var(--space-lg) 0 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .optin-header {
        padding: var(--space-xl) var(--space-lg) var(--space-md);
    }
    
    .optin-title {
        font-size: 1.25rem;
    }
    
    .optin-benefits {
        padding: 0 var(--space-lg) var(--space-lg);
    }
    
    .optin-benefit-item {
        padding: var(--space-md);
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .benefit-content h4 {
        font-size: 0.95rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
    
    .optin-form-wrapper {
        padding: var(--space-lg);
    }
    
    .btn-optin {
        font-size: 1rem;
        padding: 16px 24px;
    }
}

/* Legacy styles kept for compatibility */
.optin-section h3 {
    color: var(--color-slate);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.optin-subtitle {
    color: var(--color-ink-light);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.optin-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-lg);
}

#result-optin-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

#result-optin-form input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: var(--space-md);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--color-paper);
    transition: all 0.2s ease;
}

#result-optin-form input:focus {
    outline: none;
    border-color: var(--color-slate);
    box-shadow: 0 0 0 4px var(--color-slate-light);
}

/* Action Buttons */
.action-buttons {
    text-align: center;
    margin: var(--space-2xl) 0;
}

/* Debug Section */
.debug-section {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: var(--color-mustard-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-mustard-muted);
}

.debug-section h4 {
    color: var(--color-ink);
    margin: var(--space-md) 0 var(--space-sm);
    font-family: var(--font-mono);
}

.debug-section h4:first-child {
    margin-top: 0;
}

.score-grid {
    display: grid;
    gap: var(--space-sm);
}

.score-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--color-paper);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    box-shadow: var(--shadow-block);
}

/* =========================================
   THANKS SCREEN
   ========================================= */
#thanks-screen {
    padding: var(--space-xl) 0;
}

.thanks-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.thanks-header h2 {
    color: var(--color-sage);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.thanks-header h2::before {
    content: '✓';
    width: 48px;
    height: 48px;
    background: var(--color-sage);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-block);
}

/* 感謝メッセージブロック（リニューアル版） */
.thanks-message {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-paper) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-sage);
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.thanks-title {
    color: var(--color-sage);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.thanks-lead {
    color: var(--color-ink);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Thanks画面：学習デザイナーとしての旅へセクション */
.thanks-journey-section {
    margin-top: var(--space-2xl);
}

.thanks-journey-section .journey-content {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, #1a2a3a 0%, #2d3e50 100%);
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.thanks-journey-section .journey-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-terracotta) 25%, 
        var(--color-slate) 25%, 
        var(--color-slate) 50%, 
        var(--color-mustard) 50%, 
        var(--color-mustard) 75%, 
        var(--color-sage) 75%
    );
}

.thanks-journey-section .journey-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.thanks-journey-section .journey-intro {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.thanks-journey-section .journey-formula {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-mustard);
    text-align: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.thanks-journey-section .journey-body {
    margin-bottom: var(--space-xl);
}

.thanks-journey-section .journey-body p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.thanks-journey-section .journey-highlight {
    font-size: 1.05rem;
    color: white;
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-mustard);
    margin-bottom: var(--space-xl);
    line-height: 1.9;
}

.thanks-journey-section .journey-closing {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.thanks-journey-section .journey-cta {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--space-xl);
}

.thanks-journey-section .cta-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.thanks-journey-section .cta-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
}

.thanks-journey-section .btn-cta {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.thanks-journey-section .btn-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* PDF Content */
.pdf-content {
    background: var(--color-paper);
    padding: var(--space-2xl);
    border: 2px solid var(--color-line);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-card);
}

.pdf-document h1 {
    font-size: 1.5rem;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
    text-align: center;
}

.pdf-document h2 {
    font-size: 1.2rem;
    color: var(--color-ink);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.pdf-page {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-line);
}

.pdf-section {
    margin-bottom: var(--space-lg);
}

.pdf-section h3 {
    font-size: 1rem;
    color: var(--color-slate);
    margin-bottom: var(--space-sm);
}

.pdf-quote {
    background: var(--color-mustard-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-mustard);
}

.pdf-quote .quote-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.pdf-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-terracotta);
    text-align: center;
    padding: var(--space-md);
    background: var(--color-terracotta-light);
    border-radius: var(--radius-md);
}

.pdf-prompt {
    background: var(--color-base-warm);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    white-space: pre-wrap;
    line-height: 1.6;
}

/* PDF Preview Styles */
.pdf-preview {
    text-align: center;
}

.pdf-preview-header {
    padding: var(--space-xl);
    background: var(--color-paper);
    border-left: 5px solid;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.pdf-preview-badge {
    display: inline-block;
    padding: 4px 16px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: var(--space-sm);
}

.pdf-preview-title {
    font-size: 1.5rem;
    color: var(--color-ink);
    margin: 0 0 var(--space-xs);
}

.pdf-preview-subtitle {
    font-size: 0.95rem;
    color: var(--color-ink-muted);
    margin: 0;
}

.pdf-preview-declaration {
    padding: var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.pdf-preview-label {
    font-size: 0.8rem;
    color: var(--color-ink-muted);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.pdf-preview-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-ink);
    margin: 0;
}

/* PDF版限定特典ハイライト */
.pdf-preview-highlight {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border: 2px solid #FFB74D;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.pdf-highlight-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E65100;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.pdf-highlight-text {
    font-size: 1rem;
    color: var(--color-ink);
    line-height: 1.8;
    margin: 0;
}

.pdf-highlight-text strong {
    color: #E65100;
    font-weight: 700;
}

.pdf-preview-contents {
    text-align: left;
    padding: var(--space-lg);
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.pdf-preview-contents h3 {
    font-size: 1rem;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

/* PDF目次（番号付きリスト） */
.pdf-toc {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.pdf-toc li {
    counter-increment: toc-counter;
    font-size: 0.9rem;
    color: var(--color-ink-light);
    padding: var(--space-xs) 0;
    padding-left: 28px;
    position: relative;
}

.pdf-toc li::before {
    content: counter(toc-counter) ".";
    position: absolute;
    left: 0;
    color: var(--color-accent-a);
    font-weight: 600;
}

.pdf-toc li.pdf-toc-special {
    color: #E65100;
    font-weight: 600;
    background: #FFF8E1;
    margin: var(--space-xs) 0;
    padding: var(--space-sm) var(--space-sm) var(--space-sm) 28px;
    border-radius: var(--radius-sm);
}

.pdf-toc li.pdf-toc-special::before {
    color: #E65100;
}

.pdf-preview-note {
    font-size: 0.9rem;
    color: var(--color-ink-muted);
    line-height: 1.7;
}

.pdf-preview-tip {
    font-size: 0.85rem;
    color: var(--color-accent-b);
    margin-top: var(--space-md);
}

.pdf-footer {
    text-align: center;
    padding-top: var(--space-lg);
    color: var(--color-ink-muted);
    font-size: 0.85rem;
}

/* Thanks Actions */
.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 400px;
    margin: 0 auto;
}

/* Thanks CTA */
.thanks-cta {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    text-align: center;
    background: var(--color-ink);
    border-radius: var(--radius-lg);
}

.thanks-cta .cta-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xs);
}

.thanks-cta .cta-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-md);
}

.thanks-cta .btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-cta .btn-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   PRINT STYLES
   ========================================= */
@media print {
    body {
        background: white;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .screen {
        display: none !important;
    }
    
    #thanks-screen {
        display: block !important;
    }
    
    .thanks-header,
    .thanks-actions {
        display: none !important;
    }
    
    .pdf-content {
        border: none;
        box-shadow: none;
        padding: 20px;
    }
    
    .pdf-page {
        page-break-inside: avoid;
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 640px) {
    :root {
        --space-xl: 24px;
        --space-2xl: 32px;
    }
    
    .container {
        padding: var(--space-md);
    }
    
    #start-screen h1 {
        font-size: 1.875rem;
    }
    
    .block-visual {
        gap: 4px;
    }
    
    .block-item {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .block-progress {
        gap: 4px;
        padding: var(--space-sm);
    }
    
    .progress-block {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .question-container {
        padding: var(--space-lg);
    }
    
    #question-text {
        font-size: 1.15rem;
    }
    
    .choice-btn {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .navigation {
        flex-direction: column;
    }
    
    .navigation .btn {
        width: 100%;
    }
    
    .blueprint-card {
        padding: var(--space-lg);
    }
    
    .report-body {
        padding: var(--space-lg);
    }
    
    .report-prescription,
    .report-steps,
    .report-today {
        padding: var(--space-lg);
    }
    
    .badges-row {
        gap: 6px;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .modal-container {
        margin: var(--space-md);
        max-height: 90vh;
    }
    
    .analyzing-title {
        font-size: 1.25rem;
    }
    
    /* Result hero responsive */
    .result-hero {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
        gap: var(--space-md);
    }
    
    .hero-badge {
        top: -6px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .hero-character {
        width: 100px;
        height: 100px;
    }
    
    .hero-type-name {
        font-size: 1.3rem;
    }
    
    .declaration-card {
        padding: var(--space-lg);
    }
    
    .declaration-quote {
        font-size: 1.15rem;
    }
    
    .report-container .report-header {
        padding: var(--space-md) var(--space-lg);
    }
    
    .modal-character {
        width: 120px;
        height: 120px;
    }
    
    .start-visual img {
        max-height: 220px;
    }
    
    /* CTA responsive */
    .cta-section {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .cta-headline {
        font-size: 1.25rem;
    }
    
    .cta-body {
        font-size: 0.9rem;
    }
}

/* =========================================
   ANALYZING SCREEN (分析中)
   ========================================= */
#analyzing-screen {
    display: none !important;
}

#analyzing-screen.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.analyzing-container {
    text-align: center;
    max-width: 500px;
    padding: var(--space-2xl);
}

/* Animated Blocks */
.analyzing-icon {
    margin-bottom: var(--space-xl);
}

.analyzing-blocks {
    display: flex;
    justify-content: center;
    gap: 8px;
    height: 80px;
    align-items: flex-end;
}

.analyzing-block {
    width: 40px;
    border-radius: var(--radius-sm);
    animation: blockBounce 1.2s ease-in-out infinite;
}

.analyzing-block.block-1 {
    background: var(--color-terracotta);
    height: 40px;
    animation-delay: 0s;
}

.analyzing-block.block-2 {
    background: var(--color-slate);
    height: 50px;
    animation-delay: 0.15s;
}

.analyzing-block.block-3 {
    background: var(--color-mustard);
    height: 35px;
    animation-delay: 0.3s;
}

.analyzing-block.block-4 {
    background: var(--color-sage);
    height: 55px;
    animation-delay: 0.45s;
}

@keyframes blockBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.analyzing-title {
    font-size: 1.5rem;
    color: var(--color-ink);
    margin-bottom: var(--space-xl);
    line-height: 1.5;
}

/* Progress Bar */
.analyzing-progress-container {
    margin-bottom: var(--space-lg);
}

.analyzing-progress-bar {
    width: 100%;
    height: 12px;
    background: var(--color-line);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: var(--space-sm);
}

.analyzing-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-slate), var(--color-sage));
    border-radius: 100px;
    transition: width 0.4s ease-out;
    width: 0%;
}

.analyzing-progress-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.analyzing-status {
    color: var(--color-ink-muted);
    font-size: 0.95rem;
    min-height: 1.5em;
}

/* =========================================
   TYPE DETAIL MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 49, 66, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--space-lg);
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--color-paper);
    border-radius: var(--radius-xl);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(45, 49, 66, 0.3);
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border: none;
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--color-ink-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-line);
    color: var(--color-ink);
}

.modal-content {
    padding: 0;
}

/* Modal Header - Type specific colors */
.modal-header {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
    text-align: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* Character Image in Modal */
.modal-character {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-paper);
    box-shadow: var(--shadow-card);
    border: 3px solid var(--color-paper);
}

.modal-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.modal-header-text {
    text-align: center;
}

.modal-header.type-a {
    background: linear-gradient(135deg, var(--color-terracotta-light), var(--color-base));
    border-bottom: 4px solid var(--color-terracotta);
}

.modal-header.type-b {
    background: linear-gradient(135deg, var(--color-slate-light), var(--color-base));
    border-bottom: 4px solid var(--color-slate);
}

.modal-header.type-c {
    background: linear-gradient(135deg, var(--color-mustard-light), var(--color-base));
    border-bottom: 4px solid var(--color-mustard);
}

.modal-header.type-d {
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-base));
    border-bottom: 4px solid var(--color-sage);
}

.modal-type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-block);
}

.type-a .modal-type-badge { background: var(--color-terracotta); }
.type-b .modal-type-badge { background: var(--color-slate); }
.type-c .modal-type-badge { background: var(--color-mustard); }
.type-d .modal-type-badge { background: var(--color-sage); }

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.modal-type-summary {
    color: var(--color-ink-light);
    font-size: 1rem;
}

/* Modal Body */
.modal-body {
    padding: var(--space-xl);
}

.modal-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-ink);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-line);
}

.modal-section {
    margin-bottom: var(--space-xl);
}

.modal-section h3 {
    font-size: 1.1rem;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.modal-section ul {
    padding-left: var(--space-lg);
}

.modal-section li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    color: var(--color-ink-light);
}

.modal-strength {
    padding: var(--space-lg);
    background: var(--color-sage-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-sage-muted);
}

.modal-strength p {
    line-height: 1.8;
    color: var(--color-ink);
}

.modal-prescription {
    padding: var(--space-lg);
    background: var(--color-slate-light);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-slate-muted);
}

.modal-prescription h3 {
    color: var(--color-slate);
}

.modal-prescription p {
    line-height: 1.8;
    color: var(--color-ink);
}

.modal-prescription .key-phrase {
    margin-top: var(--space-md);
}

/* Modal Footer */
.modal-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-line);
    text-align: center;
}

/* Clickable Type List */
.clickable-type {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.clickable-type:hover {
    transform: translateX(8px);
    border-left-width: 6px;
}

.clickable-type .view-detail {
    display: block;
    font-size: 0.8rem;
    color: var(--color-ink-muted);
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.clickable-type:hover .view-detail {
    opacity: 1;
    color: var(--color-terracotta);
}

/* =========================================
   NEW LP STYLES - Landing Page Sections
   ========================================= */

/* -----------------------------------------
   LP Hero Section
   ----------------------------------------- */
.lp-hero {
    text-align: center;
    padding: var(--space-2xl) 0;
    max-width: 800px;
    margin: 0 auto;
}

.lp-catchcopy {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
}

.lp-title {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.lp-title-prefix {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}

.lp-title .highlight {
    color: var(--color-terracotta);
    position: relative;
}

.lp-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--color-mustard-muted);
    opacity: 0.5;
    z-index: -1;
}

.lp-subtitle {
    font-size: 1rem;
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.lp-hero-image {
    margin: var(--space-xl) 0;
}

.lp-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.lp-hero-cta {
    margin: var(--space-xl) 0;
}

.lp-hero-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-md);
}

/* Large CTA Button */
.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* -----------------------------------------
   LP Sections Common
   ----------------------------------------- */
.lp-section {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
    border-top: 1px solid var(--color-line);
}

.lp-section-title {
    font-size: 1.5rem;
    color: var(--color-ink);
    text-align: center;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.lp-section-icon {
    font-size: 1.5rem;
}

/* -----------------------------------------
   LP Empathy Section
   ----------------------------------------- */
.lp-empathy {
    text-align: center;
}

.lp-empathy-intro {
    margin-bottom: var(--space-xl);
}

.lp-empathy-ask {
    font-size: 1rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-sm);
}

.lp-empathy-dream {
    font-size: 1.2rem;
    color: var(--color-ink);
    line-height: 2;
    font-weight: 500;
}

.lp-empathy-wants {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-paper);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-line);
    box-shadow: var(--shadow-soft);
}

.lp-wants-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-wants-list li {
    font-size: 1.1rem;
    color: var(--color-ink);
    line-height: 2.2;
    position: relative;
    display: inline;
}

.lp-wants-list li:not(:last-child)::after {
    content: '';
}

.lp-empathy-pain {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-base-warm);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-ink-muted);
}

.lp-pain-voice {
    font-size: 1rem;
    color: var(--color-ink-light);
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.lp-pain-deny {
    font-size: 1rem;
    color: var(--color-ink);
    font-weight: 500;
}

.lp-empathy-hope {
    margin-top: var(--space-xl);
}

.lp-hope-message {
    font-size: 1.3rem;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.lp-hope-lead {
    font-size: 1rem;
    color: var(--color-ink-light);
    line-height: 1.9;
}

/* -----------------------------------------
   LP Concept Section
   ----------------------------------------- */
.lp-concept {
    text-align: center;
    background: linear-gradient(180deg, var(--color-slate-light), var(--color-base));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: none;
}

.lp-concept-header {
    margin-bottom: var(--space-xl);
}

.lp-concept-statement {
    font-size: 1.3rem;
    color: var(--color-ink);
    line-height: 2;
}

.lp-concept-questions {
    margin: var(--space-xl) 0;
}

.lp-question {
    font-size: 1.05rem;
    color: var(--color-slate);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.lp-concept-answer {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.lp-answer-deny {
    font-size: 1rem;
    color: var(--color-ink-light);
    margin-bottom: var(--space-md);
}

.lp-answer-truth {
    font-size: 1.1rem;
    color: var(--color-ink);
    line-height: 1.8;
}

.lp-concept-explain {
    margin-top: var(--space-xl);
}

.lp-concept-explain p {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    line-height: 2;
}

/* -----------------------------------------
   LP Benefit Section
   ----------------------------------------- */
.lp-benefit {
    background: var(--color-paper);
}

.lp-benefit-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* 横並び3列レイアウト */
.lp-benefit-cards.lp-benefit-horizontal {
    flex-direction: row;
    gap: var(--space-md);
}

.lp-benefit-horizontal .lp-benefit-card {
    flex: 1;
    text-align: center;
    padding: var(--space-lg);
}

.lp-benefit-horizontal .lp-benefit-number {
    margin: 0 auto var(--space-sm);
}

.lp-benefit-horizontal .lp-benefit-title {
    font-size: 1rem;
    line-height: 1.5;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-benefit-horizontal .lp-benefit-text {
    font-size: 0.85rem;
    line-height: 1.7;
}

.lp-benefit-card {
    padding: var(--space-xl);
    background: var(--color-base);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-line);
    box-shadow: var(--shadow-block);
    transition: all 0.3s ease;
}

.lp-benefit-card:hover {
    box-shadow: var(--shadow-block-hover);
    transform: translateY(-2px);
}

.lp-benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-terracotta);
    color: white;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: 2px 2px 0 rgba(196, 89, 74, 0.3);
}

.lp-benefit-title {
    font-size: 1.15rem;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.lp-benefit-text {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    line-height: 1.9;
}

/* -----------------------------------------
   LP Types Section
   ----------------------------------------- */
.lp-types {
    background: var(--color-ink);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: white;
}

.lp-types .lp-section-title {
    color: white;
}

.lp-types-lead {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
}

/* ミニマルタイプ表示 */
.lp-types-minimal {
    padding: var(--space-xl) var(--space-lg);
}

.lp-type-cards-minimal {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.lp-type-card-minimal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    min-width: 100px;
}

.lp-type-card-minimal:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.lp-type-badge-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-sm);
}

.lp-type-card-minimal.type-a .lp-type-badge-mini {
    background: var(--color-terracotta);
    color: white;
}

.lp-type-card-minimal.type-b .lp-type-badge-mini {
    background: var(--color-slate);
    color: white;
}

.lp-type-card-minimal.type-c .lp-type-badge-mini {
    background: var(--color-mustard);
    color: white;
}

.lp-type-card-minimal.type-d .lp-type-badge-mini {
    background: var(--color-sage);
    color: white;
}

.lp-type-name-mini {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
}

.lp-types-question {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 600px) {
    .lp-type-cards-minimal {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
    
    .lp-type-card-minimal {
        min-width: calc(50% - var(--space-sm));
        padding: var(--space-sm) var(--space-md);
    }
    
    .lp-type-badge-mini {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .lp-type-name-mini {
        font-size: 0.75rem;
    }
}

.lp-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.lp-type-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.lp-type-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.lp-type-badge {
    display: inline-block;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.lp-type-card.type-a .lp-type-badge {
    background: var(--color-terracotta);
    color: white;
}

.lp-type-card.type-b .lp-type-badge {
    background: var(--color-slate);
    color: white;
}

.lp-type-card.type-c .lp-type-badge {
    background: var(--color-mustard);
    color: white;
}

.lp-type-card.type-d .lp-type-badge {
    background: var(--color-sage);
    color: white;
}

.lp-type-name {
    font-size: 1.15rem;
    color: white;
    margin-bottom: var(--space-sm);
}

.lp-type-card.type-a .lp-type-name { color: var(--color-terracotta-muted); }
.lp-type-card.type-b .lp-type-name { color: var(--color-slate-muted); }
.lp-type-card.type-c .lp-type-name { color: var(--color-mustard-muted); }
.lp-type-card.type-d .lp-type-name { color: var(--color-sage-muted); }

.lp-type-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.lp-type-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* -----------------------------------------
   LP Closing Section
   ----------------------------------------- */
.lp-closing {
    text-align: center;
    background: linear-gradient(180deg, var(--color-terracotta-light), var(--color-base));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.lp-closing-message {
    margin-bottom: var(--space-xl);
}

.lp-closing-lead {
    font-size: 1.2rem;
    color: var(--color-ink);
    line-height: 2;
    margin-bottom: var(--space-lg);
}

.lp-closing-invite {
    font-size: 1rem;
    color: var(--color-ink-light);
    line-height: 2;
}

.lp-closing-cta {
    margin-top: var(--space-xl);
}

.lp-closing-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-md);
}

/* -----------------------------------------
   LP Responsive
   ----------------------------------------- */
@media (max-width: 768px) {
    .lp-hero {
        padding: var(--space-xl) var(--space-md);
    }
    
    .lp-catchcopy {
        font-size: 1rem;
    }
    
    .lp-title {
        font-size: 1.5rem;
    }
    
    .lp-title-prefix {
        font-size: 0.75rem;
    }
    
    .lp-subtitle {
        font-size: 0.9rem;
    }
    
    .lp-hero-image img {
        max-width: 100%;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }
    
    .lp-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .lp-section-title {
        font-size: 1.25rem;
    }
    
    .lp-empathy-dream {
        font-size: 1.05rem;
    }
    
    .lp-hope-message {
        font-size: 1.15rem;
    }
    
    .lp-concept {
        padding: var(--space-xl);
    }
    
    .lp-concept-statement {
        font-size: 1.1rem;
    }
    
    .lp-type-cards {
        grid-template-columns: 1fr;
    }
    
    .lp-type-name {
        font-size: 1.1rem;
    }
    
    .lp-closing {
        padding: var(--space-xl);
    }
    
    .lp-closing-lead {
        font-size: 1.05rem;
    }
    
    /* スマホでは縦並びに戻す */
    .lp-benefit-cards.lp-benefit-horizontal {
        flex-direction: column;
    }
    
    .lp-benefit-horizontal .lp-benefit-title {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .lp-title {
        font-size: 1.3rem;
    }
    
    .lp-wants-list li {
        display: block;
        line-height: 2;
    }
    
    .lp-benefit-card {
        padding: var(--space-lg);
    }
    
    .lp-benefit-title {
        font-size: 1.05rem;
    }
}

/* =========================================
   LP HERO SPLIT LAYOUT (上下分離デザイン)
   テキストと画像を明確に分離・視認性重視
   ========================================= */

/* Split Hero Container */
.lp-hero-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--color-offwhite);
}

/* Upper: Text Content Area */
.lp-hero-text-area {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    padding-bottom: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Catchcopy */
.lp-hero-catchcopy {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    letter-spacing: 0.08em;
}

/* Hero Title */
.lp-hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.lp-hero-title .highlight {
    color: var(--color-terracotta);
    position: relative;
}

.lp-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--color-mustard);
    opacity: 0.4;
    z-index: -1;
    border-radius: 2px;
}

.lp-hero-prefix {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.12em;
}

/* 人材開発担当者向け - ターゲットラベル */
.lp-hero-target {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-slate);
    letter-spacing: 0.15em;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-slate-light);
    border-radius: 100px;
    margin-bottom: var(--space-md);
}

/* メインタイトル「研修企画の"芯"がわかるスタイル診断」 */
.lp-hero-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.4;
    margin-bottom: var(--space-lg);
}

.lp-hero-main-title .highlight-shin {
    color: var(--color-mustard);
    font-style: normal;
}

.lp-hero-main-title .title-diagnosis {
    display: block;
    font-size: 2.2rem;
    color: var(--color-terracotta);
    margin-top: var(--space-xs);
}

/* サブキャッチコピー「手配屋→設計家」 */
.lp-hero-sub-catchcopy {
    font-size: 1.05rem;
    color: var(--color-ink-light);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.lp-hero-sub-catchcopy .highlight-architect {
    color: var(--color-terracotta);
    font-weight: 600;
}

/* キャラクター画像エリア（余白確保） */
.lp-hero-image-area {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
}

.lp-hero-image-area img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* === 新デザイン: フルワイドヒーロー画像 === */
.lp-hero-image-full {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-md);
    /* 画像を中央に大きく表示 */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero-image-full img {
    width: 100%;
    height: auto;
    display: block;
    /* 画像内の文字を大きく見せるため、最小サイズを確保 */
    min-width: 320px;
}

.lp-hero-cta-overlay {
    text-align: center;
    padding: var(--space-md) 0 var(--space-lg);
    background: transparent;
}

.lp-hero-cta-overlay .btn-hero {
    background: linear-gradient(135deg, var(--color-terracotta), #D46B5D);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 89, 74, 0.3);
}

.lp-hero-cta-overlay .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 89, 74, 0.4);
}

.lp-hero-cta-overlay .lp-hero-meta {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-sm);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .lp-hero-cta-overlay .btn-hero {
        font-size: 1rem;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .lp-hero-cta-overlay .btn-hero {
        font-size: 0.95rem;
        padding: 12px 24px;
        width: 90%;
        max-width: 280px;
    }
}

/* Benefit後のCTA */
.lp-benefit-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-line);
}

.lp-benefit-cta-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-sm);
}

/* クロージング簡素版 */
.lp-closing-simple {
    text-align: center;
    padding: var(--space-xl) 0;
}

.lp-closing-tagline {
    font-size: 1rem;
    color: var(--color-ink-light);
    margin: 0;
}

/* レスポンシブ - ヒーローセクション */
@media (max-width: 768px) {
    .lp-hero-main-title {
        font-size: 1.5rem;
    }
    
    .lp-hero-main-title .title-diagnosis {
        font-size: 1.8rem;
    }
    
    .lp-hero-sub-catchcopy {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .lp-hero-main-title {
        font-size: 1.3rem;
    }
    
    .lp-hero-main-title .title-diagnosis {
        font-size: 1.5rem;
    }
    
    .lp-hero-sub-catchcopy {
        font-size: 0.9rem;
    }
    
    .lp-hero-image-area {
        margin-top: var(--space-xl);
        padding-top: var(--space-md);
    }
}

/* Hero CTA */
.lp-hero-action {
    margin-top: var(--space-lg);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 48px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, #d4695c 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 0 #9e3f35,
        0 8px 25px rgba(196, 89, 74, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #9e3f35,
        0 12px 35px rgba(196, 89, 74, 0.4);
}

.btn-hero:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #9e3f35,
        0 4px 15px rgba(196, 89, 74, 0.2);
}

.lp-hero-meta {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin-top: var(--space-md);
}

/* Lower: Character Image Area */
.lp-hero-image-area {
    width: 100%;
    background: linear-gradient(
        180deg,
        var(--color-offwhite) 0%,
        #e8e8e6 50%,
        #dcdcda 100%
    );
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.lp-hero-image-area img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* SP Only Break */
.sp-only {
    display: none;
}

/* -----------------------------------------
   Hero Split Responsive
   ----------------------------------------- */
@media (max-width: 992px) {
    .lp-hero-title {
        font-size: 1.9rem;
    }
    
    .lp-hero-image-area img {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .lp-hero-text-area {
        padding: var(--space-xl) var(--space-md);
        padding-bottom: var(--space-lg);
    }
    
    .lp-hero-title {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .lp-hero-prefix {
        font-size: 0.75rem;
    }
    
    .lp-hero-catchcopy {
        font-size: 1rem;
    }
    
    .lp-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
    }
    
    .sp-only {
        display: inline;
    }
    
    .lp-hero-image-area img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .lp-hero-text-area {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .lp-hero-title {
        font-size: 1.35rem;
    }
    
    .lp-hero-catchcopy {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* =========================================
   STYLE REVEAL SCREEN (スタイル表示 + 入力)
   ========================================= */
#style-reveal-screen {
    padding: var(--space-xl) 0;
}

.style-reveal-hero {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.style-reveal-label {
    font-size: 0.9rem;
    color: var(--color-ink-muted);
    margin-bottom: var(--space-md);
}

.style-reveal-character {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-base-warm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.style-reveal-character img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-reveal-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    background: var(--color-terracotta);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.style-reveal-badge.type-a { background: var(--color-terracotta); }
.style-reveal-badge.type-b { background: var(--color-slate); }
.style-reveal-badge.type-c { background: var(--color-mustard); }
.style-reveal-badge.type-d { background: var(--color-sage); }

.style-reveal-title {
    font-size: 1.8rem;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
}

.style-reveal-subtitle {
    font-size: 1rem;
    color: var(--color-ink-light);
}

/* 診断結果の説明 */
.style-reveal-description {
    background: var(--color-paper);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-line);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.style-reveal-heading {
    font-size: 1.2rem;
    color: var(--color-ink);
    margin-bottom: var(--space-lg);
}

.style-reveal-intro {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.style-reveal-contents {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    display: inline-block;
    text-align: left;
}

.style-reveal-contents li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-ink);
}

.style-reveal-contents li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

.style-reveal-note {
    font-size: 0.85rem;
    color: var(--color-ink-muted);
    margin: 0;
}

/* 入力フォーム */
.style-reveal-form-section {
    background: linear-gradient(135deg, var(--color-slate) 0%, #4a6a85 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    color: white;
    text-align: center;
}

.style-reveal-form-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

#style-reveal-form {
    max-width: 400px;
    margin: 0 auto var(--space-xl);
}

#style-reveal-form input {
    width: 100%;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-ink);
}

#style-reveal-form input:focus {
    outline: none;
    border-color: white;
    background: white;
}

#style-reveal-form button {
    width: 100%;
    margin-top: var(--space-sm);
}

/* ご確認事項 */
.style-reveal-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.notice-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.notice-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
}

.notice-text:last-child {
    margin-bottom: 0;
}

/* ポジティブ版：期待感を持たせるスタイル */
.style-reveal-notice-positive {
    background: linear-gradient(135deg, rgba(212, 160, 58, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
    border: 1px solid rgba(212, 160, 58, 0.3);
    padding: var(--space-lg) var(--space-xl);
}

.style-reveal-notice-positive .notice-title {
    font-size: 1rem;
    color: var(--color-mustard);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.style-reveal-notice-positive .notice-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.style-reveal-notice-positive .notice-highlight strong {
    color: #fff;
    font-size: 0.95rem;
}

.style-reveal-notice-positive .notice-sub {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xs);
    line-height: 1.6;
}

.style-reveal-notice-positive .notice-safe {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    justify-content: center;
}

.style-reveal-notice-positive .notice-icon {
    color: var(--color-sage);
    font-weight: bold;
}

/* 結果ページ冒頭説明文 */
.result-intro-box {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, #fff 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-sage);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.result-intro-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.result-intro-text strong {
    color: var(--color-sage);
}

.result-intro-note {
    font-size: 0.9rem;
    color: var(--color-ink-light);
    margin: 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.result-intro-note strong {
    color: var(--color-terracotta);
}

/* PDF Download CTA */
.pdf-download-cta {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-mustard);
    text-align: center;
    margin: var(--space-2xl) 0;
}

.pdf-download-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.pdf-download-title {
    font-size: 1.3rem;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
}

.pdf-download-description {
    font-size: 0.95rem;
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* レスポンシブ */
@media (max-width: 600px) {
    .style-reveal-character {
        width: 140px;
        height: 140px;
    }
    
    .style-reveal-title {
        font-size: 1.5rem;
    }
    
    .style-reveal-form-section {
        padding: var(--space-xl);
    }
    
    .result-intro-box {
        padding: var(--space-lg);
    }
    
    .result-intro-text {
        font-size: 0.9rem;
    }
    
    .pdf-download-cta {
        padding: var(--space-xl);
    }
}
