.sp-only { display: none; }
    @media (max-width: 767px) { .sp-only { display: inline; } }

    :root {
      --green: #1D9E75;
      --green-deep: #166B52;
      --green-dark: #0E4D3A;
      --green-light: #E8F5EE;
      --green-pale: #F2FAF6;
      --gold: #C9A14A;
      --coral: #D85A30;
      --coral-light: #FCEEE8;
      --line: #06C755;
      --line-deep: #04A647;
      --bg: #FFFFFF;
      --bg-off: #FAFAF8;
      --bg-cream: #F8F4ED;
      --bg-dark: #0E2922;
      --text: #2C2C2A;
      --text-sub: #5F5E5A;
      --text-mute: #888780;
      --border: #E8E6E0;
      --shadow-sm: 0 2px 8px rgba(28, 28, 26, 0.04);
      --shadow-md: 0 8px 28px rgba(28, 28, 26, 0.08);
      --shadow-lg: 0 16px 48px rgba(28, 28, 26, 0.10);
      --shadow-cta: 0 10px 28px rgba(6, 199, 85, 0.32), 0 2px 4px rgba(6, 199, 85, 0.18);
      --max-w: 1180px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
      font-size: 15px;
      line-height: 1.85;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    .display {
      font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    }

    section {
      padding: 96px 40px;
      position: relative;
    }

    section.bg-off {
      background: var(--bg-off);
    }

    section.bg-cream {
      background: var(--bg-cream);
    }

    section.bg-dark {
      background: var(--bg-dark);
      color: #fff;
    }

    section.bg-pale {
      background: var(--green-pale);
    }

    .container {
      max-width: var(--max-w);
      margin: 0 auto;
    }

    /* ======== TYPOGRAPHY ======== */
    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.24em;
      color: var(--green);
      margin-bottom: 14px;
      font-family: "Zen Kaku Gothic New", sans-serif;
    }

    .eyebrow.gold {
      color: var(--gold);
    }

    .bg-dark .eyebrow {
      color: #6FD9B0;
    }

    .bg-dark .eyebrow.gold {
      color: var(--gold);
    }

    h2.section-title {
      font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
      font-size: 42px;
      font-weight: 900;
      line-height: 1.45;
      letter-spacing: 0.005em;
      margin-bottom: 18px;
      text-wrap: pretty;
    }

    h2.section-title .accent {
      color: var(--green);
    }

    h2.section-title .hl {
      background: linear-gradient(180deg, transparent 62%, rgba(29, 158, 117, 0.22) 62%);
      padding: 0 4px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-sub);
      margin-bottom: 56px;
      line-height: 1.95;
      text-wrap: pretty;
    }

    .bg-dark .section-sub {
      color: #B8B6B0;
    }

    .title-deco {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 8px;
    }

    .title-deco::before,
    .title-deco::after {
      content: "";
      width: 36px;
      height: 1.5px;
      background: var(--green);
    }

    .bg-dark .title-deco::before,
    .bg-dark .title-deco::after {
      background: #6FD9B0;
    }

    .text-center {
      text-align: center;
    }

    /* ======== TOP NAV ======== */
    .top-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 48px;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .top-nav .logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .top-nav .logo img {
      height: 36px;
      mix-blend-mode: multiply;
    }

    .top-nav .logo .tagline {
      font-size: 11px;
      color: var(--text-sub);
      letter-spacing: 0.05em;
      line-height: 1.3;
      border-left: 1px solid var(--border);
      padding-left: 14px;
    }

    .top-nav .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .top-nav .nav-links a {
      font-size: 13px;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .top-nav .nav-links a:hover {
      color: var(--green);
    }

    .top-nav .nav-links a.nav-cta {
      background: var(--line);
      color: #fff;
      font-weight: 700;
      font-size: 13px;
      padding: 11px 22px;
      border-radius: 999px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 3px 10px rgba(6, 199, 85, 0.3);
    }

    .top-nav .nav-cta .ico-line {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .top-nav .nav-cta .ico-line img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ======== FV (HERO) ======== */
    .fv {
      background: #fff;
      padding: 0;
      overflow: hidden;
      position: relative;
      min-height: 760px;
    }

    .fv-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      /* background-image: see wp_add_inline_style() in functions.php */
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .fv-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(95deg,
          rgba(255, 255, 255, 0.92) 0%,
          rgba(255, 255, 255, 0.85) 38%,
          rgba(255, 255, 255, 0.55) 58%,
          rgba(255, 255, 255, 0.18) 78%,
          rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(242, 250, 246, 0.45) 0%, transparent 30%, transparent 70%, rgba(14, 77, 58, 0.10) 100%);
    }

    .fv .container {
      position: relative;
      z-index: 2;
      padding: 72px 0 96px;
    }

    .fv-grid {
      display: block;
      max-width: 760px;
      position: relative;
      z-index: 2;
    }

    .fv-eyebrow-row {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
      padding: 6px 18px 6px 6px;
      background: #fff;
      border-radius: 999px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--green-light);
    }

    /* legacy badge — kept for compat */
    .fv-free-badge.compact {
      background: var(--green);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      padding: 5px 12px;
      border-radius: 999px;
      line-height: 1;
      letter-spacing: 0.05em;
    }

    /* ======== FV intro animations (auto-play on load) ======== */
    @keyframes fvFadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fvFadeUpSmall {
      from {
        opacity: 0;
        transform: translateY(14px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fvZoomIn {
      from {
        opacity: 0;
        transform: scale(1.08);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes fvScaleIn {
      from {
        opacity: 0;
        transform: scale(0.85);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .fv-bg {
      opacity: 0;
      animation: fvZoomIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
    }

    .fv-text>* {
      opacity: 0;
      animation-fill-mode: forwards;
      animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fv-text>.fv-free-pill {
      animation: fvFadeUpSmall 0.7s 0.35s forwards;
    }

    .fv-text>h1 {
      animation: fvFadeUp 0.9s 0.55s forwards;
    }

    .fv-text>.fv-lead {
      animation: fvFadeUp 0.8s 0.75s forwards;
    }

    .fv-text>.stat-badges {
      animation: fvFadeUp 0.8s 0.90s forwards;
    }

    .fv-text>.stat-badges .stat-badge {
      opacity: 0;
      animation: fvScaleIn 0.6s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
    }

    .fv-text>.stat-badges .stat-badge:nth-child(1) {
      animation-delay: 1.05s;
    }

    .fv-text>.stat-badges .stat-badge:nth-child(2) {
      animation-delay: 1.18s;
    }

    .fv-text>.stat-badges .stat-badge:nth-child(3) {
      animation-delay: 1.31s;
    }

    /* If we have anything else in fv-text (e.g. trust row), stagger it last */
    .fv-text>.cta-block,
    .fv-text>.fv-trust {
      animation: fvFadeUp 0.8s 1.45s forwards;
    }

    /* ===== FV FREE banner — bold value proposition ===== */
    .fv-free-banner {
      position: relative;
      display: inline-flex;
      align-items: stretch;
      gap: 0;
      background: #fff;
      border: 2.5px solid var(--green-deep);
      border-radius: 18px;
      margin-bottom: 28px;
      box-shadow: 0 18px 40px -16px rgba(14, 77, 58, 0.40), 0 0 0 6px rgba(29, 158, 117, 0.10);
    }

    .fv-free-banner__stamp {
      flex-shrink: 0;
      width: 96px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-dark) 100%);
      color: #fff;
      border-radius: 16px 0 0 16px;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 900;
      line-height: 0.95;
      position: relative;
      overflow: hidden;
    }

    .fv-free-banner__stamp::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .fv-free-banner__stamp::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 1.5px dashed rgba(255, 255, 255, 0.40);
      border-radius: 10px;
      pointer-events: none;
    }

    .fv-free-banner__stamp .stamp-line {
      position: relative;
      z-index: 1;
      font-size: 22px;
      letter-spacing: 0.04em;
    }

    .fv-free-banner__stamp .stamp-line--1 {
      margin-top: 4px;
    }

    .fv-free-banner__stamp .stamp-line--2 {
      margin-top: 2px;
    }

    .fv-free-banner__main {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4px 26px 6px 22px;
      gap: 2px;
    }

    .fv-free-banner__top {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      line-height: 1;
    }

    .strike-block {
      display: inline-flex;
      align-items: baseline;
      gap: 4px;
      color: var(--text-sub);
    }

    .strike-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
    }

    .strike-amount {
      position: relative;
      font-family: "Inter", sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #888;
    }

    .strike-amount::after {
      content: "";
      position: absolute;
      left: -2px;
      right: -2px;
      top: 52%;
      height: 1.8px;
      background: var(--coral);
      transform: rotate(-6deg);
    }

    .strike-unit {
      font-size: 11px;
      font-weight: 600;
      margin-left: 1px;
    }

    .arrow-now {
      color: var(--coral);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.05em;
    }

    .fv-free-banner__zero {
      position: relative;
      display: inline-flex;
      align-items: baseline;
      gap: 2px;
      color: var(--green-deep);
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 900;
      line-height: 0.9;
      margin: 2px 0 4px;
    }

    .fv-free-banner__zero .yen {
      font-size: 40px;
      font-weight: 800;
      transform: translateY(-1px);
    }

    .fv-free-banner__zero .num {
      font-size: 54px;
      letter-spacing: -0.04em;
      background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .fv-free-banner__zero .sparkle {
      position: absolute;
      width: 30px;
      height: 30px;
      background: var(--gold);
      clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
      animation: sparkleTwinkle 2.4s ease-in-out infinite;
    }

    .fv-free-banner__zero .sparkle-a {
      top: -15px;
      right: -22px;
    }

    .fv-free-banner__zero .sparkle-b {
      top: 24px;
      right: 0px;
      width: 16px;
      height: 16px;
      animation-delay: 0.6s;
    }

    .fv-free-banner__zero .sparkle-c {
      bottom: -10px;
      right: -26px;
      width: 18px;
      height: 18px;
      animation-delay: 1.2s;
    }

    @keyframes sparkleTwinkle {

      0%,
      100% {
        opacity: 0.3;
        transform: scale(0.7) rotate(0deg);
      }

      50% {
        opacity: 1;
        transform: scale(1.15) rotate(45deg);
      }
    }

    .fv-free-banner__sub {
      font-size: 13px;
      color: var(--text);
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .fv-free-banner__sub b {
      color: var(--green-deep);
      font-weight: 800;
    }

    .fv-text>.fv-free-banner {
      animation: fvBannerPop 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) 0.30s forwards !important;
    }

    @keyframes fvBannerPop {
      0% {
        opacity: 0;
        transform: translateY(20px) scale(0.88);
      }

      60% {
        opacity: 1;
        transform: translateY(0) scale(1.04);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* ===== FV FREE badge (single pill) ===== */
    .fv-free-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
      color: #fff;
      border-radius: 999px;
      margin-bottom: 32px;
      box-shadow: 0 8px 24px rgba(14,77,58,0.28), 0 0 0 4px rgba(29,158,117,0.15);
      font-family: "Zen Kaku Gothic New", sans-serif;
    }

    .fv-free-badge__label {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: 0.06em;
      padding: 11px 16px 11px 22px;
    }

    .fv-free-badge__sep {
      width: 1px;
      height: 22px;
      background: rgba(255,255,255,0.38);
      flex-shrink: 0;
    }

    .fv-free-badge__sub {
      font-size: 13px;
      font-weight: 600;
      padding: 11px 28px 11px 14px;
      letter-spacing: 0.02em;
      opacity: 0.92;
    }

    .fv-free-badge__sub b {
      font-weight: 800;
      opacity: 1;
    }

    .fv-free-badge .sparkle {
      position: absolute;
      background: var(--gold);
      clip-path: polygon(50% 0%,60% 40%,100% 50%,60% 60%,50% 100%,40% 60%,0% 50%,40% 40%);
      animation: sparkleTwinkle 2.4s ease-in-out infinite;
    }

    .fv-free-badge .sparkle-a { width: 26px; height: 26px; top: -13px; right: 16px; }
    .fv-free-badge .sparkle-b { width: 14px; height: 14px; top: 50%; right: -18px; transform: translateY(-50%); animation-delay: 0.6s; }
    .fv-free-badge .sparkle-c { width: 16px; height: 16px; bottom: -9px; right: 48px; animation-delay: 1.2s; }

    .fv-text>.fv-free-badge {
      animation: fvBannerPop 0.85s cubic-bezier(0.34, 1.45, 0.64, 1) 0.30s forwards !important;
    }

    @media (max-width: 720px) {
      .fv-free-badge { border-radius: 999px; }
      .fv-free-badge__label { font-size: 15px; padding: 9px 12px 9px 18px; }
      .fv-free-badge__sub { font-size: 12px; padding: 9px 20px 9px 12px; }
      .fv-free-badge .sparkle-a { width: 20px; height: 20px; top: -10px; right: 12px; }
      .fv-free-badge .sparkle-b { width: 11px; height: 11px; right: -14px; }
      .fv-free-badge .sparkle-c { width: 13px; height: 13px; bottom: -7px; right: 36px; }
    }

    @media (max-width: 720px) {
      .fv-free-banner {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
      }

      .fv-free-banner__stamp {
        width: 72px;
        border-radius: 12px 0 0 12px;
      }

      .fv-free-banner__stamp .stamp-line {
        font-size: 17px;
      }

      .fv-free-banner__stamp::after {
        inset: 4px;
      }

      .fv-free-banner__main {
        padding: 4px 16px 6px 14px;
      }

      .fv-free-banner__top {
        font-size: 11px;
        gap: 6px;
        flex-wrap: wrap;
      }

      .strike-amount {
        font-size: 13px;
      }

      .arrow-now {
        font-size: 11px;
      }

      .fv-free-banner__zero .yen {
        font-size: 29px;
        transform: translateY(-1px);
      }

      .fv-free-banner__zero .num {
        font-size: 38px;
      }

      .fv-free-banner__sub {
        font-size: 11.5px;
        line-height: 1.5;
      }

      .fv-free-banner__zero .sparkle {
        width: 20px;
        height: 20px;
      }

      .fv-free-banner__zero .sparkle-a {
        top: -10px;
        right: -15px;
      }

      .fv-free-banner__zero .sparkle-b {
        top: 16px;
        right: 0px;
        width: 10px;
        height: 10px;
      }

      .fv-free-banner__zero .sparkle-c {
        bottom: -7px;
        right: -17px;
        width: 12px;
        height: 12px;
      }
    }

    /* Legacy pill (kept for fallback) */
    .fv-free-pill {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      padding: 10px 26px 10px 10px;
      background: #fff;
      border: 2px solid var(--green);
      border-radius: 999px;
      box-shadow: 0 12px 28px -12px rgba(29, 158, 117, 0.45), 0 0 0 4px rgba(29, 158, 117, 0.06);
      margin-bottom: 32px;
    }

    .fv-free-pill .chip-zero {
      display: inline-flex;
      align-items: baseline;
      gap: 1px;
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
      color: #fff;
      padding: 8px 18px 9px;
      border-radius: 999px;
      font-family: "Inter", sans-serif;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.01em;
      box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    }

    .fv-free-pill .chip-zero .yen {
      font-size: 16px;
      font-weight: 700;
      opacity: 0.92;
      transform: translateY(-2px);
    }

    .fv-free-pill .chip-zero .num {
      font-size: 28px;
    }

    .fv-free-pill .chip-text {
      font-size: 16px;
      color: var(--text);
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .fv-free-pill .chip-text b {
      color: var(--green-deep);
      font-weight: 900;
      margin-right: 10px;
      font-size: 19px;
      letter-spacing: 0.06em;
    }

    .fv-free-stamp {
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
      color: #fff;
      padding: 14px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: "Zen Kaku Gothic New", sans-serif;
      line-height: 1;
      position: relative;
    }

    .fv-free-stamp::after {
      content: "";
      position: absolute;
      top: 12%;
      bottom: 12%;
      right: 0;
      width: 1px;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.30), transparent);
    }

    .fv-free-stamp .sk-top {
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      margin-bottom: 6px;
      opacity: 0.78;
    }

    .fv-free-stamp .sk-zero {
      display: inline-flex;
      align-items: baseline;
      gap: 2px;
      font-size: 38px;
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 0.9;
    }

    .fv-free-stamp .sk-zero::before {
      content: "¥";
      font-size: 20px;
      font-weight: 700;
      opacity: 0.85;
      margin-right: 1px;
    }

    .fv-free-stamp .sk-bottom {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.22em;
      margin-top: 6px;
      color: var(--gold);
    }

    .fv-free-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 14px 22px;
      line-height: 1.5;
    }

    .fv-free-tag {
      align-self: flex-start;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.22em;
      color: var(--green-deep);
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .fv-free-tag::before {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--green);
    }

    .fv-free-line1 {
      font-size: 12px;
      color: var(--text-sub);
      font-weight: 600;
    }

    .fv-free-line2 {
      font-size: 16px;
      color: var(--text);
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .fv-free-line2 b {
      color: var(--green-deep);
      font-weight: 800;
    }

    .fv-eyebrow-row .label {
      font-size: 12px;
      font-weight: 700;
      color: var(--green-deep);
      letter-spacing: 0.05em;
    }

    .fv h1 {
      font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
      font-size: 46px;
      font-weight: 900;
      line-height: 1.42;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 22px;
      text-wrap: balance;
    }

    .fv h1 .h1-l1,
    .fv h1 .h1-l2,
    .fv h1 .h1-sl {
      display: inline;
    }

    .sp-br { display: none; }

    .fv h1 .green {
      color: var(--green);
    }

    .fv h1 .hl {
      background: linear-gradient(180deg, transparent 60%, rgba(201, 161, 74, 0.30) 60%);
      padding: 0 4px;
    }

    .fv-lead {
      font-size: 17px;
      color: var(--text-sub);
      line-height: 1.95;
      margin-bottom: 36px;
      text-wrap: pretty;
    }

    /* FV stat badges */
    .stat-badges {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 36px;
    }

    .stat-badge {
      background: #fff;
      border-radius: 18px;
      padding: 16px 10px 14px;
      text-align: center;
      border: 1.5px solid var(--green-light);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .stat-badge .stat-label {
      font-size: 11px;
      color: var(--text-sub);
      font-weight: 600;
      letter-spacing: 0.04em;
      line-height: 1.3;
    }

    .stat-badge .n {
      font-family: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--green-deep);
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .stat-badge .n .small {
      font-size: 18px;
    }

    .stat-badge .n .pct {
      font-size: 20px;
      font-weight: 700;
    }

    /* FV visual */
    .fv-visual {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 32px;
      background: #fff;
      border: 1px solid rgba(29, 158, 117, 0.18);
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .fv-visual img.fv-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .fv-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(14, 77, 58, 0.45) 100%);
      pointer-events: none;
    }

    .fv-tag {
      position: absolute;
      left: 20px;
      bottom: 20px;
      z-index: 2;
      background: #fff;
      border-radius: 999px;
      padding: 12px 22px;
      font-size: 14px;
      font-weight: 700;
      color: var(--green-deep);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--green-light);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .fv-tag .ck-circle {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .fv-floating-badge {
      position: absolute;
      right: 18px;
      top: 18px;
      z-index: 2;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(8px);
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--green-light);
      text-align: center;
    }

    .fv-floating-badge .label {
      font-size: 10px;
      color: var(--green-deep);
      font-weight: 700;
      letter-spacing: 0.1em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .fv-floating-badge .num {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }

    .fv-floating-badge .num .small {
      font-size: 12px;
    }

    /* CTA */
    .cta-block {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .cta-block.center {
      align-items: center;
    }

    .cta-balloon {
      position: relative;
      display: inline-block;
      background: var(--coral);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 999px;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .cta-balloon::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 30px;
      transform: rotate(45deg);
      width: 8px;
      height: 8px;
      background: var(--coral);
    }

    .cta-block.center .cta-balloon::after {
      left: 50%;
      margin-left: -4px;
    }

    .cta-gift {
      font-size: 13px;
      font-weight: 700;
      color: var(--coral);
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .cta-gift::before,
    .cta-gift::after {
      content: "";
      width: 22px;
      height: 1.5px;
      background: var(--coral);
      opacity: 0.5;
    }

    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: linear-gradient(180deg, #06C755 0%, #04A647 100%);
      color: #fff;
      font-size: 19px;
      font-weight: 700;
      padding: 15px 40px;
      border-radius: 38px;
      text-decoration: none;
      box-shadow: var(--shadow-cta);
      border: none;
      min-width: 380px;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      letter-spacing: 0.02em;
      animation: btnFloat 2.4s ease-in-out infinite;
    }

    .btn-line:hover {
      animation: none;
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(6, 199, 85, 0.4), 0 2px 4px rgba(6, 199, 85, 0.25);
    }

    .btn-line .btn-arrow {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      margin-left: -4px;
    }

    .btn-line .ico-line {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .btn-line .ico-line img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .btn-line .free-tag {
      font-size: 11px;
      background: rgba(255, 255, 255, 0.22);
      padding: 3px 10px;
      border-radius: 999px;
      font-weight: 600;
    }

    .cta-note {
      margin-top: 12px;
      font-size: 12px;
      color: var(--text-mute);
      font-weight: 500;
      line-height: 1.8;
      text-align: center;
    }

    @keyframes btnFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(0.7);
      }
    }

    /* ======== MEDIA STRIP ======== */
    .media-strip {
      background: #fff;
      padding: 40px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .media-strip .container {
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .media-strip .label {
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-sub);
      letter-spacing: 0.18em;
      border-right: 1px solid var(--border);
      padding-right: 48px;
    }

    .media-logos {
      flex: 1;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      align-items: center;
    }

    .media-logo {
      background: var(--bg-off);
      border-radius: 10px;
      padding: 18px;
      font-family: "Zen Kaku Gothic New", serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
      text-align: center;
      line-height: 1.3;
      letter-spacing: 0.05em;
      aspect-ratio: 3/1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ======== WORRIES ======== */
    /* Hero treatment for the worries section */
    #worries {
      position: relative;
      overflow: hidden;
      padding: 140px 0 120px;
      background:
        radial-gradient(ellipse 900px 500px at 15% 0%, rgba(216, 90, 48, 0.07), transparent 60%),
        radial-gradient(ellipse 800px 500px at 85% 100%, rgba(29, 158, 117, 0.06), transparent 60%),
        var(--bg-off);
    }

    #worries::before {
      content: "?";
      position: absolute;
      top: 40px;
      right: -40px;
      font-family: "Zen Kaku Gothic New", serif;
      font-size: 720px;
      font-weight: 900;
      color: rgba(216, 90, 48, 0.045);
      line-height: 0.85;
      pointer-events: none;
      letter-spacing: -0.05em;
    }

    #worries .container {
      position: relative;
      z-index: 1;
    }

    #worries .worry-head {
      text-align: center;
      margin-bottom: 64px;
    }

    #worries .worry-head .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid rgba(216, 90, 48, 0.25);
      color: var(--coral);
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.2em;
      margin-bottom: 24px;
      box-shadow: 0 4px 14px rgba(216, 90, 48, 0.10);
    }

    #worries .worry-head .eyebrow-pill::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral);
      box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.15);
    }

    #worries .worry-head h2 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--text);
      line-height: 1.35;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      text-wrap: balance;
    }

    #worries .worry-head h2 .strike {
      position: relative;
      display: inline-block;
      color: var(--coral);
    }

    #worries .worry-head h2 .strike::after {
      content: "";
      position: absolute;
      left: -4px;
      right: -4px;
      bottom: 6px;
      height: 14px;
      background: rgba(216, 90, 48, 0.18);
      z-index: -1;
      border-radius: 4px;
    }

    #worries .worry-head .lead {
      font-size: 17px;
      color: var(--text-sub);
      line-height: 1.85;
      max-width: 640px;
      margin: 0 auto;
    }

    .worry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 64px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .worry-grid li {
      list-style: none;
      background: #fff;
      border-radius: 22px;
      padding: 28px 0 0 26px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(28, 28, 26, 0.06), 0 1px 0 rgba(28, 28, 26, 0.02);
      border: 1px solid rgba(28, 28, 26, 0.04);
      position: relative;
      transform-origin: center;
    }

    .worry-grid .w-content {
      flex: 1;
      min-width: 0;
      padding: 0 16px 24px 0;
    }

    .worry-grid .w-img {
      flex-shrink: 0;
      width: 150px;
      align-self: stretch;
      position: relative;
      overflow: hidden;
    }

    .worry-grid .w-img img {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      height: 100%;
      width: auto;
      display: block;
      mix-blend-mode: multiply;
    }

    /* Per-card floating animation */
    .worry-grid li:nth-child(1) {
      animation: worryFloat1 4.0s ease-in-out 0s infinite;
    }

    .worry-grid li:nth-child(2) {
      animation: worryFloat2 4.6s ease-in-out -1.0s infinite;
    }

    .worry-grid li:nth-child(3) {
      animation: worryFloat3 4.2s ease-in-out -0.4s infinite;
    }

    .worry-grid li:nth-child(4) {
      animation: worryFloat4 4.8s ease-in-out -1.6s infinite;
    }

    .worry-grid li:nth-child(5) {
      animation: worryFloat5 4.4s ease-in-out -0.7s infinite;
    }

    .worry-grid li:nth-child(6) {
      animation: worryFloat6 4.6s ease-in-out -2.2s infinite;
    }

    @keyframes worryFloat1 {

      0%,
      100% {
        transform: translateY(0) rotate(-1.4deg);
      }

      50% {
        transform: translateY(-22px) rotate(0.4deg);
      }
    }

    @keyframes worryFloat2 {

      0%,
      100% {
        transform: translateY(20px) rotate(0.8deg);
      }

      50% {
        transform: translateY(-4px) rotate(-0.6deg);
      }
    }

    @keyframes worryFloat3 {

      0%,
      100% {
        transform: translateY(0) rotate(1.2deg);
      }

      50% {
        transform: translateY(-20px) rotate(-0.4deg);
      }
    }

    @keyframes worryFloat4 {

      0%,
      100% {
        transform: translateY(10px) rotate(0.9deg);
      }

      50% {
        transform: translateY(-14px) rotate(-0.5deg);
      }
    }

    @keyframes worryFloat5 {

      0%,
      100% {
        transform: translateY(0) rotate(-0.8deg);
      }

      50% {
        transform: translateY(-24px) rotate(1.0deg);
      }
    }

    @keyframes worryFloat6 {

      0%,
      100% {
        transform: translateY(22px) rotate(-1.4deg);
      }

      50% {
        transform: translateY(-2px) rotate(0.4deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .worry-grid li {
        animation: none !important;
      }
    }

    .worry-grid li::before {
      content: "“";
      position: absolute;
      top: -8px;
      left: 18px;
      font-family: "Zen Kaku Gothic New", serif;
      font-size: 88px;
      font-weight: 900;
      color: var(--coral);
      line-height: 1;
      opacity: 0.18;
    }

    .worry-grid .w-text {
      font-size: 16px;
      line-height: 1.85;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 16px;
      padding-top: 8px;
    }

    .worry-grid .w-text strong {
      color: var(--text);
      background: linear-gradient(180deg, transparent 62%, rgba(216, 90, 48, 0.20) 62%);
      font-weight: 700;
      padding: 0 2px;
    }

    .worry-grid .w-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 14px;
      border-top: 1px dashed rgba(28, 28, 26, 0.08);
      font-size: 11px;
      color: var(--text-mute);
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .worry-grid .w-meta .avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, #E8E6E0, #F0EFEC);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--text-sub);
      font-weight: 700;
    }

    /* Stat chart (circular progress rings) */
    .stat-chart-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 16px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .stat-chart-card {
      background: #fff;
      border-radius: 24px;
      padding: 36px 20px 28px;
      text-align: center;
      border: 1px solid rgba(28, 28, 26, 0.06);
      box-shadow: 0 4px 20px rgba(28, 28, 26, 0.06);
      position: relative;
      overflow: hidden;
    }

    .stat-chart-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--coral);
      border-radius: 24px 24px 0 0;
    }

    .stat-chart-card--green::before {
      background: var(--green);
    }

    .chart-ring-wrap {
      position: relative;
      width: 140px;
      height: 140px;
      margin: 0 auto 20px;
    }

    .chart-ring {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }

    .ring-bg {
      fill: none;
      stroke: #F0EFEC;
      stroke-width: 9;
    }

    .ring-fill {
      fill: none;
      stroke: var(--coral);
      stroke-width: 9;
      stroke-linecap: round;
      stroke-dasharray: 326.7;
      stroke-dashoffset: 326.7;
      transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .stat-chart-card--green .ring-fill {
      stroke: var(--green);
    }

    .chart-num {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--text);
      line-height: 1;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .chart-pct {
      font-size: 20px;
      font-weight: 700;
    }

    .chart-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-sub);
      line-height: 1.7;
    }

    .stat-source {
      text-align: center;
      font-size: 11px;
      color: var(--text-mute);
      margin-bottom: 40px;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .bridge-box {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
      color: #fff;
      padding: 28px 32px;
      border-radius: 20px;
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.7;
      box-shadow: 0 16px 36px rgba(29, 158, 117, 0.28);
      position: relative;
      max-width: 760px;
      margin: 0 auto;
    }

    .bridge-box::before {
      content: none;
    }

    .bridge-box .small {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.88);
      margin-top: 8px;
    }

    /* Scroll-down arrow below bridge-box */
    .bridge-scroll-arrow {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
      gap: 0;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(12px); opacity: 0.6; }
    }

    .bridge-scroll-arrow svg {
      animation: scrollBounce 1.6s ease-in-out infinite;
    }

    /* ======== 3 REASONS ======== */
    .reason-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 36px;
      margin-top: 24px;
    }

    .reason-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 36px 28px 28px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .reason-num {
      position: absolute;
      top: -22px;
      left: 28px;
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--coral) 0%, #B84520 100%);
      color: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 18px;
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(216, 90, 48, 0.32);
      letter-spacing: 0.02em;
    }

    .reason-card h4 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 19px;
      font-weight: 700;
      line-height: 1.55;
      margin: 12px 0 14px;
      color: var(--text);
    }

    .reason-card p {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.95;
    }

    .reason-bridge {
      text-align: center;
      color: var(--green-deep);
      font-size: 20px;
      font-weight: 700;
      line-height: 1.75;
      padding: 28px 0;
      border-top: 2px dotted var(--green-light);
      border-bottom: 2px dotted var(--green-light);
      font-family: "Zen Kaku Gothic New", sans-serif;
    }

    .reason-bridge .accent {
      background: linear-gradient(180deg, transparent 60%, rgba(201, 161, 74, 0.3) 60%);
    }

    /* ======== COMPARISON ======== */
    /* Compare cards */
    /* Compare Table — flat grid for row alignment */
    .compare-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 12px;
      max-width: 880px;
      margin: 0 auto 56px;
    }

    .compare-badge-row {
      display: flex;
      align-items: flex-end;
      padding-bottom: 8px;
      min-height: 32px;
    }

    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 4px 16px rgba(216, 90, 48, 0.45), 0 0 0 0 rgba(216, 90, 48, 0.3); }
      50%       { box-shadow: 0 4px 20px rgba(216, 90, 48, 0.55), 0 0 0 6px rgba(216, 90, 48, 0); }
    }

    .compare-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 13px;
      font-weight: 900;
      background: var(--coral);
      color: #fff;
      padding: 7px 18px;
      border-radius: 999px;
      letter-spacing: 0.06em;
      white-space: nowrap;
      animation: badgePulse 2.4s ease-in-out infinite;
    }

    .compare-badge::before {
      content: "★";
      font-size: 11px;
      line-height: 1;
    }

    .compare-th {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      border-radius: 16px 16px 0 0;
    }
    .compare-th.good { background: var(--green); color: #fff; }
    .compare-th.bad  { background: #DEDAD4; color: var(--text-sub); }
    .compare-th h4 { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 0; }

    .compare-td {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 14px 20px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.6;
      border-left: 1px solid transparent;
      border-right: 1px solid transparent;
      border-bottom: 1px solid rgba(28, 28, 26, 0.05);
    }
    .compare-td.good {
      background: #fff;
      border-left-color: var(--green-light);
      border-right-color: var(--green-light);
      color: var(--text);
    }
    .compare-td.bad {
      background: #FAFAF8;
      border-left-color: #E8E6E0;
      border-right-color: #E8E6E0;
      color: var(--text-sub);
    }
    .compare-td.last {
      border-bottom: 1px solid;
      border-radius: 0 0 16px 16px;
    }
    .compare-td.good.last { border-bottom-color: var(--green-light); }
    .compare-td.bad.last  { border-bottom-color: #E8E6E0; }

    .compare-mark {
      flex-shrink: 0;
      font-weight: 900;
      font-size: 14px;
      margin-top: 2px;
    }
    .compare-td.good .compare-mark { color: var(--green); }
    .compare-td.bad  .compare-mark { color: #B0ADA6; }

    /* Service Comparison Table */
    .svc-table-wrap {
      margin-top: 48px;
      border-radius: 18px;
      box-shadow: var(--shadow-sm);
      background: #fff;
      border: 1px solid var(--border);
      overflow: hidden;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .svc-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 14px;
    }

    .svc-table th,
    .svc-table td {
      padding: 18px 16px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      line-height: 1.5;
    }

    .svc-table th {
      background: var(--bg-off);
      font-size: 13px;
      font-weight: 700;
      color: var(--text-sub);
    }

    .svc-table th.us {
      background: var(--green);
      color: #fff;
      font-size: 15px;
    }

    .svc-table td:first-child,
    .svc-table th:first-child {
      text-align: left;
      background: var(--bg-off);
      font-weight: 700;
      color: var(--text);
      font-size: 13px;
      border-right: 2px solid var(--border);
      width: 28%;
    }

    .svc-table td.us {
      background: var(--green-pale);
      font-weight: 700;
      color: var(--green-deep);
    }

    .svc-table td:last-child,
    .svc-table th:last-child {
      border-right: none;
    }

    .svc-table tr:last-child td {
      border-bottom: none;
    }

    .svc-table .ck {
      color: var(--green);
      font-weight: 900;
      font-size: 18px;
    }

    .svc-table .nx {
      color: #C9C7C0;
      font-weight: 700;
    }

    .svc-table .price {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 900;
      font-size: 15px;
    }

    .svc-table .price.free {
      color: var(--green);
      font-size: 18px;
    }

    .svc-note {
      text-align: right;
      font-size: 11px;
      color: var(--text-mute);
      margin-top: 10px;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ======== WHY FREE ======== */
    .why-free-wrap {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* --- Free Flow Diagram --- */
    .free-flow {
      background: linear-gradient(150deg, #EEF7F2 0%, #FAFAF8 100%);
      border-radius: 24px;
      padding: 40px 32px 44px;
      display: flex;
      align-items: flex-end;
      gap: 0;
    }

    .ff-node {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      width: 160px;
    }

    .ff-img-wrap {
      width: 120px;
      height: 100px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      overflow: hidden;
    }

    .ff-img-wrap img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    /* キャリナビ：ロゴは横長なので別サイズ */
    .ff-center .ff-img-wrap {
      width: 160px;
      height: 80px;
      background: #fff;
      border-radius: 16px;
      padding: 12px 16px;
      box-sizing: border-box;
      box-shadow: 0 4px 18px rgba(52,130,91,.18);
      align-items: center;
    }

    .ff-center .ff-img-wrap img {
      mix-blend-mode: normal;
    }

    .ff-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3;
    }

    .ff-center .ff-name {
      font-size: 15px;
      color: var(--green-deep);
    }

    .ff-center { width: 190px; }

    .ff-sub {
      font-size: 10px;
      color: var(--text-mute);
      font-weight: 600;
    }

    .ff-pill {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 999px;
      letter-spacing: .04em;
    }

    .ff-pill--green { background: var(--green); color: #fff; }
    .ff-pill--gray  { background: #E2DED8; color: var(--text-sub); }

    .ff-conn {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      min-width: 0;
      padding-bottom: 40px;
    }

    .ff-conn svg { width: 100%; height: 14px; overflow: visible; }

    .ff-conn-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-mute);
      letter-spacing: .05em;
      white-space: nowrap;
    }

    .free-explanation {
      background: var(--green);
      border-radius: 20px;
      padding: 36px 32px;
      text-align: center;
      color: #fff;
    }

    .free-explanation .big {
      display: block;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
      margin-bottom: 12px;
    }

    .free-explanation .headline {
      display: block;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .free-explanation .headline em {
      font-style: normal;
      background: rgba(255,255,255,.18);
      border-radius: 6px;
      padding: 0 6px;
    }

    .free-explanation .body {
      font-size: 14px;
      line-height: 1.9;
      color: rgba(255,255,255,.85);
    }

    .price-compare-title {
      text-align: center;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--text);
      margin-top: 80px;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    .price-compare-title .accent { color: var(--green); }

    .price-compare {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1080px;
      margin: 0 auto;
      align-items: end;
    }

    /* ── competitor cards ── */
    .price-card {
      background: #F5F3EF;
      border: none;
      border-radius: 20px;
      padding: 28px 20px 24px;
      text-align: center;
      position: relative;
    }

    /* ── キャリナビ featured card ── */
    .price-card.us {
      background: linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
      border: none;
      border-radius: 24px;
      padding: 44px 24px 36px;
      box-shadow: 0 20px 48px rgba(29,108,74,.32);
      position: relative;
    }

    .price-card.us::before {
      content: "完全無料";
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--coral);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 5px 18px;
      border-radius: 999px;
      letter-spacing: .08em;
      white-space: nowrap;
      box-shadow: 0 3px 10px rgba(216,90,48,.35);
    }

    .price-card .label {
      font-size: 13px;
      color: var(--text-sub);
      font-weight: 700;
      margin-bottom: 16px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1.5;
    }

    .price-card.us .label {
      min-height: unset;
      margin-bottom: 20px;
    }

    .price-card-logo {
      height: 32px;
      width: auto;
      max-width: 110px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .92;
    }

    .price-card .amount {
      font-family: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
      font-size: 34px;
      font-weight: 900;
      color: var(--text-sub);
      line-height: 1.1;
    }

    .price-card.us .amount {
      color: #fff;
      font-size: 56px;
      letter-spacing: -.02em;
    }

    .price-card .unit {
      font-size: 11px;
      color: #ABA8A1;
      margin-top: 8px;
      line-height: 1.5;
    }

    .price-card.us .unit {
      color: rgba(255,255,255,.65);
      font-size: 12px;
      margin-top: 10px;
    }

    .price-diff {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      color: var(--coral);
      background: rgba(216,90,48,.1);
      padding: 4px 10px;
      border-radius: 6px;
      margin-top: 14px;
      letter-spacing: .02em;
    }

    .price-disclaim {
      text-align: center;
      font-size: 11px;
      color: var(--text-mute);
      margin-top: 20px;
    }

    /* ======== MID CTA ======== */
    .mid-cta {
      background: linear-gradient(180deg, #F2FAF6 0%, #E8F5EE 100%);
      border-radius: 28px;
      padding: 56px 48px;
      text-align: center;
      border: 1px solid var(--green-light);
      max-width: 980px;
      margin: 0 auto;
    }

    .mid-cta-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 800;
      color: var(--green-deep);
      margin-bottom: 14px;
      letter-spacing: 0.08em;
      background: #fff;
      padding: 6px 18px;
      border-radius: 999px;
      border: 1px solid var(--green-light);
    }

    .mid-cta h3 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 32px;
      font-weight: 900;
      line-height: 1.5;
      margin-bottom: 32px;
      color: var(--text);
      text-wrap: balance;
    }

    .mid-cta h3 .accent {
      color: var(--green-deep);
    }

    /* ======== BENEFITS ======== */
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .benefit-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 32px 24px;
      box-shadow: var(--shadow-sm);
    }

    .benefit-ico {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--green-light), var(--green-pale));
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--green-deep);
    }

    .benefit-ico svg {
      width: 32px;
      height: 32px;
    }

    .benefit-card h4 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 12px;
      color: var(--text);
    }

    .benefit-card p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.85;
    }

    /* ======== 4 REASONS CHOSEN ======== */
    .chosen-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 0;
      align-items: stretch;
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
    }

    .chosen-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px 22px 26px;
      box-shadow: var(--shadow-sm);
      align-items: stretch;
      height: 100%;
      position: relative;
    }

    .chosen-card.featured {
      background: linear-gradient(135deg, #F2FAF6 0%, #fff 100%);
      border: 1.5px solid var(--green);
    }

    .chosen-illust {
      width: 100%;
      aspect-ratio: 1/1;
      background: var(--green-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .chosen-card.featured .chosen-illust {
      background: #fff;
    }

    .chosen-illust img {
      width: 88%;
      height: 88%;
      object-fit: contain;
      display: block;
    }

    .chosen-num {
      position: absolute;
      top: -14px;
      left: 16px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 17px;
      font-weight: 900;
      box-shadow: 0 6px 14px rgba(29, 158, 117, 0.25);
      z-index: 2;
      border: 3px solid #fff;
    }

    .chosen-body h4 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.55;
      margin-bottom: 8px;
    }

    .chosen-body h4 .ribbon {
      display: inline-block;
      background: var(--coral);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 9px;
      border-radius: 999px;
      margin-left: 8px;
      vertical-align: middle;
    }

    .chosen-body p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.9;
    }

    /* ======== 3 MONTH PROGRAM ======== */
    .month-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 56px;
    }

    .month-card {
      border-radius: 24px;
      padding: 36px 28px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .month-card.m1 {
      background: linear-gradient(135deg, #6B5BD3 0%, #5546B8 100%);
    }

    .month-card.m2 {
      background: linear-gradient(135deg, #1D9E75 0%, #166B52 100%);
    }

    .month-card.m3 {
      background: linear-gradient(135deg, #D85A30 0%, #B84520 100%);
    }

    .month-num {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.2em;
      opacity: 0.9;
      margin-bottom: 6px;
    }

    .month-card h4 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 14px;
      line-height: 1.4;
    }

    .month-card p {
      font-size: 14px;
      line-height: 1.95;
      opacity: 0.96;
      margin-bottom: 20px;
      min-height: 110px;
    }

    .month-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.22);
      padding: 6px 18px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      backdrop-filter: blur(4px);
    }

    .month-card .month-deco {
      position: absolute;
      right: -30px;
      top: -40px;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 200px;
      font-weight: 900;
      opacity: 0.10;
      line-height: 1;
      pointer-events: none;
    }

    .support-title {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 20px;
      text-align: center;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 980px;
      margin: 0 auto;
    }

    .support-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 22px;
      text-align: center;
    }

    .support-card .s-ico {
      width: 44px;
      height: 44px;
      background: var(--green-light);
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--green-deep);
      margin: 0 auto 12px;
    }

    .support-card h5 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text);
    }

    .support-card p {
      font-size: 12px;
      color: var(--text-sub);
      line-height: 1.75;
    }

    /* ======== BEFORE AFTER (DARK) ======== */
    .ba-wrap {
      max-width: 880px;
      margin: 0 auto;
    }

    .ba-header {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 16px;
      margin-bottom: 12px;
    }

    .ba-header .h {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-align: center;
      padding: 10px;
    }

    .ba-header .h.before {
      color: rgba(255, 255, 255, 0.55);
      text-align: right;
      padding-right: 24px;
    }

    .ba-header .h.after {
      color: #6FD9B0;
      text-align: left;
      padding-left: 24px;
    }

    /* ======== BEFORE / AFTER (redesign) ======== */
    section.ba-section {
      background: var(--green-pale);
    }

    /* 劇的ヘッダー */
    .ba-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 48px;
    }

    .ba-circles {
      display: flex;
      gap: 5px;
    }

    .ba-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-size: 17px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-heading-text {
      font-family: "Caveat", cursive;
      font-size: 34px;
      font-weight: 700;
      color: var(--green-deep);
      letter-spacing: .02em;
    }

    /* 人物エリア */
    .ba-person {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      max-width: 680px;
      margin: 0 auto 0;
      align-items: end;
      position: relative;
      z-index: 2;
    }

    .ba-photo-col {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .ba-photo-wrap {
      width: 100%;
      height: 230px;
      background: transparent;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .ba-person > div:last-child .ba-photo-wrap {
      height: 300px;
    }

    .ba-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom;
    }

    .ba-photo-role {
      font-size: 13px;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 999px;
    }

    .ba-photo-role.is-before {
      background: #ECEAE6;
      color: var(--text-sub);
    }

    .ba-photo-role.is-after {
      background: var(--green-light);
      color: var(--green-deep);
    }

    .ba-photo-name {
      font-size: 11px;
      color: var(--text-mute);
      text-align: center;
    }

    /* 列ヘッダー */
    .ba-col-headers {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      max-width: 680px;
      margin: 0 auto 10px;
      position: relative;
      z-index: 1;
    }

    .ba-col-header {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-align: center;
      padding: 7px 0;
      border-radius: 8px 8px 0 0;
    }

    .ba-col-header.before {
      background: #ECEAE6;
      color: var(--text-sub);
    }

    .ba-col-header.after {
      background: var(--green-light);
      color: var(--green-deep);
    }

    /* 行グリッド */
    .ba-rows-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 680px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 1;
    }

    .ba-row-item {
      display: grid;
      grid-template-columns: 1fr 56px 1fr;
      align-items: stretch;
    }

    .ba-cell {
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.5;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ba-cell.before {
      background: #F2F0EC;
      color: var(--text-sub);
      border-radius: 12px 0 0 12px;
      border-left: 3px solid #C8C5BD;
    }

    .ba-cell.after {
      background: var(--green-light);
      color: var(--green-deep);
      border-radius: 0 12px 12px 0;
      border-right: 3px solid var(--green);
    }

    .ba-arrow-mid {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--green);
      font-weight: 700;
      background: rgba(255,255,255,.6);
    }

    /* まとめ */
    .ba-summary-wrap {
      text-align: center;
      background: var(--green);
      border-radius: 16px;
      padding: 28px 32px;
      max-width: 680px;
      margin: 0 auto;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.8;
    }

    .ba-summary-wrap .accent {
      color: #FFD580;
    }

    /* ======== TESTIMONIALS ======== */
    .voice-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .voice-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 0;
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
    }

    .voice-body {
      padding: 24px 24px 28px;
    }

    .voice-card::before {
      content: "" ";
      position: absolute;
      top: auto;
      bottom: 80px;
      right: 24px;
      font-family: Georgia, serif;
      font-size: 80px;
      line-height: 1;
      color: var(--green-light);
      pointer-events: none;
    }

    .voice-head {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px dashed var(--border);
    }

    .voice-avatar {
      width: 100%;
      display: block;
      line-height: 0;
    }

    .voice-avatar img {
      width: 100%;
      height: auto;
      display: block;
    }

    .voice-meta .name {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.4;
    }

    .voice-meta .attr {
      font-size: 12px;
      color: var(--text-sub);
      margin-top: 4px;
    }

    .voice-result {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-deep);
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 700;
    }

    .voice-comment {
      font-size: 14px;
      line-height: 2;
      color: var(--text);
    }

    /* ======== COACHES ======== */
    .coach-feature {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 48px;
      align-items: stretch;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow-sm);
      padding: 40px;
      margin-bottom: 24px;
    }

    .coach-feature__left {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .coach-feature__photo {
      width: 100%;
      aspect-ratio: 1/1;
      border-radius: 18px;
      background: linear-gradient(135deg, #F2FAF6, #E8F5EE);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-deep);
      position: relative;
      overflow: hidden;
      margin-bottom: 20px;
    }


    .coach-feature__role {
      font-size: 11px;
      color: var(--green);
      font-weight: 700;
      letter-spacing: 0.14em;
      margin-bottom: 8px;
    }

    .coach-feature__name {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 24px;
      font-weight: 900;
      line-height: 1.3;
    }

    .coach-feature__name-en {
      font-size: 12px;
      color: var(--text-mute);
      margin-top: 4px;
      letter-spacing: 0.12em;
    }

    .coach-feature__specialty {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px dashed var(--border);
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.75;
      width: 100%;
    }

    .coach-feature__right {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .coach-feature__heading {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.5;
      margin-bottom: 20px;
      color: var(--text);
    }

    .coach-feature__heading .accent {
      color: var(--green-deep);
    }

    .coach-feature__message {
      font-size: 15px;
      line-height: 2;
      color: var(--text-sub);
      margin-bottom: 20px;
    }

    .coach-feature__sign {
      font-size: 13px;
      color: var(--text-mute);
      text-align: right;
    }

    .coach-cta {
      text-align: center;
      font-size: 13px;
      color: var(--text-sub);
    }

    /* ======== FLOW STEPS ======== */
    .flow-steps {
      display: grid;
      grid-template-columns: 1fr 32px 1fr 32px 1fr;
      gap: 16px;
      align-items: stretch;
      max-width: 1080px;
      margin: 0 auto;
    }

    .flow-step {
      background: #fff;
      border-radius: 22px;
      border: 1px solid var(--border);
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      position: relative;
    }

    .flow-step-num {
      margin-bottom: 18px;
    }

    .flow-step-num .step-label {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 11px;
      font-weight: 800;
      color: var(--green);
      letter-spacing: 0.15em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .flow-step-num .step-num {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 56px;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }

    .flow-step h4 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .flow-step p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.85;
      margin-bottom: 14px;
    }

    .flow-step .badge {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green-deep);
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
    }

    .flow-arrow {
      align-self: center;
      font-size: 28px;
      color: var(--green);
      font-weight: 900;
      text-align: center;
    }

    /* ======== FAQ ======== */
    .faq-grid {
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
    }

    details[open].faq-item {
      border-color: var(--green);
    }

    .faq-q {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 22px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.55;
      list-style: none;
      user-select: none;
      font-family: "Zen Kaku Gothic New", sans-serif;
    }

    .faq-q::-webkit-details-marker {
      display: none;
    }

    .faq-q-mark {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      background: var(--green);
      color: #fff;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      margin-top: -2px;
    }

    .faq-q-text {
      flex: 1;
    }

    .faq-toggle {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--text-sub);
      transition: transform 0.2s ease;
    }

    details[open] .faq-toggle {
      transform: rotate(45deg);
      border-color: var(--green);
      color: var(--green);
      background: var(--green-pale);
    }

    .faq-a {
      display: flex;
      gap: 14px;
      padding: 0 24px 24px 24px;
      font-size: 13.5px;
      line-height: 2;
      color: var(--text-sub);
    }

    .faq-a-mark {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      background: var(--coral-light);
      color: var(--coral);
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
    }

    .faq-a-text {
      flex: 1;
      padding-top: 2px;
    }

    /* ======== FINAL CTA ======== */
    .final-cta {
      background:
        radial-gradient(ellipse at top, rgba(29, 158, 117, 0.22) 0%, transparent 60%),
        linear-gradient(180deg, #F2FAF6 0%, #FFFFFF 60%);
      text-align: center;
      padding: 96px 40px 112px;
    }

    .final-cta h2 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 44px;
      font-weight: 900;
      line-height: 1.5;
      margin-bottom: 18px;
      text-wrap: balance;
    }

    .final-cta h2 .accent {
      color: var(--green);
    }

    .final-cta-lead {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.95;
      margin-bottom: 40px;
    }

    .step-row {
      display: flex;
      align-items: stretch;
      max-width: 720px;
      margin: 0 auto 40px;
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 8px 40px rgba(28,28,26,0.09);
      overflow: hidden;
      border: 1px solid var(--border);
      padding: 0;
      gap: 0;
    }

    .step-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px 32px;
      position: relative;
      border-right: 1px solid var(--border);
    }

    .step-item:last-child {
      border-right: none;
    }

    .step-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--green-deep));
    }

    .step-item .step-num {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      color: var(--green-deep);
      background: var(--green-light);
      padding: 4px 14px;
      border-radius: 999px;
      margin-bottom: 20px;
      display: inline-block;
      width: auto;
      height: auto;
      box-shadow: none;
    }

    .step-item .step-l {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.6;
      color: var(--text);
      margin-bottom: 12px;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-item .step-d {
      font-size: 12px;
      color: var(--text-mute);
      display: block;
      margin-top: 0;
      background: none;
      padding: 0;
      border-radius: 0;
    }

    .step-arrow {
      display: none;
    }

    .urgency {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--coral-light);
      color: var(--coral);
      font-size: 14px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 999px;
      margin-bottom: 20px;
    }

    .urgency::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
      animation: pulse 1.6s infinite;
    }

    /* ======== FOOTER ======== */
    footer {
      background: var(--bg-dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 64px 40px 40px;
      font-size: 13px;
      line-height: 1.85;
    }

    footer .f-grid {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    footer .f-logo-block {}

    footer .f-logo {
      background: rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 14px 18px;
      display: inline-block;
      margin-bottom: 14px;
    }

    footer .f-logo img {
      height: 36px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    footer .f-tag {
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      margin-bottom: 16px;
      line-height: 1.65;
    }

    footer .f-table dl {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 6px 12px;
      font-size: 12px;
    }

    footer .f-table dt {
      color: rgba(255, 255, 255, 0.5);
    }

    footer .f-table dd {
      color: rgba(255, 255, 255, 0.85);
    }

    footer .f-col h6 {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: 0.05em;
    }

    footer .f-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    footer .f-col a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 12.5px;
      transition: color 0.2s;
    }

    footer .f-col a:hover {
      color: #fff;
    }

    footer .f-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    footer .f-links a:hover {
      color: #fff;
    }

    footer .copyright {
      max-width: var(--max-w);
      margin: 24px auto 0;
      color: rgba(255, 255, 255, 0.4);
      font-size: 11px;
      text-align: center;
    }

    .ico-svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 1024px) {
      .container {
        padding-left: 32px;
        padding-right: 32px;
      }

      .top-nav {
        padding: 12px 24px;
      }

      .nav-links {
        gap: 14px;
        font-size: 13px;
      }

      .fv h1 {
        font-size: 36px;
      }

      h2.section-title {
        font-size: 34px;
      }

      #worries .worry-head h2 {
        font-size: 40px;
      }

      .reason-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
      }

      .why-free-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
      }

      .biz-flow {
        flex-direction: column;
      }

      .support-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .ba-row {
        grid-template-columns: 1fr 40px 1fr;
      }

      .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .voice-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .month-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .chosen-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .flow-steps {
        grid-template-columns: 1fr !important;
        gap: 14px;
      }

      .flow-arrow {
        transform: rotate(90deg);
        justify-self: center;
      }

      .coach-feature {
        grid-template-columns: 1fr !important;
      }

      .coach-feature__left {
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto;
      }

      .media-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 24px;
        gap: 16px;
      }

      .media-bar-label {
        padding-right: 0 !important;
        border-right: 0 !important;
        text-align: center;
      }

      .media-logos {
        grid-template-columns: repeat(5, 1fr);
      }

      footer .f-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px;
      }
    }

    @media (max-width: 767px) {
      body {
        font-size: 15px;
      }

      .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
      }

      section {
        padding: 0 !important;
      }

      section .container {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
      }

      /* TOP NAV: ハンバーガーメニュー追加により表示に変更（ファイル末尾のCSS参照） */

      /* FV */
      .fv {
        min-height: auto;
      }

      .fv .container {
        padding: 40px 20px 56px !important;
      }

      .fv h1 {
        font-size: clamp(20px, 5.5vw, 27px);
        line-height: 1.55;
        letter-spacing: 0.01em;
        margin-bottom: 16px;
      }

      .fv h1 .h1-l1,
      .fv h1 .h1-l2,
      .fv h1 .h1-sl {
        display: block;
      }

      .sp-br { display: inline; }

      .fv-lead {
        font-size: 13.5px !important;
        line-height: 1.9 !important;
        margin-bottom: 28px !important;
      }

      /* background: show person at bottom-right, text area stays readable */
      .fv-bg {
        background-position: 55% top;
        background-size: auto 100%;
      }

      .fv-bg::after {
        background:
          linear-gradient(95deg,
            rgba(255,255,255,0.96) 0%,
            rgba(255,255,255,0.92) 40%,
            rgba(255,255,255,0.70) 62%,
            rgba(255,255,255,0.28) 80%,
            rgba(255,255,255,0) 100%),
          linear-gradient(180deg,
            rgba(255,255,255,0.10) 0%,
            rgba(255,255,255,0) 50%,
            rgba(255,255,255,0.55) 100%) !important;
      }

      /* FREE pill */
      .fv-free-pill {
        padding: 7px 16px 7px 7px;
        gap: 10px;
        margin-bottom: 22px;
        max-width: 100%;
      }

      .fv-free-pill .chip-zero {
        padding: 6px 12px 7px;
      }

      .fv-free-pill .chip-zero .num {
        font-size: 22px;
      }

      .fv-free-pill .chip-zero .yen {
        font-size: 12px;
      }

      .fv-free-pill .chip-text {
        font-size: 11.5px;
        line-height: 1.45;
      }

      .fv-free-pill .chip-text b {
        font-size: 14px;
        margin-right: 0;
        display: block;
        letter-spacing: 0.04em;
      }

      /* Stat badges */
      .stat-badges {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
        margin-bottom: 28px;
      }

      .stat-badges .stat-badge {
        padding: 12px 4px 10px !important;
        gap: 4px;
      }

      .stat-badges .stat-badge .stat-label {
        font-size: 9.5px;
        letter-spacing: 0.02em;
      }

      .stat-badges .stat-badge .n {
        font-size: 26px !important;
      }

      .bridge-box {
        padding: 24px 20px !important;
        font-size: 16px !important;
      }

      .stat-badges .stat-badge .pct,
      .stat-badges .stat-badge .small {
        font-size: 13px !important;
      }

      /* CTA buttons */
      .btn-line {
        font-size: 16px !important;
        padding: 12px 18px !important;
        width: 100%;
        max-width: 100%;
        min-width: 0 !important;
        box-sizing: border-box;
      }

      .btn-line .ico-line {
        width: 34px;
        height: 34px;
      }

      .btn-line .free-tag {
        display: none;
      }

      .cta-block {
        width: 100%;
      }

      .cta-balloon {
        font-size: 12px !important;
        padding: 8px 14px !important;
      }

      .cta-note {
        font-size: 11px !important;
        line-height: 1.6 !important;
        display: block !important;
        text-align: center;
      }

      .cta-note .pulse {
        display: inline-block;
        vertical-align: middle;
        margin-right: 4px;
      }

      /* Section titles */
      h2.section-title {
        font-size: 25px !important;
        line-height: 1.5;
        margin-bottom: 14px;
      }

      .section-sub {
        font-size: 13px !important;
        line-height: 1.85;
      }

      .eyebrow {
        font-size: 11px !important;
      }

      #worries .worry-head h2 {
        font-size: 26px !important;
      }

      #worries .worry-head .lead {
        font-size: 13px !important;
      }

      /* WORRIES */
      .worry-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
      }

      .worry-grid li {
        grid-column: 1 / -1 !important;
        padding: 18px 0 0 18px !important;
        animation: none !important;
        transform: none !important;
        overflow: visible !important;
      }

      .worry-grid li:nth-child(even) {
        flex-direction: row-reverse !important;
        padding: 18px 18px 0 0 !important;
      }

      .worry-grid li:nth-child(even) .w-content {
        padding: 0 0 18px 14px !important;
      }

      .worry-grid .w-content {
        padding: 0 14px 18px 0 !important;
      }

      .worry-grid .w-img {
        width: 100px !important;
        overflow: visible !important;
        align-self: flex-end !important;
      }

      .worry-grid .w-img img {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
      }

      .worry-grid li::before {
        font-size: 64px !important;
        top: -4px !important;
      }

      .w-text {
        font-size: 14px !important;
        line-height: 1.7 !important;
      }

      .w-meta {
        font-size: 11px !important;
      }

      /* STAT GRID */
      .stat-chart-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
        margin-bottom: 20px;
      }

      .stat-chart-card {
        padding: 28px 20px 22px !important;
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
      }

      .chart-ring-wrap {
        width: 90px !important;
        height: 90px !important;
        flex-shrink: 0;
        margin: 0 !important;
      }

      .chart-num {
        font-size: 26px !important;
      }

      .chart-pct {
        font-size: 14px !important;
      }

      /* COMPARE TABLE — 2列維持 */
      .compare-table {
        gap: 0 8px !important;
        margin-bottom: 40px !important;
      }

      .compare-badge-row {
        padding-bottom: 6px !important;
        min-height: 26px !important;
      }

      .compare-badge {
        font-size: 11px !important;
        padding: 5px 14px !important;
      }

      .compare-th {
        padding: 12px 12px !important;
        border-radius: 12px 12px 0 0 !important;
      }

      .compare-th h4 {
        font-size: 12px !important;
      }

      .compare-td {
        padding: 10px 12px !important;
        font-size: 11px !important;
        gap: 6px !important;
        line-height: 1.5 !important;
      }

      .compare-td.last {
        border-radius: 0 0 12px 12px !important;
      }

      .compare-mark {
        font-size: 12px !important;
        margin-top: 1px !important;
      }

      /* PRICE / TABLE */
      .price-compare-title {
        font-size: 17px !important;
        line-height: 1.6 !important;
      }

      .svc-table-wrap {
        overflow: hidden;
        border-radius: 12px;
      }

      .svc-table {
        font-size: 11px;
        min-width: unset;
        width: 100%;
        table-layout: fixed;
      }

      .svc-table th,
      .svc-table td {
        padding: 10px 6px !important;
        word-break: break-word;
        hyphens: auto;
      }

      .svc-table th {
        font-size: 10px !important;
        line-height: 1.35 !important;
      }

      .svc-table td:first-child,
      .svc-table th:first-child {
        width: 28% !important;
        font-size: 10px !important;
        padding: 10px 8px !important;
      }

      .svc-table .price {
        font-size: 11px !important;
      }

      .svc-table .price.free {
        font-size: 14px !important;
      }

      .svc-table th.us {
        font-size: 12px !important;
      }

      .svc-table .ck {
        font-size: 15px !important;
      }

      .svc-note {
        font-size: 10px !important;
        padding-right: 4px;
      }

      /* BENEFITS */
      .benefit-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px;
      }

      .benefit-card {
        padding: 18px !important;
      }

      .benefit-card h4 {
        font-size: 14px !important;
      }

      .benefit-card p {
        font-size: 12px !important;
      }

      /* CHOSEN (4 reasons) */
      .chosen-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        max-width: 100% !important;
      }

      .chosen-card {
        padding: 22px 20px !important;
        gap: 12px !important;
        overflow: visible !important;
      }

      .chosen-illust {
        aspect-ratio: auto !important;
        height: 160px !important;
        padding: 12px !important;
      }

      .chosen-illust img {
        width: auto !important;
        height: 100% !important;
        max-height: 100% !important;
      }

      .chosen-num {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: var(--green) !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-family: "Inter", sans-serif !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        letter-spacing: 0.02em !important;
        top: -14px !important;
        left: 16px !important;
        box-shadow: 0 4px 12px rgba(29, 158, 117, 0.35);
      }

      .chosen-card h4 {
        font-size: 17px !important;
      }

      .chosen-card p {
        font-size: 13px !important;
      }

      /* PRICE COMPARE — force 1 column */
      .price-compare,
      [class*="price-compare"] {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 12px !important;
      }

      /* モバイル: 横並びレイアウト */
      .price-card {
        padding: 20px 20px 16px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        text-align: left !important;
        border-radius: 16px !important;
      }

      .price-card.us {
        flex-direction: column !important;
        text-align: center !important;
        padding: 36px 20px 28px !important;
        border-radius: 20px !important;
      }

      .price-card.us::before {
        font-size: 10px !important;
        padding: 4px 14px !important;
        top: -12px !important;
      }

      .price-card .label {
        flex: 1;
        min-height: 0 !important;
        margin-bottom: 0 !important;
        font-size: 13px !important;
        justify-content: flex-start !important;
      }

      .price-card.us .label {
        flex: unset !important;
        justify-content: center !important;
        margin-bottom: 16px !important;
      }

      .price-card .amount {
        font-size: 26px !important;
        flex-shrink: 0;
      }

      .price-card.us .amount {
        font-size: 44px !important;
      }

      .price-card .unit {
        display: none !important;
      }

      .price-card.us .unit {
        display: block !important;
        font-size: 11px !important;
      }

      .price-diff {
        display: none !important;
      }

      .price-card-logo {
        height: 26px !important;
      }

      /* MONTH PROGRAM */
      .month-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        margin-bottom: 36px;
      }

      .month-card {
        padding: 24px !important;
      }

      .month-deco {
        font-size: 60px !important;
        right: 16px !important;
        top: 12px !important;
      }

      .month-num {
        font-size: 12px !important;
      }

      .month-card h3 {
        font-size: 20px !important;
      }

      /* VOICES */
      .voice-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
      }

      .voice-card {
        padding: 22px !important;
      }

      .voice-card::before {
        font-size: 56px !important;
        top: 8px !important;
        right: 16px !important;
      }

      .voice-body {
        padding: 24px 0px 0px;
      }

      /* COACH FEATURE */
      .coach-feature {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        padding: 26px !important;
      }

      .coach-feature__left {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
      }

      .coach-feature__photo {
        margin: 0 auto !important;
        max-width: 200px;
      }

      .coach-feature__heading {
        font-size: 19px !important;
        line-height: 1.55 !important;
      }

      .coach-feature__message {
        font-size: 13px !important;
        line-height: 1.85 !important;
      }

      /* 3 REASONS */
      .reason-grid {
        grid-template-columns: 1fr !important;
        gap: 26px !important;
        max-width: 100% !important;
        margin-top: 18px !important;
      }

      .reason-card {
        padding: 26px 20px !important;
      }

      .reason-card h4 {
        font-size: 17px !important;
      }

      .reason-card p {
        font-size: 13px !important;
        line-height: 1.85 !important;
      }

      .reason-num {
        width: 44px !important;
        height: 44px !important;
        font-size: 14px !important;
        top: -18px !important;
        left: 18px !important;
      }

      .reason-bridge {
        font-size: 14px !important;
        line-height: 1.7 !important;
        padding: 0 4px;
      }

      /* WHY FREE */
      /* Free Flow — mobile: horizontal maintained */
      .free-flow {
        padding: 24px 12px 28px !important;
      }

      .ff-node {
        width: 80px !important;
      }

      .ff-img-wrap {
        width: 70px !important;
        height: 60px !important;
      }

      .ff-center .ff-img-wrap {
        width: 90px !important;
        height: 48px !important;
        padding: 8px 10px !important;
      }

      .ff-center { width: 100px !important; }

      .ff-name { font-size: 11px !important; }
      .ff-center .ff-name { font-size: 12px !important; }
      .ff-pill { font-size: 9px !important; padding: 2px 8px !important; }
      .ff-sub { font-size: 9px !important; }

      .ff-conn {
        padding-bottom: 28px !important;
        gap: 3px !important;
      }

      .ff-conn-label { font-size: 9px !important; }

      .free-explanation {
        padding: 24px 20px !important;
      }

      .free-explanation .headline {
        font-size: 20px !important;
      }

      .free-explanation .body {
        font-size: 13px !important;
      }

      /* PROGRAM SUPPORT */
      .support-title {
        font-size: 15px !important;
        line-height: 1.7;
      }

      .support-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        max-width: 100% !important;
      }

      .support-card {
        padding: 18px 12px !important;
      }

      .support-card h5 {
        font-size: 13px !important;
      }

      .support-card p {
        font-size: 11.5px !important;
        line-height: 1.7 !important;
      }

      /* BEFORE / AFTER — mobile */
      .ba-heading-text {
        font-size: 26px !important;
      }

      .ba-person {
        grid-template-columns: 1fr 40px 1fr !important;
        margin-bottom: 0 !important;
      }

      .ba-photo-wrap {
        height: 140px !important;
      }

      .ba-person > div:last-child .ba-photo-wrap {
        height: 180px !important;
      }

      .ba-col-headers,
      .ba-row-item {
        grid-template-columns: 1fr 40px 1fr !important;
      }

      .ba-cell {
        font-size: 12px !important;
        padding: 12px 10px !important;
      }

      .ba-arrow-mid {
        font-size: 15px !important;
      }

      .ba-summary-wrap {
        font-size: 15px !important;
        padding: 22px 20px !important;
      }

      /* FINAL STEP row (#cta-final) */
      .step-row {
        flex-direction: column !important;
        border-radius: 16px !important;
        margin-bottom: 28px !important;
      }

      .step-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding: 24px 20px !important;
        align-items: flex-start !important;
        text-align: left !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0 12px !important;
      }

      .step-item:last-child {
        border-bottom: none !important;
      }

      .step-item::before {
        width: 4px !important;
        height: auto !important;
        top: 0 !important;
        bottom: 0 !important;
        right: auto !important;
        border-radius: 0 !important;
      }

      .step-item .step-num {
        margin-bottom: 8px !important;
        flex-shrink: 0;
      }

      .step-item .step-l {
        font-size: 15px !important;
        flex: none !important;
        width: 100% !important;
        display: block !important;
        margin-bottom: 4px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
      }

      .step-item .step-d {
        font-size: 12px !important;
        width: 100% !important;
      }

      .urgency {
        font-size: 11.5px !important;
        padding: 8px 14px !important;
        line-height: 1.5 !important;
        max-width: 100%;
      }

      /* FLOW STEPS */
      .flow-steps,
      section .flow-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        max-width: 100% !important;
      }

      .flow-steps>.flow-arrow {
        transform: rotate(90deg) !important;
        justify-self: center !important;
        font-size: 22px !important;
        padding: 4px 0 !important;
        width: auto !important;
      }

      .flow-step {
        padding: 22px !important;
        text-align: left !important;
      }

      .flow-step-num {
        display: flex !important;
        align-items: baseline !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
      }

      .flow-step-num .step-num {
        font-size: 36px !important;
      }

      .flow-step h4 {
        font-size: 16px !important;
      }

      .flow-step p {
        font-size: 13px !important;
      }

      /* MEDIA BAR */
      .media-bar {
        flex-direction: column !important;
        padding: 22px 18px !important;
        gap: 16px !important;
      }

      .media-bar-label {
        padding-right: 0 !important;
        border-right: 0 !important;
        text-align: center;
        font-size: 12px !important;
      }

      .media-logos {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
      }

      .media-logos>* {
        font-size: 11px !important;
        padding: 8px 6px !important;
      }

      /* FAQ */
      .faq-grid {
        max-width: 100% !important;
      }

      .faq-q-text {
        font-size: 14px !important;
        line-height: 1.55;
      }

      .faq-a-text {
        font-size: 13px !important;
        line-height: 1.85;
      }

      .faq-q {
        padding: 16px !important;
      }

      .faq-a {
        padding: 0 16px 16px !important;
      }

      /* MID CTA */
      .mid-cta {
        padding: 36px 22px !important;
      }

      .mid-cta h3 {
        font-size: 21px !important;
        line-height: 1.5;
      }

      .mid-cta-eyebrow {
        font-size: 11px !important;
      }

      /* FINAL CTA */
      .final-cta .container {
        padding: 56px 18px !important;
      }

      .final-cta h2 {
        font-size: 26px !important;
        line-height: 1.5 !important;
      }

      /* FOOTER */
      footer {
        padding: 40px 18px !important;
      }

      footer .f-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
      }

      footer .f-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
      }
    }

    @media (max-width: 380px) {
      .compare-td {
        padding: 8px 10px !important;
        font-size: 10px !important;
      }

      .compare-th {
        padding: 10px !important;
      }

      .compare-th h4 {
        font-size: 11px !important;
      }

      .stat-badges .stat-badge .n {
        font-size: 24px !important;
      }

      .fv h1 {
        font-size: 26px;
      }

      .fv-free-pill .chip-text b {
        font-size: 13px;
      }

      .fv-free-pill .chip-text {
        font-size: 11px;
      }

      /* Sticky bottom CTA (mobile only) */
      .sticky-cta {
        display: block !important;
      }

      body {
        padding-bottom: 84px !important;
      }

      footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom)) !important;
      }
    }

    /* Sticky bottom CTA — hidden on desktop, shown via media query above */
    .sticky-cta {
      display: none;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) 14px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 22%, #fff 100%);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      pointer-events: none;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .sticky-cta.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .sticky-cta.is-visible .sticky-cta-inner {
      pointer-events: auto;
    }

    /* ======== Scroll reveal animations ======== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

    .reveal.reveal-left {
      transform: translateX(-32px);
    }

    .reveal.reveal-right {
      transform: translateX(32px);
    }

    .reveal.reveal-scale {
      transform: scale(0.94);
    }

    .reveal.is-in {
      opacity: 1;
      transform: translate(0, 0) scale(1);
    }

    .reveal-stagger>* {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal-stagger.is-in>* {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-stagger.is-in>*:nth-child(1) {
      transition-delay: 0.00s;
    }

    .reveal-stagger.is-in>*:nth-child(2) {
      transition-delay: 0.08s;
    }

    .reveal-stagger.is-in>*:nth-child(3) {
      transition-delay: 0.16s;
    }

    .reveal-stagger.is-in>*:nth-child(4) {
      transition-delay: 0.24s;
    }

    .reveal-stagger.is-in>*:nth-child(5) {
      transition-delay: 0.32s;
    }

    .reveal-stagger.is-in>*:nth-child(6) {
      transition-delay: 0.40s;
    }

    .reveal-stagger.is-in>*:nth-child(7) {
      transition-delay: 0.48s;
    }

    .reveal-stagger.is-in>*:nth-child(n+8) {
      transition-delay: 0.56s;
    }

    /* Reveal animations are gentle (opacity + small translate) — keep them
     even under reduced-motion. Heavier motion (worry-grid float) is still
     suppressed via its own @media rule. */
    .sticky-cta a.btn-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 12px 16px !important;
      font-size: 16px !important;
      font-weight: 800;
      border-radius: 999px;
      background: linear-gradient(180deg, #07d35d 0%, #06C755 50%, #04A647 100%);
      color: #fff;
      text-decoration: none;
      box-shadow: 0 8px 22px rgba(6, 199, 85, 0.38), 0 2px 4px rgba(6, 199, 85, 0.25);
      letter-spacing: 0.02em;
      box-sizing: border-box;
      min-width: 0 !important;
    }

    .sticky-cta a.btn-line .ico-line {
      width: 34px;
      height: 34px;
      border-radius: 7px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .sticky-cta a.btn-line .ico-line img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .sticky-cta a.btn-line .free-tag {
      font-size: 10.5px;
      background: rgba(255, 255, 255, 0.22);
      padding: 3px 9px;
      border-radius: 999px;
      font-weight: 600;
      flex-shrink: 0;
    }

/* ============================================================
   ハンバーガーメニュー
   ============================================================ */

/* --- ハンバーガーボタン（モバイルのみ表示） --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  z-index: 110;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--green-light); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.2s ease;
  transform-origin: center;
}

/* × アニメーション */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- モバイルドロワー --- */
.mobile-drawer {
  display: none; /* PC では非表示 */
}

/* --- オーバーレイ --- */
.mobile-drawer__overlay {
  display: none;
}

@media (max-width: 767px) {

  /* トップナビをモバイルでも表示する */
  .top-nav {
    display: flex !important;
    padding: 0 16px !important;
    height: 52px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  /* ロゴサイズをモバイル用に縮小（inline styleを上書き） */
  .top-nav .logo img {
    height: 30px !important;
    width: auto !important;
    max-width: 120px;
  }

  /* PC用ナビリンクはモバイルで非表示 */
  .top-nav .nav-links {
    display: none !important;
  }

  /* ハンバーガーボタンを表示 */
  .hamburger {
    display: flex;
    background-color: transparent !important;
  }

  /* 固定ヘッダー分 .lp ラッパーを押し下げ（全コンテンツに効く） */
  .lp {
    padding-top: 52px;
  }

  /* ドロワー本体 */
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
  }
  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-drawer__inner {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 48px;
    gap: 0;
  }

  /* ドロワー内のリンク */
  .mobile-drawer__inner a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s, padding-left 0.15s;
  }
  .mobile-drawer__inner a:hover {
    color: var(--green);
    padding-left: 8px;
  }
  .mobile-drawer__inner a:last-child {
    border-bottom: none;
  }

  /* LINEボタン */
  .mobile-drawer__line-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px !important;
    padding: 16px 24px !important;
    background: linear-gradient(180deg, #06C755 0%, #04A647 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    border-bottom: none !important;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35) !important;
    text-align: center;
  }
  .mobile-drawer__line-btn:hover {
    color: #fff !important;
    padding-left: 24px !important;
    opacity: 0.92;
  }
  .mobile-drawer__line-btn .ico-line {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .mobile-drawer__line-btn .ico-line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* オーバーレイ */
  .mobile-drawer__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-drawer__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}
