     .product-detail-container {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
        }

        /* ==============================
           タブ切り替えのCSSロジック
           ============================== */
        /* ラジオボタン本体は非表示にする */
        .tab-switch {
            display: none;
        }

        /* タブボタンの横並びメニュー */
        .tab-menu {
            display: flex;
            gap: 8px;
            padding-left:8px;
            border-bottom: 2px solid #333333;
        }

        /* タブボタンのデザイン */
        .tab-label {
            display: block;
            padding: 14px 28px;
            background-color: #1a1a1a;
            color: #888888;
            font-weight: bold;
            font-size: 14px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: skewX(-15deg); /* スポーティーに斜め化 */
            border-top: 3px solid transparent;
            user-select: none;
        }

        /* ボタン内の文字の斜めを打ち消し */
        .tab-label span {
            display: inline-block;
            transform: skewX(15deg);
        }

        .tab-label:hover {
            color: #ffffff;
            background-color: #252525;
        }

        /* 選択されているタブのスタイル設定 */
        #tab-spec:checked ~ .tab-menu label[for="tab-spec"],
        #tab-feature:checked ~ .tab-menu label[for="tab-feature"],
        #tab-package:checked ~ .tab-menu label[for="tab-package"] {
            background-color: #222222;
            color: #ffffff;
            border-top-color: #e60000; /* 選択時に上に赤いライン */
        }

        /* ==============================
           タブコンテンツの表示制御
           ============================== */
        .tab-content-area {
            background-color: #1a1a1a;
            padding: 35px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 3px solid #333333;
            font-size: medium;
        }

        .tab-panel {
            display: none; /* 基本はすべて非表示 */
            line-height: 1.8;
            color: #cccccc;
        }

        /* 選択されたラジオボタンに対応するコンテンツだけを表示 */
        #tab-spec:checked ~ .tab-content-area #panel-spec,
        #tab-feature:checked ~ .tab-content-area #panel-feature,
        #tab-package:checked ~ .tab-content-area #panel-package {
            display: block;
            animation: fadeIn 0.3s ease; /* ふわっと切り替わるアニメーション */
        }

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

        /* ==============================
           コンテンツ内のテーブル＆リスト装飾
           ============================== */
        /* スペック表 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
        }

        .spec-table th, .spec-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #2a2a2a;
            text-align: left;
            font-size: 14px;
        }

        .spec-table th {
            width: 30%;
            color: #ffffff;
            background-color: #222222;
            font-weight: bold;
        }

        /* 特徴・同梱物リスト */
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            padding: 10px 0 10px 25px;
            position: relative;
            border-bottom: 1px solid #2a2a2a;
        }

        .feature-list li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #e60000;
            font-size: 10px;
            top: 13px;
        }

        /* ==============================
           スマートフォン対応
           ============================== */
        @media (max-width: 768px) {
            .tab-menu {
                flex-direction: column;
                gap: 4px;
                border-bottom: none;
            }

            .tab-label {
                transform: none;
                text-align: center;
            }

            .tab-label span {
                transform: none;
            }

            .tab-content-area {
                padding: 20px;
            }

            .spec-table th {
                width: 40%;
            }
        }