  /* style.css */
  :root {
    /* ===== Theme Tokens ===== */
    --accent: #4CB7FF;
    /* 水色アクセント：ここだけ変えれば全体が変わる */
    --accent-2: #2aa7ff;
    --bg: #ffffff;
    --text: #0f172a;
    --muted: #475569;
    --border: rgba(15, 23, 42, .10);
    --card: #ffffff;
    --alt: #f6f8fb;

    --shadow: 0 12px 30px rgba(15, 23, 42, .08);
    --shadow-soft: 0 10px 22px rgba(15, 23, 42, .06);

    --radius: 18px;
    --radius-lg: 22px;

    --container: 1100px;
    --pad: 20px;
    --section-y: 56px;

    --h1: clamp(26px, 3.4vw, 44px);
    --h2: clamp(20px, 2.4vw, 28px);
    --p: 16px;
    --lh: 1.75;

    /* fixed CTA height: JSで更新（スマホ用の初期値） */
    --fixed-cta-h: 76px;

    --focus: 0 0 0 4px rgba(76, 183, 255, .35);
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    line-height: var(--lh);
    font-size: var(--p);

    /* スマホ下固定CTAと被らない */
    padding-bottom: calc(var(--fixed-cta-h) + 12px);

    /* ページ遷移用フェード */
    opacity: 0;
    transition: opacity 0.4s ease-out;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  a:hover {
    opacity: .92;
  }

  .container {
    width: min(var(--container), calc(100% - (var(--pad) * 2)));
    margin-inline: auto;
  }

  /* HEROだけは画像を画面いっぱいにするためコンテナ制約を外す */
  .hero .container.hero-inner {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  /* ===== Accessibility ===== */
  :focus-visible {
    outline: none;
    box-shadow: var(--focus);
    border-radius: 10px;
  }

  button {
    font: inherit;
  }

  button,
  a,
  summary {
    -webkit-tap-highlight-color: transparent;
  }

  /* =======================
  Header
======================= */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 1px 0;
  }

  .brand {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 30%, rgba(76, 183, 255, .9), rgba(76, 183, 255, .2));
    border: 1px solid rgba(76, 183, 255, .35);
    box-shadow: 0 10px 20px rgba(76, 183, 255, .18);
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name {
    margin: 0;
    font-weight: 800;
    letter-spacing: .02em;
  }

  .brand-sub {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-nav {
    display: none;
    gap: 14px;
    align-items: center;
  }

  .header-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 10px;
  }

  .header-nav a:hover {
    background: rgba(76, 183, 255, .10);
    color: var(--text);
  }

  .header-call .mini-call {
    font-size: 13px;
    padding: 9px 14px;
    min-height: 40px;
    white-space: nowrap;
  }

  /* =======================
  スマホ用：モーフィングハンバーガーメニュー（768px以下のみ）
======================= */
  @media (min-width: 860px) {

    .hamburger-btn,
    .menu-panel,
    .menu-overlay {
      display: none !important;
    }
  }

  @media (max-width: 768px) {

    /* スマホ版：ロゴとメニューを画面上部に固定 */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 50;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    body {
      padding-top: 60px;
    }

    .header-inner .header-nav,
    .header-inner .header-call {
      display: none !important;
    }

    .header-inner {
      grid-template-columns: 1fr auto;
    }

    /* ハンバーガーボタン（SVG 3本線） */
    .hamburger-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: 8px;
      -webkit-tap-highlight-color: transparent;
    }

    .hamburger-btn:hover {
      background: rgba(76, 183, 255, .1);
    }

    /* メニュー開時も三本線（×）を前面に出して押せるようにする */
    .site-header.is-menu-open .hamburger-btn {
      position: relative;
      z-index: 1000;
    }

    .hamburger-btn__svg {
      width: 24px;
      height: 24px;
    }

    .hamburger-btn__line {
      stroke: var(--text);
      stroke-width: 2;
      stroke-linecap: round;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform, opacity;
      backface-visibility: hidden;
    }

    .hamburger-btn__line--top {
      transform-origin: 12px 6px;
    }

    .hamburger-btn__line--mid {
      transform-origin: 12px 12px;
    }

    .hamburger-btn__line--bot {
      transform-origin: 12px 18px;
    }

    /* モーフィング：×形（上→右下・中→縮む・下→右上） */
    .site-header.is-menu-open .hamburger-btn__line--top {
      transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-menu-open .hamburger-btn__line--mid {
      transform: scaleX(0);
      opacity: 0;
    }

    .site-header.is-menu-open .hamburger-btn__line--bot {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* メニューパネル（右からスライド） */
    .menu-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(80vw, 320px);
      height: 100vh;
      background: #ffffff;
      z-index: 999;
      transform: translate3d(100%, 0, 0);
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      will-change: transform, opacity;
      backface-visibility: hidden;
    }

    .site-header.is-menu-open .menu-panel {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }

    .menu-panel__inner {
      padding: 32px 24px 24px;
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    .menu-panel__nav {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .menu-panel__link {
      display: block;
      padding: 16px 0;
      font-size: 20px;
      font-weight: 600;
      color: var(--text);
      text-decoration: none;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.35s ease-out,
        transform 0.35s ease-out,
        background 0.2s;
      will-change: transform, opacity;
      backface-visibility: hidden;
    }

    .menu-panel__link:hover {
      background: rgba(76, 183, 255, .08);
    }

    /* stagger: JSで .menu-panel__link--visible を付与して順番に表示 */
    .menu-panel__link.menu-panel__link--visible {
      opacity: 1;
      transform: translateY(0);
    }

    .menu-panel__divider {
      display: block;
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    /* オーバーレイ */
    .menu-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
      will-change: opacity;
      backface-visibility: hidden;
    }

    .site-header.is-menu-open .menu-overlay {
      opacity: 1;
      pointer-events: auto;
    }
  }

  /* =======================
  Hero
======================= */
  .hero {
    position: relative;
    overflow: clip;
    padding: 0;
    min-height: 100vh;
    border-bottom: none;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-bg__vignette {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 10%, rgba(76, 183, 255, .12), transparent 45%),
      radial-gradient(circle at 80% 30%, rgba(76, 183, 255, .10), transparent 50%),
      linear-gradient(to bottom, rgba(255, 255, 255, .70), rgba(255, 255, 255, .92) 55%, rgba(255, 255, 255, 1));
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    min-height: 100vh;
  }

  .hero-eyebrow {
    margin: 0 0 6px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: .03em;
  }

  .hero-copy h1 {
    margin: 0 0 10px;
    font-size: var(--h1);
    line-height: 1.18;
    letter-spacing: .01em;
  }

  .hero-subcopy {
    margin: 0 0 14px;
    color: var(--muted);
  }

  .badges {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .25);
    background: rgba(255, 255, 255, .65);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .06);
    font-weight: 700;
    font-size: 13px;
  }

  .hero-cta {
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(8px);
    padding: 14px;
  }

  .meta-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 10px;
  }

  .meta-label {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
  }

  .meta-value {
    font-weight: 600;
    font-size: 13px;
  }

  .meta-value a {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Hero Card */
  .hero-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(76, 183, 255, .20);
    background: rgba(255, 255, 255, .84);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .hero-card__head {
    padding: 16px 16px 10px;
    border-bottom: 1px solid rgba(76, 183, 255, .18);
    background: linear-gradient(to right, rgba(76, 183, 255, .16), transparent);
  }

  .hero-card__title {
    margin: 0;
    font-weight: 800;
  }

  .hero-card__desc {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
  }

  .hero-card__body {
    padding: 14px 16px 16px;
  }

  .pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
  }

  .pill {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
    font-size: 12px;
  }

  .hero-card__img {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    margin: 0 0 12px;
  }

  .hero-card__actions {
    display: grid;
    gap: 10px;
  }

  .hero-card__note {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
  }

  /* Scroll hint */
  .hero-scroll {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding-top: 14px;
  }

  .scroll-hint {
    color: var(--muted);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .7);
  }

  /* =======================
  Sections
======================= */
  .section {
    padding: var(--section-y) 0;
  }

  .section.alt {
    background: var(--alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  /* 商品一覧セクションだけ背景色とボーダーを外す */
  #products.section.alt {
    background: transparent;
    border-top: none;
    border-bottom: none;
  }

  /* 商品エリアは背景なし・画像だけ */
  #products .container {
    background: transparent;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .section-title {
    margin: 0;
    font-size: var(--h2);
    line-height: 1.25;
    font-weight: 800;
    padding-left: 14px;
    position: relative;
  }

  .section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    bottom: .2em;
    width: 4px;
    border-radius: 999px;
    background: var(--accent);
  }

  /* 共通セクション見出し（英字背景・青バッジ・メインタイトル） */
  .section-heading {
    position: relative;
    text-align: center;
    margin-bottom: 48px;
  }

  .section-heading__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 12vw, 120px);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: rgba(0, 100, 200, 0.08);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }

  /* reveal の transform と干渉しないよう見出し背景を専用補正 */
  .section-heading__bg.reveal {
    transform: translate(-50%, calc(-50% + 20px));
  }

  .section-heading__bg.reveal.--visible {
    transform: translate(-50%, -50%);
  }

  .section-heading__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a6fc4;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9999px;
    padding: 6px 20px;
    margin-bottom: 12px;
    position: relative;
    top: -1px;
    z-index: 1;
    line-height: 1;
    vertical-align: middle;
  }

  @media (min-width: 769px) {
    .section-heading__badge {
      top: -2px;
    }

    #flow.section {
      padding-top: 88px;
      padding-bottom: 88px;
    }
  }

  .section-heading__title {
    margin: 0;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    color: #0f172a;
    position: relative;
    z-index: 1;
    line-height: 1.3;
  }

  .lead {
    margin: 0;
    color: var(--muted);
  }

  /* 3-step cards */
  .steps-3 {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .step-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), rgba(76, 183, 255, .55));
  }

  .step-text {
    margin: 0;
    font-weight: 700;
  }

  /* Service cards */
  .card-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .service-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
  }

  .service-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
  }

  .service-card--muted {
    border-color: rgba(15, 23, 42, .10);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(246, 248, 251, .9));
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--accent-2);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* Maker pills */
  .logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
  }

  .logo-pill {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 800;
    font-size: 13px;
  }

  /* Price cards */
  .price-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(76, 183, 255, .20);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .price-card h3 {
    margin: 0 0 8px;
    font-weight: 900;
  }

  .price-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
  }

  .notice {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 1px dashed rgba(76, 183, 255, .45);
    background: rgba(76, 183, 255, .08);
    color: var(--muted);
    font-weight: 700;
  }

  /* Bullets */
  .bullets {
    margin: 0;
    padding-left: 1.2em;
    color: var(--muted);
    display: grid;
    gap: 8px;
  }

  .bullets li {
    font-weight: 650;
  }

  /* =======================
  選ばれる理由 #reasons
======================= */
  #reasons {
    position: relative;
    overflow: hidden;
  }

  #reasons .container {
    position: relative;
  }

  #reasons .reasons-grid,
  #reasons .reasons-grid--more {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* PC：行間26px・列間32pxで①～④の距離感をそろえる */
    gap: 26px 32px;
    position: relative;
    z-index: 1;
  }

  #reasons .reason-card {
    margin: 0;
    padding: 20px;
    border: 1.5px solid #a8c8e8;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }

  /* 1. 番号バッジ＋タイトル（横並び） */
  #reasons .reason-card__head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  #reasons .reason-card__num-wrap {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 44px;
    padding: 8px 12px;
    background: #1a6fc4;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    border-radius: 4px;
  }

  /* バッジ右下の三角アクセント（::after） */
  #reasons .reason-card__num-wrap::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 10px solid #1a6fc4;
    border-left: 10px solid #1a6fc4;
    z-index: 0;
    pointer-events: none;
  }

  #reasons .reason-card__num {
    position: relative;
    z-index: 1;
  }

  /* 2. 区切り線はタイトル直下（border-bottom） */
  #reasons .reason-card__title {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 800;
    line-height: 1.45;
    color: var(--text);
    border-bottom: 2px solid #1a6fc4;
  }

  #reasons .reason-card__media {
    position: relative;
    width: 100%;
    background: #e8eaed;
    border-radius: 8px;
    overflow: hidden;
  }

  /* カード内画像：参考デザインに合わせコンパクト表示（PC） */
  #reasons .reason-card__media img,
  #reasons .reason-card__media picture img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    background: #e8eaed;
  }

  /* 4. 説明テキスト */
  #reasons .reason-card__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
  }

  @media (max-width: 768px) {

    #reasons .reasons-grid,
    #reasons .reasons-grid--more {
      grid-template-columns: 1fr;
      /* SP：縦積みは均一な間隔 */
      gap: 20px;
    }

    #reasons .reason-card__title {
      font-size: 16px;
    }

    #reasons .reason-card__head {
      gap: 10px;
    }

    #reasons .reason-card__media img,
    #reasons .reason-card__media picture img {
      height: 160px;
    }
  }

  /* 選ばれる理由：③④は「もっと見る」で表示（対応サービスと同系のUI） */
  #reasons .reasons-expand {
    position: relative;
  }

  #reasons .reasons-grid--more {
    margin-top: 0;
  }

  /* ①②と「もっと見る」／①②と③④（展開時）の間＝グリッド行間に合わせる */
  #reasons .reasons-more-btn-wrap {
    margin-top: 26px;
    text-align: center;
  }

  #reasons .reasons-more.is-visible {
    margin-top: 26px;
  }

  #reasons .reasons-more-btn-wrap.is-opened {
    display: none;
  }

  #reasons .reasons-expand[data-reasons-busy] .reasons-more-btn-wrap,
  #reasons .reasons-expand[data-reasons-busy] .reasons-close-btn-wrap {
    pointer-events: none;
    opacity: 0.85;
  }

  #reasons .reasons-more-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  #reasons .reasons-more-btn:hover {
    background: #f1f5f9;
  }

  #reasons .reasons-more {
    display: none;
    flex-direction: column;
    margin-top: 0;
  }

  #reasons .reasons-more.is-visible {
    display: flex;
  }

  #reasons .reasons-more>.reasons-grid--more {
    margin-top: 0;
  }

  #reasons .reasons-close-btn-wrap {
    display: none;
    margin-top: 22px;
    text-align: center;
  }

  #reasons .reasons-close-btn-wrap.is-visible {
    display: block;
  }

  #reasons .reasons-close-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  #reasons .reasons-close-btn:hover {
    background: #f1f5f9;
  }

  @media (max-width: 768px) {

    /* SP：もっと見る・③④ブロックまわりの余白を縦リズムに合わせる */
    #reasons .reasons-more-btn-wrap {
      margin-top: 22px;
    }

    #reasons .reasons-more.is-visible {
      margin-top: 22px;
    }

    #reasons .reasons-close-btn-wrap {
      margin-top: 20px;
    }
  }

  /* Case study */
  .case-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .case-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .case-media {
    border-bottom: 1px solid var(--border);
  }

  .case-dl {
    margin: 0;
    padding: 14px 16px 8px;
    display: grid;
    gap: 8px;
  }

  .case-dl>div {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 10px;
  }

  .case-dl dt {
    color: var(--muted);
    font-weight: 800;
  }

  .case-dl dd {
    margin: 0;
    font-weight: 650;
  }

  .case-note {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
    font-size: 12px;
  }

  /* Reviews：3列グリッド＋スクロール表示 */
  .review-scroll-section {
    width: 100%;
  }

  .review-scroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container);
    margin: 0 auto;
  }

  .review-scroll-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(76, 183, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
  }

  .review-scroll-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 183, 255, 0.35);
    box-shadow: 0 16px 36px rgba(76, 183, 255, 0.22);
  }

  .review-scroll-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(180deg, #eaf5ff 0%, #dff0ff 100%);
  }

  .review-scroll-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.45s ease,
      filter 0.45s ease;
    filter: saturate(1.03) contrast(1.02);
  }

  .review-scroll-card:hover .review-scroll-card__img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.04);
  }

  .review-scroll-card__body {
    padding: 18px 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "stars stars"
    "name meta"
    "text text";
  column-gap: 8px;
  row-gap: 6px;
  }

  .review-scroll-card__stars {
  grid-area: stars;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .review-scroll-card__name {
  grid-area: name;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
  }

  .review-scroll-card__text {
  grid-area: text;
    font-size: 12px;
    color: #334155;
    line-height: 1.75;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .review-scroll-card__meta {
  grid-area: meta;
    font-size: 10px;
    color: #64748b;
    margin: 0;
  white-space: nowrap;
  text-align: right;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.22);
  }

  .review-scroll-card__text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }

  .review-read-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #1a6fc4;
    cursor: pointer;
    background: rgba(76, 183, 255, 0.08);
    border: 1px solid rgba(76, 183, 255, 0.24);
    border-radius: 999px;
    padding: 4px 10px;
    text-decoration: none;
    transition: background-color 0.2s ease,
      color 0.2s ease;
  }

  .review-read-more:hover {
    color: #0b5ea8;
    background: rgba(76, 183, 255, 0.16);
  }

  .review-scroll-card.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease,
      transform 0.6s ease;
  }

  .review-scroll-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

.review-pc-slider {
  display: none;
}

.review-sp-slider {
  display: none;
}

@media (min-width: 769px) {
  .review-scroll-grid {
    display: none;
  }

  .review-pc-slider {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .review-pc-slider__track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .review-pc-slider__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 24px;
    padding: 8px 4px;
  }

  .review-scroll-card--empty {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .review-pc-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .25);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    cursor: pointer;
    z-index: 10;
    user-select: none;
    line-height: 1;
    padding: 0;
    font-family: inherit;
  }

  .review-pc-slider__btn--prev {
    left: 10px;
  }

  .review-pc-slider__btn--next {
    right: 10px;
  }

  .review-pc-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }

  .review-pc-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .45);
    background: rgba(76, 183, 255, .18);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .review-pc-slider__dot.active {
    width: 24px;
    background: rgba(76, 183, 255, .75);
  }
}

@media (max-width: 768px) {
  .review-pc-slider {
    display: none;
  }

  .review-scroll-grid {
    display: none;
  }

  .review-sp-slider {
    display: block;
    position: relative;
  }

  .review-sp-slider__viewport {
    overflow: hidden;
    border-radius: 12px;
  }

  .review-sp-slider__track {
    display: flex;
    align-items: start;
    transition: transform 480ms ease;
    will-change: transform;
  }

  .review-sp-slider__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .review-sp-card {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(76, 183, 255, 0.18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
  }

  .review-sp-card--empty {
    background: transparent;
    box-shadow: none;
  }

  .review-sp-card__img-wrap {
    width: 100%;
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(180deg, #eaf5ff 0%, #dff0ff 100%);
  }

  .review-sp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(1.04) contrast(1.02);
  }

  .review-sp-card__body {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 170px;
  }

  .review-sp-card__stars {
    color: #FFD700;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
  }

  .review-sp-card__name {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    order: 1;
  }

  .review-sp-card__text {
    margin: 0;
    font-size: 10px;
    color: #475569;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease;
    order: 3;
    max-height: 4.8em;
    opacity: 0.98;
  }

  .review-sp-card__text.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: hidden;
    opacity: 1;
  }

  .review-sp-card__meta {
    margin: 0;
    font-size: 10px;
    color: #94a3b8;
    line-height: 1.3;
    order: 2;
  }

  .review-sp-card--has-read-more .review-read-more {
    order: 99;
    margin-top: auto;
    align-self: center;
    min-width: 108px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, 0.35);
    background: linear-gradient(180deg, #eef8ff 0%, #dff2ff 100%);
    color: #0b5ea8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 14px rgba(76, 183, 255, 0.14);
    transition: transform 0.25s ease,
      opacity 0.25s ease,
      box-shadow 0.25s ease,
      background-color 0.25s ease,
      color 0.25s ease;
  }

  .review-sp-card--has-read-more .review-read-more::after {
    content: " ▾";
    font-size: 10px;
  }

  .review-sp-card--has-read-more .review-read-more.is-expanded::after {
    content: " ▴";
  }

  .review-sp-card--has-read-more .review-read-more:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 18px rgba(76, 183, 255, 0.2);
  }

  .review-sp-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .25);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    line-height: 1;
    padding: 0;
    font-family: inherit;
  }

  .review-sp-slider__btn--prev {
    left: 6px;
  }

  .review-sp-slider__btn--next {
    right: 6px;
  }

  .review-sp-slider__controls {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 8px;
    pointer-events: none;
  }

  .review-sp-slider__dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }

  .review-sp-slider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease;
  }

  .review-sp-slider__dot[aria-current="true"] {
    background: rgba(0, 0, 0, 0.6);
  }
  }

  @media (prefers-reduced-motion: reduce) {
    .review-scroll-card.reveal {
      opacity: 1;
      transform: none;
    }
  }

  /* Flow（ご利用の流れ）— 横並びタイムライン */
  .flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
  }

  .flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 16px;
    min-width: 0;
  }

  .flow-step__circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a6fc4, #4CB7FF);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(76, 183, 255, 0.4);
    flex-shrink: 0;
  }

  .flow-step__num {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .flow-step__title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
  }

  .flow-step__text {
    margin: 0;
    font-size: 12px;
    color: #475569;
    line-height: 1.6;
    padding: 0 8px;
  }

  .flow-step__line {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4CB7FF, #1a6fc4);
    margin-top: 31px;
  }

  @media (max-width: 768px) {
    .flow-steps {
      flex-direction: column;
      align-items: center;
      gap: 0;
      max-width: 100%;
    }

    .flow-step {
      width: 100%;
      max-width: 360px;
    }

    .flow-step__line {
      width: 2px;
      height: 40px;
      margin-top: 0;
      background: linear-gradient(180deg, #4CB7FF, #1a6fc4);
    }
  }

  @media (min-width: 769px) and (max-width: 860px) {
    .flow-steps {
      gap: 8px;
    }

    .flow-step__line {
      width: 30px;
    }

    .flow-step__title {
      font-size: 13px;
    }

    .flow-step__text {
      font-size: 11px;
    }
  }

  /* Area */
  #area {
    position: relative;
    overflow: hidden;
  }

  .area-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: var(--container);
    margin: 0 auto;
  }

  .area-text {
    flex: 1;
  }

  .area-catchcopy {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #4CB7FF;
    margin-bottom: 12px;
    line-height: 1.3;
    width: fit-content;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: left;
  }

  .area-text-group {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .area-cities {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    white-space: nowrap;
    margin: 0;
  }

  .area-map {
    flex-shrink: 0;
    width: 320px;
  }

  .area-map__img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    filter: drop-shadow(0 4px 16px rgba(76, 183, 255, 0.3));
    animation: pulse-breathe 4s ease-in-out infinite;
    transform-origin: center;
  }

  @keyframes pulse-breathe {

    0%,
    100% {
      transform: scale(1);
      filter: drop-shadow(0 0 8px rgba(76, 183, 255, 0.3));
    }

    50% {
      transform: scale(1.04);
      filter: drop-shadow(0 0 18px rgba(76, 183, 255, 0.6));
    }
  }

  @media (min-width: 769px) {

    /* エリア全体を中央寄せ */
    .area-inner {
      justify-content: center;
      align-items: center;
      text-align: center;
    }

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

    .area-text-group {
      align-items: center;
    }

    #area .area-text>.lead {
      text-align: left;
    }

    /* 「和歌山県全域に対応」を大きく */
    .area-catchcopy {
      font-size: clamp(52px, 7vw, 84px);
      margin-bottom: 16px;
    }

    /* 「和歌山市・田辺市〜」を大きく */
    .area-cities {
      font-size: clamp(16px, 2vw, 22px);
    }

    /* 地図画像を大きく */
    .area-map {
      width: 400px;
    }
  }

  @media (max-width: 768px) {
    .area-inner {
      flex-direction: row;
      align-items: center;
      gap: 10px;
    }

    .area-text {
      width: 100%;
      overflow: hidden;
      padding: 0 8px 0 12px;
      flex: 1 1 auto;
    }

    .area-catchcopy {
      font-size: clamp(19px, 6.2vw, 29px);
      line-height: 1.35;
      margin-bottom: 8px;
      white-space: normal;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .area-cities {
      font-size: 12px;
      white-space: normal;
      word-break: keep-all;
      overflow-wrap: anywhere;
      line-height: 1.7;
    }

    .area-map {
      width: 36%;
      max-width: 165px;
      margin: 6px 0 0;
      flex: 0 0 auto;
    }
  }

  .area-box {
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(76, 183, 255, .22);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .area-box__title {
    margin: 0 0 6px;
    font-weight: 900;
  }

  .area-box__desc {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 650;
  }

  .area-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* FAQ */
  .faq {
    display: grid;
    gap: 10px;
  }

  /* FAQ Q項目：スクロールでセクションが入ったら上から順にスタガー表示 */
  .faq>.faq-item {
    opacity: 0;
    transform: translateY(20px);
  }

  .faq.faq-inview>.faq-item {
    animation: faqItemReveal 0.4s ease-out forwards;
  }

  @keyframes faqItemReveal {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

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

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

  .faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 900;
  }

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

  .faq-item .q {
    line-height: 1.35;
  }

  .faq-item .chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
    transition: transform .4s ease-out;
    flex: 0 0 auto;
  }

  .faq-item[open] .chev {
    transform: rotate(225deg);
  }

  .faq-item .a {
    padding: 0 16px 14px;
    color: var(--muted);
    font-weight: 650;
  }

  /* ===== FAQ もっと見る・閉じる ===== */
  /* アニメーションはすべてJS（Web Animations API）で制御。CSSアニメーションなし */

  .faq-more-btn-wrap {
    margin-top: 14px;
    text-align: center;
  }

  .faq-more-btn-wrap.is-opened {
    display: none;
  }

  /* アニメーション中は連打防止 */
  .faq[data-faq-busy] .faq-more-btn-wrap,
  .faq[data-faq-busy] .faq-close-btn-wrap {
    pointer-events: none;
    opacity: 0.85;
  }

  .faq-more-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .faq-more-btn:hover {
    background: #f1f5f9;
  }

  /* flex + margin-bottom で管理（gap不使用）
   → 閉じる時に高さ縮小すると空白ゼロで詰まる */
  .faq-more {
    display: none;
    flex-direction: column;
    margin-top: 0;
  }

  .faq-more.is-visible {
    display: flex;
  }

  .faq-more>.faq-item {
    margin-bottom: 10px;
  }

  .faq-more>.faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-close-btn-wrap {
    display: none;
    margin-top: 14px;
    text-align: center;
  }

  .faq-close-btn-wrap.is-visible {
    display: block;
  }

  .faq-close-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .faq-close-btn:hover {
    background: #f1f5f9;
  }

  /* ===== 対応サービス アコーディオン（FAQと同じ見た目・もっと見る／閉じる） ===== */
  .services-accordion {
    display: grid;
    gap: 10px;
    /* FAQ と同じ間隔 */
  }

  .services-accordion>.faq-item {
    opacity: 0;
    transform: translateY(20px);
  }

  .services-accordion.services-inview>.faq-item {
    animation: faqItemReveal 0.4s ease-out forwards;
  }

  .services-more-btn-wrap {
    margin-top: 14px;
    text-align: center;
  }

  .services-more-btn-wrap.is-opened {
    display: none;
  }

  /* アニメーション中は連打防止 */
  .services-accordion[data-services-busy] .services-more-btn-wrap,
  .services-accordion[data-services-busy] .services-close-btn-wrap {
    pointer-events: none;
    opacity: 0.85;
  }

  .services-more-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .services-more-btn:hover {
    background: #f1f5f9;
  }

  /* flex + margin-bottom で管理（gap不使用）
   → 閉じる時に高さ縮小すると空白ゼロで詰まる */
  .services-more {
    display: none;
    flex-direction: column;
    margin-top: 0;
  }

  .services-more.is-visible {
    display: flex;
  }

  .services-more>.faq-item {
    margin-bottom: 10px;
  }

  .services-more>.faq-item:last-child {
    margin-bottom: 0;
  }

  .services-close-btn-wrap {
    display: none;
    margin-top: 14px;
    text-align: center;
  }

  .services-close-btn-wrap.is-visible {
    display: block;
  }

  .services-close-btn {
    width: fit-content;
    max-width: 200px;
    min-width: 120px;
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent);
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .services-close-btn:hover {
    background: #f1f5f9;
  }

  /* ===== 他社より安いをお約束バナー ===== */
  .yasui-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 0;
  }

  .yasui-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .wakayama-banner {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: 0;
  }

  .wakayama-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* CTA final */
  .cta-final {
    background:
      radial-gradient(circle at 25% 0%, rgba(76, 183, 255, .18), transparent 40%),
      radial-gradient(circle at 80% 40%, rgba(76, 183, 255, .12), transparent 45%),
      #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  /* Form */
  .contact-form {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
    padding: 16px;
  }

  .form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .field label {
    display: inline-block;
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 13px;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 12px 12px;
    outline: none;
    background: #fff;
    color: var(--text);
    font-size: 16px;
    /* iOSでズームインしないよう16px以上を明示 */
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    box-shadow: var(--focus);
    border-color: rgba(76, 183, 255, .55);
  }

  .field--full {
    grid-column: 1 / -1;
  }

  .form-actions {
    margin-top: 14px;
    display: grid;
    gap: 10px;
  }

  .form-note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
  }

  .contact-box {
    margin-top: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(76, 183, 255, .20);
    background: rgba(76, 183, 255, .08);
    padding: 16px;
    display: grid;
    gap: 12px;
  }

  .contact-box__title {
    margin: 0 0 4px;
    font-weight: 900;
  }

  .contact-box__desc {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
  }

  .contact-box__right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* =======================
  Buttons
======================= */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 900;
    letter-spacing: .01em;
    cursor: pointer;
    user-select: none;
  }

  .btn-block {
    width: 100%;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent), rgba(76, 183, 255, .65));
    color: #fff;
    box-shadow: 0 14px 26px rgba(76, 183, 255, .22);
  }

  .btn-primary:hover {
    filter: brightness(.98);
  }

  .btn-outline {
    background: #fff;
    border-color: rgba(76, 183, 255, .35);
    color: var(--accent-2);
  }

  .btn-ghost {
    background: rgba(76, 183, 255, .08);
    border-color: rgba(76, 183, 255, .18);
    color: var(--text);
  }

  /* =======================
  Footer
======================= */
  .site-footer {
    padding: 28px 0 24px;
    background: #ffffff;
    color: var(--text);
  }

  .footer-inner {
    display: grid;
    gap: 14px;
  }

  .footer-title {
    margin: 0 0 6px;
    font-weight: 900;
    font-size: 16px;
    color: var(--text);
  }

  .footer-text {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
  }

  .footer-text a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .footer-links a {
    color: var(--muted);
    font-weight: 700;
  }

  .footer-copy {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
  }

  /* =======================
  Fixed CTA (mobile) / Floating CTA (desktop)
======================= */
  .fixed-cta {
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: auto;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  /* スマホ：フル幅下バー（電話・LINE）・SOHO風：ヒーロー過ぎでふわっと表示 */
  @media (max-width: 768px) {
    .fixed-cta {
      display: flex !important;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      max-width: 100vw;
      flex-direction: row;
      align-items: stretch;
      gap: 10px;
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      background: #fff;
      border-top: 1px solid var(--border);
      box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
      z-index: 60;
      box-sizing: border-box;
      /* 常に固定。ヘッダー画像の下までスクロールするまで非表示→フェードイン */
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease-out;
    }

    .fixed-cta.fixed-cta--visible {
      opacity: 1;
      pointer-events: auto;
    }

    .fixed-cta .cta-btn {
      flex: 1;
      min-width: 0;
      min-height: 48px;
      padding: 10px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }

    .fixed-cta .cta-btn__kicker {
      display: none;
    }

    .fixed-cta .cta-btn__main {
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
    }
  }

  .cta-btn {
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 2px;
    text-align: center;
    padding: 10px 8px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-soft);
    min-height: 64px;
    /* タップ領域 */
  }

  .cta-btn__kicker {
    font-size: 11px;
    font-weight: 900;
    color: var(--muted);
  }

  .cta-btn__main {
    font-size: 15px;
    font-weight: 900;
  }

  .cta-btn__sub {
    font-size: 11px;
    font-weight: 800;
    color: var(--muted);
  }

  /* 電話ボタン：LPカラー（水色系）に統一 */
  .cta-tel {
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), rgba(76, 183, 255, .75));
    color: #fff;
  }

  .cta-line {
    border-color: transparent;
    background: #06C755;
    color: #ffffff;
  }

  .cta-tel .cta-btn__kicker,
  .cta-tel .cta-btn__main,
  .cta-tel .cta-btn__sub {
    color: #fff;
  }

  .cta-line .cta-btn__kicker,
  .cta-line .cta-btn__main,
  .cta-line .cta-btn__sub {
    color: #ffffff;
  }

  .btn-neumorphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #e3edf7;
    border-radius: 10px;
    box-shadow:
      6px 6px 10px -1px rgba(0, 0, 0, 0.15),
      -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: transform 0.5s;
    text-decoration: none;
  }

  .btn-neumorphic:hover,
  .btn-neumorphic:active {
    box-shadow:
      inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
      inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7),
      -0.5px -0.5px 0px rgba(255, 255, 255, 1),
      0.5px 0.5px 0px rgba(0, 0, 0, 0.15),
      0px 12px 10px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateY(0.5em);
  }

  .btn-neumorphic svg {
    transition: transform 0.5s;
  }

  .btn-neumorphic:hover svg,
  .btn-neumorphic:active svg {
    transform: scale(0.9);
  }

  .btn-neumorphic span {
    font-size: 11px;
    font-weight: 600;
    margin-top: 0;
    line-height: 1;
    text-align: center;
  }

  .btn-neumorphic--tel span {
    color: #0092E4;
  }

  .btn-neumorphic--line span {
    color: #06C755;
  }

  .btn-neumorphic--tel svg {
    color: #0092E4;
  }

  .btn-neumorphic--line svg {
    color: #06C755;
  }

  .cta-form {
    border-color: rgba(76, 183, 255, .18);
    background: rgba(76, 183, 255, .08);
  }

  /* PC用：右下 */
  .float-cta {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 65;
    gap: 10px;
  }

  .float-cta__btn {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    border: 1px solid rgba(76, 183, 255, .25);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    gap: 2px;
    padding: 8px;
  }

  .float-cta__icon {
    font-size: 18px;
  }

  .float-cta__text {
    font-size: 11px;
    font-weight: 900;
    color: var(--text);
  }

  /* =======================
  Responsive
======================= */
  @media (min-width: 860px) {
    .header-nav {
      display: inline-flex;
    }

    .hero-inner {
      grid-template-columns: 1.3fr .9fr;
      gap: 22px;
    }

    .hero-cta {
      grid-template-columns: 1fr 1fr;
    }

    .hero-cta .btn-ghost {
      grid-column: 1 / -1;
    }

    .steps-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .step-card {
      grid-template-columns: 1fr;
    }

    .step-num {
      width: 62px;
      height: 62px;
    }

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

    .price-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .case-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .form-grid {
      grid-template-columns: 1fr 1fr;
    }

    .contact-box {
      grid-template-columns: 1fr auto;
      align-items: center;
    }

    /* desktop CTA behavior */
    .fixed-cta {
      display: none;
    }

    body {
      padding-bottom: 0;
    }

    .float-cta {
      display: grid;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    .faq-item .chev {
      transition: none;
    }
  }



  /* ===== FVトップ画像：2カラム全体に表示 ===== */
  .hero-topimg {
    grid-column: 1 / -1;
    /* ===== ←これが本体。2カラムを跨ぐ ===== */
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    background: #fff;
    margin-bottom: 18px;
  }

  .hero-topimg img {
    width: 100%;
    height: auto;
    display: block;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    animation: scroll-blink 2s ease-in-out infinite;
  }

  .scroll-indicator__text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  .scroll-indicator__arrow {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }

  @media (min-width: 769px) {
    .scroll-indicator {
      bottom: 32px;
      gap: 10px;
      animation: scroll-blink 2.4s ease-in-out infinite;
    }

    .scroll-indicator__text {
      font-size: 10px;
      letter-spacing: 4px;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.95);
    }

    .scroll-indicator__arrow {
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(4px);
      display: grid;
      place-items: center;
      font-size: 18px;
      line-height: 1;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
      animation: scroll-arrow-float 1.6s ease-in-out infinite;
    }
  }

  @media (max-width: 768px) {
    .scroll-indicator {
      display: none;
    }
  }

  @keyframes scroll-blink {

    0%,
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0px);
    }

    50% {
      opacity: 0.3;
      transform: translateX(-50%) translateY(6px);
    }
  }

  @keyframes scroll-arrow-float {

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

    50% {
      transform: translateY(5px);
    }
  }

  /* ===== heroロゴタップ周り綺麗に ===== */
  .brand-link {
    display: inline-flex;
    align-items: center;
  }


  /* =======================
  商品カードカルーセル
======================= */
  .carousel {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    padding: 14px;
    overflow: hidden;
  }

  .carousel__viewport {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 6px);
    background: #fff;
    border: 1px solid var(--border);
  }

  .carousel__track {
    display: flex;
    transition: transform 480ms ease;
    will-change: transform;
  }

  .carousel__slide {
    margin: 0;
    flex: 0 0 100%;
    display: block;
  }

  .carousel__slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
  }

  /* ===== 矢印 ===== */
  .carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .25);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    cursor: pointer;
    user-select: none;
  }

  .carousel__nav--prev {
    left: 10px;
  }

  .carousel__nav--next {
    right: 10px;
  }

  .carousel__nav:disabled {
    opacity: .45;
    cursor: not-allowed;
  }

  /* ===== ドット ===== */
  .carousel__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  .carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(76, 183, 255, .45);
    background: rgba(76, 183, 255, .18);
    cursor: pointer;
  }

  .carousel__dot[aria-current="true"] {
    width: 24px;
    background: rgba(76, 183, 255, .75);
  }

  /* ===== スマホで矢印を少し内側に ===== */
  @media (max-width: 520px) {
    .carousel {
      padding: 12px;
    }

    .carousel__nav--prev {
      left: 6px;
    }

    .carousel__nav--next {
      right: 6px;
    }
  }


  /* ===== HERO: 商品→最短即日を下に（PCでも1カラム化） ===== */
  @media (min-width: 860px) {
    .hero-inner {
      grid-template-columns: 1fr !important;
      /* 2カラムをやめる */
      gap: 18px !important;
    }
  }


  /* =======================
  スマホ最適化（GoodLine SOHO風）
  ※PCレイアウトは変えない
======================= */
  @media (max-width: 600px) {

    /* ----- CSS変数（GoodLine風：余白・コンテナ） ----- */
    :root {
      --section-y: 48px;
      --pad: 16px;
    }

    /* セクション：見出しまわり余白をはっきり */
    .section {
      padding: var(--section-y) 0;
    }

    .section-head {
      margin-bottom: 20px;
    }

    .section-title {
      font-size: clamp(18px, 4.5vw, 22px);
      line-height: 1.35;
      padding-left: 12px;
    }

    .header-inner {
      padding: 0;
      gap: 8px;
    }

    /* スマホ：ロゴとメニューを固定（600px以下も同様） */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: rgba(255, 255, 255, .98);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
    }

    .header-call .mini-call {
      font-size: 12px;
      padding: 8px 10px;
      min-height: 44px;
      /* タップ領域44px確保 */
      display: inline-flex;
      align-items: center;
    }

    /* ----- ヒーローセクション（スマホも隙間なしで全画面） ----- */
    .hero {
      padding: 0;
    }

    .hero-inner {
      gap: 0;
    }

    .hero-topimg {
      border-radius: 0;
      margin-bottom: 0;
      min-height: 40vh;
      display: block;
    }

    .hero-topimg picture,
    .hero-topimg img {
      display: block;
      width: 100%;
      height: auto;
      min-height: 200px;
    }

    .hero-hojokin {
      display: block;
    }

    .hero-hojokin picture,
    .hero-hojokin img {
      display: block;
      width: 100%;
      height: auto;
    }

    .hero-copy h1 {
      font-size: clamp(24px, 7vw, 32px);
      line-height: 1.2;
      word-break: keep-all;
      /* 日本語の不自然な折り返しを抑制 */
      overflow-wrap: anywhere;
    }

    .hero-eyebrow {
      font-size: 13px;
    }

    .hero-subcopy {
      font-size: 14px;
    }

    /* バッジを小さく */
    .badge {
      font-size: 12px;
      padding: 6px 10px;
    }

    /* FV内CTAボタンを縦並び・全幅 */
    .hero-cta {
      grid-template-columns: 1fr;
    }

    .hero-cta .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
    }

    /* メタ情報（住所など）の折り返し調整 */
    .meta-item {
      grid-template-columns: 72px 1fr;
      gap: 6px;
    }

    .meta-value {
      font-size: 12px;
      word-break: break-all;
    }

    /* ヒーローカード */
    .hero-card__head {
      padding: 14px 14px 10px;
    }

    .hero-card__body {
      padding: 12px 14px 14px;
    }

    .hero-card__actions .btn {
      min-height: 48px;
      font-size: 15px;
    }

    /* ----- セクションタイトル ----- */
    .section-title {
      font-size: clamp(17px, 4.5vw, 22px);
      line-height: 1.35;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .section-heading {
      margin-bottom: 36px;
    }

    .section-heading__title {
      font-size: clamp(17px, 4.5vw, 28px);
      line-height: 1.35;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    /* ----- 安心の約束（step cards） ----- */
    .step-card {
      padding: 14px;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      font-size: 14px;
    }

    .step-text {
      font-size: 15px;
      align-self: center;
    }

    /* ----- サービスカード ----- */
    .service-card {
      padding: 14px;
    }

    .service-card h3 {
      font-size: 15px;
    }

    .service-card p {
      font-size: 13px;
    }

    /* card-link のタップ領域を広げる */
    .card-link {
      display: inline-flex;
      padding: 8px 0;
      min-height: 44px;
      align-items: center;
    }

    /* ----- メーカーピル ----- */
    .logo-pill {
      font-size: 13px;
      padding: 10px 14px;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    /* ----- 料金セクション ----- */
    .price-card {
      padding: 16px;
    }

    .price-card h3 {
      font-size: 16px;
    }

    .notice {
      font-size: 13px;
      padding: 12px 14px;
    }

    /* ----- 施工事例 ----- */
    .case-dl>div {
      grid-template-columns: 68px 1fr;
      gap: 6px;
    }

    /* ----- 対応エリア ----- */
    .lead {
      font-size: 14px;
      word-break: keep-all;
      overflow-wrap: anywhere;
    }

    .area-box {
      padding: 16px;
    }

    /* エリアボックス内ボタンを全幅縦並び */
    .area-box__actions {
      flex-direction: column;
      gap: 8px;
    }

    .area-box__actions .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
    }

    /* ----- FAQ ----- */
    .faq-item summary {
      padding: 14px;
      min-height: 52px;
      /* タップ領域拡大 */
      font-size: 14px;
    }

    .faq-item .a {
      padding: 0 14px 12px;
      font-size: 14px;
    }

    /* ----- 最終CTA ----- */
    .cta-row {
      flex-direction: column;
      gap: 8px;
    }

    .cta-row .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
    }

    /* ----- フォーム ----- */
    .contact-form {
      padding: 14px;
    }

    .field label {
      font-size: 13px;
    }

    .field input,
    .field select,
    .field textarea {
      padding: 14px 12px;
      border-radius: 12px;
      min-height: 48px;
    }

    .form-actions .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
    }

    /* contact-box内ボタンを縦並び全幅 */
    .contact-box {
      padding: 14px;
    }

    .contact-box__right {
      flex-direction: column;
      gap: 8px;
    }

    .contact-box__right .btn {
      width: 100%;
      min-height: 52px;
      font-size: 15px;
    }

    /* ----- 固定CTA（スマホ下固定バー）：高さ・フォント統一 ----- */
    .fixed-cta .cta-btn {
      min-height: 48px;
      padding: 10px 8px;
    }

    .fixed-cta .cta-btn__main {
      font-size: 14px;
      line-height: 1.2;
    }

    /* 極小端末（375px以下） */
    @media (max-width: 375px) {
      .fixed-cta {
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        gap: 8px;
      }

      .fixed-cta .cta-btn {
        min-height: 44px;
        padding: 8px 6px;
      }

      .fixed-cta .cta-btn__main {
        font-size: 13px;
      }
    }

    /* ----- フッター ----- */
    .footer-title {
      font-size: 15px;
    }

    .footer-text {
      font-size: 13px;
    }

    .footer-links a {
      font-size: 13px;
      padding: 4px 0;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }
  }

  /* =======================
  OVERRIDE PACK（ここから下は上書き専用）
  まとめて整える用：最後尾に置く
======================= */

  /* ヘッダーロゴ・パディング調整（ここを変えるだけでPC/スマホ両方反映） */
  :root {
    --header-logo-height: 50px;
    /* PC版ロゴの高さ */
    --header-logo-height-sp: 30px;
    /* スマホ版ロゴの高さ（768px以下） */
    --header-inner-padding-y: 25px;
    /* PC版ヘッダー上下パディング */
    --header-inner-padding-y-sp: 15px;
    /* スマホ版ヘッダー上下パディング（600px以下） */
  }

  /* PC版：ヘッダー内余白 */
  .header-inner {
    padding: var(--header-inner-padding-y) 0;
  }

  /* ヘッダーロゴ（PC） */
  .brand-logo {
    height: var(--header-logo-height);
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
  }

  /* スマホ版：ロゴサイズ・ヘッダー内余白 */
  @media (max-width: 768px) {
    .brand-logo {
      height: var(--header-logo-height-sp);
    }
  }

  @media (max-width: 600px) {
    .header-inner {
      padding: var(--header-inner-padding-y-sp) 0;
      gap: 10px;
    }
  }

  /* hero：PCでも1カラムで固定（2カラム指定を無効化） */
  @media (min-width: 860px) {
    .hero-inner {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
    }
  }

  /* PC：メニューバー（ヘッダー）をHERO画像の上に重ねる（見た目・中身はそのまま） */
  @media (min-width: 860px) {
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 50;
    }
  }

  /* FVトップ画像 */
  .hero-topimg {
    border-radius: 0;
    overflow: hidden;
    border: none;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
    height: 100%;
  }

  .hero-topimg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .hero-hojokin {
    grid-column: 1 / -1;
    width: 100%;
    line-height: 0;
  }

  .hero-hojokin img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* 商品カードセクション：PCは上下余白・カード間隔 */
  #products {
    padding-top: 0;
    padding-bottom: 0;
  }

  @media (min-width: 769px) {
    #products {
      padding-top: 64px;
      padding-bottom: 72px;
    }

    #products .carousel-block {
      margin-bottom: 2.5rem;
      line-height: 1;
    }

    #products .carousel-block:last-child {
      margin-bottom: 0;
    }

    /* 商品カルーセル：矢印は画像上・ドットは画像下 */
    #products .carousel {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      overflow: visible;
    }

    #products .carousel__viewport {
      border-radius: 12px;
      overflow: hidden;
      min-height: 0;
      height: auto;
      /* PC：商品カード幅に合わせて中央寄せ（矢印はカード左右内側） */
      max-width: min(720px, 100%);
      margin-left: auto;
      margin-right: auto;
    }

    #products .carousel__controls {
      position: static;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      width: 100%;
    }

    #products .carousel__dots {
      position: static;
      left: auto;
      bottom: auto;
      transform: none;
      display: flex;
      margin-top: 0;
      padding: 2px 0 4px;
      justify-content: center;
      align-items: center;
      gap: 6px;
      pointer-events: auto;
      background: none;
      backdrop-filter: none;
    }

    #products .carousel__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: none;
      background: rgba(0, 0, 0, 0.2);
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: background 0.2s ease;
    }

    #products .carousel__dot[aria-current="true"] {
      width: 6px;
      background: rgba(0, 0, 0, 0.6);
    }

    #products .carousel__slide {
      border-radius: 12px;
      overflow: hidden;
    }
  }

  #products .carousel-block {
    margin-bottom: 0;
    line-height: 1;
  }

  #products .carousel-block:last-child {
    margin-bottom: 0;
  }

  #products .carousel-block__title {
    display: none;
  }

  /* 商品カルーセル：コンテナ幅に収める（100vw だと矢印が画面端に付くためやめる） */
  #products .carousel {
    position: relative;
    z-index: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  /* ステージは余白のみ。矢印はビューポート内で絶対配置（カード＝ビューポート基準） */
  #products .carousel__stage {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: max(var(--pad), env(safe-area-inset-left));
    padding-right: max(var(--pad), env(safe-area-inset-right));
    overflow: hidden;
  }

  #products .carousel__viewport {
    position: relative;
    z-index: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border: none;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
    height: auto;
    overflow: hidden;
    isolation: isolate;
  }

  /* 汎用 .carousel__nav の丸・ぼかしを打ち消す（ビューポート内・画像上） */
  #products .carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    -webkit-appearance: none;
    color: var(--text);
    font-size: 22px;
    font-weight: 300;
    opacity: 0.7;
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
  }

  #products .carousel__nav:hover {
    opacity: 1;
  }

  #products .carousel__nav:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  #products .carousel__nav--prev {
    left: 10px;
  }

  #products .carousel__nav--next {
    right: 10px;
  }

  /* トラック：スライド間に gap/margin を入れない（境界線チラつき防止） */
  #products .carousel__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: none;
    min-height: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    #products .carousel__track {
      transition: none;
    }
  }

  #products .carousel__slide {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    min-height: 0;
    overflow: hidden;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
  }

  /* ドットのみ（矢印は画像上オーバーレイ）。画像下に並べる */
  #products .carousel__controls {
    position: static;
    z-index: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    pointer-events: none;
  }

  #products .carousel__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    pointer-events: auto;
  }

  /* スマホ：フルブリード時の左右余白だけ少し確保 */
  @media (max-width: 520px) {
    #products .carousel {
      padding: 0;
    }
  }

  /* ===== スマホ版：お取り扱い機種レイアウト（矢印左右・ドット下・角丸画像エリア） ===== */
  @media (max-width: 768px) {

    /* セクション上下の余白 */
    #products {
      padding-top: 48px;
      padding-bottom: 56px;
    }

    #products .container {
      padding-left: 0;
      padding-right: 0;
    }

    #products .carousel__stage {
      padding-left: 0;
      padding-right: 0;
    }

    #products .carousel {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    #products .carousel__viewport {
      border-radius: 12px;
      overflow: hidden;
      min-height: 0;
      height: auto;
    }

    /* SP: 矢印を少し外側へ */
    #products .carousel__nav--prev {
      left: -6px;
    }

    #products .carousel__nav--next {
      right: -6px;
    }

    #products .carousel__controls {
      position: static;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      width: 100%;
    }

    /* ドット：PC版（min-width: 769px）と同一 */
    #products .carousel__dots {
      position: static;
      left: auto;
      bottom: auto;
      transform: none;
      display: flex;
      margin-top: 0;
      padding: 2px 0 4px;
      justify-content: center;
      align-items: center;
      gap: 6px;
      pointer-events: auto;
      background: none;
      backdrop-filter: none;
    }

    #products .carousel__dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      border: none;
      background: rgba(0, 0, 0, 0.2);
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      transition: background 0.2s ease;
    }

    #products .carousel__dot[aria-current="true"] {
      width: 6px;
      background: rgba(0, 0, 0, 0.6);
    }

    #products .carousel__slide {
      border-radius: 12px;
      overflow: hidden;
    }

    #products .carousel__slide img {
      border-radius: 12px;
    }

    /* 商品カード（カルーセル）同士の間隔 */
    #products .carousel-block {
      margin-bottom: 1.75rem;
    }

    #products .carousel-block:last-child {
      margin-bottom: 0;
    }

    /* カード画像を大きく */
    .carousel-slide img,
    .slider-item img,
    .product-card img,
    #products .carousel__slide img {
      width: 100%;
      height: auto;
      max-height: none;
    }

    /* カード幅を画面いっぱいに */
    .carousel-slide,
    .slider-item,
    #products .carousel__slide {
      width: 100vw;
      max-width: none;
      margin: 0 auto;
    }

    /* 矢印ボタンを画像の中央に合わせる */
    .carousel-btn--prev,
    .carousel-btn--next,
    .slider-btn--prev,
    .slider-btn--next,
    #products .carousel__nav--prev,
    #products .carousel__nav--next {
      top: 50%;
      transform: translateY(-50%);
    }

    /* ドットを画像の下に合わせる */
    .carousel-dots,
    .slider-dots,
    #products .carousel__dots {
      margin-top: 2px;
    }
  }

  /* 商品一覧：スライド・画像（アスペクトは画像ファイルに合わせる） */
  #products .carousel__slide img {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    background: none;
    display: block;
    width: 100%;
    height: auto;
    max-height: min(75vh, 560px);
    object-fit: contain;
    object-position: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }

  /* PC：画像サイズ（角丸はSPと同じく 12px） */
  @media (min-width: 769px) {
    #products .carousel__slide img {
      border-radius: 12px;
      max-height: min(42vh, 340px);
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }
  }


  /* =======================
  Header CTA（電話/LINE 2ボタン）
======================= */
  .header-call--dual {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  /* 共通 */
  .head-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .01em;
    white-space: nowrap;
    user-select: none;
  }

  /* 左：電話（水色塗り） */
  .head-cta--tel {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), rgba(76, 183, 255, .65));
    box-shadow: 0 14px 26px rgba(76, 183, 255, .22);
    border: 1px solid rgba(76, 183, 255, .12);
  }

  /* 右：LINE（白＋水色枠） */
  .head-cta--line {
    color: var(--accent-2);
    background: #fff;
    border: 3px solid rgba(76, 183, 255, .35);
    box-shadow: none;
  }

  /* ヘッダーが狭い時はLINEを隠す（好みで） */
  @media (max-width: 920px) {
    .header-call--dual {
      gap: 10px;
    }

    .head-cta {
      height: 44px;
      padding: 0 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 560px) {
    .header-call--dual {
      display: none;
    }

    /* スマホは下固定CTAがあるので消す */
  }


  /* =======================
  スクロールアニメーション（下からスライドイン）
  JSで .--visible を付与する方式
  prefers-reduced-motion 対応済み
======================= */

  /* アニメーション対象の初期状態 */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
      opacity .55s cubic-bezier(.22, .61, .36, 1),
      transform .55s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
  }

  /* 各アイテムを少しずつ遅らせる（0〜5番目） */
  .reveal:nth-child(2) {
    transition-delay: .07s;
  }

  .reveal:nth-child(3) {
    transition-delay: .14s;
  }

  .reveal:nth-child(4) {
    transition-delay: .21s;
  }

  .reveal:nth-child(5) {
    transition-delay: .28s;
  }

  .reveal:nth-child(6) {
    transition-delay: .35s;
  }

  /* JSが .--visible を付与したら完了状態へ */
  .reveal.--visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* prefers-reduced-motion：アニメーションをスキップ */
  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }

    .faq>.faq-item {
      opacity: 1;
      transform: none;
      animation: none;
    }
  }

  /* =======================
  ローディング画面オーバーレイ
======================= */
  .loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease-out;
  }

  .loading-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* From Uiverse.io by Markoslc */
  .loader {
    position: relative;
    width: 90px;
    height: 90px;
  }

  .item1,
  .item2,
  .item3 {
    position: absolute;
    background-color: transparent;
    left: calc(50% - (var(--size) / 2));
    top: calc(50% - (var(--size) / 2));
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
  }

  .loader .item1 {
    --size: 90px;
    animation: size1_1 2.5s infinite alternate;
    z-index: 1;
  }

  .loader .item2 {
    --size: 60px;
    animation: size1_2 2.5s infinite alternate;
    z-index: 2;
  }

  .loader .item3 {
    --size: 30px;
    animation: size1_3 2.5s infinite alternate;
    z-index: 3;
  }

  @keyframes size1_1 {

    0%,
    10% {
      transform: scale(0);
    }

    100% {
      transform: scale(1);
      box-shadow: 8px 8px 14px #c5c5c5, -8px -8px 14px #ffffff;
    }
  }

  @keyframes size1_2 {

    0%,
    40% {
      transform: scale(0);
    }

    100% {
      transform: scale(1);
      box-shadow: 8px 8px 14px #c5c5c5, -8px -8px 14px #ffffff;
    }
  }

  @keyframes size1_3 {

    0%,
    70% {
      transform: scale(0);
    }

    100% {
      transform: scale(1);
      box-shadow: 8px 8px 14px #c5c5c5, -8px -8px 14px #ffffff;
    }
  }

  /* =======================
  ヘッダー Shine ボタン（Uiverse.io）
======================= */
  .btn-shine {
    position: relative;
    margin: 0;
    padding: 17px 35px;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border-radius: 10px;
    font-weight: 400;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  }

  .btn-shine span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    z-index: 20;
  }

  .btn-shine:after {
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.4;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
  }

  .btn-shine:hover {
    animation: rotate624 0.7s ease-in-out both;
  }

  .btn-shine:hover span {
    animation: storm1261 0.7s ease-in-out both;
    animation-delay: 0.06s;
  }

  .btn-shine:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  /* 電話ボタン：水色系 */
  .head-cta--tel.btn-shine {
    border: 1px solid rgba(76, 183, 255, 0.6);
  }

  .head-cta--tel.btn-shine span {
    color: #4CB7FF;
  }

  .head-cta--tel.btn-shine:after {
    background: #4CB7FF;
  }

  /* LINEボタン：緑系 */
  .head-cta--line.btn-shine {
    border: 1px solid rgba(6, 199, 85, 0.6);
  }

  .head-cta--line.btn-shine span {
    color: #06C755;
  }

  .head-cta--line.btn-shine:after {
    background: #06C755;
  }

  @keyframes rotate624 {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
      transform: rotate(3deg) translate3d(0, 0, 0);
    }

    50% {
      transform: rotate(-3deg) translate3d(0, 0, 0);
    }

    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }

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

  @keyframes storm1261 {
    0% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }

    25% {
      transform: translate3d(4px, 0, 0) translateZ(0);
    }

    50% {
      transform: translate3d(-3px, 0, 0) translateZ(0);
    }

    75% {
      transform: translate3d(2px, 0, 0) translateZ(0);
    }

    100% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
  }

  /* =======================
  FAQ もっと見る／閉じるボタン（新デザイン）
======================= */
  .btn-dashed {
    background-color: #00BFA6;
    padding: 14px 40px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 10px;
    border: 2px dashed #00BFA6;
    box-shadow:
      rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: .4s;
  }

  .btn-dashed:hover {
    border: 2px dashed #00BFA6;
    background-color: #fff;
    color: #00BFA6;
  }

  .btn-dashed:active {
    background-color: #87dbd0;
  }

  /* Google口コミボタン（#reviews 内のみ） */
  .google-btn-wrap {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
  }

  .google-btn-link {
    display: inline-block;
    text-decoration: none;
  }

  .google-btn {
    margin-top: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--accent);
    border: 1px solid var(--accent-2);
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 0.5rem;
    font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    height: min-content;
    width: fit-content;
    user-select: none;
  }

  .google-btn:hover {
    background-color: var(--accent-2);
    border-color: #1e8feb;
    transform: scale(1.05);
  }

  .google-btn:active {
    background-color: #2190e0;
    border-color: var(--accent-2);
    transform: scale(0.95);
  }

  .google-btn .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
  }

  .google-btn-stars {
    background: linear-gradient(90deg,
        #ffd700 0%,
        #ffe55c 20%,
        #fff4a0 45%,
        #fff4a0 55%,
        #ffe55c 80%,
        #ffd700 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
      0 0 4px rgba(255, 215, 0, 0.8),
      0 0 8px rgba(255, 215, 0, 0.5),
      0 0 12px rgba(255, 223, 128, 0.4);
    animation: star-shine 8s linear infinite, star-sparkle 2.5s ease-in-out infinite;
  }

  @keyframes star-shine {
    0% {
      background-position: 120% 0;
    }

    100% {
      background-position: -20% 0;
    }
  }

  @keyframes star-sparkle {

    0%,
    100% {
      opacity: 1;
      filter: brightness(1);
    }

    50% {
      opacity: 0.94;
      filter: brightness(1.5);
    }
  }

  /* =======================
  ページ読み込みローディング
======================= */
  #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
  }

  .three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    --uib-color: #5D3FD3;
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
  }

  .three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
  }

  .three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--uib-color);
    border-radius: 50%;
  }

  .three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
  }

  .three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
  }

  .three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
  }

  .three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
  }

  .three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
  }

  .three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
  }

  @keyframes spin78236 {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes wobble1 {

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

    50% {
      transform: translateY(-66%) scale(0.65);
      opacity: 0.8;
    }
  }

  @keyframes wobble2 {

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

    50% {
      transform: translateY(66%) scale(0.65);
      opacity: 0.8;
    }
  }

  /* =======================
  ページトップボタン（PC / SP 共通デザイン）
======================= */
  .scroll-top-pc,
  .scroll-top-btn {
    background: linear-gradient(rgba(76, 183, 255, 0.6),
        rgba(0, 146, 228, 0.6));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    position: fixed;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: visible;
  }

  .scroll-top-pc:hover,
  .scroll-top-btn:hover {
    background: linear-gradient(rgba(76, 183, 255, 0.85),
        rgba(0, 146, 228, 0.85));
  }

  .scroll-top__arrow path {
    fill: white;
  }

  .scroll-top__text {
    font-size: 0.7em;
    width: 100px;
    position: absolute;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    opacity: 0;
    transition-duration: 0.7s;
    pointer-events: none;
    white-space: nowrap;
  }

  .scroll-top-pc:hover .scroll-top__text,
  .scroll-top-btn:hover .scroll-top__text {
    opacity: 1;
  }

  .scroll-top-pc:hover .scroll-top__arrow,
  .scroll-top-btn:hover .scroll-top__arrow {
    animation: scroll-top-slide 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }

  @keyframes scroll-top-slide {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }

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

  @media (min-width: 769px) {
    .scroll-top-pc {
      width: 45px;
      height: 45px;
      bottom: 40px;
      right: 40px;
    }

    .scroll-top-pc.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .scroll-top-btn {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .scroll-top-btn {
      width: 45px;
      height: 45px;
      bottom: calc(var(--fixed-cta-h) + 12px);
      right: 12px;
    }

    .scroll-top-btn.visible {
      opacity: 1;
      pointer-events: auto;
    }

    /* 互換: 旧JSクラス名でも表示されるようにする */
    .scroll-top-btn.scroll-top-btn--visible {
      opacity: 1;
      pointer-events: auto;
    }

    .scroll-top-pc {
      display: none;
    }
  }

  /* =======================
  SP見出しサイズ微調整
======================= */
  @media (max-width: 768px) {
    h1 {
      font-size: clamp(26px, 7.4vw, 34px);
    }

    h2,
    .section-title,
    .section-heading__title {
      font-size: clamp(19px, 5vw, 30px);
    }

    h3,
    .service-card h3,
    .price-card h3,
    #reasons .reason-card__title,
    .flow-step__title,
    .area-box__title,
    .contact-box__title,
    .footer-title,
    .card__title {
      font-size: clamp(16px, 4.4vw, 22px);
    }
  }

/* =======================
  Privacy Page
======================= */
.privacy-body {
  background: #eef1f5;
}

/* プライバシーページでは固定CTAを表示しない */
.privacy-body .fixed-cta {
  display: none !important;
}

.privacy-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}

.privacy-page__heading {
  text-align: center;
  margin-bottom: 34px;
}

.privacy-page__eyebrow {
  margin: 0 0 14px;
  color: #1f86c7;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.privacy-page__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #24354d;
  margin: 0;
}

.privacy-policy-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  padding: clamp(22px, 3.5vw, 44px);
}

.privacy-page__policy-title {
  margin: 0 0 24px;
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.35;
  color: #1d2f48;
  font-weight: 800;
}

.privacy-page__lead {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
}

.privacy-section {
  margin-bottom: 34px;
}

.privacy-section__title {
  font-size: clamp(17px, 2.1vw, 24px);
  font-weight: 700;
  color: #223852;
  margin-bottom: 10px;
  padding-left: 0;
  border-left: none;
}

.privacy-section__text {
  font-size: 14px;
  color: #475569;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 92px 0 56px;
  }

  .privacy-page__heading {
    margin-bottom: 24px;
  }

  .privacy-page__eyebrow {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .privacy-page__policy-title {
    margin-bottom: 18px;
  }

  .privacy-section {
    margin-bottom: 26px;
  }
}