.title_item {
    margin: 1em auto;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

.title_item span {
    font-size: 15px;
    color: #62b48a;
}

/* ===================================
   CONY スライダー（横サムネ安定版）
   =================================== */

:root {
    --cony-ink: #222;
    --cony-accent: #fffffff3;
    --cony-glass: rgba(255, 255, 255, 0.82);
    --cony-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    --cony-radius: 22px;
}

/* ===== タイトル ===== */

.title_item {
    margin: 1em auto;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
}

.title_item span {
    font-size: 15px;
    color: #62b48a;
}

/* ===== ギャラリー ===== */

.cony-gallery {
    max-width: 820px;
    margin: 32px auto 40px;
}

/* ===== メインスライダー ===== */

.cony-swiper-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--cony-shadow);
}

.cony-swiper-main .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0 !important;
    transition: opacity 0.9s ease;
}

.cony-swiper-main .swiper-slide-active {
    opacity: 1 !important;
}

.cony-main-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #fff;
    transform: scale(1);
    transition: transform 4.5s ease-out;
}

.cony-swiper-main .swiper-slide-active .cony-main-img {
    transform: scale(1.03);
}

/* オートプレイ プログレスバー */
.cony-swiper-main::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,0,0,0.05), rgba(0,0,0,0.2));
    z-index: 10;
    animation: cony-progress 4s linear infinite;
}

@keyframes cony-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== サムネスライダー ===== */

.cony-swiper-thumbs {
    margin-top: 14px;
    padding: 6px 4px;
    box-sizing: border-box;
}

.cony-swiper-thumbs .swiper-wrapper {
    align-items: center;
    /* ✅ 垂直ズレ防止 */
}

.cony-swiper-thumbs .swiper-slide {
    height: 78px;
    /* ✅ サムネイル全体の高さ */
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.cony-thumb {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cony-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ✅ 全体を見せる（潰れない） */
    object-position: center;
    display: block;
}

.cony-thumb:hover img {
    transform: scale(1.04);
}

.cony-swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-2px);
}

.cony-swiper-thumbs .swiper-slide-thumb-active .cony-thumb {
    outline: 2px solid var(--cony-accent);
    outline-offset: 2px;
}

/* ===== ページネーション ===== */

.cony-pagination {
    position: absolute;
    bottom: 12px;
    right: 14px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font: 500 12px/1 "Noto Sans JP", system-ui, sans-serif;
    color: #333;
    z-index: 5;
    letter-spacing: 0.05em;
}

/* ===== ナビボタン ===== */

.cony-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.cony-swiper-main:hover .cony-nav-btn {
    opacity: 1;
}

.cony-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.cony-nav-prev {
    left: 10px;
}

.cony-nav-next {
    right: 10px;
}

.cony-nav-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* ===== グリッド一覧ボタン ===== */

.cony-grid-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cony-grid-btn:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: scale(1.05);
}

/* ===== Pinterest風グリッドポップアップ ===== */

.cony-grid-popup {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #fff;
    overflow-y: auto;
    display: none;
    animation: cony-grid-in 0.35s ease;
}

.cony-grid-popup.is-open {
    display: block;
}

@keyframes cony-grid-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cony-grid-popup__header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.cony-grid-popup__title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.cony-grid-popup__close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
}

.cony-grid-popup__close:hover {
    background: #ddd;
}

.cony-grid-popup__grid {
    columns: 2;
    column-gap: 8px;
    padding: 12px;
    max-width: 960px;
    margin: 0 auto;
}

.cony-grid-popup__item {
    break-inside: avoid;
    margin-bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cony-grid-popup__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cony-grid-popup__item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 640px) {
    .cony-grid-popup__grid {
        columns: 3;
        column-gap: 12px;
        padding: 20px;
    }
    .cony-grid-popup__item {
        margin-bottom: 12px;
    }
}

/* ===== ライトボックス ===== */

.cony-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    justify-content: center;
    align-items: center;
}

.cony-lightbox.is-open {
    display: flex;
}

.cony-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    animation: cony-lb-in 0.3s ease;
}

@keyframes cony-lb-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.cony-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.cony-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cony-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.cony-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cony-lightbox__prev {
    left: 16px;
}

.cony-lightbox__next {
    right: 16px;
}

.cony-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* ===== スマホ調整 ===== */

@media (max-width: 640px) {
    .cony-swiper-thumbs .swiper-slide {
        height: 60px;
    }
    .cony-thumb {
        width: 90px;
        height: 56px;
    }
}

.swiper-slide.swiper-slide-active {
    padding: 0 !important;
}

/* ✅ 1枚目だけ大きくなるバグ修正 */

.cony-swiper-thumbs .swiper-slide:first-child {
    flex: 0 0 auto !important;
    width: 63px !important;
    /* サムネサイズに固定 */
    height: 56px !important;
}

.cony-swiper-thumbs .swiper-slide:first-child .cony-thumb {
    width: 110px;
    height: 80px;
}

.cony-swiper-thumbs .swiper-slide:first-child img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swiper-backface-hidden .swiper-slide {
    padding: 0;
}

/* ===== 料金・送料・セット内容 ===== */

.cony-price {
    max-width: 820px;
    margin: 36px auto 48px;
    text-align: left;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

.price-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #62b48a;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.price-main {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 8px 0 4px;
}

.price-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.65em;
    font-weight: 400;
    margin-right: 8px;
}

.price-discount-badge {
    background: #e25b5b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    margin: 8px auto 12px;
    text-align: center;
    display: table;
    letter-spacing: 0.03em;
}

.price-note {
    text-align: center;
    font-size: 13px;
    color: #ee6d6d;
    margin-bottom: 24px;
}

.price-list {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    margin-bottom: 24px;
}

.price-list dl {
    margin: 14px 0;
}

.price-list dt {
    font-weight: 600;
    color: #333;
    font-size: 15px;
    margin-bottom: 4px;
}

.price-list dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.price-list small {
    font-size: 12px;
    color: #888;
}

.price-link {
    display: inline-block;
    margin-top: 6px;
    color: #4c9f7b;
    font-size: 13px;
    text-decoration: underline;
}

/* ===== カートボタン（リッチオレンジVer.） ===== */

.price-btn-area {
    text-align: center;
    margin-top: 24px;
}

.price-cart-btn {
    position: relative;
    padding: 21px 71px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #ff9a3d, #ff6a00);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: "Noto Sans JP", system-ui, sans-serif;
}

/* 光のグラデーション */

.price-cart-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-cart-btn:hover::before {
    opacity: 1;
}

/* ホバー時の動き */

.price-cart-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 106, 0, 0.55);
}

/* 押したときの感触 */

.price-cart-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.35);
}

/* スマホ微調整 */

/* ===== スマホ微調整 ===== */

@media (max-width: 640px) {
    .price-main {
        font-size: 24px;
    }
    .price-list dt {
        font-size: 14px;
    }
    .price-list dd {
        font-size: 13px;
    }
}

a.note_cart {
    text-align: center;
    margin: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #897362;
}

.fot_fe {
    display: flex;
    max-width: 820px;
    margin: 0.5em auto;
}

.fot_fe a {
    width: 48%;
    height: auto;
    margin: 1%;
}

.fot_fe img {
    width: 100%;
    height: auto;
}

.set_img {
    max-width: 820px;
    margin: 1em auto;
}

.set_img img {
    width: 100%;
    height: auto;
}

/* ==============================
   CONY 情報セクション共通スタイル
   ============================== */

.user_Introduction,
.first_main {
    margin: 28px auto;
    max-width: 860px;
    padding: 0 16px;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    line-height: 1.75;
    color: #333;
}

.list_background {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 22px;
    margin-top: 12px;
    border-left: 5px solid #62b48a;
}

/* ==============================
   セクションタイトル
   ============================== */

.title_first {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0 16px;
}

.title_first img {
    width: 36px;
    height: auto;
}

.title_first h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: 0.04em;
    position: relative;
}

.title_first h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 38%;
    height: 3px;
    background: linear-gradient(90deg, #62b48a, #ff9a3d);
    border-radius: 2px;
}

/* ==============================
   テキスト・段落装飾
   ============================== */

.list_background p {
    margin: 8px 0;
}

.list_background strong {
    font-weight: 700;
    color: #333;
}

.list_background a {
    color: #3a88d3;
    text-decoration: underline;
}

.list_background a:hover {
    color: #ff6a00;
}

/* 注意文（赤） */

p.warning {
    color: #e36b6b;
    font-size: 14px;
    background: rgba(255, 237, 237, 0.6);
    padding: 8px 12px;
    border-left: 4px solid #fb6a6a;
    border-radius: 6px;
}

/* 注意文（青・情報） */

p.info {
    color: #1180a0;
    font-size: 14px;
    background: rgba(229, 247, 253, 0.6);
    padding: 8px 12px;
    border-left: 4px solid #3fbadf;
    border-radius: 6px;
}

/* ==============================
   表スタイル（送料表）
   ============================== */

.table-shipping {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin: 16px 0;
}

.table-shipping div {
    background: #f7faf9;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.table-shipping div:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.table-shipping div strong {
    display: block;
    font-size: 15px;
    color: #333;
}

.table-shipping div span {
    display: block;
    color: #62b48a;
    font-weight: 600;
}

/* ==============================
   レンタル日数カード
   ============================== */

.plan-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 18px 22px;
    margin: 18px 0;
    border-top: 4px solid #62b48a;
}

.plan-box.new {
    border-top: 4px solid #ff9a3d;
}

.plan-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
}

.plan-box img {
    width: 32px;
    height: auto;
}

.plan-box p {
    font-size: 15px;
    color: #333;
    margin-top: 6px;
}

.plan-box strong {
    color: #007ab5;
    font-size: 16px;
}

/* ==============================
   スマホ対応
   ============================== */

@media (max-width: 640px) {
    .title_first h2 {
        font-size: 18px;
    }
    .plan-box h3 {
        font-size: 16px;
    }
    .list_background {
        padding: 16px;
    }
    .table-shipping {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   CONY 情報セクション共通スタイル
   ============================== */

.user_Introduction,
.first_main {
    margin: 28px auto;
    max-width: 860px;
    padding: 0 16px;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    line-height: 1.75;
    color: #333;
}

.list_background {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 20px 22px;
    margin-top: 12px;
    border-left: 5px solid #62b48a;
}

/* ==============================
   セクションタイトル
   ============================== */

.title_first {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0 16px;
}

.title_first img {
    width: 36px;
    height: auto;
}

.title_first h2 {
    font-size: 20px;
    font-weight: 700;
    color: #3a3a3a;
    letter-spacing: 0.04em;
    position: relative;
}

.title_first h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 38%;
    height: 3px;
    background: linear-gradient(90deg, #62b48a, #ff9a3d);
    border-radius: 2px;
}

/* ==============================
   テキスト・段落装飾
   ============================== */

.list_background p {
    margin: 8px 0;
}

.list_background strong {
    font-weight: 700;
    color: #333;
}

.list_background a {
    color: #3a88d3;
    text-decoration: underline;
}

.list_background a:hover {
    color: #ff6a00;
}

/* 注意文（赤） */

p.warning {
    color: #e36b6b;
    font-size: 14px;
    background: rgba(255, 237, 237, 0.6);
    padding: 8px 12px;
    border-left: 4px solid #fb6a6a;
    border-radius: 6px;
}

/* 注意文（青・情報） */

p.info {
    color: #1180a0;
    font-size: 14px;
    background: rgba(229, 247, 253, 0.6);
    padding: 8px 12px;
    border-left: 4px solid #3fbadf;
    border-radius: 6px;
}

/* ==============================
   表スタイル（送料表）
   ============================== */

.table-shipping {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin: 16px 0;
}

.table-shipping div {
    background: #f7faf9;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.table-shipping div:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.table-shipping div strong {
    display: block;
    font-size: 15px;
    color: #333;
}

.table-shipping div span {
    display: block;
    color: #62b48a;
    font-weight: 600;
}

/* ==============================
   レンタル日数カード
   ============================== */

.plan-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 18px 22px;
    margin: 18px 0;
    border-top: 4px solid #62b48a;
}

.plan-box.new {
    border-top: 4px solid #ff9a3d;
}

.plan-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
}

.plan-box img {
    width: 32px;
    height: auto;
}

.plan-box p {
    font-size: 15px;
    color: #333;
    margin-top: 6px;
}

.plan-box strong {
    color: #007ab5;
    font-size: 16px;
}

/* ==============================
   スマホ対応
   ============================== */

@media (max-width: 640px) {
    .title_first h2 {
        font-size: 18px;
    }
    .plan-box h3 {
        font-size: 16px;
    }
    .list_background {
        padding: 16px;
    }
    .table-shipping {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   CONY 商品詳細セクション
=========================== */

.item-detail-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
    font-family: "Noto Sans JP", system-ui, sans-serif;
    color: #333;
    line-height: 1.7;
}

.section-divider {
    margin: 24px auto;
    border: none;
    border-top: 1px solid #eee;
}

/* ===== 見出し部分 ===== */

.section-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2em auto;
}

.section-head img {
    width: 36px;
    height: auto;
}

.section-head h2 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

/* ===== 内容ブロック ===== */

.section-body {
    background: #fdfcfc;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0px 0px 14px 6px rgb(0 0 0 / 5%);
}

/* ===== テキスト ===== */

.main-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.sub-text {
    font-size: 14px;
    color: #444;
    margin: 10px 0;
}

.note {
    font-size: 13px;
    color: #777;
    margin: 6px 0;
}

.note.red {
    color: #f25c5c;
}

/* ===== 強調ボックス ===== */

.alert-box,
.highlight-box {
    text-align: center;
    padding: 10px 14px;
    border-radius: 10px;
    margin: 12px 0;
    font-size: 14px;
}

.alert-box.red {
    background: #fff3f3;
    color: #d33;
}

.highlight-box.green {
    background: #f0faf7;
    color: #229a88;
    font-weight: 600;
}

/* ===== リスト ===== */

.warning-list {
    list-style: disc;
    padding-left: 1.5em;
    font-size: 14px;
    color: #333;
}

/* ===== 画像系 ===== */

.price-table {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
}

.plan-block {
    margin: 20px 0;
    text-align: center;
}

.plan-block img {
    width: 48px;
    height: auto;
}

.plan-block h3 {
    font-size: 17px;
    margin: 8px 0;
}

.blue {
    color: #0082b6;
    font-size: 14px;
    margin: 10px auto;
}

/* ===== リンク ===== */

.link a {
    color: #4c9ae2;
    text-decoration: underline;
    font-size: 14px;
}

.link.small a {
    font-size: 12px;
}

.carender_ds {
    width: 100% !important;
    height: auto;
}

/* ===== スマホ ===== */

@media (max-width: 640px) {
    .section-head h2 {
        font-size: 16px;
    }
    .section-body {
        padding: 20px;
    }
    .plan-block img {
        width: 40px;
    }
    .carender_ds {
        width: 100% !important;
        height: auto;
    }
}

.plan-block h3 span {
    background-color: #229a88;
    color: white;
    padding: 3px 16px;
    margin-right: 7px;
    border-radius: 16px;
    font-size: 13px;
}

.plan-block h3 .plan_new {
    background-color: #ff6262;
    color: white;
    padding: 3px 16px;
    margin-right: 7px;
    border-radius: 16px;
    font-size: 13px;
}

/* ポップアップ全体の背景 */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* ポップアップ内容 */

.popup-content {
    background: #fff;
    padding: 24px 28px;
    border-radius: 16px;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

/* ボタンたち */

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.popup-btn.yes {
    background: #5fbf9a;
    color: #fff;
    width: 100%;
    padding: 16px 0;
}

.popup-btn.no {
    background: #ddd;
    color: #333;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 背景 */

.modal-container {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* 本体 */

.modal-body {
    background: #fff;
    border-radius: 14px;
    width: 90%;
    max-width: 440px;
    padding: 24px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
    position: relative;
    max-height: 75%;
    overflow: auto;
}

.modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #888;
}

.modal-content {
    margin-top: 10px;
}

/* 予約タイプ選択ボタン */
.reserve-type-btns {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.reserve-type-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.reserve-type-btn:hover {
    border-color: #62b48a;
    background: #f5faf7;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(98, 180, 138, 0.15);
}

.reserve-type-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.reserve-type-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.05em;
}

.reserve-type-sub {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.reserve-type-before:hover {
    border-color: #e2764c;
    background: #fef8f5;
}

.reserve-type-after:hover {
    border-color: #62b48a;
    background: #f5faf7;
}

/* タブ切り替え */
.reserve-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    border-bottom: 2px solid #e0e0e0;
}

.reserve-tab {
    flex: 1;
    padding: 10px 0;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #aaa;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

.reserve-tab.is-active {
    color: #62b48a;
}

.reserve-tab.is-active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #62b48a;
}

.reserve-back-area {
    text-align: center;
    margin-top: 12px;
}

.reserve-back-btn {
    display: inline-block;
    padding: 6px 14px;
    border: none;
    background: none;
    color: #aaa;
    font-size: 11px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.reserve-back-btn:hover {
    color: #666;
}

.text_center {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
}

.radio-inline__input {
    display: none;
}

.radio-inline__label,
.radio-inline__label2 {
    display: block;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
    position: relative;
}

.radio-inline__label:hover {
    border-color: #5fbf9a;
    background: #f4fffa;
}

.radio-inline__input:checked + .radio-inline__label {
    border-color: #5fbf9a;
    background: #e8f9f3;
}

.radio-inline__label2 {
    background: #f2f2f2;
    color: #aaa;
    cursor: not-allowed;
    position: relative;
}

img.salebonta {
    width: 100%;
    max-width: 33px;
    height: auto;
    position: absolute;
    top: 4px;
    right: 6px;
}

/* ラスト1枠 */

.flash_cart span {
    background: #e86b6b;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
}

/* 買い物カゴボタン */

.button_cart_main {
    margin-top: 18px;
    text-align: center;
}

.button_cart2 {
    background: #5fbf9a;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.button_cart2:hover {
    background: #4ea787;
}

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

.fgafgga {
    margin: 15px auto;
}

/* 開くボタン */

.price-btn-area {
    text-align: center;
    margin-top: 24px;
}

.section-block {
    width: 98%;
    margin: 0 auto;
}

.event_big {
    width: 100%;
    height: auto;
    margin: 1em auto;
    max-width: 820px;
}

.event_big img {
    width: 100%;
    height: auto;
}

/* ==============================
   オプション商品カートボタン
   ============================== */

.option-cart-btn {
    background: linear-gradient(135deg, #62b48a, #4a9e74) !important;
    box-shadow: 0 8px 24px rgba(98, 180, 138, 0.4) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.option-cart-btn:hover {
    box-shadow: 0 12px 30px rgba(98, 180, 138, 0.55) !important;
}

.option-cart-btn:active {
    box-shadow: 0 4px 10px rgba(98, 180, 138, 0.35) !important;
}

.option-cart-btn.is-disabled {
    background: linear-gradient(135deg, #ccc, #aaa) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.option-cart-btn.is-disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.option-notice {
    margin-top: 12px;
    font-size: 13px;
    color: #e2764c;
    text-align: center;
    font-weight: 500;
}

/* ==============================
   残り枠表示
   ============================== */

.stock-remaining {
    text-align: center;
    font-size: 15px;
    color: #e25c3a;
    font-weight: 600;
    margin: 8px 0 4px;
    animation: pulse-stock 2s ease-in-out infinite;
}

.stock-remaining strong {
    font-size: 20px;
}

.stock-soldout {
    text-align: center;
    font-size: 14px;
    color: #999;
    font-weight: 600;
    margin: 8px 0 4px;
}

@keyframes pulse-stock {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* 残り枠バッジ（日程選択モーダル内） */

.remaining-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
    background: #f0f0f0;
    color: #666;
    font-weight: 500;
}

.remaining-badge[data-remaining="1"] {
    background: #e25c3a;
    color: #fff;
    animation: pulse-stock 2s ease-in-out infinite;
}

.remaining-badge[data-remaining="2"] {
    background: #fff3e0;
    color: #e65100;
}

.remaining-badge[data-remaining="3"] {
    background: #fff8e1;
    color: #f9a825;
}

/* ==============================
   フローティングCTA
   ============================== */

.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-cta.is-visible {
    transform: translateY(0);
}

.floating-cta__inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.floating-cta__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.floating-cta__name {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-cta__price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.floating-cta__btn {
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff9a3d, #ff6a00);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 106, 0, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta__btn:active {
    transform: scale(0.96);
}

.floating-cta__btn--option {
    background: linear-gradient(135deg, #62b48a, #4a9e74);
    box-shadow: 0 4px 16px rgba(98, 180, 138, 0.35);
}

.floating-cta__btn--disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    font-size: 12px;
}

.floating-cta__form {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .floating-cta__inner {
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    }
    .floating-cta__name {
        font-size: 11px;
    }
    .floating-cta__price {
        font-size: 14px;
    }
    .floating-cta__btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}
