 @charset "utf-8";
 /* ベーススタイル */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a{
            text-decoration: none !important;
        }
        .product-details {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
            font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }

        /* レスポンシブフォントサイズ */
        .title-lg { font-size: clamp(20px, 4vw, 28px); }
        .title-md { font-size: clamp(18px, 3.5vw, 22px); }
        .title-sm { font-size: clamp(14px, 3vw, 18px); }
        .text-md { font-size: clamp(14px, 2.5vw, 16px); }
        .text-sm { font-size: clamp(13px, 2.5vw, 15px); }
        .text-xs { font-size: clamp(12px, 2.2vw, 14px); }

        /* 商品詳細画像セクション */
        .product-image-section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            width: 100%;
            overflow: hidden;
        }

        .product-image-section img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* グリッドレイアウト */
        .product-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        /* グリッドレイアウト 冬は2×2 */
        .product-info-grid-winter {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        /* インフォカード */
        .info-card {
            background: white;
            padding: 20px;
        }

        .info-card__header {
            font-weight: inherit;
            color: #fff;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #195178 !important;
            padding: 4px 8px !important;
        }
        .feature .info-card h3::before {
            display: none;
        }
        .feature h4:before {
            content: none !important;
        }

        /* 商品特徴 */
        .product-description {
            color: #000;
            line-height: 1.8;
            padding: 0% 3%;
        }

        .highlight {
            background-color: #fffa99;
            font-weight: bold;
        }

        /* 発売時期 */
        .release-date {
            color: #000;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            display: inline-block;
        }

        /* 車種タグ、特長タグ */
        .car-types,.features-link {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .car-type,.feature-link {
            padding: 6px 12px;
            border-radius: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .car-type {
            background: #e7edf2;
            color: #29465d;
            border: 1px solid #d8dde2;
        }
        .feature-link {
            background: #d5e6f5;
            color: #0b3552;         
            border: 1px solid #c0d6e8;
        }
        .car-type::before ,.feature-link::before {
            font-family: "Font Awesome 7 Free" !important;
            font-weight: 900 !important;
            content: "\f02b" !important;
            margin-right: 10px;
            color: #06304e;
        }
        .car-type a,.feature-link a {
            text-decoration: none;
            color: #06304e;
        }
        .car-type:hover ,.feature-link:hover {
            background: #e8f4fd;
            transform: translateY(-3px);
        }
        /* ポイントリスト */
        .points-list {
            list-style: none;
        }

        .points-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 1%;
        }

        .points-list li::before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            font-size: 15px;
            flex-shrink: 0;
            margin-top: 0px;
        }

        /* ラベリング */
        .labeling p {
            font-size: smaller;
        }

        .labeling img {
            width: 100%;
            height: auto;
            padding: 3% 15%;
        }

        /* おすすめリスト */
        .recommendations ul {
            list-style: none;
        }

        .recommendations li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 1%;
            color: #555;
        }

        .recommendations li::before {
            content: "\1F464";
            font-size: 14px;
            flex-shrink: 0;
        }

        /* セクション */
        .section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .section__header {
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #cc0d21;
        }

        /* コラムリンク */
        .column-links {
            display: grid;
            gap: 12px;
        }

        .column-link {
            padding: 15px;
            background: #e4e6ec;
            border-radius: 8px;
            text-decoration: none;
            color: #2c3e50;
            transition: all 0.3s ease;
            line-height: 1.5;
        }

        .column-link:hover {
            background: #e8f4fd;
            transform: translateY(-3px);
        }

        .column-link::before {
            font-family: "Font Awesome 7 Free" !important;
            font-weight: 900 !important;
            content: "\f0c1" !important;
            margin-right: 10px;
        }

        /* 比較テーブル */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin-top: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .comparison-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
            border: 1px solid #ddd;
        }

        .comparison-table th {
            background: #185178;
            color: white;
            padding: 15px 12px;
            text-align: left;
            font-weight: 600;
            position: sticky;
            top: 0;
            z-index: 10;
            border-right: 1px solid #fff;
        }

        .comparison-table th:last-child {
            border-right: none;
        }

        .comparison-table td {
            padding: 15px 12px;
            border-right: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            line-height: 1.5;
        }

        .comparison-table td:last-child {
            border-right: none;
        }
        .comparison-table td:nth-child(2) {
            background: #e6f3ff;
        }
        .comparison-table td:nth-child(2):hover{
            background: #c9d9e7;
        }
        .brand-cell {
            font-weight: 600;
            color: #2c3e50;
            min-width: 120px;
        }

        .product-cell {
            font-weight: 600;
            color: #185178;
            min-width: 150px;
        }
        .product-cell a {
            /*text-decoration: underline;*/
            color: #185178;
        }

        .product-link::after {
            font-family: "Font Awesome 7 Free" !important;
            font-weight: 900 !important;
            content: "\f08e" !important;
            margin-left: 5px;
        }

        /* スクロールバー */
        .comparison-table-wrapper::-webkit-scrollbar {
            height: 8px;
        }

        .comparison-table-wrapper::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .comparison-table-wrapper::-webkit-scrollbar-thumb {
            background: #9d9d9d;
            border-radius: 4px;
        }

        .comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
            background: #1a5178;
        }

        /* レスポンシブデザイン */
        @media (max-width: 768px) {
            .product-details { padding: 10px; }
            .product-image-section { padding: 15px; margin-bottom: 15px; }
            .product-info-grid,.product-info-grid-winter { grid-template-columns: 1fr; gap: 15px; }
            .info-card { padding: 15px; }
            .car-types { gap: 6px; }
            .car-type { padding: 4px 8px; }
            .section { padding: 15px; margin-bottom: 15px; }
            .column-link { padding: 12px; }
            .comparison-table th, .comparison-table td { padding: 10px 8px; }
        }

        @media (max-width: 480px) {
            .product-details { padding: 0; }
            .product-image-section { padding: 12px 0; }
            .info-card { padding: 12px 0; }
            .section { padding: 10px 0 0; }
            .column-link { padding: 10px; }
            .comparison-table { min-width: 500px; }
            .comparison-table th, .comparison-table td { padding: 6px 6px; }
            
            .comparison-table-wrapper::after {
                content: "← スクロールしてください →";
                position: absolute;
                bottom: -25px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 12px;
                color: #666;
                white-space: nowrap;
                display: none;
            }
        }