

       
       
       
       /* ==============================
           商品紹介セクション（2段組コンテナ）
           ============================== */
        .product-section {
            display: flex;
            align-items: center; /* 縦方向の中央で揃える */
            justify-content: space-between;
            max-width: 1000px; /* 少し幅を絞って見やすく */
            margin: 60px auto;
            padding: 40px;
            background-color: #1a1a1a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            border-bottom: 4px solid #e60000; /* 下部に赤いアクセントライン */
            gap: 40px; /* 左右の余白 */
            box-sizing: border-box;
        }

        /* ==============================
           左側：商品説明（テキスト）
           ============================== */
        .product-info {
            flex: 1; /* 幅を均等に割り当て */
        }

        .product-info h2 {
            font-size: 32px;
            color: #ffffff;
            margin-top: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            letter-spacing: 2px;
        }

        /* 見出しのスピード感ある斜めライン */
        .product-info h2::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 30px;
            background-color: #e60000;
            margin-right: 15px;
            transform: skewX(-20deg);
        }

        .product-info p {
            line-height: 1.8;
            color: #cccccc;
            margin-bottom: 30px;
            font-size: medium;
        }

        /* スポーティーなボタンデザイン */
        .btn-racing {
            display: inline-block;
            background-color: #e60000;
            color: #ffffff;
            text-decoration: none;
            padding: 15px 40px;
            font-size: medium;
            font-weight: bold;
            letter-spacing: 1px;
            transform: skewX(-15deg); /* ボタン全体を斜めに */
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(230, 0, 0, 0.3);
        }

        /* ボタン内のテキストは斜めを打ち消してまっすぐにする */
        .btn-racing span {
            display: inline-block;
            transform: skewX(15deg);
        }

        .btn-racing:hover {
            background-color: #ff1a1a;
            box-shadow: 0 6px 15px rgba(230, 0, 0, 0.5);
        }

        /* ==============================
           右側：商品画像
           ============================== */
        .product-image {
            flex: 1; /* 幅を均等に割り当て */
            display: flex;
            justify-content: center;
        }

        .product-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border: 2px solid #333333; /* 暗いフチをつける */
            box-shadow: 15px 15px 0px rgba(230, 0, 0, 0.1); /* 右下に赤い影のアクセント */
            object-fit: cover;
        }

        /* ==============================
           スマートフォン対応
           ============================== */
        @media (max-width: 768px) {
            .product-section {
                flex-direction: column-reverse; /* スマホでは「画像を上、テキストを下」にする */
                padding: 20px;
                gap: 20px;
                margin: 20px;
            }

            .product-info h2 {
                font-size: 24px;
            }

            .product-image img {
                box-shadow: 10px 10px 0px rgba(230, 0, 0, 0.1);
            }
        }