  /* ===========================================================
     okfamiliar MV提案B（実写版） / Figma node 1:1999
     基準幅1366pxをvwに変換して可変レイアウト化（VWコーディング）
     表示順：①写真 → ②キャッチコピー＋縦書きサブコピー → ③ナビゲーション周り
     フォント A-SK Gosha Min2 は支給待ちのため Noto Sans JP で仮組み
     =========================================================== */
  :root {
    --font-heading: 'Noto Sans JP', sans-serif; /* TODO: A-SK Gosha Min2 支給後に @font-face 差し替え */
    --font-body: 'Noto Sans JP', sans-serif;
    --c-text: #212121;
    --c-bg: #F8F8F8;
    --c-teal: #03C9B5;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    /* サイト全体で1枚の背景グリッド（最上部から最下部まで途切れず連続） */
    background-color: var(--c-surface);
    background-image:
      linear-gradient(#fff 1px, transparent 1px),
      linear-gradient(90deg, #fff 1px, transparent 1px);
    background-size: 5.2vw 5.2vw;
    background-position: center top;
    background-attachment: fixed;
  }
  @media (max-width: 768px) {
    body { background-size: 40px 40px; }
  }
  img { max-width: none; }
  a { text-decoration: none; color: inherit; }
  .mv__headline-sp, .mv__subcopy-sp { display: none; } /* SP専用の見出し・リード文（Figma node 51:6）。PCでは非表示 */

  .mv {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* =========================================================
     デスクトップ〜タブレット横：1366px基準のvw絶対配置
     ========================================================= */
  @media (min-width: 769px) {
    .mv {
      height: 56.222vw; /* 768 / 1366 * 100 */
      min-height: 480px;
    }

    /* ①写真：まず表示 */
    .mv__photo-stage {
      position: absolute;
      left: 2.228vw;
      top: 2.254vw;
      width: 95.61vw;
      height: 51.62vw;
      border-radius: .732vw;
      overflow: hidden;
      z-index: 1;
      opacity: 0;
      transform: scale(1.02);
      animation: mvFadeScaleIn 1s .1s cubic-bezier(.22,.8,.32,1) forwards;
    }
    .mv__photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      will-change: opacity, transform;
      animation: mvPhotoZoomCycle 12s linear infinite;
    }
    .mv__photo--1 { background-image: url('./img/img07-meat-cut.jpg'); animation-delay: -.56s; }
    .mv__photo--2 { background-image: url('./img/img08-warehouse-pack.jpg'); animation-delay: 2.44s; }
    .mv__photo--3 { background-image: url('./img/img09-reefer-truck.jpg'); animation-delay: 5.44s; }
    .mv__photo--4 { background-image: url('./img/img06-cattle.jpg'); animation-delay: 8.44s; }
    .mv__photo-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.18) 100%);
      z-index: 2;
      pointer-events: none;
    }

    /* ②見出し＋縦書きサブコピー */
    .mv__headline {
      position: absolute;
      left: 8.492vw;
      top: 36.237vw;
      width: 59.151vw; /* Figma実測（node 14:584 "Frame 14": 808px / 1366px基準。新コピー差し替え後のサイズに更新） */
      min-width: 440px;
      z-index: 10;
      margin: 0;
    }
    .mv__headline-image {
      display: block;
      width: 100%;
      height: auto;
      opacity: 0;
      transform: translateY(24px);
      animation: mvRiseIn .7s .85s cubic-bezier(.22,.8,.32,1) forwards;
    }

    .mv__subcopy {
      position: absolute;
      left: 78.395vw;
      top: 10.981vw;
      z-index: 10;
      width: 12.833vw; /* Figma実測（node 73:1312 "Frame 1315": 175.28px / 1366px基準。新コピー差し替え後のサイズ・位置に更新） */
      margin: 0;
    }
    .mv__subcopy-image {
      display: block;
      width: 100%;
      height: auto;
      opacity: 0;
      transform: translateY(16px);
      animation: mvRiseIn .7s 1.05s cubic-bezier(.22,.8,.32,1) forwards;
    }

    /* ③ナビゲーション周り：最後に登場 */
    .mv__header {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 20;
    }
    .mv__logo {
      position: absolute;
      left: 0;
      top: 0;
      width: 22.83vw;
      height: 12.22vw;
      min-width: 170px;
      min-height: 92px;
      opacity: 0;
      animation: mvFadeDown .7s 1.5s ease forwards;
    }
    .mv__logo-image { display: block; width: 100%; height: 100%; }
    .mv__nav-pill {
      position: absolute;
      left: 46.42vw;
      top: 4.174vw;
      width: 31.70vw;
      height: 4.393vw;
      min-height: 60px;
      background: #fff;
      border: 1px solid var(--c-text);
      border-radius: 5.124vw;
      padding: 0 .805vw;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: mvFadeDown .7s 1.62s ease forwards;
    }
    .mv__nav-pill-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3.734vw;
    }
    .mv__nav-pill-row a {
      font-weight: 700;
      font-size: clamp(13px, 1.464vw, 20px);
      color: var(--c-text);
      white-space: nowrap;
    }
    .mv__cta-pill {
      position: absolute;
      left: 80.32vw;
      top: 4.174vw;
      width: 15.37vw;
      min-width: 140px;
      height: 4.393vw;
      min-height: 60px;
      background: var(--c-teal);
      border: 1px solid var(--c-text);
      border-radius: 4.393vw;
      padding: 0 .805vw;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .732vw;
      opacity: 0;
      animation: mvPopIn .6s 1.74s cubic-bezier(.34,1.56,.64,1) forwards;
      transition: transform .25s ease;
    }
    .mv__cta-pill:hover { transform: scale(1.04); }
    .mv__cta-pill img { width: 1.684vw; height: 1.611vw; min-width: 16px; }
    .mv__cta-pill span {
      font-weight: 700;
      font-size: clamp(13px, 1.464vw, 20px);
      line-height: 1;
      color: var(--c-text);
      white-space: nowrap;
    }
  }

  /* =========================================================
     モバイル：Figma node 51:6（sp_260904_lp02）実測に基づく本実装
     375px基準のVWコーディング（below-MVと同じ手法）。デスクトップと同様、
     写真を背景に見出し・リード文・ヘッダーを絶対配置で重ねる構成
     ========================================================= */
  @media (max-width: 768px) {
    .mv { position: relative; height: 189.867vw; min-height: 520px; padding: 0; }

    /* ①写真：Figmaは1枚静止だが、既存の4枚クロスフェードは維持（動きの演出を活かす） */
    .mv__photo-stage {
      position: absolute;
      left: 4vw;
      top: 4vw;
      width: 91.867vw;
      height: 169.867vw;
      min-height: 360px;
      border-radius: clamp(8px, 2.667vw, 10px);
      overflow: hidden;
      margin: 0;
      opacity: 1;
      transform: none;
      animation: none;
    }
    .mv__photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      will-change: opacity, transform;
      animation: mvPhotoZoomCycle 12s linear infinite;
    }
    .mv__photo--1 { animation-delay: -.56s; background-image: url('./img/img07-meat-cut.jpg'); }
    .mv__photo--2 { animation-delay: 2.44s; background-image: url('./img/sp-img08-warehouse-pack.jpg'); }
    .mv__photo--3 { animation-delay: 5.44s; background-image: url('./img/sp-img09-reefer-truck.jpg'); }
    .mv__photo--4 { animation-delay: 8.44s; background-image: url('./img/sp-img06-cattle.jpg'); }

    /* ③ヘッダー：ロゴは白ボックス（右下角のみ丸め）、ナビ文字リンクはFigma SPに存在しないため非表示、
       お問い合わせボタンだけ写真右上に重ねる */
    .mv__header { position: absolute; left: 0; top: 0; width: 100%; height: auto; z-index: 20; }
    .mv__logo {
      position: absolute;
      left: 0;
      top: 0;
      width: 32vw;
      min-width: 96px;
      height: 18.667vw;
      min-height: 56px;
      aspect-ratio: auto;
      background: #fff;
      border-radius: 0 0 clamp(16px, 5.333vw, 20px) 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 4vw;
    }
    .mv__logo-image { display: block; width: 24vw; min-width: 70px; height: auto; aspect-ratio: 312 / 167; }
    .mv__nav-pill { display: none; }
    .mv__cta-pill {
      position: absolute;
      left: 51.867vw;
      top: 8vw;
      width: auto;
      min-width: 128px;
      height: 10.667vw;
      min-height: 34px;
      padding: 0 3.2vw;
      background: #fff;
      border: 1px solid var(--c-text);
      border-radius: 999px;
      color: var(--c-text);
      gap: 2.667vw;
    }
    .mv__cta-pill img { width: 6.133vw; height: 5.867vw; min-width: 16px; min-height: 15px; }
    .mv__cta-pill span { font-size: clamp(12px, 4.267vw, 16px); line-height: 1; }

    /* ②見出し：縦書き2枚組（世界へ届ける／日本のいいものを）に差し替え */
    .mv__headline {
      position: absolute;
      left: 64.264vw;
      top: 26.264vw;
      width: 26.267vw;
      min-width: 88px;
      z-index: 10;
      margin: 0;
    }
    .mv__headline-image { display: none; }
    .mv__headline-sp { display: flex; align-items: flex-end; gap: 2.667vw; }
    .mv__headline-sp-img {
      display: block;
      width: 12vw;
      min-width: 40px;
      height: auto;
      background: #fff;
      padding: 2.133vw 1.6vw;
      box-sizing: border-box;
    }

    /* リード文：Figma SPは画像（5行まとめたSVG1枚） */
    .mv__subcopy {
      position: absolute;
      left: 9.333vw;
      top: 129.067vw;
      width: 70.933vw;
      min-width: 190px;
      z-index: 10;
      margin: 0;
    }
    .mv__subcopy-image { display: none; }
    .mv__subcopy-sp {
      display: block;
      margin: 0;
    }
    .mv__subcopy-sp-img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  /* ---------- キーフレーム ---------- */
  @keyframes mvFadeScaleIn {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes mvFadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes mvRiseIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes mvPopIn {
    from { opacity: 0; transform: scale(.6); }
    to   { opacity: 1; transform: scale(1); }
  }
  /* 1枚約3秒でズームしながらクロスフェード（4枚×3秒=12秒サイクル） */
  @keyframes mvPhotoZoomCycle {
    0%     { opacity: 0; transform: scale(1); }
    3.73%  { opacity: 1; transform: scale(1.012); }
    20%    { opacity: 1; transform: scale(1.12); }
    23.73% { opacity: 0; transform: scale(1.14); }
    100%   { opacity: 0; transform: scale(1.14); }
  }

  /* ---------- reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    .mv__photo-stage, .mv__headline-image, .mv__subcopy-image, .mv__logo, .mv__nav-pill, .mv__cta-pill {
      animation-duration: .01ms !important;
      animation-delay: 0s !important;
      transform: none !important;
      opacity: 1 !important;
    }
    .mv__photo {
      animation: none !important;
      opacity: 0 !important;
    }
    .mv__photo--1 { opacity: 1 !important; }
  }

  /* リサイズでSP/PCのブレークポイントをまたぐと、display:noneが解除された要素の
     登場アニメーションが再生し直されて画面がチカチカする問題への対処。
     初回の登場アニメーション再生後（script.jsがhtmlに.is-loadedを付与）は
     アニメーションを無効化し不透明度を固定する。 */
  html.is-loaded .mv__photo-stage,
  html.is-loaded .mv__headline-image,
  html.is-loaded .mv__subcopy-image,
  html.is-loaded .mv__logo,
  html.is-loaded .mv__nav-pill,
  html.is-loaded .mv__cta-pill {
    animation: none;
    opacity: 1;
  }

  /* ===========================================================
     メインビジュアル以下（VISION〜COMPANY）
     Figma node 14:363（260904_lp02）を元にセマンティックHTML/CSSで実装
     PC基準1366pxのVWコーディング＋SP(768px以下)は静的pxに切り替え
     =========================================================== */
  :root {
    --c-blue: #1FA0D7;      /* 新デザインのブランドブルー（below-MV専用） */
    --c-navy: #012F4D;
    --c-surface: #ECECEC;   /* below-MVセクションの下地色（Figma実測#F5F5F5だと白線ガイドが視認できないため、視認性優先で少し濃く調整） */
    --c-line: #212121;      /* ワードマークの縁取り色 */
    --font-en: 'DIN 2014 Narrow', 'Oswald', 'Arial Narrow', sans-serif; /* TODO: DIN 2014 Narrow Bold 支給後に @font-face 差し替え */
    --sx: min(100vw, 1600px); /* 1366px基準のデザインを1600pxまで等倍スケールさせる基準幅。1366px以下は全て現状維持、1600px超は頭打ち */
    --below-pad-x: calc(var(--sx) * 4.394 / 100); /* 60/1366。--sx により1600pxで頭打ち（=70.3px） */
  }

  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

  /* below：背景はbody側で全ページ共通の1枚グリッドとして敷いているため、ここでは持たない */
  .below {
    overflow-x: clip;
    overflow-wrap: break-word;
  }
  .below .container { position: relative; z-index: 0; max-width: 1600px; margin: 0 auto; padding: 0 var(--below-pad-x); }

  /* 背景ワードマーク（VISION/SERVICE/COVERAGE/COMPANY）
     DIN 2014 Narrow Boldがブラウザに存在せず再現できないため、
     Figmaからアウトライン化した実SVGを書き出して画像で確実に再現 */
  .wm-v { display: block; width: clamp(48px, calc(var(--sx) * 6.44 / 100), max(88px, calc(var(--sx) * 88 / 1366))); height: auto; user-select: none; pointer-events: none; }
  .wm-h { display: block; height: clamp(48px, calc(var(--sx) * 6.44 / 100), max(88px, calc(var(--sx) * 88 / 1366))); width: auto; user-select: none; pointer-events: none; }

  /* 雲の装飾（section内 position:relative を基準に配置） */
  .cloud-deco {
    position: absolute;
    display: block;
    width: clamp(90px, calc(var(--sx) * 15 / 100), max(220px, calc(var(--sx) * 220 / 1366)));
    height: auto;
    animation: cloudFloat 5s ease-in-out infinite alternate;
    pointer-events: none;
  }

  /* セクション共通見出しボックス（白地・黒枠） */
  .boxed-heading {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--c-text);
    padding: 10px; /* Figma実測：フォントサイズに関わらず固定10px */
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.15;
  }

  /* =========================================================
     VISION
     ========================================================= */
  .vision { position: relative; padding: calc(var(--sx) * 9 / 100) 0 calc(var(--sx) * 10.5 / 100); overflow: hidden; }
  .vision__watermark { position: absolute; z-index: -1; top: 0; left: 0; }
  .vision__grid { position: relative; display: flex; align-items: flex-start; gap: calc(var(--sx) * 5.124 / 100); flex-wrap: wrap; padding-left: calc(var(--sx) * 6.5 / 100); } /* gap 70/1366。見出し「INNOVATE LOGISTICS」を1行に収めるため本文カラムに30px譲っている */
  .vision__media { position: relative; flex: 0 0 clamp(220px, calc(var(--sx) * 29 / 100), max(400px, calc(var(--sx) * 400 / 1366))); margin-top: calc(var(--sx) * 7.32 / 100); }
  .vision__cloud { top: -14%; left: -16%; width: clamp(90px, calc(var(--sx) * 15 / 100), max(190px, calc(var(--sx) * 190 / 1366))); z-index: -2; }
  .vision__photo { position: relative; z-index: 1; display: block; width: 100%; height: auto; aspect-ratio: 395 / 455; object-fit: cover; border-radius: 10px; }
  .vision__body { flex: 1 1 420px; max-width: calc(var(--sx) * 41.8 / 100); min-width: 280px; padding-top: calc(var(--sx) * 1 / 100); }
  .vision__title { margin: 0 0 calc(var(--sx) * 4.394 / 100); font-family: var(--font-en); font-weight: 700; font-size: clamp(34px, calc(var(--sx) * 5.3 / 100), max(74px, calc(var(--sx) * 74 / 1366))); color: var(--c-blue); line-height: 1.05; }
  .vision__lead { margin: 0 0 calc(var(--sx) * 5.86 / 100); font-family: var(--font-heading); font-weight: 700; font-size: clamp(15px, calc(var(--sx) * 1.76 / 100), max(24px, calc(var(--sx) * 24 / 1366))); line-height: 2; color: var(--c-text); }
  .vision__lead p:not(:last-child) { margin: 0 0 calc(var(--sx) * 4.394 / 100); }
  .vision__lead p:last-child { margin: 0; }
  .vision__credit { display: flex; gap: 1.2em; align-items: baseline; margin: 0; font-family: var(--font-heading); font-weight: 700; font-size: clamp(13px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); }
  .vision__deco-wave, .ticker-photos__deco-wave { display: none; } /* SP専用の装飾（Figma sp-deco-wave）。PCでは非表示 */

  /* =========================================================
     写真ティッカー（VISION〜SERVICE間の帯・装飾マーキー）
     トラックは帯の上辺を道路がわりに左→右へループ走行
     ========================================================= */
  /* トラック走行帯：上（VISION本文）・下（写真ティッカー）とそれぞれ60px確保 */
  .ticker-photos { position: relative; background: var(--c-blue); padding: calc(var(--sx) * 2.8 / 100) 0; margin-top: max(40px, calc(var(--sx) * 40 / 1366)); overflow: visible; }
  .ticker-photos__viewport { overflow: hidden; }
  .ticker-photos__truck { position: absolute; top: 0; left: 0; z-index: 5; width: clamp(120px, calc(var(--sx) * 14 / 100), max(191px, calc(var(--sx) * 191 / 1366))); height: auto; animation: visionTruckDrive 9s linear infinite; }
  @keyframes visionTruckDrive {
    from { transform: translate(-20vw, calc(-88% - 8px)); }
    to   { transform: translate(120vw, calc(-88% - 8px)); }
  }
  .ticker-photos__track { display: flex; align-items: center; gap: calc(var(--sx) * 3 / 100); width: max-content; animation: tickerScroll 32s linear infinite; }
  .ticker-photos__track img { display: block; border-radius: 10px; object-fit: cover; }
  .ticker-photos__photo { width: clamp(190px, calc(var(--sx) * 21 / 100), max(300px, calc(var(--sx) * 300 / 1366))); height: clamp(120px, calc(var(--sx) * 13.7 / 100), max(195px, calc(var(--sx) * 195 / 1366))); }
  .ticker-photos__icon { width: clamp(105px, calc(var(--sx) * 13.5 / 100), max(195px, calc(var(--sx) * 195 / 1366))); height: auto; }
  .ticker-photos__icon--sm { width: clamp(105px, calc(var(--sx) * 13.5 / 100), max(195px, calc(var(--sx) * 195 / 1366))); }
  .ticker-photos__word { display: block; width: clamp(160px, calc(var(--sx) * 21 / 100), max(300px, calc(var(--sx) * 300 / 1366))); height: auto; }

  /* =========================================================
     SERVICE
     ========================================================= */
  .service { position: relative; padding: calc(var(--sx) * 6 / 100) 0 0; }
  .service__head { position: relative; z-index: 2; padding-top: calc(var(--sx) * 4.394 / 100); margin-bottom: calc(var(--sx) * 4 / 100); }
  .service__watermark { position: absolute; z-index: -1; top: calc(var(--sx) * 3.6 / 100); right: var(--below-pad-x); }
  .service__cloud { top: -1vw; right: calc(var(--sx) * 13 / 100); z-index: -2; }
  .service__title { display: block; margin: 0 0 calc(var(--sx) * 4.394 / 100); }
  .service__title img { display: block; width: clamp(220px, calc(var(--sx) * 32 / 100), max(497px, calc(var(--sx) * 497 / 1366))); height: auto; }
  .service__lead-row { display: flex; flex-wrap: wrap; gap: calc(var(--sx) * 2.6 / 100) calc(var(--sx) * 4 / 100); max-width: 100%; }
  .service__lead-text { flex: 1 1 512px; max-width: calc(var(--sx) * 37.48 / 100); margin: 0; font-size: clamp(13px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); line-height: 2.2; color: var(--c-text); }

  .service__panel { position: relative; z-index: 1; display: flex; gap: calc(var(--sx) * 3 / 100); align-items: flex-start; justify-content: space-between; }

  /* 左：タブ一覧。スクロール中も追従 */
  .service__tabs-col { flex: 0 0 clamp(190px, calc(var(--sx) * 22 / 100), max(300px, calc(var(--sx) * 300 / 1366))); position: sticky; top: calc(16vh - 15px); align-self: flex-start; }
  .service__tabs { list-style: none; margin: 0; padding: 20px 0 0; position: relative; top: -56px; }
  .service__tab { width: 100%; padding: calc(1.1em + 20px) 0; border: 0; border-bottom: 1px dashed #bbb; background: transparent; color: #bbb; text-align: left; font-family: var(--font-body); cursor: pointer; transition: color .2s ease; }
  .service__tab-num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: clamp(11px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); margin-bottom: .5em; }
  .service__tab-label { display: block; font-weight: 700; font-size: clamp(13px, calc(var(--sx) * 1.5 / 100), max(22px, calc(var(--sx) * 22 / 1366))); line-height: 1.3; white-space: nowrap; }
  .service__tab.is-active { color: var(--c-blue); }

  /* 右：スクロールに応じてタブが切り替わる「スクローリテリング」構成
     .service__scroller の高さは .service__markers（4分割）が決め、
     .service__stage-col はその中で sticky に追従する */
  .service__scroller { position: relative; flex: 0 1 calc(var(--sx) * 68.32 / 100); max-width: max(933px, calc(var(--sx) * 933 / 1366)); min-width: 0; display: grid; }
  .service__stage-col, .service__markers { grid-area: 1 / 1; }
  .service__stage-col { position: sticky; top: calc(16vh - 15px); align-self: start; height: fit-content; }
  .service__markers { display: flex; flex-direction: column; pointer-events: none; z-index: -1; }
  .service__marker { flex: 1 1 auto; min-height: 85vh; }

  .service__stage { position: relative; aspect-ratio: 902 / 639; overflow: visible; }
  .service__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s ease; }
  .service__slide.is-active { opacity: 1; visibility: visible; }
  .service__slide-photo { position: absolute; left: 0; top: 2.4%; width: 93.5%; height: 89.4%; object-fit: cover; display: block; border-radius: 10px; }
  .service__slide-num { position: absolute; left: -3.8%; top: -2%; margin: 0; font-family: var(--font-en); font-weight: 700; font-size: clamp(22px, calc(var(--sx) * 3.44 / 100), max(47px, calc(var(--sx) * 47 / 1366))); line-height: 1.1; color: var(--c-blue); white-space: nowrap; z-index: 2; }
  .service__slide-title { position: absolute; top: 8.85%; left: 0; margin: 0; z-index: 1; }
  .service__slide-title img { display: block; height: clamp(34px, calc(var(--sx) * 4.32 / 100), max(59px, calc(var(--sx) * 59 / 1366))); width: auto; }
  .service__slide-desc { position: absolute; left: 27.2%; top: 68.2%; width: 72.8%; height: auto; min-height: 28.3%; margin: 0; padding: 1.4em 1.6em; border: 1px solid var(--c-text); border-radius: 10px; background: #fff; font-size: clamp(12px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); font-weight: 700; line-height: 2; color: var(--c-text); overflow: visible; z-index: 3; }

  /* 業務フロー */
  .flow { position: relative; margin-top: calc(var(--sx) * 3 / 100); }
  .flow__triangle { display: block; margin: 0 auto calc(var(--sx) * 2 / 100); width: clamp(60px, calc(var(--sx) * 8.9 / 100), max(122px, calc(var(--sx) * 122 / 1366))); height: auto; transform: rotate(180deg); }
  .flow__intro { text-align: center; margin: 0 0 calc(var(--sx) * 3 / 100); font-family: var(--font-heading); font-weight: 700; letter-spacing: .05em; color: var(--c-text); }
  .flow__intro-line1 { display: block; font-size: clamp(20px, calc(var(--sx) * 2.64 / 100), max(36px, calc(var(--sx) * 36 / 1366))); margin-bottom: .3em; }
  .flow__intro-line2 { display: block; font-size: clamp(20px, calc(var(--sx) * 2.64 / 100), max(36px, calc(var(--sx) * 36 / 1366))); }
  .flow__highlight { color: var(--c-blue); font-size: clamp(26px, calc(var(--sx) * 3.66 / 100), max(50px, calc(var(--sx) * 50 / 1366))); -webkit-text-emphasis: filled dot var(--c-blue); text-emphasis: filled dot var(--c-blue); -webkit-text-emphasis-position: over; text-emphasis-position: over; }
  .flow__card { position: relative; background: #fff; border-radius: 10px; padding: calc(var(--sx) * 3 / 100) calc(var(--sx) * 4 / 100) calc(var(--sx) * 4 / 100); margin: 0 calc(-1 * var(--below-pad-x)); overflow-x: clip; overflow-y: visible; }
  .flow__label { display: flex; align-items: center; gap: .6em; margin: 0 0 calc(var(--sx) * 2.4 / 100); font-family: var(--font-body); font-weight: 700; font-size: clamp(20px, calc(var(--sx) * 2.64 / 100), max(36px, calc(var(--sx) * 36 / 1366))); color: var(--c-text); }
  .flow__label::before { content: ""; display: block; flex-shrink: 0; width: 6px; align-self: stretch; background: var(--c-blue); }
  .flow__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: calc(var(--sx) * 3 / 100) 0; overflow-x: clip; overflow-y: visible; }
  .flow__step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .9em; }
  .flow__step-num { font-family: var(--font-heading); font-weight: 700; font-size: clamp(14px, calc(var(--sx) * 1.76 / 100), max(24px, calc(var(--sx) * 24 / 1366))); color: var(--c-blue); }
  .flow__step-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--c-blue); }
  .flow__step:nth-child(4n+1) .flow__step-dot::before, .flow__step:nth-child(4n+1) .flow__step-dot::after { content: ""; position: absolute; top: 50%; margin-top: -1px; width: 100vw; height: 2px; background-image: repeating-linear-gradient(to right, #bbb 0, #bbb 4px, transparent 4px, transparent 12px); }
  .flow__step:nth-child(4n+1) .flow__step-dot::before { right: 100%; }
  .flow__step:nth-child(4n+1) .flow__step-dot::after { left: 100%; }
  .flow__step-icon { width: clamp(88px, calc(var(--sx) * 9.9 / 100), max(135px, calc(var(--sx) * 135 / 1366))); height: clamp(88px, calc(var(--sx) * 9.9 / 100), max(135px, calc(var(--sx) * 135 / 1366))); border-radius: 50%; background: #fff; border: 1px solid var(--c-text); display: flex; align-items: center; justify-content: center; }
  .flow__step-icon img { width: 58%; height: 58%; object-fit: contain; }
  .flow__step-title { font-weight: 700; font-size: clamp(13px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); line-height: 1.4; }
  .flow__step-desc { font-size: clamp(11px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); line-height: 1.6; color: var(--c-text); }
  .flow__arrow { position: absolute; top: calc(clamp(44px, calc(var(--sx) * 4.95 / 100), max(67px, calc(var(--sx) * 67 / 1366))) + max(60px, calc(var(--sx) * 60 / 1366))); right: -1.9vw; width: clamp(13px, calc(var(--sx) * 1.3 / 100), max(18px, calc(var(--sx) * 18 / 1366))); height: auto; }
  .flow__step:nth-child(4n) .flow__arrow { display: none; }

  /* =========================================================
     COVERAGEアウトラインティッカー
     ========================================================= */
  /* --ticker-h = 帯の高さ。背景タイル1枚の幅は slide02.png のアスペクト比(6564/320 = 20.5125)倍になる */
  .ticker-type { position: relative; overflow: hidden; padding: max(100px, calc(var(--sx) * 100 / 1366)) 0; --ticker-h: clamp(64px, calc(var(--sx) * 10.54 / 100), max(144px, calc(var(--sx) * 144 / 1366))); }
  /* 旧実装は幅6564pxのPNGを<img>2枚並べて translateX していたが、トラックが約4700px
     （iPhoneの実ピクセルで約14000px）の合成レイヤーになり、iOS Safariでレイヤーが破棄されて
     帯が消える／アニメーションが止まる事故が出た。画面幅ちょうどの要素に背景を repeat-x して
     background-position を送る方式に変更（レイヤーは画面幅のみ・画像デコードも1枚で済む）。 */
  .ticker-type__track { width: 100%; height: var(--ticker-h); background: url(./img/slide02.png) repeat-x left center / auto 100%; animation: tickerTypeScroll 38s linear infinite; }

  /* =========================================================
     COVERAGE
     ========================================================= */
  .coverage { position: relative; padding: 0 0 calc(var(--sx) * 8 / 100); }
  .coverage__watermark { position: absolute; z-index: -1; top: 0; left: 0; }
  .coverage__cloud { top: calc(var(--sx) * 2 / 100); right: calc(var(--sx) * 8 / 100); z-index: -2; }
  .coverage__title, .coverage__lead, .coverage__panel { margin-left: calc(-1 * var(--below-pad-x) + clamp(48px, calc(var(--sx) * 6.44 / 100), max(88px, calc(var(--sx) * 88 / 1366))) + max(114px, calc(var(--sx) * 114 / 1366))); }
  .coverage__title { display: block; margin-top: 0; margin-right: 0; margin-bottom: clamp(42px, calc(var(--sx) * 6.16 / 100), max(84px, calc(var(--sx) * 84 / 1366))); }
  .coverage__title img { display: block; width: clamp(303px, calc(var(--sx) * 44 / 100), max(685px, calc(var(--sx) * 685 / 1366))); height: auto; }
  .coverage__lead { display: flex; flex-wrap: wrap; gap: calc(var(--sx) * 1.2 / 100) calc(var(--sx) * 4 / 100); margin-top: 0; margin-right: 0; margin-bottom: calc(var(--sx) * 3 / 100); }
  .coverage__lead-heading { flex: 0 0 auto; margin: 0; font-weight: 700; font-size: clamp(19px, calc(var(--sx) * 2.64 / 100), max(36px, calc(var(--sx) * 36 / 1366))); color: var(--c-blue); }
  .coverage__lead-text { flex: 1 1 380px; margin: 0; font-size: clamp(13px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); line-height: 1.9; }
  .coverage__panel { position: relative; background: #fff; border-radius: 10px; padding: calc(var(--sx) * 3 / 100) calc(var(--sx) * 4 / 100); overflow-x: auto; margin-bottom: max(80px, calc(var(--sx) * 80 / 1366)); }
  .coverage__table { width: 100%; min-width: 620px; border-collapse: collapse; }
  .coverage__table th, .coverage__table td { padding: 1.2em .6em; text-align: center; vertical-align: middle; }
  .coverage__table thead tr, .coverage__table tbody tr { background-image: linear-gradient(to right, #bbb 50%, transparent 0%); background-size: 8px 1px; background-repeat: repeat-x; background-position: left bottom; }
  .coverage__table thead th { color: var(--c-blue); font-weight: 700; }
  .coverage__table thead th strong { display: block; font-size: clamp(14px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); }
  .coverage__table thead th span { display: block; font-weight: 400; font-size: clamp(9px, calc(var(--sx) * 1.03 / 100), max(14px, calc(var(--sx) * 14 / 1366))); margin-top: .4em; }
  .coverage__table th.coverage__row-label { text-align: left; }
  .coverage__row-label { font-weight: 700; font-size: clamp(13px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); }
  .coverage__row-label img { display: block; height: clamp(37px, calc(var(--sx) * 4.17 / 100), max(57px, calc(var(--sx) * 57 / 1366))); width: auto; }
  .coverage__mark { font-size: clamp(16px, calc(var(--sx) * 1.76 / 100), max(24px, calc(var(--sx) * 24 / 1366))); }
  .coverage__mark--yes { color: var(--c-blue); }
  .coverage__mark--yes::after { content: ""; display: inline-block; width: .95em; height: .95em; border: 2px solid currentColor; border-radius: 50%; }
  .coverage__mark--partial { font-size: clamp(11px, calc(var(--sx) * 1.03 / 100), max(14px, calc(var(--sx) * 14 / 1366))); font-weight: 700; color: var(--c-text); }
  .coverage__mark--no { color: #bbb; }

  /* =========================================================
     CTA（お問い合わせ）
     ========================================================= */
  .cta { position: relative; background: var(--c-blue); color: #fff; padding: 80px 0; overflow: visible; }
  .cta__ship { position: absolute; top: 0; left: 0; width: clamp(140px, calc(var(--sx) * 17 / 100), max(232px, calc(var(--sx) * 232 / 1366))); height: auto; animation: shipSail 21s linear infinite; }
  .cta__grid { display: flex; flex-wrap: wrap; gap: calc(var(--sx) * 4 / 100); justify-content: space-between; align-items: flex-start; }
  .cta__copy { flex: 1 1 420px; }
  .cta__title { display: block; margin: 0 0 max(60px, calc(var(--sx) * 60 / 1366)); }
  .cta__title img { display: block; width: clamp(310px, calc(var(--sx) * 45.68 / 100), max(624px, calc(var(--sx) * 624 / 1366))); max-width: 100%; height: auto; }
  .cta__text { margin: 0; font-size: clamp(13px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); line-height: 1.9; font-weight: 700; letter-spacing: .03em; }
  .cta__panel { flex: 0 0 auto; max-width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: max(46px, calc(var(--sx) * 46 / 1366)); margin-right: max(150px, calc(var(--sx) * 150 / 1366)); }
  .cta__button { display: inline-flex; align-items: center; gap: .8em; padding: 1.1em 2.2em; border: 2px solid #fff; border-radius: 999px; color: #fff; font-weight: 700; font-size: clamp(14px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); position: relative; top: -10px; transition: background .2s ease, color .2s ease; }
  .cta__button img { width: 1.6em; height: 1.6em; filter: brightness(0) invert(1); }
  .cta__button:hover { background: #fff; color: var(--c-blue); }
  .cta__button:hover img { filter: none; }
  .cta__phone { display: flex; width: fit-content; align-items: center; gap: .3em; margin: 0; position: relative; top: -20px; font-family: var(--font-heading); font-weight: 700; font-size: clamp(22px, calc(var(--sx) * 3.5 / 100), max(48px, calc(var(--sx) * 48 / 1366))); white-space: nowrap; }
  .cta__phone img { width: .8em; height: .8em; filter: brightness(0) invert(1); }
  .cta__hours { margin: 0 0 max(15px, calc(var(--sx) * 15 / 1366)); font-weight: 700; font-size: clamp(13px, calc(var(--sx) * 1.46 / 100), max(20px, calc(var(--sx) * 20 / 1366))); letter-spacing: .03em; }
  .cta__note { margin: 0; font-size: clamp(10px, calc(var(--sx) * 1.03 / 100), max(14px, calc(var(--sx) * 14 / 1366))); }

  /* =========================================================
     COMPANY
     ========================================================= */
  .company { position: relative; padding: calc(var(--sx) * 6 / 100) 0 calc(var(--sx) * 5 / 100); }
  .company__watermark { position: relative; margin: 0 0 .5em; }
  .company__cloud { top: -2vw; right: calc(var(--sx) * 6 / 100); z-index: -2; }
  .company__table { list-style: none; margin: 0; padding: 0; }
  .company__row { display: grid; grid-template-columns: minmax(90px, 15%) minmax(0, 1fr); gap: calc(var(--sx) * 2 / 100); padding: 1.6em 0; border-bottom: 1px dashed #bbb; font-size: clamp(12px, calc(var(--sx) * 1.17 / 100), max(16px, calc(var(--sx) * 16 / 1366))); }
  .company__row dt { font-weight: 700; }
  .company__row dd { margin: 0; overflow-wrap: break-word; word-break: break-word; }
  .company__row dd p { margin: 0 0 .3em; }
  .company__row a { text-decoration: underline; text-decoration-color: var(--c-navy); }

  /* =========================================================
     フッター
     ========================================================= */
  .site-footer { background: var(--c-text); color: #fff; text-align: center; padding: 1.1em 1em; font-size: clamp(11px, calc(var(--sx) * 1.05 / 100), max(14px, calc(var(--sx) * 14 / 1366))); }

  /* ---------- below-MV共通キーフレーム ---------- */
  @keyframes cloudFloat { from { transform: translateY(-8px); } to { transform: translateY(10px); } }
  @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes tickerTypeScroll { from { background-position-x: 0; } to { background-position-x: calc(var(--ticker-h) * -20.5125); } }
  @keyframes shipSail {
    0%   { transform: translate(-20vw, calc(-88% - 15px)) rotate(0deg); }
    20%  { transform: translate(8vw,   calc(-88% - 9px)) rotate(1deg); }
    40%  { transform: translate(36vw,  calc(-88% - 21px)) rotate(-1deg); }
    60%  { transform: translate(64vw,  calc(-88% - 9px)) rotate(1deg); }
    80%  { transform: translate(92vw,  calc(-88% - 21px)) rotate(-1deg); }
    100% { transform: translate(120vw, calc(-88% - 15px)) rotate(0deg); }
  }

  /* PC：Figma 1366pxフレームの実測値 */
  @media (min-width: 769px) {
    .vision__watermark { left: var(--below-pad-x); }
    .vision__grid { padding-left: calc(var(--sx) * 13.1479 / 100); }
    .vision__body { max-width: max(600px, calc(var(--sx) * 600 / 1366)); padding-top: 0; }
    .vision__title {
      margin-bottom: max(61px, calc(var(--sx) * 61 / 1366));
      font-size: clamp(34px, calc(var(--sx) * 5.2709 / 100), max(72px, calc(var(--sx) * 72 / 1366)));
      /* 大見出しを締めるための負の字間。支給待ちの DIN 2014 Narrow が無い環境では
         代替のOswaldに落ちて約5%広くなるため、1行に収める役目も兼ねている */
      letter-spacing: -0.02em;
      line-height: normal;
      text-box-trim: trim-both;
      text-box-edge: cap alphabetic;
    }
    .vision__lead { margin-bottom: max(80px, calc(var(--sx) * 80 / 1366)); font-size: max(20px, calc(var(--sx) * 20 / 1366)); line-height: 2; }
    .vision__lead p { text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .vision__lead p:not(:last-child) { margin-bottom: max(61px, calc(var(--sx) * 61 / 1366)); }
    .vision__credit { gap: max(24px, calc(var(--sx) * 24 / 1366)); font-size: max(16px, calc(var(--sx) * 16 / 1366)); line-height: 2; }
    .vision__credit span { text-box-trim: trim-both; text-box-edge: cap alphabetic; }

    .cta { padding: max(104px, calc(var(--sx) * 104 / 1366)) 0; }
    /* 1366px超でvwが伸び続けると container(max-width:1366px) の中身が痩せて
       左右カラムが接近するため、基準幅1366での実寸120.5pxで頭打ちにする */
    .cta .container { padding-right: calc(var(--sx) * 8.8214 / 100); padding-left: calc(var(--sx) * 8.8214 / 100); }
    .cta__grid { flex-wrap: nowrap; justify-content: flex-start; gap: max(80px, calc(var(--sx) * 80 / 1366)); }
    .cta__copy { flex: 1 1 624px; min-width: 0; }
    .cta__panel { flex-shrink: 0; margin-right: 0; }
  }

  /* ---------- below-MV: SP（768px以下）簡易対応 ---------- */
  @media (max-width: 768px) {
    /* Figma node 51:6実測：外周マージンは一律15px（=4vw@375基準） */
    :root { --below-pad-x: 4vw; }

    /* ---- VISION（Figma 52:878実測） ---- */
    .vision { padding: 0 0 6.4vw; }
    .vision__watermark, .service__watermark, .coverage__watermark { width: 40px; }
    .vision__grid { gap: 16vw; }
    .vision__media { flex-basis: 100%; margin-top: 0; }
    .vision__cloud { display: none; } /* SP版はcloud-a装飾を使わずsp-deco-waveに統一 */
    .vision__photo { aspect-ratio: 345 / 215; border-radius: clamp(6px, 2.667vw, 10px); }
    .vision__body { max-width: 100%; padding-top: 0; }
    .vision__title { font-size: clamp(30px, 12.8vw, 48px); line-height: 1.167; margin-bottom: 10.667vw; }
    .vision__lead { margin-bottom: 10.667vw; }
    .vision__lead p { font-size: clamp(13px, 4.267vw, 16px); line-height: 2; }
    .vision__lead p:not(:last-child) { margin-bottom: 10.667vw; }
    .vision__credit { font-size: clamp(12px, 3.733vw, 14px); gap: 6.4vw; }
    .cloud-deco { width: 90px; }
    .vision__deco-wave {
      display: block;
      width: 20vw;
      max-width: 76px;
      height: auto;
      margin: 6.4vw 0 0 auto;
    }

    /* ---- 写真ティッカー（Figma 52:910実測） ---- */
    .ticker-photos { padding: 5.2vw 0; margin-top: 0; }
    .ticker-photos__deco-wave {
      display: block;
      position: absolute;
      left: 50%;
      bottom: -8vw;
      z-index: -2;
      width: 20vw;
      max-width: 76px;
      transform: translateX(-50%) scaleX(-1);
      pointer-events: none;
    }
    .ticker-photos__truck { width: clamp(70px, 25.6vw, 96px); }
    .ticker-photos__track { gap: 6.4vw; }
    .ticker-photos__photo { width: 58.885vw; height: 37.678vw; }
    .ticker-photos__icon { width: 32.92vw; }
    .ticker-photos__icon--sm { width: 32.92vw; }
    .ticker-photos__word { width: 58.885vw; }

    .service { padding: 48px 0 56px; }
    /* ---- SERVICE（Figma 52:1132実測）：タブ切替ではなく4枚を縦に全部並べる構成 ---- */
    .service { padding: 8.53vw 0 12vw; }
    .service__head { padding-top: 8vw; margin-left: 0; margin-bottom: 5vw; }
    .service__lead-row { max-width: 100%; gap: 2vw; }
    .service__lead-text { max-width: 100%; font-size: clamp(13px, 3.73vw, 14px); line-height: 1.9; }
    .service__panel { flex-direction: column; margin: 0; }
    .service__tabs-col { display: none; } /* Figma SPはタブ無し。4枚を順に縦積み表示 */
    .service__scroller { display: block; }
    .service__stage-col { position: static; height: auto; }
    .service__markers { display: none; }
    .service__stage { position: static; aspect-ratio: auto; overflow: visible; display: flex; flex-direction: column; gap: 5.333vw; }
    .service__slide {
      position: relative;
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      transition: none;
    }
    .service__slide-photo { position: relative; width: 100%; height: auto; aspect-ratio: 345 / 219.8; border-radius: clamp(6px, 2.667vw, 10px); }
    .service__slide-num { position: static; display: block; margin: 0 0 1.6vw; font-size: clamp(16px, 5.333vw, 20px); line-height: 1.4; }
    .service__slide-title { position: absolute; top: 11.73vw; left: 2.667vw; }
    .service__slide-title img { height: clamp(20px, 6.667vw, 26px); }
    .service__slide-desc {
      position: relative;
      left: auto; top: auto; width: auto; height: auto;
      margin: -5.6vw 0 0;
      padding: 5.333vw;
      border: none;
      background: #fff;
      font-size: clamp(13px, 3.733vw, 14px);
    }

    /* ---- 業務フロー（Figma 59:64/59:65/59:68/59:96実測。STEP03以降はFigma未作成のためSTEP01/02の仕様を踏襲） ---- */
    .flow__triangle { width: clamp(50px, 17.87vw, 67px); margin-bottom: 4vw; }
    .flow__intro { margin-bottom: 6.4vw; }
    .flow__intro-line1 { font-size: clamp(19px, 5.867vw, 22px); margin-bottom: .2em; }
    .flow__intro-line2 { font-size: clamp(20px, 6.4vw, 24px); }
    .flow__highlight { font-size: clamp(28px, 9.067vw, 34px); }
    .flow__card { padding: 10.667vw 5.333vw; margin: 0; }
    .flow__label { font-size: clamp(22px, 7.467vw, 28px); margin-bottom: 6.4vw; }
    .flow__grid { grid-template-columns: repeat(2, 1fr); gap: 8.53vw 3.2vw; }
    .flow__step { gap: 6.667vw; }
    .flow__step-num { font-size: clamp(20px, 6.4vw, 24px); }
    .flow__step-dot { width: 12px; height: 12px; }
    .flow__step:nth-child(4n+1) .flow__step-dot::before, .flow__step:nth-child(4n+1) .flow__step-dot::after { content: none; }
    .flow__step:nth-child(2n+1) .flow__step-dot::before, .flow__step:nth-child(2n+1) .flow__step-dot::after { content: ""; position: absolute; top: 50%; margin-top: -1px; width: 100vw; height: 2px; background-image: repeating-linear-gradient(to right, #bbb 0, #bbb 4px, transparent 4px, transparent 12px); }
    .flow__step:nth-child(2n+1) .flow__step-dot::before { right: 100%; }
    .flow__step:nth-child(2n+1) .flow__step-dot::after { left: 100%; }
    .flow__step-icon { width: clamp(100px, 36vw, 135px); height: clamp(100px, 36vw, 135px); }
    .flow__step-title { font-size: clamp(14px, 4.267vw, 16px); }
    .flow__step-desc { font-size: clamp(12px, 3.733vw, 14px); }
    /* SPは2列。行末（偶数番）にも次の行へ続く矢印を出すため、旧「奇数番だけ表示」ルールは廃止。
       表示/非表示の最終判断はFigma実測ブロック側（.flow__step .flow__arrow）に一本化している */
    .flow__arrow { top: 40vw; right: -3.5vw; width: clamp(11px, 4vw, 15px); }

    .ticker-type__word { font-size: 34px; }

    .coverage { padding: 48px 0 56px; }
    .coverage__title, .coverage__lead, .coverage__panel { margin-left: 48px; }
    .coverage__title img { width: min(84vw, 400px); }
    .coverage__cloud { display: none; } /* SP幅ではタイトル文字に重なるため非表示 */
    .coverage__lead { flex-direction: column; gap: 8px; }
    .coverage__panel { padding: 24px 16px; }
    .coverage__panel::after { content: "← 横にスクロールできます →"; display: block; margin-top: 12px; font-size: 11px; color: #999; text-align: center; }

    .cta { padding: 56px 0 40px; }
    .cta__grid { flex-direction: column; align-items: flex-start; }
    .cta__panel { margin-right: 0; }
    .cta__ship { width: 120px; }

    .company { padding: 48px 0 40px; }
    .company__row { display: block; gap: 6px; }
    .company__row dd { display: block; width: 100%; max-width: 100%; min-width: 0; word-break: break-all; overflow-wrap: anywhere; }
  }

  /* ---------- below-MV: reduced motion ---------- */
  @media (prefers-reduced-motion: reduce) {
    .cloud-deco, .ticker-photos__track, .ticker-type__track {
      animation: none !important;
    }
    .cta__ship {
      animation: none !important;
      left: 50%;
      transform: translate(-50%, calc(-88% - 15px)) !important;
    }
    .ticker-photos__truck {
      animation: none !important;
      left: 50%;
      transform: translate(-50%, calc(-88% - 8px)) !important;
    }
  }

  /* SP artwork 51:6: dimensions are relative to its 375px canvas.
     Updated full SP artwork; desktop assets are reused for the eight flow icons. */
  .sp-design-break { display: none; }
  @media (max-width: 768px) {
    .sp-design-break { display: initial; }
    body { background-size: 10.666667vw 10.666667vw; background-position: 7.333333vw .8vw; background-attachment: scroll; }
    .mv { min-height: 0; height: 189.866667vw; }
    .mv__photo-stage { min-height: 0; }
    .mv__photo--1 { background-image: url('./img/sp-mv-photo.png'); }
    .mv__logo { min-width: 0; min-height: 0; }
    .mv__logo picture { display: block; width: 24vw; height: 9.031028vw; } /* ロゴをタグライン入りに差し替え（縦横比 194:73）*/
    .mv__logo-image { width: 100%; height: 100%; min-width: 0; aspect-ratio: auto; }
    .mv__cta-pill { display: flex; align-items: center; justify-content: center; width: 40vw; min-width: 0; min-height: 0; padding: 0; background: #03c9b5; font-weight: 700; }
    .mv__headline { top: 29.52vw; min-width: 0; }
    .mv__headline-sp { align-items: flex-start; }
    .mv__headline-sp-img { min-width: 0; width: auto; padding: 0; object-fit: contain; }
    .mv__headline-sp-img--a { height: 66.257vw; }
    .mv__headline-sp-img--b { height: 123.547vw; } /* Figma実測（node 51:6 "sp_260910_lp"内、mv_title 3: 463.3px/375px基準） */
    .mv__subcopy { top: 129.067vw; min-width: 0; } /* Figma実測（node 51:6内、Frame 1234: y=484px/375px基準） */

    .vision { padding: 0 0 22.666667vw; }
    .vision__watermark { display: none; }
    .vision__grid { display: flex; flex-direction: column; padding-left: 0; gap: 16vw; }
    .vision__media { flex: none; width: 100%; }
    .vision__media picture { display: block; }
    .vision__body { flex: none; min-width: 0; width: 100%; }
    .vision__photo { width: 100%; aspect-ratio: 345 / 215; object-position: center 26%; }
    .vision__title { height: 23.733333vw; margin: 0 0 10.666667vw; font-size: 0; background: url('./img/sp-vision-title.png') left top / auto 100% no-repeat; }
    .vision__lead p { font-size: 4.266667vw; line-height: 2; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .vision__lead { margin-bottom: 10.666667vw; }
    .vision__lead p:not(:last-child) { margin-bottom: 10.666667vw; }
    .vision__credit { font-size: 3.733333vw; line-height: 2; }
    .vision__credit span { text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .vision__deco-wave { position: absolute; z-index: -2; top: 65.333333vw; left: 55.835417vw; width: 37.866667vw; max-width: none; height: 14.933333vw; margin: 0; }
    .ticker-photos { padding: 5.16172vw 0; }
    .ticker-photos__track { padding-left: 8vw; }
    .ticker-photos__word { width: 64vw; }
    .ticker-photos__deco-wave { left: 47.2vw; top: calc(100% + 5.333333vw); bottom: auto; z-index: -2; width: 37.866667vw; height: 14.933333vw; max-width: none; transform: scaleX(-1); }

    .service { padding: 30px 0 12vw; }
    .service__watermark, .service__cloud { display: none; }
    .service__title img { width: 74vw; max-width: 280px; }
    .service__panel { display: block; }
    .service__scroller { width: 100%; max-width: none; }
    .service__stage { gap: 20px; }
    .service__slide { inset: auto; padding-top: 5.066667vw; }
    .service__slide-photo { position: relative; top: auto; left: auto; margin-left: 2.666667vw; width: 86.533333vw; height: 58.619467vw; aspect-ratio: auto; }
    .service__slide-num { position: absolute; left: -.536vw; top: calc(1.6vw - 13px); margin: 0; font-size: 5.333333vw; line-height: 2.4; }
    .service__slide-title { top: 7.733333vw; left: 2.666667vw; }
    .service__slide-title img { height: 6.666667vw; }
    .service__slide-desc { width: 86.666667vw; margin: -5.5528vw 0 0 5.333333vw; padding: 5.333333vw; font-size: 3.733333vw; line-height: 2; overflow: visible; }
    .service__slide-copy { display: block; text-box-trim: trim-both; text-box-edge: cap alphabetic; }

    .flow { margin-top: -1.333333vw; }
    .flow__triangle { width: 17.866667vw; height: 6.4vw; margin-top: 7.733333vw; margin-bottom: 7.733333vw; }
    .flow__intro { margin: 0 0 30px; line-height: 1.8; letter-spacing: .1em; }
    .flow__intro-line1 { font-size: 5.866667vw; line-height: 1.8; margin: 0; text-box-trim: trim-start; text-box-edge: cap alphabetic; }
    .flow__intro-line2 { font-size: 6.4vw; line-height: 1.8; text-box-trim: trim-end; text-box-edge: cap alphabetic; }
    .flow__highlight { display: inline-block; font-size: 9.066667vw; letter-spacing: .123529em; }
    .flow__card { border-radius: 0; padding: 10.666667vw 5.333333vw; }
    .flow__label { height: 13.2vw; align-items: flex-start; font-size: 7.466667vw; line-height: 1.2; letter-spacing: .1em; gap: 2.666667vw; margin-bottom: 9.333333vw; }
    .flow__label::before { width: 1.066667vw; height: 7.2vw; margin-top: 3px; }
    .flow__grid { margin: 0 -5.333333vw; grid-template-columns: repeat(2, 35.2vw); justify-content: start; column-gap: 13.333333vw; row-gap: 10.666667vw; }
    .flow__step { gap: 0; }
    .flow__step-num { font-family: var(--font-en); font-size: 6.4vw; line-height: 1; }
    .flow__step-dot { width: 3.369515vw; height: 3.369515vw; margin-top: 3.2vw; margin-bottom: 8vw; }
    .flow__step-icon { flex-shrink: 0; width: 36vw; height: 36vw; margin-bottom: 8vw; }
    .flow__step-icon img { width: 54%; height: 54%; }
    .flow__step-title { font-size: 4.266667vw; line-height: 1.4; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .flow__step-desc { width: 38.393067vw; margin-top: 5.333333vw; font-size: 3.733333vw; line-height: 1.6; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .flow__arrow { top: 36.8vw; right: -8.8vw; width: 2.666667vw; height: 4.533333vw; }

    /* Prevent inherited desktop flex bases and title widths from overflowing. */
    .coverage__title img { max-width: 100%; }
    .cta__copy { flex: none; width: 100%; }
  }


  /* Full mobile artwork, Figma 51:6 (completed September 10). */
  .coverage__table-sp { display: none; }
  @media (max-width: 768px) {
    body { background-color: #f8f8f8; }
    .pc-design-break { display: none; }
    .service { padding-bottom: 0; }
    .flow__card { min-height: 390.400000vw; }
    .flow__grid { margin: 0; width: 81.333333vw; grid-template-columns: repeat(2,39.733333vw); grid-template-rows: minmax(78.933333vw, auto) repeat(3, minmax(87.200000vw, auto)); gap: 4.000000vw 0; }
    .flow__step { width: 35.200000vw; top: 5.066667vw; }
    .flow__step:nth-child(-n+2) { top: 0.933333vw; }
    .flow__step-num { line-height: 1.8; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .flow__step-dot { margin-top: 5.066667vw; margin-bottom: 8.000000vw; }
    .flow__step-icon { width: 27.733333vw; height: 27.733333vw; margin-bottom: 8.000000vw; }
    .flow__step-icon img { width: 54%; height: 54%; }
    .flow__step-dot::before, .flow__step-dot::after { display: none; }
    .flow__step:nth-child(odd)::before { content: ''; position: absolute; top: 11.466667vw; left: 0; width: 81.333333vw; border-top: 1px dotted #999; }
    .flow__step .flow__arrow { display: block !important; top: 32.925333vw; left: 36.453333vw; right: auto; }
    .flow__step:last-child .flow__arrow { display: none !important; }
    .ticker-type { padding: 16.000000vw 0 18.870000vw; --ticker-h: 30.400000vw; }
    .coverage { padding: 0 0 30.000000vw; }
    .coverage__watermark { display: none; }
    .coverage__title, .coverage__lead, .coverage__panel { margin-left: 0; margin-right: 0; }
    .coverage__title { height: 34.133333vw; margin-top: 0; margin-bottom: 10.666667vw; }
    .coverage__title picture { display: block; }
    .coverage__title img { position: relative; top: -0.800000vw; width: 73.333333vw; height: 35.733333vw; max-width: none; }
    .coverage__lead { display: flex; gap: 10.666667vw; margin-top: 0; margin-bottom: 10.666667vw; }
    .coverage__lead-heading { font-size: 6.400000vw; line-height: 1.8; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .coverage__lead-text { flex: none; font-size: 4.266667vw; line-height: 2; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .coverage__panel { padding: 0; margin-bottom: 0; border-radius: 0; background: transparent; overflow: visible; }
    .coverage__panel::after, .coverage__table { display: none; }
    .coverage__table-sp { display: table; border-collapse: collapse; table-layout: fixed; width: 100%; height: 110.000000vw; color: #212121; }
    .coverage__table-sp col:nth-child(1) { width: 32.800000vw; }
    .coverage__table-sp col:nth-child(2) { width: 27.166667vw; }
    .coverage__table-sp th, .coverage__table-sp td { padding: 0; text-align: center; vertical-align: middle; }
    .coverage__table-sp tr > :not(:first-child) { border-left: 1px dotted #212121; }
    .coverage__table-sp thead { height: 16.133333vw; font-size: 3.733333vw; line-height: 1.2; }
    .coverage__table-sp thead img { display: block; width: 19.733333vw; height: 6.133333vw; margin: auto; }
    .coverage__table-sp tbody tr { height: 23.733333vw; border-top: 2px dotted #999; }
    .coverage__table-sp tbody tr:last-child { height: 22.666667vw; }
    .coverage__table-sp tbody th { color: var(--c-blue); }
    .coverage__table-sp strong { display: block; font-size: 4.266667vw; line-height: 1.2; }
    .coverage__table-sp th > span { display: block; margin-top: 2.666667vw; font-weight: 400; font-size: 3.200000vw; line-height: 1.4; }
    .coverage__table-sp .coverage__partial { font-size: 3.733333vw; font-weight: 700; }
    .coverage__circle { display: inline-block; width: 5.333333vw; height: 5.333333vw; border: 1px solid #212121; border-radius: 50%; }

    .cta { padding: 7.866667vw 0; }
    .cta__grid { gap: 10.666667vw; align-items: center; }
    .cta__copy { width: 100%; }
    .cta__title { height: 32.266667vw; margin: 0 0 10.666667vw; }
    .cta__title picture { display: block; }
    .cta__title img { width: 85.333333vw; height: 32.266667vw; object-fit: contain; object-position: left top; }
    .cta__text { font-size: 4.266667vw; line-height: 2; letter-spacing: .1em; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .cta__panel { width: 85.066667vw; align-items: center; gap: 10.666667vw; }
    .cta__button { top: 0; width: 81.333333vw; height: 18.666667vw; padding: 0; justify-content: center; gap: 4.000000vw; font-size: 5.333333vw; white-space: nowrap; }
    .cta__button img { width: 8.800000vw; height: 8.800000vw; }
    .cta__panel > div { width: 100%; }
    .cta__phone { top: 0; gap: 4.000000vw; font-family: var(--font-en); font-size: 10.8vw; line-height: 2; margin: 0 0 8.000000vw; }
    /* tel:リンクのタップ領域を上下に広げる。疑似要素なのでレイアウト（余白）は1pxも動かない */
    .cta__phone::after { content: ""; position: absolute; inset: -8px -6px; }
    .cta__phone span { text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .cta__phone img { flex-shrink: 0; width: 6.933333vw; height: 7.200000vw; }
    .cta__hours { font-size: 5.333333vw; line-height: 2; letter-spacing: .1em; margin: 0 0 8.000000vw; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .cta__note { font-size: 3.733333vw; line-height: 2; letter-spacing: .1em; white-space: nowrap; text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .cta__ship { width: 30.133333vw; height: 13.333333vw; }

    .company { padding: 16.000000vw 0; background: #f8f8f8; }
    .company__cloud { display: none; }
    .company__watermark { margin: 0 0 10.666667vw; }
    .company__watermark img { width: auto; height: 11.733333vw; }
    .company__table { display: flex; flex-direction: column; gap: 8.000000vw; }
    .company__row { display: flex; flex-direction: column; gap: 5.333333vw; padding: 0 0 7.200000vw; font-size: 4.266667vw; line-height: 1.5; border-bottom: 1px dotted #012f4d; }
    .company__row dt, .company__row dd { text-box-trim: trim-both; text-box-edge: cap alphabetic; }
    .company__row dd { word-break: normal; overflow-wrap: anywhere; }
    .company__addresses p { display: flex; margin: 0; line-height: 2; }
    .company__office { flex-shrink: 0; width: 25.600000vw; text-align: justify; text-align-last: justify; }
    .company__addresses p > span:last-child { flex: 1; min-width: 0; }
    .site-footer { height: 9.386667vw; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 4.266667vw; font-weight: 700; }
  }

