        /* --- CSS (スタイルシート) --- */
        :root {
            /* ここで色を一括管理できます */
            --primary-color: #B02418; /* アクセント・強調：情熱の赤 */
            --primary-dark: #8a1c12;  /* ホバー時などの濃い赤 */
            --accent-color: #d4af37;  /* サブアクセント：合格のゴールド */
            
            --text-color: #444444;    /* 本文：読みやすいグレー */
            --heading-color: #222222; /* 見出し：引き締まった黒 */
            
            --bg-color: #fcfcfc;      /* 背景：清潔感のある白系 */
            --white: #ffffff;
            --spacing: 16px;
            
            /* Timeline Specific Colors */
            --c-red: #a8322d;
            --c-gold: #b08d36;
            --c-black: #333333;
            --c-blue: #1a1a9e;
            --c-orange: #f25c19;

            --c-strategy: var(--c-red);
            --c-advanced: var(--c-gold);
            --c-past: var(--c-blue);
            --c-10months: var(--c-red);
            --c-private: var(--c-orange);
        }


        /* 全要素にbox-sizing: border-boxを適用して幅計算を直感的にする */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.6;
            padding-top: 60px; /* ヘッダー固定分の余白 */
        }

        a { text-decoration: none; }

        /* --- ヘッダー & ナビゲーション --- */
        .site-header {
            background: var(--white);
            padding: 10px var(--spacing);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: fixed; /* 固定ヘッダーに変更 */
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            z-index: 1000;
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        /* ロゴのスタイルを画像用に調整 */
        .logo-img {
            height: 30px; /* 画像の高さ */
            width: auto;
            display: block;
            margin: 0;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1001;
        }

        .btn-header {
            background: #06c755; /* LINEカラー */
            color: white;
            font-size: 0.8rem;
            padding: 8px 14px;
            border-radius: 4px;
            font-weight: bold;
            white-space: nowrap;
        }

        /* PC用ナビゲーション (デフォルト非表示) */
        .pc-nav {
            display: none;
        }
        .pc-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 20px;
        }
        .pc-nav a {
            color: var(--text-color); /* メニューは落ち着いた色 */
            font-weight: bold;
            font-size: 0.9rem;
            transition: color 0.2s;
        }
        .pc-nav a:hover { color: var(--primary-color); }

        /* ハンバーガーボタン */
        .burger-btn {
            display: block;
            width: 30px;
            height: 24px;
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .burger-bar {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--heading-color); /* ハンバーガーは黒で見やすく */
            position: absolute;
            left: 0;
            transition: all 0.3s;
        }
        .burger-bar:nth-child(1) { top: 0; }
        .burger-bar:nth-child(2) { top: 11px; }
        .burger-bar:nth-child(3) { bottom: 0; }

        /* ハンバーガー開閉アニメーション */
        .burger-btn.active .burger-bar:nth-child(1) {
            transform: translateY(11px) rotate(45deg);
        }
        .burger-btn.active .burger-bar:nth-child(2) {
            opacity: 0;
        }
        .burger-btn.active .burger-bar:nth-child(3) {
            transform: translateY(-11px) rotate(-45deg);
        }

        /* スマホ用メニュー (全画面オーバーレイ) */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%; /* 画面外に配置 */
            width: 100%;
            height: 100vh;
            background-color: rgba(255, 255, 255, 0.98);
            z-index: 999;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow-y: auto; /* コンテンツが多い場合にスクロール可能に */
        }
        
        .mobile-menu.active {
            right: 0; /* 画面内にスライドイン */
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            text-align: center;
            width: 100%; /* 幅を確保 */
        }

        .mobile-menu > ul > li {
            margin: 25px 0;
        }

        .mobile-menu > ul > li > a {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--heading-color);
        }

        /* スマホメニュー内のサブメニュー（追加スタイル） */
        .mobile-submenu {
            margin: 5px auto 0;
            background: transparent; /* 背景色を削除 */
            border-radius: 0;
            padding: 0 !important; /* 親のul設定を上書き */
            width: 100%;
            max-width: none;
        }

        .mobile-submenu li {
            margin: 0;
            border-bottom: none;
            padding: 8px 0;
        }
        .mobile-submenu li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .mobile-submenu a {
            font-size: 0.9rem !important; /* 親のa設定を上書き */
            font-weight: normal !important;
            color: #555 !important;
            display: block;
        }
        .mobile-submenu a:hover {
            color: var(--primary-color) !important;
        }

        /* レスポンシブ切り替え (PCサイズ: 768px以上) */
        @media (min-width: 768px) {
            .burger-btn { display: none; }
            .mobile-menu { display: none; }
            .pc-nav { display: block; }
        }

        /* --- ヒーローセクション (更新版) --- */
        .hero {
            background-color: var(--white);
            color: var(--text-color);
            padding: 0;
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            padding: 60px var(--spacing);
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.2rem;
            margin: 10px 0 20px;
            line-height: 1.3;
            color: var(--heading-color); /* 黒系に戻す */
            font-weight: 800;
        }

        .tagline {
            display: inline-block;
            background: var(--primary-color); /* 背景に赤を使用 */
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            margin-bottom: 10px;
            letter-spacing: 0.05em;
        }

        .sub-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            font-weight: bold;
            color: #555;
        }

        .btn-primary {
            display: inline-block;
            background-color: var(--primary-color); /* ボタンは赤 */
            color: var(--white);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(176, 36, 24, 0.3); /* 赤系の影 */
            transition: transform 0.2s, background-color 0.2s;
            cursor: pointer;
            border: none;
        }
        .btn-primary:active { transform: scale(0.98); }
        .btn-primary:hover { background-color: var(--primary-dark); }

        /* --- 画像マーキーアニメーション --- */
        .marquee-wrapper {
            width: 100%;
            overflow: hidden;
            background: #f0f0f0;
            line-height: 0;
        }

        .marquee-content {
            display: flex;
            width: fit-content;
        }

        .marquee-item {
            width: 200px;
            height: 113px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .scroll-left {
            animation: scrollLeft 30s linear infinite;
        }
        .scroll-left:hover { animation-play-state: paused; }

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

        .scroll-right {
            animation: scrollRight 30s linear infinite;
        }
        
        @keyframes scrollRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* --- 講師紹介セクション --- */
        .instructor-section {
            background-color: var(--white);
            padding: 50px var(--spacing);
            text-align: center;
            border-bottom: 1px solid #eee;
            scroll-margin-top: 60px;
        }

        .instructor-wrapper {
            max-width: 700px;
            margin: 0 auto;
            background: #fff;
            border-radius: 12px;
        }

        .instructor-header {
            margin-bottom: 30px;
        }

        .instructor-header h2 {
            font-size: 1.4rem;
            color: var(--heading-color); /* 黒系 */
            margin-bottom: 5px;
        }
        
        .instructor-sub {
            font-size: 0.9rem;
            color: #666;
        }

        .profile-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: left;
            border: 2px solid var(--primary-color); /* 枠線は赤で強調 */
            border-radius: 12px;
            padding: 24px;
            position: relative;
        }

        @media (min-width: 600px) {
            .profile-card {
                flex-direction: row;
                align-items: flex-start;
            }
        }

        .profile-img-area {
            flex-shrink: 0;
            text-align: center;
        }

        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: #ddd;
            object-fit: cover;
            /* border: 3px solid var(--text-color); */
            margin-bottom: 10px;
        }
        
        .instructor-name {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--heading-color);
            display: block;
        }

        .profile-info h3 {
            font-size: 1.1rem;
            margin: 0 0 10px 0;
            color: var(--heading-color);
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
        }

        .check-list li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 8px;
            font-weight: bold;
            font-size: 0.95rem;
            color: #333;
        }

        .check-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            color: var(--primary-color); /* チェックマークは赤 */
            font-weight: bold;
        }

        .univ-list {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            color: #555;
            line-height: 1.5;
        }
        .univ-label {
            font-weight: bold;
            display: block;
            margin-bottom: 4px;
            color: var(--primary-color);
        }

        /* --- タイムライン・スケジュール (バグ修正・レイアウト調整版) --- */
        .timeline-box {
            max-width: 750px;
            margin: 30px auto 0;
            background: #fff;
            padding: 20px 20px 40px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 1px solid #eee;
            overflow-x: auto;
        }

        /* スクロールヒントのスタイル */
        .scroll-hint {
            text-align: center;
            font-size: 0.8rem;
            color: #666;
            margin-top: 10px;
            padding-bottom: 20px;
        }

        .timeline-grid {
            display: grid;
            /* 月(60px) | 5本の矢印を均等割(30+30+30+80) | 試験ボックス用Gap(20) | 試験ボックス(40) | 試験ボックス用Gap(60) | 試験ボックス(20) | 試験ボックス用Gap(40) | 試験ボックス(30) | 試験ボックス用Gap(10) | 右端余白(80) */
            grid-template-columns: 60px 30px 30px 30px 80px 20px 40px 60px 20px 40px 30px 10px 30px;
            /* 1月, 2月, 3月, 4月, 5月〜(ロング), 試験ボックス用Gap, 試験ボックス */
            grid-template-rows: 50px 50px 50px 50px 50px 50px 30px 30px; 
            gap: 0; /* 隙間なしで詰める */
            font-size: 0.8rem;
            min-width: max-content; /* スクロール時に幅を確保 */
            align-items: start;
        }

        /* ヘッダー行 */
        .timeline-header {
            font-weight: bold;
            text-align: center;
            color: var(--heading-color);
            font-size: 0.85rem;
            padding-bottom: 5px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            /* border-right: 1px solid #f0f0f0; */
        }
        .timeline-header:last-child { border-right: none; }

        /* 月ラベル */
        .time-label {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
            background: #f9f9f9;
            border-radius: 4px;
            font-size: 0.75rem;
            height: 90%;
            align-self: center;
        }

        /* 講座バー（コンテナ） */
        .course-bar {
            width: 100%;
            height: 100%;
            position: relative;
            cursor: default;
        }

        /* 線 */
        .cb-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--bar-color);
            transform: translateX(-50%);
        }
        /* 点線 */
        .course-bar.dotted .cb-line {
            background: none;
            border-left: 4px dotted var(--bar-color);
            width: 0;
        }

        /* 始点丸 */
        .cb-start {
            position: absolute;
            left: 50%;
            top: 0px; /* 少し上に被せる */
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--bar-color);
            transform: translateX(-50%);
            z-index: 2;
        }
        /* 始点がある場合は線を少し下から開始 */
        .course-bar:has(.cb-start) .cb-line { top: 0px; }

        /* 終点矢印 */
        .cb-end {
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 0; 
            height: 0; 
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 8px solid var(--bar-color);
            transform: translateX(-50%);
            z-index: 2;
        }
        /* 終点がある場合は線を少し上で終了 */
        .course-bar:has(.cb-end) .cb-line { bottom: 6px; }

        /* 講座名（吹き出し風） */
        /* course-bar-nameをaタグにしたので、aタグのスタイルとして再定義 */
        .course-bar-name {
            position: absolute;
            left: 55%; /* 線の右側に配置 */
            top: 10px; /* デフォルト位置 */
            white-space: nowrap;
            font-weight: bold;
            font-size: 0.9rem;
            color: var(--heading-color);
            background: rgba(255, 255, 255, 0.9);
            padding: 2px 5px;
            line-height: 1.2;
            border-radius: 4px;
            border: 1px solid #eee;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            z-index: 10;
            transition: color 0.2s, background 0.2s; /* ホバー効果を追加 */
        }

        .course-bar-name:hover {
            color: var(--primary-color);
            background: #fff;
            text-decoration: underline;
        }

        /* 色定義 */
        .bar-strategy { --bar-color: var(--c-strategy); }
        .bar-advanced { --bar-color: var(--c-advanced); }
        .bar-past { --bar-color: var(--c-past); }
        .bar-10months { --bar-color: var(--c-10months); }
        .bar-private { --bar-color: var(--c-private); }

        /* 4月の結合部分調整 */
        .course-bar.top-half {
            height: 50%;
            align-self: start;
        }
        .course-bar.bottom-half {
            height: 60%;
            align-self: end;
        }

        /* 試験ボックス */
        .exam-box {
            background: #e8e8e8;
            color: #333;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            font-size: 0.85rem;
            height: 100%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }


        /* --- コンテンツエリア --- */
        .section-container {
            padding: 40px var(--spacing);
            max-width: 600px;
            margin: 0 auto;
            scroll-margin-top: 60px;
        }

        .section-title {
            text-align: center;
            color: var(--heading-color); /* 黒系 */
            margin-bottom: 10px;
        }

        .section-desc {
            text-align: center;
            font-size: 0.9rem;
            margin-bottom: 30px;
            color: #666;
        }

        .course-group-label {
            font-size: 0.9rem;
            color: var(--heading-color);
            margin: 40px 0 15px;
            border-bottom: 2px solid #ddd;
            padding-bottom: 5px;
            font-weight: bold;
        }

        /* カードデザイン */
        .course-card {
            background: var(--white);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            position: relative;
            border: 1px solid #eee;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 8px;
            scroll-margin-top: 70px; /* ヘッダー分を考慮してスクロール位置を調整 */
        }
        
        .course-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border-color: var(--primary-color); /* ホバー時の枠線を赤に */
        }

        .course-card.featured {
            border: 2px solid var(--primary-color);
            background-color: #fcf9f8; /* 薄い赤背景 */
        }

        /* カード上部のメタ情報 */
        .card-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.75rem;
            margin-bottom: 4px;
        }

        .card-badge {
            background: #555;
            color: white;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: bold;
        }
        .card-badge.urgent { background: var(--primary-color); } /* 赤バッジ */
        /* .card-badge.advanced { background: var(--c-gold)} */
        /* .card-badge.recommend { background: var(--accent-color); } */
        /* .card-badge.limit { background: #333; } */
        .card-badge.strategy { background: var(--c-strategy); }
        .card-badge.advanced { background: var(--c-advanced); }
        .card-badge.past { background: var(--c-past); }
        .card-badge.months10 { background: var(--c-10months); }
        .card-badge.private { background: var(--c-private); }
        .card-date {
            color: var(--c-black); /* 日付は赤で強調 */
            font-weight: bold;
            background: #e2e2e2; /* 薄い赤背景 */
            padding: 3px 8px;
            border-radius: 4px;
        }

        .card-title {
            margin: 0;
            font-size: 1.15rem;
            color: var(--heading-color); /* 黒系 */
            line-height: 1.4;
        }

        .card-sub {
            font-size: 0.8rem;
            font-weight: normal;
            color: #666;
            margin-left: 5px;
        }

        .card-tags {
            font-size: 0.8rem;
            color: #666;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .card-tag-item::before {
            content: '•';
            margin-right: 4px;
            /* color: var(--accent-color); */
        }

        /* カード下部のアクションエリア */
        .card-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            border-top: 1px solid #f0f0f0;
            padding-top: 10px;
        }

        .view-detail-link {
            font-size: 0.85rem;
            color: var(--text-color);
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px;
            text-decoration: underline;
            text-decoration-color: #ddd;
        }
        .view-detail-link:hover {
            color: var(--primary-color);
        }

        /* 申し込みボタン */
        .btn-card-apply {
            background: var(--white);
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-card-apply:hover {
            background: #ffebeb; /* 薄い赤 */
        }
        
        .btn-card-apply.featured {
            background: var(--primary-color);
            color: var(--white);
            border: none;
        }
        .btn-card-apply.featured:hover {
            background-color: var(--primary-dark);
        }
        
        /* 申し込みボタン（無効化バージョン） */
        .btn-card-apply.disabled {
            /* background: #e0e0e0; 薄いグレー */
            color: var(--text-color);
            border: 1px solid #c0c0c0;
            /* cursor: not-allowed; */
            /* pointer-events: none; クリックイベントを無効化 */
        }
        /* .btn-card-apply.disabled:hover {
            background: #e0e0e0;
        } */

        /* --- 受講生の声 --- */
        .review-section {
            background-color: #f9f9f9;
            padding: 60px var(--spacing);
            max-width: 900px;
            margin: 0 auto;
            scroll-margin-top: 60px;
        }

        .review-grid {
            /* 1カラムで中央寄せ */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-top: 15px;
        }

        .review-card {
            background: var(--white);
            border-radius: 12px;
            margin: 0 0 10px 0;
            padding: 18px 24px; /* パディングを調整 */
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border: 1px solid #ddd;
            position: relative;
            
            /* 奇数: 左寄せ */
            align-self: flex-start;
            margin-right: auto;
            margin-left: 0;
            width: 100%; /* モバイル調整のため */
            max-width: 100%;
        }
        
        /* 吹き出しのしっぽのデザインをチャット風に変更 */
        /* 奇数番目のしっぽ (左側) */
        .review-card::before {
            /* しっぽの本体 (カード背景色に合わせる) */
            content: '';
            position: absolute;
            bottom: 10px; /* 下部に配置 */
            left: -10px; /* 左側に突き出す */
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--white) transparent transparent; /* 白い三角形 */
            z-index: 10;
            /* 偶数番目のプロパティをリセット */
            right: auto;
            border-width: 10px 10px 10px 0;
        }

        /* 奇数番目のしっぽの枠線 (カードの枠線に合わせる) */
        .review-card::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: -12px; /* 枠線が外側に見えるように調整 */
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 11px 11px 11px 0; /* 少し大きくして枠線にする */
            border-color: transparent #ddd transparent transparent;
            z-index: 9;
            /* 偶数番目のプロパティをリセット */
            right: auto;
            border-width: 11px 11px 11px 0;
        }
        
        /* スマートフォンでの調整 */
        @media (max-width: 600px) {
            /* 吹き出しのしっぽを非表示にし、左右のパディング/マージンで調整 */
            .review-card::before, .review-card::after {
                display: none;
            }
            
            /* モバイルでは吹き出しが画面幅いっぱいに広がる */
            .review-section {
                padding: 40px 10px; /* 左右の余白を減らす */
            }
            .review-grid {
                 width: 100%;
            }
        }
        
        /* 受講者概要フッターのスタイル */
        .review-footer {
            display: block;
            font-size: 0.75rem; /* 小さな文字 */
            color: #888;
            text-align: right; /* 右寄せ */
            margin-top: 10px;
            padding-top: 5px;
            border-top: 1px dashed #eee;
            line-height: 1.2;
        }
        
        /* テキスト内の強調 */
        .review-text b {
            color: var(--primary-color);
            font-weight: 700;
        }

        .review-text {
            font-size: 1rem;
            color: var(--heading-color);
            line-height: 1.6;
            margin: 0;
        }
        /* /--- 受講生の声 ---/ */

        .review-header {
            display: none; /* ヘッダー情報を完全に削除 */
        }

        .review-anon {
            display: none; /* 匿名表記も完全に削除 */
        }

        .review-icon {
            display: none; /* アイコンも完全に削除 */
        }
        
        

        /* --- よくある質問 (FAQ) --- */
        .faq-section {
            padding: 40px var(--spacing);
            max-width: 600px;
            margin: 0 auto;
            margin-bottom: 20px;
            scroll-margin-top: 60px;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }

        .faq-item details summary {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: bold;
            color: var(--heading-color);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            transition: background-color 0.2s;
        }

        .faq-item details summary:hover {
            background-color: #fafafa;
        }

        .faq-item details summary::-webkit-details-marker {
            display: none;
        }

        .faq-item details summary::after {
            content: '+';
            font-size: 1.4rem;
            color: var(--primary-color); /* アイコンは赤 */
            font-weight: 300;
            line-height: 1;
            margin-left: 10px;
        }

        .faq-item details[open] summary::after {
            content: '-';
            color: var(--primary-color);
        }

        .faq-content {
            padding: 0 20px 20px;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.7;
            border-top: 1px solid #f0f0f0;
            margin-top: -5px;
            padding-top: 15px;
        }

        /* --- モーダルウィンドウ --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--white);
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            border-radius: 12px;
            padding: 30px;
            position: relative;
            overflow-y: auto;
            box-sizing: border-box;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transform: translateY(20px);
            transition: transform 0.3s;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #f0f0f0;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: background 0.2s;
        }
        .modal-close-btn:hover { background: #ddd; }

        /* モーダル内のデザイン */
        .modal-header h2 {
            font-size: 1.5rem;
            color: var(--heading-color);
            margin: 0 0 10px;
            line-height: 1.3;
        }
        .modal-tag {
            background: var(--primary-color); /* タグは赤 */
            color: white;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 4px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }
        .modal-desc {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .modal-section { margin-bottom: 25px; }
        .modal-section h3 {
            font-size: 1.1rem;
            color: var(--heading-color);
            border-left: 4px solid var(--primary-color); /* アクセントは赤 */
            padding-left: 10px;
            margin-bottom: 15px;
        }

        /* カリキュラム表 */
        .curriculum-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }
        .curriculum-table th, .curriculum-table td {
            border: 1px solid #ddd;
            padding: 8px 10px;
        }
        .curriculum-table th {
            background: #f8f9fa;
            color: var(--heading-color);
            width: 25%;
            text-align: center;
            font-weight: bold;
        }

        /* 料金ボックス */
        .price-box {
            background: #fffafa; /* ほんのり赤みがかった白 */
            border: 2px solid var(--primary-color); /* 枠線は赤 */
            border-radius: 8px;
            padding: 20px;
            text-align: center;
        }
        .price-row {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        .price-highlight {
            font-size: 1.4rem;
            font-weight: bold;
            color: var(--primary-color); /* 価格は赤 */
        }

        /* モーダルアクションエリア */
        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
        }

        .btn-modal-action {
            display: block;
            width: 100%;
            background: var(--primary-color);
            color: white;
            padding: 16px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: opacity 0.2s;
            margin-top: 0; /* 親コンテナでgap管理 */
        }
        .btn-modal-action:hover { opacity: 0.9; }

        /* サブアクションボタン（詳細を見る） */
        .btn-modal-sub {
            display: block;
            width: 100%;
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 14px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.0rem;
            transition: background 0.2s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .btn-modal-sub:hover {
            background: #ffebeb;
        }

        /* モーダルアクションボタン（無効化バージョン） */
        .btn-modal-action.disabled {
            background: #e0e0e0;
            color: #888;
            cursor: not-allowed;
            pointer-events: none;
            box-shadow: none;
        }
        .btn-modal-action.disabled:hover {
            opacity: 1;
        }

        /* 特徴リスト */
        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .feature-item {
            background: #f8f9fa;
            padding: 10px;
            border-radius: 6px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .feature-icon {
            color: var(--primary-color); /* アイコンは赤 */
            font-size: 1.2rem;
        }
        @media (max-width: 600px) {
            .feature-grid { grid-template-columns: 1fr; }
        }

        /* フッター */
        .site-footer {
            background: #333;
            color: #aaa;
            text-align: center;
            padding: 40px var(--spacing);
            margin-top: 60px;
        }

        .line-cta {
            background: #fff;
            padding: 24px;
            border-radius: 12px;
            margin-bottom: 30px;
            color: #333;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .line-cta p { margin: 0 0 15px; font-weight: bold; font-size: 1.1rem; }

        .btn-line {
            display: block;
            background: #06c755;
            color: white;
            padding: 14px;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
        }

        .copyright { font-size: 0.75rem; opacity: 0.7; }
        
        .info-value.price {
            color: var(--primary-color);
        }