/* Blue Cave reusable page template styles. Source: snorkeling/index.html */
:root {
        --deep: #003366;
        --deep-2: #063a62;
        --ink: #f6f1dd;
        --muted: rgba(246, 241, 221, 0.74);
        --line: rgba(246, 241, 221, 0.26);
        --accent: #d4c46d;
        --white: #fff;
        --shadow: 0 24px 70px rgba(0, 14, 31, 0.24);
      }
      * { box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body {
        margin: 0;
        background: var(--deep);
        color: var(--ink);
        font-family: 'Noto Sans JP', sans-serif;
        line-height: 1.9;
        letter-spacing: 0;
      }
      a { color: inherit; }
      img { display: block; max-width: 100%; }

      /* ===== HEADER ===== */
      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(0, 49, 88, 0.78);
        border-top: 1px solid rgba(246, 241, 221, 0.14);
        border-bottom: 1px solid rgba(246, 241, 221, 0.16);
        backdrop-filter: blur(20px) saturate(1.25);
      }
      .header-inner {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
      }
      .brand {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 4px 0;
      }
      .brand img { width: 148px; height: auto; }
      .brand span { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
      .nav {
        display: flex;
        align-items: center;
        gap: clamp(18px, 2.6vw, 38px);
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .nav a {
        position: relative;
        padding: 25px 0 23px;
        text-decoration: none;
        color: rgba(246, 241, 221, 0.86);
        transition: color 0.22s ease;
      }
      .nav a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0.22em;
        bottom: 18px;
        height: 1px;
        background: linear-gradient(90deg, rgba(120,231,255,0), rgba(120,231,255,0.9), rgba(255,227,109,0.76));
        opacity: 0;
        transform: scaleX(0.4);
        transform-origin: center;
        transition: opacity 0.22s ease, transform 0.22s ease;
      }
      .nav a:hover { color: #fff; }
      .nav a:hover::after { opacity: 1; transform: scaleX(1); }
      .line-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 42px;
        padding: 0 22px;
        border-radius: 999px;
        border: 1px solid rgba(120, 231, 255, 0.32);
        background: rgba(246, 241, 221, 0.08);
        color: #fff6c4;
        text-decoration: none;
        font-weight: 700;
        box-shadow: 0 12px 32px rgba(0,20,38,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
        transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
      }
      .line-btn:hover {
        transform: translateY(-1px);
        border-color: rgba(255, 227, 109, 0.54);
        background: rgba(246, 241, 221, 0.14);
      }

      /* ===== MOBILE MENU ===== */
      .mobile-menu-trigger { display: none; }
      .mobile-fixed-logo { display: none; }
      body.mobile-menu-open .mobile-fixed-logo { opacity: 0; pointer-events: none; }
      .mobile-nav-overlay { display: none; }

      /* ===== FLOATING CTA ===== */
      .mobile-cta { display: none; }

      /* ===== BREADCRUMB ===== */
      .breadcrumb {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding: 20px 0 0;
        font-size: 0.75rem;
        opacity: 0.6;
      }
      .breadcrumb a { text-decoration: none; }
      .breadcrumb a:hover { text-decoration: underline; }
      .breadcrumb span { margin: 0 6px; }

      /* ===== PAGE HERO ===== */
      .page-hero {
        width: min(1180px, calc(100% - 40px));
        margin: 40px auto 0;
      }
      .page-hero-tag {
        font-family: 'DM Sans', sans-serif;
        font-size: 0.73rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 14px;
      }
      .page-hero h1 {
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        font-weight: 800;
        line-height: 1.35;
        margin: 0 0 20px;
      }
      .page-hero-lead {
        font-size: 1rem;
        opacity: 0.82;
        max-width: 700px;
        margin: 0;
      }

      /* ===== MAIN CONTENT ===== */
      .page-content {
        width: min(960px, calc(100% - 40px));
        margin: 56px auto;
      }
      .content-placeholder {
        background: rgba(255, 255, 255, 0.04);
        border: 1px dashed rgba(246, 241, 221, 0.18);
        border-radius: 16px;
        padding: 80px 32px;
        text-align: center;
        opacity: 0.5;
        font-size: 0.9rem;
      }

      /* ===== CTA SECTION ===== */
      .page-cta {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 72px 24px;
        text-align: center;
        margin: 0 0 72px;
      }
      .page-cta h2 {
        font-size: 1.5rem;
        font-weight: 800;
        margin: 0 0 10px;
      }
      .page-cta p { opacity: 0.75; margin: 0 0 36px; font-size: 0.95rem; }
      .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
      }
      .btn-line {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #06c755;
        color: #fff;
        text-decoration: none;
        padding: 14px 36px;
        border-radius: 999px;
        font-size: 1rem;
        font-weight: 700;
        transition: opacity 0.2s;
      }
      .btn-line:hover { opacity: 0.85; }
      .btn-tel {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.22);
        color: var(--ink);
        text-decoration: none;
        padding: 14px 36px;
        border-radius: 999px;
        font-size: 1rem;
        font-weight: 700;
        transition: background 0.2s;
      }
      .btn-tel:hover { background: rgba(255,255,255,0.15); }

      /* ===== FOOTER ===== */
      .site-footer {
        background: rgba(0, 20, 45, 0.7);
        border-top: 1px solid var(--line);
        padding: 36px 24px;
        text-align: center;
      }
      .site-footer nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-bottom: 18px;
        font-size: 0.82rem;
      }
      .site-footer nav a { text-decoration: none; opacity: 0.7; }
      .site-footer nav a:hover { opacity: 1; }
      .site-footer small { opacity: 0.45; font-size: 0.75rem; }

      /* ===== MOBILE (≤900px) ===== */
      @media (max-width: 900px) {
        .site-header { display: none; }
        body { padding-bottom: 110px; padding-top: 82px; }

        .mobile-menu-trigger {
          position: fixed;
          top: 14px;
          right: 14px;
          z-index: 50;
          display: inline-flex;
          width: 52px;
          height: 52px;
          align-items: center;
          justify-content: center;
          border: 1px solid rgba(246, 241, 221, 0.2);
          border-radius: 18px;
          background: rgba(0, 42, 76, 0.34);
          color: var(--ink);
          box-shadow: 0 16px 36px rgba(0,20,38,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
          backdrop-filter: blur(18px) saturate(1.25);
          cursor: pointer;
        }
        .mobile-menu-trigger span,
        .mobile-menu-trigger::before,
        .mobile-menu-trigger::after {
          content: "";
          position: absolute;
          width: 22px;
          height: 1px;
          background: currentColor;
          transition: transform 0.24s ease, opacity 0.24s ease;
        }
        .mobile-menu-trigger::before { transform: translateY(-6px); }
        .mobile-menu-trigger::after  { transform: translateY(6px); }
        .mobile-menu-trigger.is-open span { opacity: 0; }
        .mobile-menu-trigger.is-open::before { transform: rotate(22deg); }
        .mobile-menu-trigger.is-open::after  { transform: rotate(-22deg); }

        .mobile-fixed-logo {
          position: fixed;
          top: 14px;
          left: 14px;
          z-index: 50;
          display: flex;
          width: 152px;
          height: 52px;
          align-items: center;
          padding: 0;
          border: 0;
          background: transparent;
          filter: drop-shadow(0 7px 18px rgba(0,20,38,0.42)) drop-shadow(0 0 14px rgba(120,231,255,0.14));
          transition: opacity 0.2s ease;
          text-decoration: none;
        }
        .mobile-fixed-logo img { width: 144px; height: auto; }

        .mobile-nav-overlay {
          position: fixed;
          inset: 0;
          z-index: 45;
          display: block;
          padding: 22px 16px 80px;
          background: #003f70;
          color: var(--ink);
          opacity: 0;
          pointer-events: none;
          transform: translateY(-10px);
          transition: opacity 0.28s ease, transform 0.28s ease;
          overflow-y: auto;
        }
        .mobile-nav-overlay.is-open {
          opacity: 1;
          pointer-events: auto;
          transform: translateY(0);
        }
        .mobile-nav-head {
          display: flex;
          align-items: center;
          justify-content: space-between;
          margin-bottom: 72px;
        }
        .mobile-nav-head img { width: 128px; }
        .mobile-nav-links {
          list-style: none;
          margin: 0;
          padding: 0;
          border-top: 1px solid rgba(246, 241, 221, 0.78);
        }
        .mobile-nav-links a {
          display: flex;
          align-items: center;
          justify-content: space-between;
          min-height: 82px;
          border-bottom: 1px solid rgba(246, 241, 221, 0.78);
          color: var(--ink);
          font-family: 'DM Sans', sans-serif;
          font-size: 14px;
          font-weight: 600;
          letter-spacing: 0.12em;
          text-decoration: none;
          text-transform: uppercase;
        }
        .mobile-nav-links a::after { content: ">"; color: var(--accent); font-family: 'Noto Sans JP', sans-serif; font-size: 15px; letter-spacing: 0; }
        .mobile-nav-social {
          display: flex;
          justify-content: center;
          gap: 30px;
          margin-top: 112px;
          font-family: 'DM Sans', sans-serif;
          font-weight: 600;
          letter-spacing: 0.07em;
        }
        .mobile-nav-social a { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }

        .mobile-cta {
          position: fixed;
          left: 10px;
          right: 10px;
          bottom: 14px;
          z-index: 30;
          display: grid;
          grid-template-columns: 1fr 1fr 1fr;
          gap: 8px;
          background: rgba(8, 16, 30, 0.88);
          backdrop-filter: blur(14px);
          -webkit-backdrop-filter: blur(14px);
          border-radius: 18px;
          padding: 10px;
          box-shadow: 0 8px 32px rgba(0,0,0,0.45);
          border: 1px solid rgba(255,255,255,0.07);
        }
        .mobile-cta a {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          gap: 5px;
          min-height: 60px;
          border-radius: 12px;
          color: #fff;
          text-decoration: none;
          font-size: 12px;
          font-weight: 700;
          letter-spacing: 0.03em;
          position: relative;
          transition: opacity 0.15s, transform 0.15s;
        }
        .mobile-cta a:active { opacity: 0.82; transform: scale(0.97); }
        .mobile-cta a i { font-size: 24px; }
        .mobile-cta .cta-line { background: #06c755; }
        .mobile-cta .cta-line::after {
          content: '';
          position: absolute;
          top: 7px;
          right: 14px;
          width: 10px;
          height: 10px;
          background: #ff3b30;
          border-radius: 50%;
          border: 2px solid #06c755;
        }
        .mobile-cta .cta-tel { background: #0d1f3c; }
        .mobile-cta .cta-insta { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
      }

      /* ===== CONTENT BODY STYLES ===== */
      .page-content h2 {
        font-family: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        font-weight: 800;
        color: var(--accent);
        margin: 2.4em 0 0.7em;
        line-height: 1.4;
        padding-bottom: 0.4em;
        border-bottom: 1px solid rgba(212, 196, 109, 0.25);
      }
      .page-content h3 {
        font-size: clamp(1.05rem, 2.4vw, 1.3rem);
        font-weight: 700;
        color: var(--ink);
        margin: 1.8em 0 0.6em;
        line-height: 1.45;
      }
      .page-content h4 {
        font-size: 1rem;
        font-weight: 700;
        color: rgba(246, 241, 221, 0.85);
        margin: 1.4em 0 0.5em;
        line-height: 1.5;
      }
      .page-content p {
        margin: 0 0 1.1em;
        font-size: 0.96rem;
        line-height: 1.95;
        color: var(--muted);
      }
      .page-content p:first-child,
      .page-content > *:first-child { margin-top: 0; }
      .page-content strong { color: var(--ink); font-weight: 700; }
      .page-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
      .page-content a:hover { opacity: 0.8; }
      .page-content ul, .page-content ol {
        padding-left: 1.5em;
        margin: 0.8em 0 1.2em;
      }
      .page-content li {
        margin-bottom: 0.45em;
        font-size: 0.95rem;
        color: var(--muted);
        line-height: 1.8;
      }
      /* Images */
      .page-content figure { margin: 0; }
      .page-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
      }
      .page-content picture { display: block; }
      .page-content picture img { width: 100%; border-radius: 12px; }
      .c-img-wrap {
        margin: 1.6em 0;
      }
      .c-img-wrap img, .c-img-wrap picture img { border-radius: 12px; }
      /* Gallery grid */
      .c-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 10px;
        margin: 1.8em 0;
      }
      .c-gallery-item {
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4/3;
      }
      .c-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        transition: transform 0.4s ease;
      }
      .c-gallery-item:hover img { transform: scale(1.04); }
      /* Tables */
      .page-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.6em 0;
        font-size: 0.92rem;
      }
      .page-content th {
        background: rgba(212, 196, 109, 0.18);
        color: var(--accent);
        font-weight: 700;
        padding: 10px 14px;
        text-align: left;
        border: 1px solid rgba(246, 241, 221, 0.15);
      }
      .page-content td {
        padding: 10px 14px;
        border: 1px solid rgba(246, 241, 221, 0.12);
        color: var(--muted);
        vertical-align: top;
      }
      .page-content tr:nth-child(even) td {
        background: rgba(255, 255, 255, 0.03);
      }
      /* iframes */
      .c-video-wrap {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
        margin: 1.6em 0;
      }
      .c-video-wrap iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        border: none;
        border-radius: 12px;
      }
      /* Sections */
      .c-section {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(246, 241, 221, 0.1);
        border-radius: 16px;
        padding: 28px 28px 20px;
        margin: 1.8em 0;
      }
      /* Price highlight */
      .c-price {
        display: inline-block;
        background: rgba(212, 196, 109, 0.15);
        border: 1px solid rgba(212, 196, 109, 0.4);
        border-radius: 8px;
        padding: 10px 20px;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--accent);
        margin: 0.8em 0 1.2em;
      }

/* ================================================================
       BLUE CAVE — Rich Detail Page CSS
    ================================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bc-deep: #003366;
      --bc-navy: #023e8a;
      --bc-blue: #0077b6;
      --bc-sky: #00b4d8;
      --bc-aqua: #48cae4;
      --bc-foam: #caf0f8;
      --bc-off: #f0f9ff;
      --bc-white: #ffffff;
      --bc-text: #1a2a3a;
      --bc-gray: #5a7080;
      --bc-gold: #d4c46d;
      --bc-line: #06c755;
      --bc-coral: #ff6b6b;
      --bc-yellow: #ffd166;
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Noto Sans JP', 'M PLUS Rounded 1c', sans-serif;
      color: var(--bc-text);
      background: #003366;
      overflow-x: hidden;
      padding-top: 0;
      padding-bottom: 88px; /* sp-bar分 */
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── HEADER ── */
    .cb-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      background: rgba(0,30,60,.9); backdrop-filter: blur(16px);
      transition: background .4s, backdrop-filter .4s, box-shadow .4s;
      padding: 12px clamp(16px,4vw,48px);
      box-shadow: 0 2px 20px rgba(0,0,0,.25);
    }
    .cb-header.scrolled {
      background: rgba(0,30,60,.96); backdrop-filter: blur(20px);
      box-shadow: 0 2px 24px rgba(0,0,0,.35);
    }
    .cb-header-inner {
      display: flex; align-items: center; gap: 16px;
      max-width: 1200px; margin: 0 auto;
    }
    .cb-brand img { height: 44px; transition: height .3s; }
    .cb-header.scrolled .cb-brand img { height: 36px; }
    .cb-nav {
      display: flex; gap: 20px; margin-left: auto; list-style: none;
    }
    .cb-nav a {
      font-family: 'DM Sans', 'Nunito', sans-serif;
      font-size: 13px; font-weight: 700; letter-spacing: .06em;
      color: rgba(255,255,255,.9); transition: color .2s;
    }
    .cb-nav a:hover { color: var(--bc-aqua); }
    .cb-hdr-line {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--bc-line); color: #fff;
      font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 13px;
      padding: 9px 20px; border-radius: 99px;
      box-shadow: 0 4px 16px rgba(6,199,85,.4);
      transition: transform .2s, box-shadow .2s; white-space: nowrap;
    }
    .cb-hdr-line:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,85,.5); }
    .cb-burger {
      display: none; background: none; border: none; cursor: pointer;
      flex-direction: column; gap: 5px; padding: 4px; margin-left: 8px;
    }
    .cb-burger span {
      display: block; width: 24px; height: 2px;
      background: white; border-radius: 2px; transition: transform .3s, opacity .3s;
    }
    .cb-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .cb-burger.open span:nth-child(2) { opacity: 0; }
    .cb-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    @media (max-width: 768px) {
      .cb-nav { display: none; }
      .cb-hdr-line { display: none; }
      .cb-burger { display: flex; margin-left: auto; }
    }

    /* ── MOBILE NAV ── */
    .cb-mobile-nav {
      position: fixed; inset: 0; z-index: 850;
      background: var(--bc-deep);
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 clamp(32px,10vw,80px);
      transform: translateX(100%); transition: transform .5s cubic-bezier(.77,0,.175,1);
      pointer-events: none;
    }
    .cb-mobile-nav.open { transform: translateX(0); pointer-events: all; }
    body.nav-open { overflow: hidden; }
    .cb-mn-head img { height: 48px; margin-bottom: 40px; }
    .cb-mn-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
    .cb-mn-links li a {
      display: block; padding: 14px 0; font-size: clamp(22px,5vw,30px);
      font-family: 'DM Sans','Nunito',sans-serif; font-weight: 900; color: white;
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: color .2s, padding-left .2s;
    }
    .cb-mn-links li a:hover { color: var(--bc-aqua); padding-left: 8px; }
    .cb-mn-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
    .cb-mn-line {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--bc-line); color: #fff; font-weight: 800; font-size: 14px;
      padding: 12px 22px; border-radius: 99px;
    }
    .cb-mn-tel {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
      color: #fff; font-weight: 800; font-size: 14px;
      padding: 12px 22px; border-radius: 99px;
    }

    /* ── HERO ── */
    .cb-hero {
      position: relative; min-height: 100svh; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      background-size: cover; background-position: center;
      overflow: hidden;
    }
    .cb-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg,
        rgba(0,20,50,.90) 0%,
        rgba(0,50,120,.70) 50%,
        rgba(0,20,50,.88) 100%);
    }
    .cb-breadcrumb {
      position: absolute; top: 72px; left: 0; right: 0; z-index: 2;
      padding: 8px clamp(20px,5vw,60px);
      display: flex; align-items: center; gap: 6px;
      font-size: 11px; color: rgba(255,255,255,.55);
    }
    .cb-breadcrumb a { color: rgba(255,255,255,.72); }
    .cb-breadcrumb a:hover { color: var(--bc-aqua); }
    .cb-breadcrumb span { margin: 0 2px; }
    .cb-hero-body {
      position: relative; z-index: 2; text-align: center;
      padding: 120px clamp(20px,5vw,60px) 100px;
      max-width: 900px;
    }
    .cb-hero-tag {
      font-family: 'DM Sans','Nunito',sans-serif;
      font-size: 11px; font-weight: 800; letter-spacing: .4em;
      text-transform: uppercase; color: var(--bc-aqua);
      margin-bottom: 20px;
      opacity: 0; transform: translateY(20px);
      animation: cbFadeUp .7s ease .2s forwards;
    }
    .cb-hero-title {
      font-family: 'M PLUS Rounded 1c','Noto Sans JP',sans-serif;
      font-size: clamp(28px,5vw,60px); font-weight: 900; line-height: 1.3;
      color: white; margin-bottom: 18px;
      text-shadow: 0 2px 24px rgba(0,0,0,.6);
      min-height: 1.3em;
    }
    .cb-tw-cursor {
      display: inline-block;
      color: var(--bc-aqua);
      font-weight: 300;
      animation: cbBlink .65s step-end infinite;
      margin-left: 1px;
    }
    @keyframes cbBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    .cb-hero-desc {
      font-size: clamp(14px,1.8vw,16px); color: rgba(255,255,255,.82);
      line-height: 1.9; max-width: 640px; margin: 0 auto 36px;
      opacity: 0; transform: translateY(20px);
      animation: cbFadeUp .7s ease .6s forwards;
    }
    .cb-hero-btns {
      display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
      opacity: 0; transform: translateY(20px);
      animation: cbFadeUp .7s ease .8s forwards;
    }
    @keyframes cbFadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .cb-hero-scroll {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
      font-family: 'DM Sans',sans-serif; font-size: 9px; letter-spacing: .4em;
      color: rgba(255,255,255,.45);
      animation: cbBounce 2s ease-in-out infinite;
    }
    @keyframes cbBounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(7px); }
    }

    /* ── BUTTONS ── */
    .cb-btn-line {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--bc-line); color: #fff;
      font-family: 'DM Sans','Nunito',sans-serif; font-weight: 800;
      font-size: clamp(14px,2vw,16px); padding: 16px 36px; border-radius: 99px;
      box-shadow: 0 8px 28px rgba(6,199,85,.45);
      transition: transform .2s, box-shadow .2s;
    }
    .cb-btn-line:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(6,199,85,.6); }
    .cb-btn-tel {
      display: inline-flex; align-items: center; gap: 9px;
      border: 2px solid rgba(255,255,255,.55); color: #fff;
      font-family: 'DM Sans','Nunito',sans-serif; font-weight: 800;
      font-size: clamp(14px,2vw,16px); padding: 14px 30px; border-radius: 99px;
      transition: background .25s, border-color .25s;
    }
    .cb-btn-tel:hover { background: rgba(255,255,255,.15); border-color: white; }
    .cb-btn-lg { font-size: 16px; padding: 18px 44px; }
    @media (max-width: 480px) {
      .cb-btn-line, .cb-btn-tel { padding: 13px 22px; font-size: 14px; }
    }

    /* ── SECTIONS ── */
    .cb-section { padding: clamp(60px,10vh,100px) 0; }
    .cb-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 clamp(20px,5vw,60px);
    }
    .cb-sec-label {
      font-family: 'DM Sans','Nunito',sans-serif;
      font-size: 11px; font-weight: 800; letter-spacing: .4em;
      text-transform: uppercase; color: var(--bc-sky);
      display: block; margin-bottom: 12px;
    }
    .cb-sec-title {
      font-family: 'M PLUS Rounded 1c','Noto Sans JP',sans-serif;
      font-size: clamp(22px,3.5vw,36px); font-weight: 900;
      color: var(--bc-deep); line-height: 1.3; margin-bottom: 32px;
    }

    /* ── GALLERY ── */
    .cb-gallery-sec { background: var(--bc-white); }
    .cb-gallery-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-auto-rows: clamp(160px,20vw,260px);
      gap: 10px; margin-top: 28px;
    }
    .cb-gi {
      border-radius: 16px; overflow: hidden; position: relative;
      box-shadow: 0 8px 30px rgba(0,0,0,.14);
    }
    .cb-gi img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .55s ease, filter .55s ease;
    }
    .cb-gi:hover img { transform: scale(1.06); filter: saturate(1.15); }
    .cb-gi--main { grid-row: span 2; }
    .cb-gi--wide { grid-column: span 2; }
    @media (max-width: 700px) {
      .cb-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
      }
      .cb-gi--main { grid-row: span 1; grid-column: span 2; }
      .cb-gi--wide { grid-column: span 2; }
    }
    @media (max-width: 480px) {
      .cb-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
      }
      .cb-gi--main, .cb-gi--wide { grid-column: span 1; }
    }

    /* ── CONTENT ── */
    .cb-content-sec { background: var(--bc-white); }
    .cb-content { max-width: 860px; }
    .cb-content h2 {
      font-family: 'M PLUS Rounded 1c','Noto Sans JP',sans-serif;
      font-size: clamp(1.3rem,3vw,1.8rem); font-weight: 900;
      color: var(--bc-navy); margin: 2.4em 0 .7em; line-height: 1.4;
      padding-bottom: .4em;
      border-bottom: 2px solid var(--bc-foam);
    }
    .cb-content h3 {
      font-size: clamp(1.05rem,2.4vw,1.3rem); font-weight: 700;
      color: var(--bc-blue); margin: 1.8em 0 .6em; line-height: 1.45;
    }
    .cb-content h4 {
      font-size: 1rem; font-weight: 700;
      color: var(--bc-text); margin: 1.4em 0 .5em; line-height: 1.5;
    }
    .cb-content p {
      margin: 0 0 1.1em; font-size: .97rem; line-height: 2; color: #334;
    }
    .cb-content strong { color: var(--bc-navy); font-weight: 700; }
    .cb-content a { color: var(--bc-blue); text-decoration: underline; text-underline-offset: 3px; }
    .cb-content ul, .cb-content ol { padding-left: 1.5em; margin: .8em 0 1.2em; }
    .cb-content li { margin-bottom: .45em; font-size: .95rem; line-height: 1.9; }
    .cb-img { margin: 1.8em 0; }
    .cb-img img, .cb-img picture img {
      max-width: 100%; border-radius: 16px;
      box-shadow: 0 8px 32px rgba(0,0,0,.12);
    }
    .cb-img picture { display: block; }
    .cb-video {
      position: relative; padding-bottom: 56.25%; height: 0;
      overflow: hidden; border-radius: 16px; margin: 1.8em 0;
      box-shadow: 0 8px 32px rgba(0,0,0,.15);
    }
    .cb-video iframe {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      border: none; border-radius: 16px;
    }
    .cb-content table {
      width: 100%; border-collapse: collapse; margin: 1.6em 0;
      font-size: .93rem; border-radius: 12px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
    }
    .cb-content th {
      background: var(--bc-navy); color: #fff; font-weight: 700;
      padding: 12px 16px; text-align: left;
    }
    .cb-content td {
      padding: 11px 16px; border-bottom: 1px solid var(--bc-foam); color: #445;
    }
    .cb-content tr:last-child td { border-bottom: none; }
    .cb-content tr:nth-child(even) td { background: var(--bc-off); }

    /* ── Menu Card Grid ── */
    .cb-menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 18px;
      margin: 1.6em 0 2.2em;
      list-style: none; padding: 0;
    }
    .cb-menu-card {
      position: relative;
      background: #fff;
      border-radius: 22px;
      padding: 24px 22px 20px;
      box-shadow: 0 2px 20px rgba(2,62,138,.08);
      border: 1px solid rgba(202,240,248,.65);
      display: flex; flex-direction: column; gap: 0;
      overflow: hidden;
      transition: transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .3s ease;
    }
    .cb-menu-card::before {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--bc-aqua) 0%, var(--bc-sky) 40%, var(--bc-blue) 100%);
    }
    .cb-menu-card:hover {
      transform: translateY(-6px) scale(1.015);
      box-shadow: 0 20px 50px rgba(2,62,138,.18);
    }
    .cb-mc-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--bc-sky) 0%, var(--bc-blue) 100%);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.2rem;
      margin-bottom: 14px; flex-shrink: 0;
      box-shadow: 0 6px 16px rgba(0,119,182,.28);
    }
    .cb-mc-name {
      font-size: .97rem; font-weight: 700;
      color: var(--bc-navy); margin: 0 0 10px;
      line-height: 1.4;
    }
    .cb-mc-price {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.5rem; font-weight: 800;
      color: var(--bc-blue); margin: 0 0 10px;
      line-height: 1; letter-spacing: -.02em;
    }
    .cb-mc-price.is-free { color: var(--bc-sky); }
    .cb-mc-unit {
      font-size: .72rem; font-weight: 600;
      color: var(--bc-gray); margin-left: 4px;
      vertical-align: middle; letter-spacing: 0;
    }
    .cb-mc-note {
      font-size: .82rem; color: var(--bc-gray);
      line-height: 1.65; margin: 0;
      padding-top: 12px;
      border-top: 1px solid rgba(202,240,248,.9);
    }
    /* Stagger on scroll reveal */
    .cb-menu-card.cb-reveal:nth-child(2) { transition-delay: 55ms; }
    .cb-menu-card.cb-reveal:nth-child(3) { transition-delay: 110ms; }
    .cb-menu-card.cb-reveal:nth-child(4) { transition-delay: 165ms; }
    .cb-menu-card.cb-reveal:nth-child(5) { transition-delay: 220ms; }
    .cb-menu-card.cb-reveal:nth-child(6) { transition-delay: 275ms; }
    .cb-menu-card.cb-reveal:nth-child(7) { transition-delay: 330ms; }
    .cb-menu-card.cb-reveal:nth-child(n+8) { transition-delay: 385ms; }
    /* Mobile */
    @media (max-width: 640px) {
      .cb-menu-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .cb-menu-card { padding: 18px 16px 16px; border-radius: 18px; }
      .cb-mc-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 11px; margin-bottom: 12px; }
      .cb-mc-price { font-size: 1.25rem; }
      .cb-mc-name { font-size: .91rem; margin-bottom: 8px; }
      .cb-mc-note { font-size: .78rem; padding-top: 10px; }
    }
    @media (max-width: 360px) {
      .cb-menu-grid { grid-template-columns: 1fr; }
    }

    /* インラインreview（body内） */
    .inline-reviews {
      display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
      gap: 14px; margin: 1.8em 0;
    }
    .inline-review-item {
      background: var(--bc-off); border: 1px solid var(--bc-foam);
      border-radius: 14px; padding: 18px 20px;
    }
    .review-author { font-size: .87rem; font-weight: 700; color: var(--bc-navy); margin: 0 0 4px; }
    .review-stars { color: #f59e0b; font-size: .85rem; margin-bottom: 8px; }
    .review-text { font-size: .87rem; line-height: 1.85; color: var(--bc-gray); margin: 0; }
    /* ── License Cards ── */
    .cb-license-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
      margin: 1.6em 0 2.4em;
    }
    .cb-license-card {
      background: rgba(10,50,120,.72);
      border: 1px solid rgba(72,202,228,.2);
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 6px 28px rgba(0,0,0,.22);
      display: flex; flex-direction: column;
      transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s;
    }
    .cb-license-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 50px rgba(0,0,0,.34);
    }
    .cb-lc-photo {
      position: relative; display: block; overflow: hidden; background: #001832;
      text-decoration: none;
    }
    .cb-lc-photo img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
    .cb-license-card:hover .cb-lc-photo img { transform: scale(1.04); }
    .cb-lc-badge {
      position: absolute; top: 12px; right: 12px;
      padding: 5px 13px; border-radius: 100px;
      font-size: .72rem; font-weight: 800; letter-spacing: .06em;
      backdrop-filter: blur(8px);
    }
    .cb-lc-badge.step { background: rgba(72,202,228,.88); color: #001a3a; }
    .cb-lc-badge.prereq { background: rgba(255,209,102,.88); color: #001a3a; }
    .cb-lc-badge.special { background: rgba(6,199,85,.85); color: #001a3a; }
    .cb-lc-badge.pro { background: rgba(255,165,0,.88); color: #001a3a; }
    .cb-lc-body {
      padding: 18px 18px 20px;
      display: flex; flex-direction: column; gap: 10px; flex: 1;
    }
    .cb-lc-name {
      font-size: 1rem; font-weight: 700; color: #fff !important; margin: 0;
    }
    .cb-lc-desc {
      font-size: .84rem; color: #e0f0ff !important; line-height: 1.68; margin: 0;
    }
    .cb-lc-features {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 5px;
    }
    .cb-lc-features li {
      font-size: .8rem; color: #b8dff0 !important;
      padding-left: 14px; position: relative;
      line-height: 1.5; text-shadow: none !important;
    }
    .cb-lc-features li::before {
      content: ''; position: absolute; left: 0; top: .5em;
      width: 5px; height: 5px; border-radius: 50%; background: #48cae4;
    }
    .cb-lc-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: auto; padding-top: 12px;
      font-size: .82rem; font-weight: 700;
      color: #48cae4 !important; text-decoration: none !important;
      border-top: 1px solid rgba(72,202,228,.15);
      transition: gap .2s;
    }
    .cb-lc-link:hover { gap: 10px; }
    .cb-lc-link i { font-size: .75rem; }
    @media (max-width: 640px) {
      .cb-license-grid { grid-template-columns: 1fr; gap: 14px; }
      .cb-lc-body { padding: 14px 16px 16px; }
    }

    /* ── Staff Cards ── */
    .cb-staff-div {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(236,251,255,.45);
      margin: 2.4em 0 1.4em;
    }
    .cb-staff-div::before, .cb-staff-div::after {
      content: ''; flex: 1; height: 1px;
      background: rgba(72,202,228,.2);
    }
    .cb-staff-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 20px;
      margin: 0 0 2em;
    }
    .cb-staff-card {
      background: rgba(10,50,120,.72);
      border: 1px solid rgba(72,202,228,.2);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(0,0,0,.22);
      display: flex; flex-direction: column;
      transition: transform .3s cubic-bezier(.34,1.4,.64,1), box-shadow .3s;
    }
    .cb-staff-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 50px rgba(0,0,0,.34);
    }
    .cb-sc-photo {
      background: #001832;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
    }
    .cb-sc-photo img {
      width: 100%; height: auto;
      display: block;
      transition: transform .5s ease;
    }
    .cb-staff-card:hover .cb-sc-photo img { transform: scale(1.03); }
    .cb-sc-catch {
      font-size: .72rem; font-weight: 600; color: #48cae4 !important;
      margin: 0 0 4px; letter-spacing: .04em;
    }
    .cb-sc-name {
      font-size: 1.08rem; font-weight: 700; color: #fff !important; margin: 0 0 10px;
      line-height: 1.3;
    }
    .cb-sc-body {
      padding: 14px 16px 18px;
      display: flex; flex-direction: column; gap: 10px;
      flex: 1;
    }
    .cb-sc-tags {
      display: flex; flex-wrap: wrap; gap: 5px;
    }
    .cb-sc-tags span {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: .7rem; color: rgba(236,251,255,.72);
      background: rgba(255,255,255,.09);
      padding: 3px 9px; border-radius: 100px; white-space: nowrap;
    }
    .cb-sc-tags span i { color: #48cae4; font-size: .65rem; }
    .cb-sc-bio {
      font-size: .83rem; color: #ddeeff !important;
      line-height: 1.72; margin: 0;
    }
    @media (max-width: 640px) {
      .cb-staff-grid { grid-template-columns: 1fr; gap: 14px; }
      .cb-sc-body { padding: 14px 16px 16px; }
    }

    /* ── FAQ Category Nav ── */
    .cb-faq-nav { margin: 1.6em 0 2.2em; }
    .cb-faq-nav-label {
      display: block;
      font-size: .7rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: rgba(236,251,255,.45);
      margin-bottom: 12px;
    }
    .cb-faq-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
      list-style: none; padding: 0; margin: 0;
    }
    .cb-faq-pills li a {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 20px; border-radius: 100px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(72,202,228,.28);
      color: rgba(236,251,255,.9) !important;
      font-size: .88rem; font-weight: 600;
      text-decoration: none !important;
      transition: background .2s, border-color .2s, transform .22s, color .2s;
      white-space: nowrap;
    }
    .cb-faq-pills li a i { color: #48cae4; font-size: .8rem; flex-shrink: 0; }
    .cb-faq-pills li a:hover {
      background: rgba(72,202,228,.2);
      border-color: rgba(72,202,228,.7);
      color: #fff !important;
      transform: translateY(-2px);
    }
    h2[id^="faq-"] { scroll-margin-top: 90px; }
    @media (max-width: 640px) {
      .cb-faq-pills { gap: 8px; }
      .cb-faq-pills li a { padding: 8px 14px; font-size: .82rem; }
    }

    .cb-line-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--bc-line); color: #fff; font-weight: 800;
      font-size: .95rem; padding: 13px 26px; border-radius: 99px;
      margin: .8em 0; box-shadow: 0 6px 20px rgba(6,199,85,.35);
      transition: transform .2s, box-shadow .2s;
    }
    .cb-line-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(6,199,85,.45); }

    /* ── REVIEWS SECTION ── */
    .cb-reviews-sec { background: var(--bc-off); }
    .cb-rv-grid {
      display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
      gap: 16px; margin-top: 8px;
    }
    .cb-rv-card {
      background: var(--bc-white); border-radius: 18px; padding: 22px 24px;
      box-shadow: 0 4px 20px rgba(0,119,182,.08);
      border: 1px solid rgba(0,119,182,.08);
      transition: transform .25s, box-shadow .25s;
    }
    .cb-rv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,119,182,.15); }
    .cb-rv-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 8px; }
    .cb-rv-author { font-size: .88rem; font-weight: 700; color: var(--bc-navy); margin-bottom: 10px; }
    .cb-rv-text { font-size: .875rem; line-height: 1.9; color: var(--bc-gray); }

    /* ── CTA SECTION ── */
    .cb-cta-sec {
      background: linear-gradient(135deg, var(--bc-deep) 0%, #0a3060 100%);
      padding: clamp(72px,12vh,120px) 0; position: relative; overflow: hidden;
    }
    .cb-cta-sec::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(72,202,228,.15) 0%, transparent 70%);
    }
    .cb-cta-title {
      font-family: 'M PLUS Rounded 1c','Noto Sans JP',sans-serif;
      font-size: clamp(22px,4vw,40px); font-weight: 900; color: white;
      line-height: 1.4; margin-bottom: 12px; position: relative;
    }
    .cb-cta-sub {
      font-size: 15px; color: rgba(255,255,255,.68); line-height: 1.9;
      margin-bottom: 44px; position: relative;
    }
    .cb-cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; }

    /* ── FOOTER ── */
    .cb-footer {
      background: #06112a; color: rgba(255,255,255,.5);
      padding: 32px clamp(20px,5vw,60px); text-align: center;
    }
    .cb-footer nav { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 16px; }
    .cb-footer nav a { font-size: 12px; color: rgba(255,255,255,.55); transition: color .2s; }
    .cb-footer nav a:hover { color: var(--bc-aqua); }
    .cb-footer small { font-size: 11px; }

    /* ── SP FIXED BAR ── */
    .cb-sp-bar {
      display: none; position: fixed;
      left: 12px; right: 12px;
      bottom: calc(14px + env(safe-area-inset-bottom));
      z-index: 980;
      background: rgba(255,255,255,.72);
      backdrop-filter: blur(24px) saturate(180%);
      -webkit-backdrop-filter: blur(24px) saturate(180%);
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 22px;
      box-shadow: 0 12px 40px rgba(0,0,0,.18);
      padding: 8px; gap: 8px;
      animation: cbBarUp .6s cubic-bezier(.34,1.56,.64,1) .8s both;
    }
    @keyframes cbBarUp { from { opacity:0; transform:translateY(80px); } to { opacity:1; transform:translateY(0); } }
    .cb-sp-btn {
      flex: 1; display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px; padding: 12px 8px 11px; border-radius: 16px;
      font-size: 11px; font-weight: 700; color: white;
      position: relative; overflow: hidden;
      transition: transform .18s;
    }
    .cb-sp-btn:active { transform: scale(.94); }
    .cb-sp-btn i { font-size: 20px; }
    .cb-sp-line { background: linear-gradient(135deg,#08d95e,#06C755,#00a844); box-shadow: 0 4px 18px rgba(6,199,85,.5); }
    .cb-sp-dot {
      position: absolute; top: 7px; right: 7px;
      width: 9px; height: 9px; background: #ff3b30;
      border-radius: 50%; border: 1.5px solid white;
      animation: cbDot 1.8s ease-in-out infinite;
    }
    @keyframes cbDot { 0%,100% { transform:scale(1); } 50% { transform:scale(1.6); opacity:.5; } }
    .cb-sp-tel { background: linear-gradient(135deg,#1e3a5f,#0f172a); box-shadow: 0 4px 18px rgba(15,23,42,.35); }
    .cb-sp-insta { background: linear-gradient(135deg,#f9ce34,#ee2a7b 60%,#6228d7); box-shadow: 0 4px 18px rgba(238,42,123,.45); }
    @media (max-width: 767px) {
      .cb-sp-bar { display: flex; }
      .cb-footer {
        padding-bottom: calc(128px + env(safe-area-inset-bottom));
      }
    }

    /* ── REVEAL ANIMATION ── */
    /* Modern snorkeling page override */
    body {
      background: #003366;
      padding-bottom: 0;
    }
    .cb-header {
      background: rgba(2, 12, 30, .52);
      border-bottom: 1px solid rgba(255,255,255,.12);
      box-shadow: none;
    }
    .cb-header.scrolled {
      background: rgba(2, 12, 30, .82);
      box-shadow: 0 18px 50px rgba(0,0,0,.28);
    }
    .cb-hero {
      isolation: isolate;
      background-color: #003366;
      background-size: 0 0;
    }
    .cb-hero::before {
      content: "";
      position: absolute;
      inset: -7vh -7vw;
      z-index: 0;
      background-image: inherit;
      background-size: cover;
      background-position: center;
      animation: cbKenBurns 18s ease-in-out infinite alternate;
      transform-origin: 46% 52%;
    }
    .cb-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(110deg, rgba(1,10,28,.86) 0%, rgba(0,41,76,.46) 48%, rgba(1,10,28,.78) 100%),
        radial-gradient(circle at 70% 38%, rgba(72,202,228,.24), transparent 34rem),
        linear-gradient(180deg, transparent 68%, rgba(3,18,42,.86) 100%);
      pointer-events: none;
    }
    .cb-hero-overlay { display: none; }
    .cb-hero-body {
      max-width: 1080px;
      text-align: left;
      margin-right: auto;
      margin-left: clamp(0px, 5vw, 84px);
    }
    .cb-hero-tag {
      width: fit-content;
      padding: 8px 13px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      color: #9af1ff;
      background: rgba(255,255,255,.08);
      backdrop-filter: blur(18px);
    }
    .cb-hero-title {
      max-width: 820px;
      font-size: clamp(42px, 7.6vw, 104px);
      line-height: 1.02;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .cb-hero-desc {
      max-width: 610px;
      margin-left: 0;
      font-size: clamp(15px, 1.7vw, 18px);
    }
    .cb-hero-btns { justify-content: flex-start; }
    .cb-breadcrumb { z-index: 3; }
    @keyframes cbKenBurns {
      from { transform: scale(1.02) translate3d(-1.5vw, -1vh, 0); filter: saturate(1.08) contrast(1.02); }
      to { transform: scale(1.18) translate3d(2vw, 1.6vh, 0); filter: saturate(1.24) contrast(1.08); }
    }
    .cb-marquee {
      position: relative;
      z-index: 4;
      overflow: hidden;
      margin-top: -1px;
      padding: 14px 0;
      color: #eaffff;
      background: #003366;
      border-block: 1px solid rgba(154,241,255,.2);
    }
    .cb-marquee-track {
      display: flex;
      width: max-content;
      gap: 34px;
      animation: cbMarquee 30s linear infinite;
      will-change: transform;
    }
    .cb-marquee span {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(13px, 1.8vw, 20px);
      font-weight: 800;
      letter-spacing: .22em;
      white-space: nowrap;
      opacity: .78;
    }
    .cb-marquee span::after {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-left: 34px;
      border-radius: 50%;
      background: #48cae4;
      box-shadow: 0 0 22px #48cae4;
      vertical-align: .12em;
    }
    @keyframes cbMarquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .cb-edge {
      position: relative;
      clip-path: polygon(0 5vw, 100% 0, 100% calc(100% - 5vw), 0 100%);
      margin-top: -1px;
      padding-top: clamp(86px, 13vh, 150px);
      padding-bottom: clamp(86px, 13vh, 150px);
    }
    .cb-stats-features {
      color: #ecfbff;
      background: #003366;
    }
    .cb-stats-features .cb-sec-label { color: #9af1ff; }
    .cb-stats-features .cb-sec-title {
      max-width: 720px;
      color: #fff;
      font-size: clamp(28px, 4vw, 54px);
      text-wrap: balance;
    }
    .cb-bento-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      grid-auto-rows: minmax(190px, auto);
      gap: 16px;
      margin-top: 38px;
    }
    .cb-glass-card {
      position: relative;
      overflow: hidden;
      min-height: 190px;
      padding: clamp(22px, 3vw, 34px);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
      box-shadow: 0 24px 80px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.2);
      backdrop-filter: blur(22px) saturate(1.35);
    }
    .cb-glass-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(154,241,255,.18), transparent 42%);
      pointer-events: none;
    }
    .cb-bento-wide { grid-column: span 2; }
    .cb-bento-tall { grid-row: span 2; }
    .cb-stat-num {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(50px, 7vw, 90px);
      font-weight: 800;
      line-height: .9;
      color: #fff;
      letter-spacing: 0;
    }
    .cb-stat-unit {
      margin-left: 8px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      color: #9af1ff;
      text-transform: uppercase;
    }
    .cb-glass-card h3 {
      position: relative;
      margin: 16px 0 10px;
      color: #fff;
      font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
      font-size: clamp(20px, 2.3vw, 30px);
      line-height: 1.15;
    }
    .cb-glass-card p {
      position: relative;
      margin: 18px 0 0;
      color: rgba(236,251,255,.78);
      font-size: 14px;
      line-height: 1.85;
    }
    .cb-feature-card i {
      position: relative;
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      color: #03122a;
      background: linear-gradient(135deg, #9af1ff, #ffd166);
      box-shadow: 0 12px 36px rgba(72,202,228,.28);
    }
    .cb-gallery-sec {
      position: relative;
      margin-top: -5vw;
      padding-top: clamp(96px, 14vh, 150px);
      background: #003366;
      clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
    }
    .cb-gallery-strip {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(280px, 42vw);
      gap: 16px;
      max-width: none;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline mandatory;
      padding-inline: max(20px, calc((100vw - 1100px) / 2));
      padding-bottom: 22px;
      scrollbar-width: thin;
    }
    .cb-gallery-strip .cb-gi {
      height: clamp(320px, 48vw, 560px);
      border-radius: 8px;
      scroll-snap-align: center;
      box-shadow: 0 24px 80px rgba(0, 35, 68, .18);
    }
    .cb-gallery-strip .cb-gi--main,
    .cb-gallery-strip .cb-gi--wide {
      grid-row: auto;
      grid-column: auto;
    }
    .cb-gallery-strip .cb-gi--main { grid-column-end: span 2; }
    .cb-gallery-strip .cb-gi--wide { grid-column-end: span 2; }
    .cb-content-sec {
      background: #003366;
      clip-path: polygon(0 0, 100% 4vw, 100% 100%, 0 calc(100% - 3vw));
      padding-bottom: clamp(84px, 12vh, 130px);
    }
    .cb-content { padding-block: 20px; }
    .cb-content > p,
    .cb-content > ul,
    .cb-content > ol,
    .cb-content > li,
    .cb-content ul li,
    .cb-content ol li {
      color: rgba(236,251,255,.9);
    }
    .cb-content > h2,
    .cb-content > h3,
    .cb-content > h4 {
      color: #fff;
      border-bottom-color: rgba(154,241,255,.28);
    }
    .cb-content > p strong,
    .cb-content > p a,
    .cb-content li strong,
    .cb-content li a {
      color: #9af1ff;
    }
    .cb-content h2,
    .cb-content h3,
    .cb-content h4,
    .cb-content table,
    .inline-review-item,
    .cb-rv-card { border-radius: 8px; }
    .inline-review-item,
    .cb-rv-card {
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(0,119,182,.12);
      box-shadow: 0 20px 50px rgba(0,68,120,.08);
      backdrop-filter: blur(16px);
    }
    .cb-reviews-sec {
      background: #003366;
    }
    .cb-gallery-sec .cb-sec-title,
    .cb-reviews-sec .cb-sec-title {
      color: #fff;
    }
    .cb-gallery-sec .cb-sec-label,
    .cb-reviews-sec .cb-sec-label {
      color: #9af1ff;
    }
    .cb-reviews-sec .cb-inner {
      max-width: 1100px;
    }
    .cb-rv-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(320px, 72%);
      grid-template-columns: none;
      gap: 18px;
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-snap-type: inline mandatory;
      padding: 8px 4px 22px;
      scrollbar-width: thin;
      scrollbar-color: rgba(0,119,182,.42) rgba(0,119,182,.08);
    }
    .cb-rv-grid::-webkit-scrollbar {
      height: 10px;
    }
    .cb-rv-grid::-webkit-scrollbar-track {
      border-radius: 999px;
      background: rgba(0,119,182,.08);
    }
    .cb-rv-grid::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: linear-gradient(90deg, var(--bc-sky), var(--bc-blue));
    }
    .cb-rv-card {
      scroll-snap-align: center;
      min-height: 260px;
      border-radius: 8px;
    }
    .cb-rv-card:first-child {
      margin-left: 0;
    }
    .cb-rv-card:last-child {
      margin-right: 4px;
    }
    .cb-reviews-sec.is-js-ready .cb-inner {
      position: relative;
    }
    .cb-review-console {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin: -14px 0 22px;
      color: #ecfbff;
    }
    .cb-review-count {
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      letter-spacing: .02em;
    }
    .cb-review-count strong {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1;
    }
    .cb-review-count span {
      color: rgba(236,251,255,.58);
      font-size: 14px;
    }
    .cb-review-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .cb-review-btn {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 18px 42px rgba(0,0,0,.18);
      backdrop-filter: blur(18px);
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .cb-review-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(154,241,255,.58);
      background: rgba(154,241,255,.16);
    }
    .cb-rv-grid.js-reviews {
      grid-auto-columns: minmax(340px, 76%);
      gap: clamp(16px, 3vw, 28px);
      padding: 10px max(4px, calc((100% - 76%) / 2)) 28px;
      scroll-behavior: smooth;
      cursor: grab;
      scrollbar-width: none;
      mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    }
    .cb-rv-grid.js-reviews::-webkit-scrollbar {
      display: none;
    }
    .cb-rv-grid.js-reviews.is-dragging {
      cursor: grabbing;
      scroll-behavior: auto;
      user-select: none;
    }
    .cb-rv-grid.js-reviews .cb-rv-card {
      position: relative;
      display: grid;
      align-content: start;
      min-height: clamp(340px, 38vw, 430px);
      padding: clamp(26px, 4vw, 44px);
      opacity: .54;
      transform: scale(.92);
      background:
        linear-gradient(145deg, rgba(255,255,255,.94), rgba(221,247,255,.76));
      border: 1px solid rgba(255,255,255,.5);
      box-shadow: 0 22px 60px rgba(0,0,0,.16);
      transition: opacity .35s ease, transform .35s ease, box-shadow .35s ease, background .35s ease;
    }
    .cb-rv-grid.js-reviews .cb-rv-card::before {
      content: "\f10d";
      position: absolute;
      right: clamp(22px, 4vw, 42px);
      top: clamp(20px, 3vw, 34px);
      color: rgba(0,119,182,.12);
      font-family: "Font Awesome 6 Free";
      font-size: clamp(42px, 8vw, 88px);
      font-weight: 900;
      line-height: 1;
      pointer-events: none;
    }
    .cb-rv-grid.js-reviews .cb-rv-card.is-active {
      opacity: 1;
      transform: scale(1);
      background:
        radial-gradient(circle at 85% 18%, rgba(154,241,255,.42), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(230,249,255,.88));
      box-shadow: 0 34px 90px rgba(0,0,0,.28);
    }
    .cb-rv-grid.js-reviews .cb-rv-stars {
      color: #ffd166;
      font-size: clamp(18px, 2vw, 24px);
      letter-spacing: .12em;
      text-shadow: 0 8px 20px rgba(245,158,11,.22);
    }
    .cb-rv-grid.js-reviews .cb-rv-author {
      color: var(--bc-deep);
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 900;
    }
    .cb-rv-grid.js-reviews .cb-rv-text {
      color: #24394d;
      font-size: clamp(14px, 1.5vw, 16px);
      line-height: 2;
      display: -webkit-box;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 5;
    }
    .cb-review-open {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      margin-top: 20px;
      padding: 11px 16px;
      border: 1px solid rgba(0,119,182,.16);
      border-radius: 999px;
      color: var(--bc-deep);
      background: rgba(255,255,255,.62);
      box-shadow: 0 12px 30px rgba(0,68,120,.1);
      cursor: pointer;
      font-size: 13px;
      font-weight: 900;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .cb-review-open:hover {
      transform: translateY(-2px);
      border-color: rgba(0,180,216,.42);
      background: rgba(202,240,248,.72);
    }
    .cb-review-open i {
      color: var(--bc-blue);
    }
    .cb-review-dots {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }
    .cb-review-dots button {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.34);
      cursor: pointer;
      transition: width .25s ease, background .25s ease;
    }
    .cb-review-dots button.is-active {
      width: 42px;
      background: #9af1ff;
      box-shadow: 0 0 18px rgba(154,241,255,.66);
    }
    .cb-review-modal {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: grid;
      place-items: center;
      padding: clamp(18px, 4vw, 46px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .24s ease;
    }
    .cb-review-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .cb-review-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 18, 40, .72);
      backdrop-filter: blur(14px);
    }
    .cb-review-modal__panel {
      position: relative;
      width: min(760px, 100%);
      max-height: min(78vh, 760px);
      overflow: auto;
      border: 1px solid rgba(255,255,255,.42);
      border-radius: 8px;
      background:
        radial-gradient(circle at 88% 12%, rgba(154,241,255,.34), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(229,248,255,.94));
      box-shadow: 0 34px 120px rgba(0,0,0,.42);
      padding: clamp(26px, 5vw, 52px);
      transform: translateY(18px) scale(.98);
      transition: transform .24s ease;
    }
    .cb-review-modal.is-open .cb-review-modal__panel {
      transform: translateY(0) scale(1);
    }
    .cb-review-modal__close {
      position: sticky;
      top: 0;
      float: right;
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin: -16px -16px 12px 16px;
      border: 1px solid rgba(0,119,182,.16);
      border-radius: 999px;
      color: var(--bc-deep);
      background: rgba(255,255,255,.78);
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0,68,120,.12);
    }
    .cb-review-modal__stars {
      color: #f59e0b;
      font-size: clamp(20px, 3vw, 28px);
      letter-spacing: .12em;
      margin-bottom: 12px;
    }
    .cb-review-modal__author {
      color: var(--bc-deep);
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 900;
      line-height: 1.35;
      margin-bottom: 20px;
    }
    .cb-review-modal__text {
      color: #24394d;
      font-size: clamp(15px, 2vw, 17px);
      line-height: 2.05;
      white-space: pre-line;
    }
    body.cb-modal-open {
      overflow: hidden;
    }
    .cb-price-card {
      grid-column: span 2;
      min-width: 0;
    }
    .cb-stat-card {
      min-width: 0;
    }
    .cb-stat-card .cb-stat-num {
      font-size: clamp(44px, 5.2vw, 78px);
      overflow-wrap: normal;
    }
    .cb-stat-card .cb-stat-unit {
      display: inline-block;
      margin-top: 8px;
      vertical-align: baseline;
    }
    .cb-gallery-strip {
      max-width: 1100px;
      overflow: visible;
      grid-auto-flow: row;
      grid-auto-columns: initial;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: clamp(150px, 15vw, 220px);
      padding-inline: clamp(20px,5vw,60px);
      padding-bottom: 0;
    }
    .cb-gallery-strip .cb-gi {
      height: auto;
      min-height: 0;
      border-radius: 8px;
      scroll-snap-align: unset;
    }
    .cb-gallery-strip .cb-gi:nth-child(1) {
      grid-column: span 6;
      grid-row: span 2;
    }
    .cb-gallery-strip .cb-gi:nth-child(2),
    .cb-gallery-strip .cb-gi:nth-child(3) {
      grid-column: span 3;
    }
    .cb-gallery-strip .cb-gi:nth-child(4) {
      grid-column: span 4;
    }
    .cb-gallery-strip .cb-gi:nth-child(5) {
      grid-column: span 8;
    }
    .cb-gallery-strip .cb-gi::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 48%, rgba(1,10,28,.26));
      opacity: .78;
      pointer-events: none;
    }
    .cb-gallery-showcase {
      max-width: 1100px;
      padding-inline: clamp(20px,5vw,60px);
    }
    .cb-gallery-stage {
      position: relative;
      min-height: clamp(440px, 62vw, 680px);
      overflow: hidden;
      border-radius: 8px;
      background: #03122a;
      box-shadow: 0 32px 90px rgba(0,35,68,.22);
    }
    .cb-gallery-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,18,42,.1) 0%, rgba(3,18,42,.08) 44%, rgba(3,18,42,.72) 100%),
        radial-gradient(circle at 72% 20%, rgba(154,241,255,.22), transparent 22rem);
      pointer-events: none;
    }
    .cb-gallery-stage img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.06);
      animation: cbGalleryFade 25s infinite;
      will-change: opacity, transform;
    }
    .cb-gallery-stage img:nth-child(2) { animation-delay: 5s; }
    .cb-gallery-stage img:nth-child(3) { animation-delay: 10s; }
    .cb-gallery-stage img:nth-child(4) { animation-delay: 15s; }
    .cb-gallery-stage img:nth-child(5) { animation-delay: 20s; }
    @keyframes cbGalleryFade {
      0% { opacity: 0; transform: scale(1.08); }
      5% { opacity: 1; }
      20% { opacity: 1; transform: scale(1.02); }
      25% { opacity: 0; transform: scale(1); }
      100% { opacity: 0; transform: scale(1.08); }
    }
    .cb-gallery-strip {
      display: none;
    }
    .inline-reviews {
      display: none !important;
    }
    .cb-content-note {
      margin: 1.8em 0;
      padding: 18px 20px;
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 44px rgba(0,68,120,.08);
    }
    .cb-content-note p {
      margin: 0;
    }
    .cb-content table {
      table-layout: fixed;
      word-break: break-word;
    }
    .cb-content td:first-child {
      width: 34%;
      font-weight: 700;
      color: var(--bc-navy);
      background: rgba(202,240,248,.42);
    }
    .cb-content details {
      margin: 1.4em 0;
      overflow: hidden;
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 44px rgba(0,68,120,.08);
    }
    .cb-content summary {
      cursor: pointer;
      padding: 16px 18px;
      color: var(--bc-navy);
      font-weight: 800;
      line-height: 1.6;
      list-style-position: inside;
      background: linear-gradient(135deg, rgba(202,240,248,.7), rgba(255,255,255,.82));
    }
    .cb-content details p {
      padding: 18px;
      margin: 0;
    }
    .cb-content .cb-line-cta {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      margin: 1.4em 0;
      padding: 0 30px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.62);
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, #06c755 0%, #02a946 58%, #027e58 100%);
      box-shadow: 0 18px 46px rgba(6,199,85,.28), inset 0 1px 0 rgba(255,255,255,.38);
      text-decoration: none;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0;
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .cb-content .cb-line-cta::before {
      content: "\f3c0";
      font-family: "Font Awesome 6 Brands";
      font-weight: 400;
      font-size: 20px;
    }
    .cb-content .cb-line-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 18% 20%, rgba(255,255,255,.32), transparent 28%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
      transform: translateX(-110%);
      transition: transform .55s ease;
    }
    .cb-content .cb-line-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 58px rgba(6,199,85,.36), inset 0 1px 0 rgba(255,255,255,.48);
    }
    .cb-content .cb-line-cta:hover::after {
      transform: translateX(110%);
    }
    .cb-content table {
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border: 1px solid rgba(0,119,182,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.82);
      box-shadow: 0 24px 64px rgba(0,68,120,.1);
    }
    .cb-content table tr {
      transition: background .2s ease;
    }
    .cb-content table tr:hover td {
      background: rgba(202,240,248,.38);
    }
    .cb-content table td {
      border-bottom: 1px solid rgba(0,119,182,.1);
      background: rgba(255,255,255,.72);
      font-size: 14px;
      line-height: 1.8;
    }
    .cb-content table tr:last-child td {
      border-bottom: 0;
    }
    .cb-content table td:first-child {
      position: relative;
      padding-left: 22px;
      background: linear-gradient(135deg, rgba(202,240,248,.7), rgba(255,255,255,.82));
    }
    .cb-content table td:first-child::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--bc-sky), var(--bc-navy));
    }
    .cb-detail-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 8px;
      color: #0077b6;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.4;
      text-decoration: none;
      text-underline-offset: 4px;
      transition: color .2s ease;
    }
    .cb-detail-link:hover {
      color: #023e8a;
      text-decoration: underline;
    }
    .cb-detail-link i {
      color: currentColor;
      font-size: 11px;
      transition: transform .2s ease;
    }
    .cb-detail-link:hover i {
      transform: translateX(3px);
    }
    .cb-content details {
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.82);
      box-shadow: 0 24px 64px rgba(0,68,120,.1);
      backdrop-filter: blur(14px);
      transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
    }
    .cb-content details[open] {
      border-color: rgba(0,180,216,.32);
      box-shadow: 0 30px 78px rgba(0,68,120,.14);
    }
    .cb-content summary {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      list-style: none;
      padding: 18px 58px 18px 22px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(226,247,255,.88)),
        radial-gradient(circle at 88% 20%, rgba(72,202,228,.26), transparent 15rem);
    }
    .cb-content summary::-webkit-details-marker {
      display: none;
    }
    .cb-content summary::before {
      content: "";
      width: 11px;
      height: 11px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--bc-sky);
      box-shadow: 0 0 18px rgba(0,180,216,.72);
    }
    .cb-content summary::after {
      content: "+";
      position: absolute;
      right: 18px;
      top: 50%;
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--bc-blue), var(--bc-deep));
      font-family: 'DM Sans', sans-serif;
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      transform: translateY(-50%);
      transition: transform .22s ease;
    }
    .cb-content details[open] summary::after {
      content: "-";
      transform: translateY(-50%) rotate(180deg);
    }
    .cb-content details p {
      border-top: 1px solid rgba(0,119,182,.1);
      background: rgba(255,255,255,.64);
    }
    .cb-flow-section {
      position: relative;
      margin: clamp(42px, 7vw, 78px) 0;
      padding: clamp(24px, 4vw, 42px);
      overflow: hidden;
      border: 1px solid rgba(0,119,182,.12);
      border-radius: 8px;
      background:
        radial-gradient(circle at 14% 0%, rgba(72,202,228,.18), transparent 24rem),
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(237,249,255,.86));
      box-shadow: 0 28px 78px rgba(0,68,120,.12);
    }
    .cb-flow-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(135deg, rgba(0,119,182,.06) 0 1px, transparent 1px 20px);
      pointer-events: none;
    }
    .cb-flow-section > * {
      position: relative;
      z-index: 1;
    }
    .cb-flow-head {
      max-width: 760px;
      margin-bottom: 28px;
    }
    .cb-flow-head span {
      display: inline-flex;
      margin-bottom: 10px;
      color: var(--bc-blue);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .cb-content .cb-flow-head h3 {
      margin: 0 0 12px;
      color: var(--bc-deep);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 900;
      line-height: 1.2;
    }
    .cb-content .cb-flow-head p {
      margin: 0;
      color: #345064;
      font-size: 15px;
      line-height: 1.9;
    }
    .cb-flow-line {
      position: absolute;
      left: clamp(42px, 7vw, 76px);
      top: clamp(150px, 18vw, 210px);
      bottom: clamp(34px, 5vw, 50px);
      width: 2px;
      overflow: hidden;
      background: rgba(0,119,182,.12);
    }
    .cb-flow-line::before {
      content: "";
      position: absolute;
      inset: 0;
      transform-origin: top;
      transform: scaleY(0);
      background: linear-gradient(180deg, var(--bc-sky), var(--bc-yellow), var(--bc-blue));
    }
    .cb-flow-section.visible .cb-flow-line::before {
      animation: cbFlowGrow 2.6s ease forwards;
    }
    @keyframes cbFlowGrow {
      to { transform: scaleY(1); }
    }
    .cb-flow-steps {
      display: grid;
      gap: 14px;
    }
    .cb-flow-step {
      position: relative;
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      align-items: stretch;
      margin-left: clamp(22px, 4vw, 48px);
      padding: 18px 20px 18px 0;
      opacity: 0;
      transform: translateY(22px);
    }
    .cb-flow-section.visible .cb-flow-step {
      animation: cbFlowStepIn .7s ease forwards;
      animation-delay: calc(var(--flow-index, 0) * .1s);
    }
    .cb-flow-step:nth-child(1) { --flow-index: 1; }
    .cb-flow-step:nth-child(2) { --flow-index: 2; }
    .cb-flow-step:nth-child(3) { --flow-index: 3; }
    .cb-flow-step:nth-child(4) { --flow-index: 4; }
    .cb-flow-step:nth-child(5) { --flow-index: 5; }
    .cb-flow-step:nth-child(6) { --flow-index: 6; }
    .cb-flow-step:nth-child(7) { --flow-index: 7; }
    .cb-flow-step:nth-child(8) { --flow-index: 8; }
    @keyframes cbFlowStepIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .cb-flow-step::before {
      content: "";
      position: absolute;
      left: -31px;
      top: 29px;
      width: 14px;
      height: 14px;
      border: 3px solid #fff;
      border-radius: 50%;
      background: var(--bc-sky);
      box-shadow: 0 0 0 6px rgba(72,202,228,.14), 0 0 24px rgba(72,202,228,.65);
    }
    .cb-flow-step time {
      display: grid;
      place-items: center;
      min-height: 76px;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--bc-blue), var(--bc-deep));
      font-family: 'DM Sans', sans-serif;
      font-size: 18px;
      font-weight: 900;
      box-shadow: 0 14px 34px rgba(0,68,120,.18);
    }
    .cb-flow-step > div {
      padding: 18px 20px;
      border: 1px solid rgba(0,119,182,.1);
      border-radius: 8px;
      background: rgba(255,255,255,.78);
      box-shadow: 0 14px 38px rgba(0,68,120,.07);
      backdrop-filter: blur(12px);
    }
    .cb-content .cb-flow-step h4 {
      margin: 0 0 6px;
      color: var(--bc-deep);
      font-size: clamp(17px, 2vw, 22px);
      font-weight: 900;
      line-height: 1.35;
    }
    .cb-content .cb-flow-step p {
      margin: 0;
      color: #435d70;
      font-size: 14px;
      line-height: 1.8;
    }
    .cb-flow-step-active time,
    .cb-flow-step-active > div {
      background:
        linear-gradient(135deg, rgba(3,18,42,.96), rgba(0,119,182,.86));
      color: #fff;
    }
    .cb-content .cb-flow-step-active h4 {
      color: #fff;
    }
    .cb-content .cb-flow-step-active p {
      color: rgba(236,251,255,.82);
    }
    .cb-lp-copy-block {
      position: relative;
      margin: 0 0 clamp(42px, 7vw, 72px);
      padding: clamp(26px, 4vw, 46px);
      overflow: hidden;
      border: 1px solid rgba(0,119,182,.12);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(226,248,255,.86)),
        url("https://bluecave-okinawa.jp/wp-content/uploads/snorkeling4.jpg") center / cover;
      background-blend-mode: screen;
      box-shadow: 0 28px 80px rgba(0,68,120,.12);
    }
    .cb-lp-copy-block::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 54%, rgba(255,255,255,.54) 100%),
        repeating-linear-gradient(135deg, rgba(0,119,182,.08) 0 1px, transparent 1px 18px);
      pointer-events: none;
    }
    .cb-lp-copy-block::after {
      content: "";
      position: absolute;
      left: -20%;
      right: -20%;
      bottom: 0;
      height: 7px;
      background: linear-gradient(90deg, var(--bc-sky), var(--bc-yellow), var(--bc-blue), var(--bc-sky));
      background-size: 220% 100%;
      animation: cbColorRail 5.5s linear infinite;
    }
    @keyframes cbColorRail {
      to { background-position: 220% 0; }
    }
    .cb-lp-copy-block > * {
      position: relative;
      z-index: 1;
    }
    .cb-copy-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      padding: 7px 12px;
      border: 1px solid rgba(0,119,182,.18);
      border-radius: 999px;
      color: var(--bc-blue);
      background: rgba(255,255,255,.72);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .cb-copy-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--bc-sky);
      box-shadow: 0 0 18px rgba(0,180,216,.75);
      animation: cbPopPulse 1.8s ease-in-out infinite;
    }
    @keyframes cbPopPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.45); opacity: .55; }
    }
    .cb-content .cb-lp-copy-block h3 {
      max-width: 740px;
      margin: 0 0 18px;
      padding: 0;
      border: 0;
      color: var(--bc-deep);
      font-family: 'M PLUS Rounded 1c','Noto Sans JP',sans-serif;
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      line-height: 1.22;
      text-wrap: balance;
    }
    .cb-copy-pop-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }
    .cb-copy-pop-tags span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      color: var(--bc-deep);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 26px rgba(0,68,120,.08);
      font-size: 13px;
      font-weight: 900;
      transform: rotate(-1deg);
    }
    .cb-copy-pop-tags span:nth-child(2) { transform: rotate(1deg); }
    .cb-copy-pop-tags span:nth-child(3) { transform: rotate(-.5deg); }
    .cb-copy-pop-tags span::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bc-sky);
      box-shadow: 0 0 14px rgba(0,180,216,.65);
    }
    .cb-lp-copy-block .cb-copy-pop-tags span,
    .cb-lp-copy-block .cb-copy-lead p,
    .cb-lp-copy-block .cb-support-ribbon,
    .cb-lp-copy-block .cb-copy-feature-grid article {
      opacity: 0;
      transform: translateY(20px);
    }
    .cb-lp-copy-block.visible .cb-copy-pop-tags span,
    .cb-lp-copy-block.visible .cb-copy-lead p,
    .cb-lp-copy-block.visible .cb-support-ribbon,
    .cb-lp-copy-block.visible .cb-copy-feature-grid article {
      animation: cbPopIn .68s cubic-bezier(.2,.9,.2,1.12) forwards;
    }
    .cb-lp-copy-block.visible .cb-copy-pop-tags span:nth-child(1) { animation-delay: .05s; }
    .cb-lp-copy-block.visible .cb-copy-pop-tags span:nth-child(2) { animation-delay: .13s; }
    .cb-lp-copy-block.visible .cb-copy-pop-tags span:nth-child(3) { animation-delay: .21s; }
    .cb-lp-copy-block.visible .cb-copy-lead p:nth-child(1) { animation-delay: .18s; }
    .cb-lp-copy-block.visible .cb-copy-lead p:nth-child(2) { animation-delay: .28s; }
    .cb-lp-copy-block.visible .cb-support-ribbon { animation-delay: .38s; }
    .cb-lp-copy-block.visible .cb-copy-feature-grid article:nth-child(1) { animation-delay: .5s; }
    .cb-lp-copy-block.visible .cb-copy-feature-grid article:nth-child(2) { animation-delay: .6s; }
    @keyframes cbPopIn {
      0% { opacity: 0; transform: translateY(20px) scale(.98); }
      70% { opacity: 1; transform: translateY(-3px) scale(1.01); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }
    .cb-copy-lead {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin: 24px 0;
    }
    .cb-content .cb-copy-lead p,
    .cb-content .cb-copy-panel p,
    .cb-content .cb-copy-feature-grid p {
      margin: 0;
      color: #244154;
      font-size: 15px;
      line-height: 1.9;
    }
    .cb-copy-lead p {
      padding: 18px 20px;
      border-left: 3px solid var(--bc-sky);
      background: rgba(255,255,255,.72);
      box-shadow: 0 14px 34px rgba(0,68,120,.07);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .cb-copy-lead p:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 42px rgba(0,68,120,.11);
    }
    .cb-copy-split {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
      margin-top: 18px;
    }
    .cb-copy-panel {
      min-height: 220px;
      padding: clamp(22px, 3vw, 34px);
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 52px rgba(0,68,120,.1);
    }
    .cb-support-ribbon {
      position: relative;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 20px;
      align-items: center;
      overflow: hidden;
      padding: clamp(20px, 3.4vw, 34px);
      border: 1px solid rgba(0,119,182,.14);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(232,249,255,.86)),
        radial-gradient(circle at 92% 18%, rgba(255,209,102,.28), transparent 18rem);
      box-shadow: 0 22px 58px rgba(0,68,120,.1);
      transition: transform .24s ease, box-shadow .24s ease;
    }
    .cb-support-ribbon:hover {
      transform: translateY(-4px);
      box-shadow: 0 30px 72px rgba(0,68,120,.14);
    }
    .cb-support-ribbon::before {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 4px;
      background: linear-gradient(90deg, var(--bc-sky), var(--bc-yellow), var(--bc-blue));
    }
    .cb-support-icon {
      display: grid;
      place-items: center;
      width: clamp(58px, 7vw, 78px);
      height: clamp(58px, 7vw, 78px);
      border-radius: 8px;
      color: #03122a;
      background: linear-gradient(135deg, #9af1ff, #ffd166);
      box-shadow: 0 18px 44px rgba(0,180,216,.22);
      font-size: clamp(26px, 3vw, 34px);
      animation: cbIconBob 2.8s ease-in-out infinite;
    }
    @keyframes cbIconBob {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-6px) rotate(-4deg); }
    }
    .cb-support-copy span {
      display: inline-flex;
      margin-bottom: 8px;
      color: var(--bc-blue);
      font-family: 'DM Sans','Noto Sans JP',sans-serif;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
    }
    .cb-content .cb-support-copy h4 {
      margin: 0 0 8px;
      color: var(--bc-deep);
      font-size: clamp(21px, 3vw, 34px);
      font-weight: 900;
      line-height: 1.28;
      text-wrap: balance;
    }
    .cb-content .cb-support-copy p {
      max-width: 660px;
      margin: 0;
      color: #244154;
      font-size: 15px;
      line-height: 1.9;
    }
    .cb-support-points {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .cb-support-points b {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 8px;
      color: var(--bc-deep);
      background: rgba(202,240,248,.72);
      font-size: 12px;
      font-weight: 900;
    }
    .cb-support-badge {
      align-self: stretch;
      display: grid;
      place-items: center;
      min-width: 112px;
      padding: 10px 14px;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--bc-blue), var(--bc-deep));
      font-size: 13px;
      font-weight: 900;
      writing-mode: vertical-rl;
      letter-spacing: .12em;
    }
    .cb-copy-panel-dark {
      color: #fff;
      background:
        linear-gradient(135deg, rgba(3,18,42,.98), rgba(0,51,92,.92)),
        url("https://bluecave-okinawa.jp/wp-content/uploads/snorkeling1.jpg") center / cover;
      background-blend-mode: multiply;
      box-shadow: inset 0 0 0 999px rgba(0,0,0,.16), 0 18px 52px rgba(0,68,120,.16);
    }
    .cb-copy-panel span {
      display: block;
      margin-bottom: 14px;
      color: var(--bc-blue);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .cb-copy-panel-dark span,
    .cb-copy-panel-dark p {
      color: rgba(236,251,255,.82);
    }
    .cb-content .cb-copy-panel h4 {
      margin: 0 0 14px;
      color: var(--bc-deep);
      font-size: clamp(20px, 2.5vw, 30px);
      font-weight: 900;
      line-height: 1.32;
    }
    .cb-content .cb-copy-panel-dark h4 {
      color: #fff;
      text-shadow: 0 2px 18px rgba(0,0,0,.45);
    }
    .cb-copy-feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 16px;
    }
    .cb-copy-feature-grid article {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 14px;
      row-gap: 4px;
      padding: 20px;
      border: 1px solid rgba(0,119,182,.12);
      border-radius: 8px;
      background: rgba(255,255,255,.8);
      box-shadow: 0 14px 34px rgba(0,68,120,.07);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .cb-copy-feature-grid article:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 52px rgba(0,68,120,.12);
    }
    .cb-copy-feature-grid i {
      grid-row: span 2;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      color: #03122a;
      background: linear-gradient(135deg, #9af1ff, #ffd166);
    }
    .cb-content .cb-copy-feature-grid h4 {
      margin: 0;
      color: var(--bc-deep);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.35;
    }
    .cb-price-section {
      display: grid;
      grid-template-columns: 1fr minmax(260px, 360px);
      gap: 18px;
      align-items: stretch;
      margin: clamp(38px, 6vw, 70px) 0 28px;
      padding: clamp(22px, 3.4vw, 34px);
      overflow: hidden;
      border: 1px solid rgba(0,119,182,.12);
      border-radius: 8px;
      background:
        radial-gradient(circle at 84% 26%, rgba(255,209,102,.24), transparent 20rem),
        linear-gradient(135deg, #ffffff 0%, #eefaff 100%);
      box-shadow: 0 28px 78px rgba(0,68,120,.12);
    }
    .cb-price-copy span {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--bc-blue);
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .2em;
      text-transform: uppercase;
    }
    .cb-content .cb-price-copy h3 {
      margin: 0 0 12px;
      color: var(--bc-deep);
      font-size: clamp(28px, 3.8vw, 46px);
      font-weight: 900;
      line-height: 1.2;
    }
    .cb-content .cb-price-copy p {
      max-width: 520px;
      margin: 0;
      color: #345064;
      font-size: 15px;
      line-height: 1.9;
    }
    .cb-price-display {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 190px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, #03122a, #0077b6);
      box-shadow: 0 24px 60px rgba(0,68,120,.22), inset 0 1px 0 rgba(255,255,255,.18);
    }
    .cb-content .cb-price-display p {
      margin: 0 0 6px;
      color: rgba(236,251,255,.74);
      font-size: 13px;
      font-weight: 700;
    }
    .cb-price-display strong {
      color: #fff;
      font-family: 'DM Sans','Noto Sans JP',sans-serif;
      font-size: clamp(32px, 4.2vw, 54px);
      font-weight: 800;
      line-height: .98;
      letter-spacing: 0;
      white-space: nowrap;
    }
    .cb-price-display span {
      margin-top: 10px;
      color: #ffd166;
      font-size: 16px;
      font-weight: 900;
    }
    @media (max-width: 900px) {
      .cb-bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cb-bento-wide,
      .cb-bento-tall { grid-column: span 1; grid-row: auto; }
      .cb-price-card { grid-column: span 2; }
      .cb-gallery-strip {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 190px;
      }
      .cb-gallery-strip .cb-gi:nth-child(1),
      .cb-gallery-strip .cb-gi:nth-child(5) { grid-column: span 6; }
      .cb-gallery-strip .cb-gi:nth-child(2),
      .cb-gallery-strip .cb-gi:nth-child(3),
      .cb-gallery-strip .cb-gi:nth-child(4) { grid-column: span 2; }
      .cb-price-section { grid-template-columns: 1fr; }
      .cb-rv-grid {
        grid-auto-columns: minmax(280px, 88%);
      }
    }
    @media (max-width: 620px) {
      .cb-hero-body {
        margin-left: 24px;
        margin-right: 24px;
        max-width: calc(100vw - 48px);
        width: calc(100vw - 48px);
        text-align: left;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        padding-top: 110px;
      }
      .cb-hero-title {
        max-width: 100%;
        width: 100%;
        font-size: clamp(30px, 10vw, 40px);
        line-height: 1.08;
        word-break: break-all;
      }
      .cb-hero-btns { align-items: stretch; }
      .cb-btn-line, .cb-btn-tel { width: 100%; justify-content: center; }
      .cb-bento-grid { grid-template-columns: 1fr; }
      .cb-price-card { grid-column: span 1; }
      .cb-edge,
      .cb-gallery-sec,
      .cb-content-sec { clip-path: none; margin-top: 0; }
      .cb-gallery-strip {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
      }
      .cb-gallery-strip .cb-gi,
      .cb-gallery-strip .cb-gi:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
      }
      .cb-content table,
      .cb-content tbody,
      .cb-content tr,
      .cb-content td {
        display: block;
        width: 100%;
      }
      .cb-content td:first-child {
        width: 100%;
        border-bottom: 0;
      }
      .cb-copy-lead,
      .cb-copy-split,
      .cb-copy-feature-grid {
        grid-template-columns: 1fr;
      }
      .cb-copy-panel { min-height: 0; }
      .cb-support-ribbon {
        grid-template-columns: 1fr;
      }
      .cb-support-badge {
        writing-mode: horizontal-tb;
        min-width: 0;
        min-height: 44px;
      }
      .cb-copy-feature-grid article {
        grid-template-columns: 1fr;
      }
      .cb-gallery-stage {
        min-height: 360px;
      }
      .cb-price-display strong {
        font-size: clamp(28px, 9vw, 46px);
      }
      .cb-flow-section {
        padding: 22px 18px;
      }
      .cb-flow-line {
        left: 26px;
        top: 174px;
      }
      .cb-flow-step {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-left: 24px;
        padding-right: 0;
      }
      .cb-flow-step::before {
        left: -30px;
        top: 30px;
      }
      .cb-flow-step time {
        width: fit-content;
        min-height: 0;
        padding: 8px 14px;
      }
      .cb-review-console {
        align-items: flex-start;
        flex-direction: column;
        margin-top: -4px;
      }
      .cb-rv-grid.js-reviews {
        grid-auto-columns: minmax(280px, 88%);
        padding-inline: 0;
        mask-image: none;
      }
      .cb-rv-grid.js-reviews .cb-rv-card {
        min-height: 420px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .cb-hero::before,
      .cb-marquee-track,
      .cb-hero-scroll,
      .cb-gallery-stage img,
      .cb-flow-line::before,
      .cb-flow-step { animation: none; }
      .cb-gallery-stage img:first-child { opacity: 1; }
      .cb-flow-line::before { transform: scaleY(1); }
      .cb-flow-step { opacity: 1; transform: none; }
      .cb-lp-copy-block::after,
      .cb-copy-kicker::before,
      .cb-support-icon,
      .cb-lp-copy-block.visible .cb-copy-pop-tags span,
      .cb-lp-copy-block.visible .cb-copy-lead p,
      .cb-lp-copy-block.visible .cb-support-ribbon,
      .cb-lp-copy-block.visible .cb-copy-feature-grid article {
        animation: none;
      }
    .cb-lp-copy-block .cb-copy-pop-tags span,
    .cb-lp-copy-block .cb-copy-lead p,
    .cb-lp-copy-block .cb-support-ribbon,
    .cb-lp-copy-block .cb-copy-feature-grid article {
      opacity: 1;
      transform: none;
    }
    }

    .cb-scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1200;
      width: 100%;
      height: 3px;
      pointer-events: none;
      background: linear-gradient(90deg, #9af1ff, #ffd166, #06c755);
      transform: scaleX(var(--scroll-progress, 0));
      transform-origin: left center;
      box-shadow: 0 0 24px rgba(154,241,255,.72);
    }
    .cb-cursor-glow {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 1190;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      transform: translate3d(calc(var(--cursor-x, -200px) - 50%), calc(var(--cursor-y, -200px) - 50%), 0);
      background: radial-gradient(circle, rgba(154,241,255,.18) 0%, rgba(154,241,255,.08) 34%, transparent 70%);
      mix-blend-mode: screen;
      transition: opacity .25s ease, width .25s ease, height .25s ease;
    }
    body.cb-pointer-active .cb-cursor-glow { opacity: 1; }
    body.cb-pointer-hot .cb-cursor-glow {
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, rgba(255,209,102,.2) 0%, rgba(154,241,255,.1) 38%, transparent 70%);
    }
    .cb-hero-body,
    .cb-glass-card,
    .cb-lp-copy-block,
    .cb-price-section,
    .cb-flow-step,
    .cb-rv-card {
      transform-style: preserve-3d;
      will-change: transform;
    }
    .cb-tilt {
      transition: transform .18s ease, box-shadow .22s ease;
    }
    .cb-tilt.is-tilting {
      transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
      box-shadow: 0 30px 90px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.22);
    }
    .cb-gallery-stage.js-gallery img {
      animation: none;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity .9s ease, transform 5.5s ease;
    }
    .cb-gallery-stage.js-gallery img.is-active {
      opacity: 1;
      transform: scale(1.01);
      z-index: 1;
    }
    .cb-gallery-controls {
      position: absolute;
      left: clamp(18px, 4vw, 42px);
      right: clamp(18px, 4vw, 42px);
      bottom: clamp(18px, 4vw, 34px);
      z-index: 4;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      pointer-events: none;
    }
    .cb-gallery-counter {
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(28px, 5vw, 58px);
      font-weight: 800;
      line-height: 1;
      text-shadow: 0 12px 34px rgba(0,0,0,.42);
    }
    .cb-gallery-dots {
      display: flex;
      gap: 8px;
      pointer-events: auto;
    }
    .cb-gallery-dots button {
      width: 38px;
      height: 4px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      background: rgba(255,255,255,.36);
      transition: width .25s ease, background .25s ease;
    }
    .cb-gallery-dots button.is-active {
      width: 64px;
      background: #9af1ff;
      box-shadow: 0 0 18px rgba(154,241,255,.68);
    }
    .cb-rv-progress {
      height: 3px;
      margin: 6px 4px 0;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
      overflow: hidden;
    }
    .cb-rv-progress span {
      display: block;
      width: calc(var(--review-progress, 0) * 100%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #9af1ff, #ffd166);
      box-shadow: 0 0 18px rgba(154,241,255,.58);
    }

    .cb-reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .cb-reveal.visible { opacity: 1; transform: translateY(0); }
