:root {

/* Moonlight Color Palette - Black/White/Gray Base */

--primary-color: #E8E8E8;
--secondary-color: #A0A0A0;
--accent-color: #2A2A2A;
--text-dark: #F5F5F5;
--text-light: #0D0D0D;
--background: #0D0D0D;
--card-background: #1A1A1A;
--shadow: rgba(255, 255, 255, 0.05);
--shadow-hover: rgba(255, 255, 255, 0.1);
--border-radius: 12px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

            /* Custom moonlight palette */
            --color-background: #0D0D0D;
            --color-surface: #151515;
            --color-text: #f5f5f5; /* #EAEAEA */
            --color-text-w: #0a0a0a;
            --color-text-secondary: rgba(234, 234, 234, 0.7);
            --color-text-secondary-w: rgba(21, 21, 21, 0.7);
            --color-primary: #EAEAEA;
            --color-primary-w: #151515;
            --color-accent-glow: #FFFFFF;
            --color-border: rgba(234, 234, 234, 0.2);
            --color-border-w: rgba(21, 21, 21, 0.2);
            --color-focus-ring: rgba(255, 255, 255, 0.4);
            
            /* Typography */
            --font-family-primary: 'SF Pro Display', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-family-secondary: 'Inter', 'Noto Sans JP', sans-serif;
            --font-size-xs: 11px;
            --font-size-sm: 12px;
            --font-size-base: 17px;
            --font-size-lg: 22px;
            --font-size-xl: 32px;
            --font-size-2xl: 40px;
            --font-size-3xl: 48px;
            --font-size-4xl: 64px;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 600;
            --font-weight-bold: 700;
            --line-height-tight: 1.2;
            --line-height-normal: 1.5;
            --line-height-loose: 170%;
            --letter-spacing-tight: -0.01em;
            --letter-spacing-normal: 0;
            --letter-spacing-wide: 0.05em;
            --letter-spacing-wider: 0.1em;
            
            /* Spacing */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 24px;
            --space-lg: 32px;
            --space-xl: 48px;
            --space-2xl: 64px;
            --space-3xl: 80px;
            --space-4xl: 100px;
            --space-5xl: 120px;
            --space-6xl: 160px;
            
            /* Border Radius */
            --radius-sm: 4px;
            --radius-base: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            
            /* Shadows and Glows */
            --glow-soft: 0 0 20px rgba(255, 255, 255, 0.1);
            --glow-medium: 0 0 30px rgba(255, 255, 255, 0.2);
            --glow-strong: 0 0 40px rgba(255, 255, 255, 0.3);
            
            /* Animation */
            --duration-fast: 150ms;
            --duration-normal: 300ms;
            --duration-slow: 600ms;
            --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
        

}

* {
margin: 0;
padding: 0;
box-sizing: border-box;

}

html, body {
width: 100%;
height: 100%;
overflow-x: hidden;

}

body {
font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
background-color: var(--background);
color: var(--text-dark);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

}

#app {
min-height: 80vh;
position: relative;

}

/* Page Transitions */

.page {
display: none;
opacity: 0;
transform: translateY(20px);
transition: var(--transition);
min-height: 100vh;
padding: 40px 20px;

}

.page.active {
display: block;
opacity: 1;
transform: translateY(0);
animation: fadeInUp 0.5s ease-out;

}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);

}

to {
opacity: 1;
transform: translateY(0);

}

}

/* Container */

.container {
max-width: 600px;
margin: 0 auto;
width: 100%;

}

/* Typography */

.tribal-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 16px;
letter-spacing: 0.05em;
line-height: 1.2;

}

.section-title {
font-size: 1.8rem;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 12px;

}

.subtitle {
font-size: 1.1rem;
color: var(--secondary-color);
margin-bottom: 24px;
font-weight: 400;

}

.vision-text {
font-size: 1.3rem;
line-height: 1.8;
margin-bottom: 32px;
color: var(--text-dark);
font-weight: 500;

}

.agree {
font-size: 0.7rem;
line-height: 1.4;
padding-top: 10px;
margin-bottom: 32px;
color: var(--text-dark);
opacity: 0.5;
font-weight: 100;
text-align:center;
width:280px;
margin:0 auto;

}

.purpose {
font-size: 0.8rem;
line-height: 1.4;
padding-top: 30px;
margin-bottom: 32px;
color: var(--text-dark);
opacity: 0.7;
font-weight: 100;
text-align:left;
margin:0 auto;

}

.description {
font-size: 1rem;
line-height: 1.8;
color: var(--text-dark);
margin-bottom: 32px;
opacity: 0.9;

}

/* Alignment Classes */

.centered {
text-align: center;

}

.left-aligned {
text-align: left;

}

/* Header */

.page-header {
margin-bottom: 48px;

}

/* Progress Bar */

.progress-bar {
width: 100%;
height: 8px;
background-color: var(--accent-color);
border-radius: 4px;
overflow: hidden;
margin-bottom: 16px;

}

.progress-fill {
height: 100%;
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
width: 0;
transition: width 0.3s ease;

}

.progress-text {
font-size: 0.9rem;
color: var(--secondary-color);
margin-bottom: 32px;
font-weight: 600;

}

/* Question Container */

.question-container {
margin-bottom: 40px;

}

.question-text {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 32px;
line-height: 1.6;
text-align: center;

}

/* Choices */

.choices {
display: flex;
flex-direction: column;
gap: 16px;

}

.choice-btn {
background-color: var(--card-background);
border: 2px solid var(--accent-color);
border-radius: var(--border-radius);
padding: 20px 24px;
font-size: 1.1rem;
color: var(--text-dark);
cursor: pointer;
transition: var(--transition);
text-align: left;
min-height: 70px;
display: flex;
align-items: center;
box-shadow: 0 2px 8px var(--shadow);
position: relative;
overflow: hidden;

}

.choice-btn::before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 4px;
height: 100%;
background: var(--primary-color);
transform: scaleY(0);
transition: transform 0.3s ease;

}

.choice-btn:hover {
border-color: var(--primary-color);
box-shadow: 0 4px 16px var(--shadow-hover);
transform: translateX(4px);

}

.choice-btn:hover::before {
transform: scaleY(1);

}

.choice-btn:active {
transform: translateX(2px) scale(0.98);

}

.choice-btn.selected {
background-color: var(--accent-color);
border-color: var(--primary-color);
font-weight: 600;

}

/* Buttons */

.btn {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  min-width: 200px;
  min-height: 56px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}

/* CTAボタン強調版 */
.btn-primary {
  background-color: #FFFFFF;              /* 純白背景で最大コントラスト */
  color: #0D0D0D;                         /* 黒文字ではっきり読める */
  font-weight: 700;                       /* 太字で存在感UP */
  border-radius: 999px;                   /* カプセル型で「押せる」感を強調 */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.3),   /* 薄い外枠でボタンを浮かせる */
    0 8px 24px rgba(0, 0, 0, 0.7);        /* 深いシャドウで立体感 */
}

.btn-primary:hover {
  background-color: #F0F0F0;              /* ホバー時に僅かに暗く */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.8);       /* シャドウを強くして浮き上がる */
  transform: translateY(-2px);            /* 上に浮く動き */
}

.btn-primary:active {
  transform: translateY(0);                /* 押した瞬間に沈む */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.65);
}


/* CTAボタン強調版 */
.btn-primary2 {
  background-color: #000000;              /* 純白背景で最大コントラスト */
  color: #D0D0D0;                         /* 黒文字ではっきり読める */
  font-weight: 700;                       /* 太字で存在感UP */
  border-radius: 999px;                   /* カプセル型で「押せる」感を強調 */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.3),   /* 薄い外枠でボタンを浮かせる */
    0 8px 24px rgba(0, 0, 0, 0.7);        /* 深いシャドウで立体感 */
}

.btn-primary2:hover {
  background-color: #0F0F0F;              /* ホバー時に僅かに暗く */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.4),
    0 10px 28px rgba(0, 0, 0, 0.8);       /* シャドウを強くして浮き上がる */
  transform: translateY(-2px);            /* 上に浮く動き */
}

.btn-primary2:active {
  transform: translateY(0);                /* 押した瞬間に沈む */
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.65);
}



.btn-secondary {
background-color: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
margin-left: 12px;

}

.btn-secondary:hover {
background-color: var(--accent-color);

}

/* Action Area */

.action-area {
margin-top: 40px;
margin:0 auto;
text-align: center;

}

/* Form */

.email-form {
max-width: 500px;
margin: 0 auto;

}

.form-group {
margin-bottom: 24px;

}

.form-label {
display: block;
font-size: 0.95rem;
font-weight: 600;
color: var(--text-dark);
margin-bottom: 8px;
text-align: left;

}

.form-control {
width: 100%;
padding: 16px;
font-size: 1rem;
border: 2px solid var(--accent-color);
border-radius: var(--border-radius);
background-color: var(--card-background);
color: var(--text-dark);
transition: var(--transition);
min-height: 56px;

}

.form-control:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(232, 232, 232, 0.1);

}

/* Result Page */

.result-title {
font-size: 3rem;
margin-bottom: 24px;

}

.result-description {
font-size: 1.2rem;
line-height: 1.9;
margin-bottom: 40px;
color: var(--text-dark);

}

.result-details {
background-color: var(--card-background);
padding: 32px;
border-radius: var(--border-radius);
border: 2px solid var(--accent-color);
margin-bottom: 40px;

}

.result-details h3 {
font-size: 1.3rem;
color: var(--primary-color);
margin-bottom: 20px;

}

.score-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid var(--accent-color);

}

.score-item:last-child {
border-bottom: none;

}

.score-label {
font-weight: 600;
color: var(--text-dark);

}

.score-value {
font-size: 1.2rem;
font-weight: 700;
color: var(--secondary-color);

}

/* Loading Overlay */

.loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(13, 13, 13, 0.95);
display: none;
justify-content: center;
align-items: center;
flex-direction: column;
z-index: 1000;

}

.loading-overlay.active {
display: flex;

}

.spinner {
width: 50px;
height: 50px;
border: 4px solid var(--accent-color);
border-top-color: var(--primary-color);
border-radius: 50%;
animation: spin 1s linear infinite;
margin-bottom: 16px;

}

@keyframes spin {
to { transform: rotate(360deg); }

}

.loading-overlay p {
font-size: 1.1rem;
color: var(--primary-color);
font-weight: 600;

}

/* Responsive Design */

@media (max-width: 768px) {

.tribal-title {
font-size: 2rem;

}

.section-title {
font-size: 1.5rem;

}

.question-text {
font-size: 1.3rem;

}

.choice-btn {
padding: 18px 20px;
font-size: 1rem;
min-height: 60px;

}

.btn {
padding: 14px 32px;
font-size: 1rem;
min-width: 180px;

}

.btn-secondary {
margin-left: 0;
margin-top: 12px;

}

.result-title {
font-size: 2.2rem;

}

.result-details {
padding: 24px;

}

.page {
padding: 24px 6px;

}

}

@media (max-width: 480px) {

.tribal-title {
font-size: 1.8rem;

}

.vision-text {
font-size: 1.1rem;

}

.agree {
font-size: 0.6rem;

}

.question-text {
font-size: 1.2rem;

}

.choice-btn {
padding: 16px 18px;
font-size: 0.95rem;

}

.btn {
width: 100%;
min-width: auto;

}

.result-title {
font-size: 1.8rem;

}

}

/* ID折り返し */
#diagnosisId{
	overflow-wrap: break-word;
	word-wrap: break-word;
}


/* 更に表示ボタンのデザイン */
#button-container {
  /* 親要素の幅いっぱいに広げ、Flexboxで子要素を中央に配置 */
  width: 100%;
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  margin-top: 30px; /* 上部に余白を設定 */
  margin-bottom: 30px; /* 下部に余白を設定 */
}

.load-more-btn {
  /* サイズと形状 */
  padding: 12px 30px;
  font-size: 16px; 
  font-weight: bold;
  border-radius: 6px; /* 角を少し丸くする */
  cursor: pointer;
  border: none; /* 境界線は使用しない（グラデーションを活かすため） */
  
  /* グラデーション背景（黒〜濃いグレー） */
  background-image: linear-gradient(to top, #1a1a1a, #333333); 
  
  /* 文字色 */
  color: #ffffff; /* 白い文字 */
  
  /* 影（黒い背景にボタンを浮き上がらせる） */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
  
  /* アニメーション */
  transition: all 0.3s ease;
}

/* マウスオーバー時のスタイル (ホバーエフェクト) */
.load-more-btn:hover {
  /* ホバーで背景をアクセントカラーのグラデーションに変化させる */
  background-image: linear-gradient(to top, #1e90ff, #50bfff); /* 青系のグラデーション */
  color: #ffffff;
  /* 影を強くして、押せる感じを強調 */
  box-shadow: 0 6px 15px rgba(30, 144, 255, 0.5); 
}

/* 押したときのスタイル (アクティブエフェクト) */
.load-more-btn:active {
  transform: translateY(1px); /* 少し押し込むような効果 */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}


/*  誓いの言葉  */
.pledge-comments {
    max-width: 700px;
    margin: 64px auto 0;
    padding-top: 48px;
    border-top: 1px solid rgba(234, 234, 234, 0.2);
    text-align: left;
}

.pledge-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 0.05em;
}

.pledge-item {
    padding: 32px 48px;
    margin-bottom: 32px;
    border-left: 3px solid rgba(234, 234, 234, 0.2);
    background: #FFFFFF;
    border-radius: 12px;
    transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.pledge-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* 名前・年齢・都道府県（横並び） */
.pledge-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pledge-role-icon{
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(21, 21, 21, 0.7);	
}

.pledge-name {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: rgba(21, 21, 21, 0.8);
}

.pledge-meta-inline {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: rgba(21, 21, 21, 0.7);
}

.pledge-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 11px;
    color:  rgba(21, 21, 21, 0.7);
}

.pledge-age,
.pledge-prefecture {
    letter-spacing: 0;
}

.pledge-separator {
    opacity: 0.5;
}

.pledge-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 17px;
    line-height: 170%;
    color: #0a0a0a;
}

/* 4項目の詳細情報 */
.pledge-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding:24px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.pledge-detail-item {
    display: flex;
    gap: 8px;
    line-height: 1.5;
}

.pledge-detail-label {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #151515;
    min-width: 80px;
    flex-shrink: 0;
}

.pledge-detail-text {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: rgba(21, 21, 21, 0.7);
}

.pledge-detail-role {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #151515;
    padding: 2px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    display: inline-block;
}

/* メッセージ欄 + 覚悟レベルバッジ */
.pledge-message-container {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pledge-commitment-badge {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 110px;
    letter-spacing: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.level-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
}

.level-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #FFFFFF;
}

.level-3 {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    color: #FFFFFF;
    font-weight: 700;
}

.pledge-message {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 17px;
    line-height: 170%;
    color: #0a0a0a;
    padding: 24px;
    background: rgba(234, 234, 234, 0.05);
    border-radius: 8px;
    border-left: 2px solid rgba(21, 21, 21, 0.15);
    flex: 1;
}


/* 誓いの言葉（スマホ） */
    .pledge-meta {
        font-size: 14px;
    }

    .pledge-item {
        padding: 24px 32px;
    }


    .pledge-meta-inline {
        font-size: 11px;
    }

    .pledge-detail-label {
        min-width: 70px;
        font-size: 11px;
    }

    .pledge-detail-text,
    .pledge-detail-role {
        font-size: 11px;
    }

    .pledge-message-container {
        flex-direction: column;
        gap: 16px;
    }

    .pledge-commitment-badge {
        width: 100%;
        min-width: auto;
        font-size: 10px;
    }

    .pledge-message {
        font-size: 15px;
    }

        }


.pledge-comments{
    text-align:center;
}




        /* ========================================
           フッター
        ======================================== */
        .footer {
            background: #000;
            color: #fff;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .footer-links {
            display: inline;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 0.05em;
            margin-top: 20px;
        }

/* 有機線 */
#organic-line {
    position: fixed;
    top: 0px;
    left: 0px;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0.6;
    filter: blur(1px);
}

li{
    font-weight: 600;
}


/* ========================================
   学習パターン適用：白背景⇔黒背景切り替え
======================================== */

/* 白背景セクション */
.section-light {
    background: linear-gradient(180deg, #FAFAFA, #F5F5F5);
    color: #1A1A1A;
    width:100%;
    padding: 60px 40px;
    border-radius: 0px;
    margin-bottom: 20px;
}

.section-light .section-title {
    color: #151515;
}

.section-light .description {
    color: #1A1A1A;
    opacity: 1;
}

/* 黒背景セクション */
.section-dark {
    background: #0D0D0D;
    color: #F5F5F5;
    padding: 60px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* ハイライトボックス（白背景用） */
.highlight-box {
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.03), rgba(21, 21, 21, 0.06));
    border-left: 3px solid #151515;
    padding: 32px;
    border-radius: 8px;
    margin-top: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ハイライトボックス（黒背景用） */
.highlight-box-dark {
    background: linear-gradient(135deg, rgba(234, 234, 234, 0.03), rgba(234, 234, 234, 0.06));
    border-left: 3px solid #E8E8E8;
    padding: 32px;
    border-radius: 8px;
    margin-top: 32px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-box-dark:hover {
    transform: scale(1.01);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}


/* 5つの道リスト */
.path-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.path-item {
    background: rgba(26, 26, 26, 0.5);
    padding: 24px;
    border-radius: 8px;
    border-left: 3px solid rgba(232, 232, 232, 0.3);
    transition: all 0.3s ease;
}

.path-item:hover {
    border-left-color: #E8E8E8;
    background: rgba(26, 26, 26, 0.7);
    transform: translateX(4px);
}

.path-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #E8E8E8;
    margin-bottom: 12px;
}

.path-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #F5F5F5;
    opacity: 0.9;
    margin-bottom: 8px;
}

.path-keywords {
    font-size: 0.9rem;
    color: #A0A0A0;
    font-style: italic;
}

/* 診断機能リスト */
.diagnostic-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.diagnostic-features li {
    padding: 12px 0 12px 24px;
    position: relative;
    color: #1A1A1A;
    font-size: 1rem;
    line-height: 1.8;
}

.diagnostic-features li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #151515;
    font-weight: bold;
}

.sacred-quote {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-wide);
    text-align: center;
    margin: var(--space-6xl) auto;
    padding: var(--space-4xl) var(--space-lg);
    max-width: 800px;
    box-shadow: var(--glow-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.sacred-quote, .sacred-manifesto {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    line-height: 2.2;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 100px auto 140px auto;
    background: linear-gradient(180deg, rgba(234,234,234,0.03), rgba(234,234,234,0.06));
    border-radius: 8px;
    padding: 80px 30px;
    transition: all 1.4s ease;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .section-light,
    .section-dark {
        padding: 40px 24px;
    }
    
    .highlight-box,
    .highlight-box-dark {
        padding: 24px;
    }
    
    .path-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-light,
    .section-dark {
        padding: 32px 12px;
    }
    
    .path-title {
        font-size: 1.1rem;
    }
}



/* ========================================
   タイプミス提案ボックス
======================================== */
/* タイプミス提案ボックス */
.suggestion-box {
    min-height: 0;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* 提案メッセージのデザイン */
.suggestion-message {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    animation: fadeIn 0.3s ease-out;
}

/* 修正案リンクのデザイン */
.suggestion-link {
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: all 0.2s ease;
}

.suggestion-link:hover {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.5);
}

/* ライトモード対応 */
.sec-light-1 .suggestion-message,
.sec-light-2 .suggestion-message,
.sec-light-3 .suggestion-message {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.sec-light-1 .suggestion-link,
.sec-light-2 .suggestion-link,
.sec-light-3 .suggestion-link {
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

