        /* 新規追加・上書き用のCSS */
        .fv-section-jelly {
            position: relative;
            text-align: center;
            padding: 120px 4% 140px;
            overflow: hidden;
            background-color: #fdf5eb;
        }

        .fv-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .fv-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9));
            z-index: 1;
        }

        .fv-title-jelly {
            font-size: 44px;
            font-weight: 900;
            color: #d94a00;
            margin-bottom: 24px;
            line-height: 1.5;
            text-shadow: 0 2px 5px rgba(255, 255, 255, 0.9);
        }

        .fv-sub-jelly {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 40px;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.7);
            display: inline-block;
            padding: 15px 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .cta-btn-jelly {
            display: inline-block;
            color: #ff9b33;
            font-size: 20px;
            font-weight: bold;
            padding: 20px 50px;
            border-radius: 50px;
            box-shadow: 0 6px 15px rgba(243, 130, 0, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: solid 1px #ff9b33;
        }



        @keyframes shine {
            100% {
                left: 150%;
            }
        }

        .cta-btn-jelly:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(243, 130, 0, 0.6);
            color: #ff9b33;
        }

        .problem-section {
            background-color: #fffaf4;
            padding: 80px 4%;
            text-align: center;
        }

        .problem-cards {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .problem-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 12px;
            width: 30%;
            min-width: 280px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--main-color);
            text-align: left;
            font-weight: bold;
            font-size: 16px;
            position: relative;
        }

        .problem-card::before {
            content: "?";
            display: block;
            width: 30px;
            height: 30px;
            background: var(--main-color);
            color: #fff;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            position: absolute;
            top: -15px;
            left: 20px;
        }

        .problem-solution {
            font-size: 24px;
            font-weight: 900;
            color: #d94a00;
            background: #fff;
            padding: 20px 40px;
            display: inline-block;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(217, 74, 0, 0.15);
            border: 2px solid var(--accent-color);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            position: relative;
            border-left: 4px solid var(--accent-color);
        }

        .review-card::before {
            content: "“";
            font-size: 70px;
            color: var(--accent-color);
            position: absolute;
            top: -5px;
            left: 20px;
            font-family: serif;
            opacity: 0.5;
            line-height: 1;
        }

        .review-text {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-top: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .review-meta {
            text-align: right;
            color: var(--main-color);
            font-size: 14px;
            font-weight: bold;
        }

        .product-item {
            display: block;
            text-decoration: none;
            color: inherit;
            width: 30%;
            min-width: 280px;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: 0.3s;
            margin: 0 15px;
        }

        .product-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .product-item img {
            border-radius: 8px;
            margin-bottom: 20px;
            height: 220px;
            object-fit: cover;
            width: 100%;
        }

        .product-item h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--main-color);
            font-weight: 900;
        }

        .product-item .price {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        @media screen and (max-width: 768px) {
            .fv-title-jelly {
                font-size: 28px;
            }

            .fv-sub-jelly {
                font-size: 16px;
                padding: 12px 15px;
            }

            .problem-card,
            .product-item {
                width: 100%;
            }

            .problem-solution {
                font-size: 18px;
                padding: 15px 25px;
            }

            .fv-section-jelly {
                padding: 80px 4% 100px;
            }
        }

        /* タブコンテナ用 */
        .product-tabs-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 15px;
        }

        .tab-btn {
            background-color: #fff;
            border: 2px solid var(--main-color);
            color: var(--main-color);
            padding: 12px 30px;
            font-size: 16px;
            font-weight: bold;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .tab-btn.active {
            background-color: var(--main-color);
            color: #fff;
            border-color: var(--main-color);
        }

        .tab-btn:hover {
            background-color: var(--main-color);
            color: #fff;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.4s;
        }

        .tab-content.active {
            display: block;
        }

        /* サブタブ (用途から選ぶ) */
        .sub-tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .sub-tab-btn {
            background-color: transparent;
            border: none;
            border-bottom: 3px solid transparent;
            color: #777;
            padding: 8px 15px;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .sub-tab-btn.active {
            color: #fff;
            background-color: var(--main-color);
            border-bottom: none;
            border-radius: 50px;
        }

        /* ランキングスライダー用 */
        .ranking-slider-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            color: var(--main-color);
            border: 2px solid var(--main-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 20px;
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .slider-btn:hover {
            background: var(--main-color);
            color: #fff;
        }

        .slider-btn.prev-btn {
            left: -15px;
        }

        .slider-btn.next-btn {
            right: -15px;
        }

        @media screen and (max-width: 768px) {
            .slider-btn.prev-btn {
                left: 0px;
            }

            .slider-btn.next-btn {
                right: 0px;
            }
        }

        @media screen and (max-width: 500px) {
            .slider-btn {
                display: none;
            }

            /* 500px以下は横2つ表示（スワイプスクロール対応） */
            .product-tabs-container .ranking-slider .product-item,
            .product-tabs-container .product-lineup .product-item {
                width: 45%;
                flex: 0 0 45%;
                margin: 0 5px;
                padding: 15px 10px;
            }

            .product-tabs-container .product-item img {
                margin-bottom: 10px;
            }

            .product-tabs-container .product-item h4 {
                font-size: 13px;
                margin-bottom: 8px;
            }

            .product-tabs-container .product-item .price {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .product-tabs-container .cta-btn-jelly {
                padding: 8px 10px !important;
                font-size: 12px !important;
            }

            .product-tabs-container .rank-badge {
                width: 40px;
                height: 40px;
                font-size: 14px;
                top: -10px;
                left: -10px;
            }
        }

        .ranking-slider,
        .product-lineup {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 5px;
            padding: 20px 5px 30px 15px;
            -ms-overflow-style: none;
            /* IE and Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        .ranking-slider::-webkit-scrollbar,
        .product-lineup::-webkit-scrollbar {
            display: none;
        }

        .ranking-slider .product-item,
        .product-lineup .product-item {
            flex: 0 0 auto;
            width: 30%;
            min-width: 270px;
            scroll-snap-align: center;
            position: relative;
            margin: 0 14px;
        }

        .rank-badge {
            position: absolute;
            top: -15px;
            left: -15px;
            width: 50px;
            height: 50px;
            background: #ffb74d;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 900;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 10;
            border: 3px solid #fff;
        }

        .rank-badge.rank-1 {
            background: #ffd700;
            color: #b8860b;
        }

        .rank-badge.rank-2 {
            background: #e0e0e0;
            color: #555;
        }

        .rank-badge.rank-3 {
            background: #d28c5a;
            color: #fff;
        }

        @media screen and (max-width: 768px) {

            .ranking-slider .product-item,
            .product-lineup .product-item {
                width: 85%;
                min-width: unset;
                flex: 0 0 85%;
            }
        }


        .sub-tab-content {
            display: none;
            animation: fadeIn 0.4s;
        }

        .sub-tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 動画用レスポンシブコンテナ */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin: 20px auto 30px;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .reason-text-box {
            text-align: left;
            background: #fffaf4;
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--main-color);
            line-height: 1.8;
            font-size: 15px;
            color: #333;
        }

        .reason-text-box p {
            margin-bottom: 15px;
        }

        .reason-text-box p:last-child {
            margin-bottom: 0;
        }

        @media screen and (max-width: 768px) {
            .reason-text-box {
                padding: 20px 15px;
                font-size: 14px;
            }
        }

        /* 味わいチャート */
        .flavor-section {
            background-color: var(--white);
            padding: 40px 4%;
            text-align: center;
        }

        .flavor-map-container {
            width: 100%;
            max-width: 380px;
            margin: 40px auto;
            position: relative;
            background: #fffaf4;
            border: 2px solid var(--accent-color);
            border-radius: 20px;
            aspect-ratio: 1 / 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .flavor-axis-x {
            position: absolute;
            top: 50%;
            left: 5%;
            right: 5%;
            height: 2px;
            background: #d94a00;
            opacity: 0.3;
        }

        .flavor-axis-y {
            position: absolute;
            left: 50%;
            top: 5%;
            bottom: 5%;
            width: 2px;
            background: #d94a00;
            opacity: 0.3;
        }

        .flavor-label {
            position: absolute;
            font-weight: 900;
            color: #d94a00;
            font-size: 14px;
            background: #fffaf4;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .flavor-label.top {
            top: -5%;
            left: 50%;
            transform: translateX(-50%);
        }

        .flavor-label.bottom {
            bottom: -5%;
            left: 50%;
            transform: translateX(-50%);
        }

        .flavor-label.left {
            left: 0%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .flavor-label.right {
            right: 0%;
            top: 50%;
            transform: translate(50%, -50%);
        }

        .flavor-dot {
            position: absolute;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            z-index: 10;
            cursor: pointer;
        }

        /* 吹き出しのスタイル */
        .flavor-tooltip {
            position: absolute;
            bottom: calc(100% + 5px);
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            background: #fff;
            color: #333;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            line-height: 1.4;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            border: 2px solid var(--main-color);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 100;
            text-align: left;
            font-weight: normal;
        }

        .flavor-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-width: 6px;
            border-style: solid;
            border-color: var(--main-color) transparent transparent transparent;
        }

        .flavor-dot:hover .flavor-tooltip,
        .flavor-dot.active .flavor-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: calc(100% + 10px);
        }

        .dot-circle {
            width: 20px;
            height: 20px;
            background: var(--main-color);
            border: 3px solid #fff;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .dot-text {
            font-size: 12px;
            font-weight: bold;
            background: rgba(255, 255, 255, 0.9);
            padding: 2px 6px;
            border-radius: 8px;
            white-space: nowrap;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .flavor-dot:hover,
        .flavor-dot.active {
            z-index: 9999;
        }

        .flavor-dot:hover .dot-circle,
        .flavor-dot.active .dot-circle {
            transform: scale(1.2);
            background: #d94a00;
        }

        .flavor-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            max-width: 900px;
            margin: 50px auto 0;
            text-align: left;
        }

        .flavor-item {
            background: #fff;
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 5px solid var(--main-color);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .flavor-item:hover,
        .flavor-item.active {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background-color: #fffaf4;
        }

        .flavor-item-img {
            width: 45px;
            height: 45px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .flavor-item-content {
            flex: 1;
        }

        .flavor-name {
            font-size: 16px;
            font-weight: 900;
            color: var(--main-color);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .flavor-item-content p {
            font-size: 12px;
            margin: 0;
            line-height: 1.4;
        }

        .flavor-badge {
            font-size: 10px;
            background: var(--accent-color);
            color: #b75e00;
            padding: 2px 6px;
            border-radius: 20px;
            font-weight: bold;
        }

        /* スムーススクロール */
        html {
            scroll-behavior: smooth;
        }


        /* 右固定ナビゲーション */
        .fixed-side-banner {
            position: fixed;
            top: 40%;
            right: 0px;
            transform: translateY(-50%);
            z-index: 8000;
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 2px solid var(--accent-color);
            border-right: none;
            border-radius: 12px 0 0 12px;
            box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .fixed-side-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px 8px;
            text-decoration: none;
            color: var(--main-color);
            font-size: 13px;
            font-weight: bold;
            writing-mode: vertical-rl;
            text-orientation: upright;
            letter-spacing: 2px;
            border-bottom: 2px solid #ffe0b2;
            transition: all 0.3s ease;
            min-height: 100px;
        }

        .fixed-side-btn:last-child {
            border-bottom: none;
        }

        .fixed-side-btn:hover {
            background: #fffaf4;
            color: #d94a00;
        }

        .fixed-side-btn.btn-cart {
            background: #ff9800;
            color: #fff;
            font-size: 14px;
        }

        .fixed-side-btn.btn-cart:hover {
            background: #e65100;
        }

        @media screen and (max-width: 768px) {
            .fixed-side-banner {
                transform: scale(0.85) translateY(-50%);
                transform-origin: right center;
            }
        }

        /* 定期便バナー用 */
        .sub-banner-title {
            font-size: 26px;
            color: #d94a00;
            font-weight: 900;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .sub-banner-list {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .sub-banner-item {
            width: 30%;
            min-width: 280px;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .sub-banner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
        }

        .sub-banner-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: block;
        }

        /* 価格別で探す */
        .price-search-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            max-width: 900px;
            margin: 0 auto;
        }

        .price-search-btn {
            background: #fff;
            border: 2px solid var(--main-color);
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            width: calc(25% - 12px);
            min-width: 160px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .price-search-btn:hover {
            background: var(--main-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(217, 74, 0, 0.2);
        }

        .price-range {
            font-size: 16px;
            font-weight: 900;
            color: var(--main-color);
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .price-desc {
            font-size: 13px;
            font-weight: bold;
            color: #555;
            transition: color 0.3s ease;
        }

        .price-search-btn:hover .price-range,
        .price-search-btn:hover .price-desc {
            color: #fff;
        }

        @media screen and (max-width: 768px) {
            .price-search-btn {
                width: calc(50% - 15px);
            }
        }
