    /* ==============================
           ヒストリーセクション全体の枠
           ============================== */
        .history-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 0 20px;
        }

        /* セクションタイトル */
        .section-title {
            font-size: 32px;
            color: #ffffff;
            margin-bottom: 50px;
            text-align: center;
            letter-spacing: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* タイトル両脇の赤い装飾ライン */
        .section-title::before,
        .section-title::after {
            content: "";
            display: inline-block;
            width: 40px;
            height: 4px;
            background-color: #e60000;
            transform: skewX(-30deg);
            margin: 0 20px;
        }

        /* ==============================
           タイムライン（縦軸）の構成
           ============================== */
        .timeline {
            position: relative;
            padding-left: 50px; /* 左側にラインを引くための余白 */
        }

        /* 縦に伸びるベースのライン */
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 14px; /* ラインの位置調整 */
            width: 4px;
            background-color: #333333;
        }

        /* ==============================
           タイムラインの各項目
           ============================== */
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }

        /* 最後の項目の下余白を消す */
        .timeline-item:last-child {
            margin-bottom: 0;
        }

        /* 年表の「点（マーカー）」 */
        .timeline-marker {
            position: absolute;
            left: -44px; /* 親のpadding-left分戻してライン上に配置 */
            top: 5px;
            width: 16px;
            height: 16px;
            background-color: #111111;
            border: 4px solid #333333;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 2;
        }

        /* コンテンツ（テキストが入る箱） */
        .timeline-content {
            background-color: #1a1a1a;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-left: 2px solid #333333;
            transition: all 0.3s ease;
        }

        /* 年号（レーシングスタイルで斜めに） */
        .timeline-year {
            font-size: 28px;
            font-weight: bold;
            color: #555555;
            margin-bottom: 10px;
            font-style: italic; /* 斜体でスピード感を */
            transition: color 0.3s ease;
        }

        .timeline-title {
            font-size: 20px;
            color: #ffffff;
            margin: 0 0 15px 0;
            letter-spacing: 1px;
        }

        .timeline-desc {
            color: #aaaaaa;
            line-height: 1.7;
            margin: 0;
            font-size: 15px;
        }

        /* ==============================
           ホバー（マウスオーバー）時のアクション
           ============================== */
        /* アイテムにマウスを乗せると連動して光るギミック */
        .timeline-item:hover .timeline-marker {
            border-color: #e60000;
            background-color: #e60000;
            box-shadow: 0 0 15px rgba(230, 0, 0, 0.8); /* 赤く発光 */
        }

        .timeline-item:hover .timeline-content {
            border-left-color: #e60000; /* 箱の左フチが赤くなる */
            transform: translateX(10px); /* 少し右にスライド */
            background-color: #1f1f1f;
        }

        .timeline-item:hover .timeline-year {
            color: #e60000; /* 年号が赤く染まる */
        }

        /* ==============================
           スマートフォン対応
           ============================== */
        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }
            .section-title::before,
            .section-title::after {
                width: 20px;
                margin: 0 10px;
            }
            .timeline {
                padding-left: 35px;
            }
            .timeline::before {
                left: 7px;
            }
            .timeline-marker {
                left: -33px;
                width: 12px;
                height: 12px;
                border-width: 3px;
            }
            .timeline-content {
                padding: 20px;
            }
        }