@charset "UTF-8";

/* =========================================================
   YMSレスキューレンタカー - 軽バン専門レンタル・リース
   style.css
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0b2444;
  --navy-2: #143a68;
  --blue: #1b6fb8;
  --blue-light: #eaf3fb;
  --orange: #f08300;
  --orange-dark: #d06f00;
  --green: #17a06b;
  --red: #d64545;
  --text: #22303f;
  --text-muted: #647587;
  --line: #e2e8ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11, 36, 68, .08);
  --shadow-lg: 0 12px 40px rgba(11, 36, 68, .14);
  --header-h: 92px;
  --wrap: 1160px;
  --font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
          "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  padding-bottom: 0;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .78; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--soft {
  position: relative;
  background:
    radial-gradient(circle at 12% 0%, rgba(27, 111, 184, .07), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(240, 131, 0, .07), transparent 42%),
    var(--bg-soft);
}
.section--navy { background: var(--navy); color: #fff; }
.center { text-align: center; }
.mt-s { margin-top: 12px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 48px; }
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- Section titles ---------- */
.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head__en {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-head__en::before,
.sec-head__en::after {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  opacity: .55;
}
.sec-head__ja {
  font-size: clamp(24px, 4.4vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .02em;
}
.sec-head__lead { margin-top: 16px; color: var(--text-muted); font-size: 15px; }
.sec-head__lead em { font-style: normal; font-weight: 700; color: var(--orange); }
.section--navy .sec-head__lead { color: rgba(255, 255, 255, .8); }
.marker {
  background: linear-gradient(transparent 58%, rgba(240, 131, 0, .38) 58%, rgba(240, 131, 0, .38) 96%, transparent 96%);
  padding: 0 .1em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 34px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-dark); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--ghost { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.btn--wide { width: 100%; max-width: 380px; }
.btn--sm { min-height: 46px; font-size: 14px; padding: 8px 22px; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  min-width: 0;
}
.logo { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
.logo:hover { opacity: .85; }
.logo__img { height: 66px; width: auto; max-width: 100%; }

.gnav { margin-left: auto; min-width: 0; }
/* 横並び時：幅が足りなくても電話番号に重ならないようナビ側を縮める */
@media (min-width: 1241px) { .gnav { flex: 0 1 auto; overflow: hidden; } }
.gnav__list { display: flex; align-items: center; gap: 4px; }
.gnav__list > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  border-radius: 8px;
  white-space: nowrap;
}
.gnav__sp-cta { display: none; }
.gnav__icon { display: none; }
@media (max-width: 1240px) { .gnav__icon { display: grid; } }
/* 横並びナビ（1241px以上）では項目の間に区切り線を入れる */
@media (min-width: 1241px) {
  .gnav__list { gap: 0; }
  .gnav__list > li { position: relative; }
  .gnav__list > li + li::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 17px;
    background: #d5dde6;
  }
  .gnav__list > li > a { margin: 0 3px; }
}
.gnav__list > li > a:hover { background: var(--blue-light); opacity: 1; }
.gnav__list > li > a[aria-current="page"] { color: var(--orange); }

.header__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__tel { line-height: 1.2; text-align: right; white-space: nowrap; }
.header__tel small { display: block; font-size: 10.5px; color: var(--text-muted); letter-spacing: .08em; }
.header__tel a { font-size: 23px; font-weight: 800; color: var(--navy); letter-spacing: .01em; }

/* PC（横並びナビ）は幅に応じて可変。1241px〜1500px の間で無理なく縮み、
   1500px以上で本来のサイズになる。ナビ6項目でもコンテナ(1400px)を超えない */
@media (min-width: 1241px) {
  .header__inner { gap: clamp(10px, 2vw - 15px, 16px); }
  .logo__img { height: clamp(44px, 3.1vw + 6px, 52px); }
  .gnav__list > li > a {
    padding: 10px clamp(8px, 1.4vw - 9px, 14px);
    margin: 0;
    font-size: clamp(13.5px, .6vw + 6px, 15.5px);
  }
  .header__cta { gap: clamp(8px, 1.5vw - 10px, 12px); }
  .header__tel a { font-size: clamp(17px, 1.5vw - 1.6px, 21px); }
  .header__tel small { font-size: clamp(9px, .58vw + 1.8px, 10.5px); }
  .header__cta .btn--sm { padding: 8px clamp(12px, 2.3vw - 17px, 18px); font-size: clamp(12.5px, .4vw + 7.5px, 13.5px); }
}

.burger {
  display: none;
  width: 48px; height: 48px;
  border: 0; border-radius: 10px;
  background: var(--navy);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute; left: 13px;
  width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero slider（バナー画像のみ） ---------- */
.hero { background: #fff; }
.hero__slides {
  position: relative;
  aspect-ratio: 2598 / 1049;   /* PC用バナーの比率。画像を差し替えたらここも合わせる */
  overflow: hidden;
  background: var(--navy);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide picture { display: block; width: 100%; height: 100%; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero__dots {
  display: flex; justify-content: center; gap: 10px;
  padding: 16px 0;
}
.hero__dots button {
  width: 12px; height: 12px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(11, 36, 68, .22);
  cursor: pointer; transition: background .2s, transform .2s;
}
.hero__dots button.is-active { background: var(--orange); transform: scale(1.25); }

/* ---------- Page head (下層ページ・画像なし) ---------- */
.page-head {
  position: relative;
  background: linear-gradient(120deg, #071b35 0%, var(--navy) 45%, #17558f 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 10px, transparent 10px 30px),
    radial-gradient(circle at 88% -10%, rgba(240, 131, 0, .35), transparent 45%);
}
.page-head--emergency { background: linear-gradient(120deg, #2b0a0a 0%, #6d1717 45%, #c23a3a 100%); }
.page-head--maintenance { background: linear-gradient(120deg, #06232a 0%, #0e3a44 45%, #2f9fb5 100%); }
.page-head__inner { position: relative; z-index: 1; }
.page-head__en { display: block; font-size: 12px; letter-spacing: .24em; color: #ffd07a; font-weight: 700; }
.page-head__ja { font-size: clamp(24px, 4.4vw, 38px); font-weight: 800; margin-top: 8px; }

.breadcrumb { background: var(--bg-soft); font-size: 12.5px; color: var(--text-muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: #b6c1cd; }

/* ---------- Intro / message ---------- */
.message { position: relative; text-align: center; }
.message__title {
  font-size: clamp(23px, 4.3vw, 44px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .02em;
  color: var(--navy);
  text-shadow: 0 0 0 currentColor; /* 太字をわずかに強く見せる */
}
/* PCでは改行を解除し、1行で見せる（収まらない幅では自然に折り返す） */
@media (min-width: 901px) {
  .message__title br { display: none; }
  .message__title { max-width: 32em; margin-inline: auto; }
  /* この見出しだけはPCでも2行のまま、文字を大きく見せる */
  .message__title--wrap br { display: inline; }
  .message__title--wrap {
    font-size: clamp(26px, 3.3vw, 46px);
    max-width: none;
    line-height: 1.45;
  }
}
/* 画像＋テキストの横並びに置いた場合は左寄せで使う */
.media .message__title {
  font-size: clamp(23px, 3vw, 34px);
  text-align: left;
  margin-inline: 0;
}
.media .message__text { text-align: left; margin-top: 20px; }
/* 狭い段（SP）では読点で改行、PCでは1行に収める */
.media .message__title br { display: inline; }
@media (min-width: 901px) {
  .media .message__title br { display: none; }
  .media .message__title { font-size: clamp(23px, 2.7vw, 33px); }
}
/* 「い。」だけが行末に落ちないよう、強調部分は塊で折り返す */
.media .message__title .marker { display: inline-block; }
@media (max-width: 900px) { .media .message__title { text-align: center; } }
/* SPだけ改行する <br>（PCでは無視） */
.message__title br.br-sp { display: none; }
@media (max-width: 600px) {
  .message__title br.br-sp { display: inline; }
  .message__title .marker { display: inline; }
  .message__title { line-height: 1.55; }
}
.message__text { margin-top: 26px; color: var(--text-muted); font-size: clamp(14.5px, 1.2vw, 16.5px); line-height: 2; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__ribbon {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px;
}

/* ---------- Visual（画像を使わないビジュアル面） ---------- */
.visual {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px 16px;
  min-height: 134px;
  background: linear-gradient(130deg, #0a2540 0%, var(--navy) 40%, var(--blue) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.visual::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .07) 0 10px, transparent 10px 30px);
}
.visual > * { position: relative; }
.visual__icon { width: 44px; height: 44px; }
.visual__icon svg { width: 100%; height: 100%; }
.visual__label { font-size: 13.5px; font-weight: 800; letter-spacing: .06em; }
.visual__sub { font-size: 11px; opacity: .8; margin-top: -3px; }
.visual--blue { background: linear-gradient(130deg, #0a2540 0%, #123a6b 40%, #2b7fc4 100%); }
.visual--green { background: linear-gradient(130deg, #08221a 0%, #14503a 40%, #24a074 100%); }
.visual--orange { background: linear-gradient(130deg, #3a1c00 0%, #7a3d05 40%, #e8961f 100%); }
.visual--red { background: linear-gradient(130deg, #2b0a0a 0%, #6d1717 40%, #d04a4a 100%); }
.visual--teal { background: linear-gradient(130deg, #06232a 0%, #0e3a44 40%, #34a8bf 100%); }
.visual--slate { background: linear-gradient(130deg, #182430 0%, #2c3a49 40%, #64788c 100%); }
.visual--tall { min-height: 240px; }
/* 年式別タイプ：ビジュアル内の見出しを大きく（本文側の見出しは省略） */
.lineup .visual { min-height: 150px; }
.lineup .visual__label { font-size: 22px; letter-spacing: .04em; }
.lineup .visual__sub { font-size: 12.5px; margin-top: 0; }
.lineup .card__desc { margin-top: 0; }
/* SPでも横3列 */
@media (max-width: 600px) {
  .grid.lineup { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .lineup .visual { min-height: 96px; padding: 12px 6px; gap: 4px; }
  .lineup .visual__icon { width: 26px; height: 26px; }
  .lineup .visual__label { font-size: 13.5px; letter-spacing: 0; }
  .lineup .visual__sub { font-size: 10px; }
  .lineup .card__body { padding: 10px 10px 12px; }
  .lineup .card__desc { font-size: 11.5px; line-height: 1.6; }
}

/* プランカードのヘッダー */
.plan-head {
  position: relative;
  /* 右側に写真、左側にテキスト */
  padding: 50px 36% 20px 20px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(130deg, #0a2540 0%, #123a6b 45%, #2b7fc4 100%);
  --scrim: 18, 58, 107;
}
/* 写真レイヤー。境界が出ないようカード全面を一枚のグラデーションでつなぐ */
.plan-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to left,
      rgba(var(--scrim), 0) 0%,
      rgba(var(--scrim), .10) 18%,
      rgba(var(--scrim), .45) 34%,
      rgba(var(--scrim), .82) 50%,
      rgba(var(--scrim), .97) 62%,
      rgb(var(--scrim)) 72%),
    var(--plan-photo);
  background-repeat: no-repeat, no-repeat;
  background-position: center, var(--plan-pos, right center);
  background-size: cover, auto 100%;
}
.plan-head > * { position: relative; z-index: 1; }
.plan-head--a { --plan-photo: url("../images/renta/1-1.png"); }
.plan-head--b {
  background: linear-gradient(130deg, #08221a 0%, #14503a 45%, #24a074 100%);
  --scrim: 20, 80, 58;
  --plan-photo: url("../images/renta/3.png");
}
.plan-head--c {
  background: linear-gradient(130deg, #3a1c00 0%, #7a3d05 45%, #e8961f 100%);
  --scrim: 122, 61, 5;
  --plan-photo: url("../images/renta/4.png");
}
.plan-head__name { font-size: 19px; font-weight: 800; line-height: 1.4; }
.plan-head__price { margin-top: 12px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.plan-head__price strong {
  font-size: 32px; font-weight: 900; letter-spacing: -.02em;
  margin-right: 2px; color: #ffd98a;
}
.plan-head__term {
  display: inline-block; margin-top: 12px;
  background: rgba(255, 255, 255, .16);
  border-radius: 999px; padding: 3px 12px;
  font-size: 11.5px; font-weight: 700; white-space: nowrap;
}
/* .plan-head > * の position:relative に負けないよう absolute を再指定する */
.plan-head .card__ribbon { position: absolute; top: 16px; left: 16px; right: auto; }
.card__body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 18px; font-weight: 800; color: var(--navy); }
.card__term { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.card__price { margin: 14px 0 6px; color: var(--navy); font-weight: 700; font-size: 15px; }
.card__price strong { font-size: 34px; color: var(--orange); letter-spacing: -.01em; }
.card__desc { font-size: 14.5px; color: var(--text-muted); margin-top: 10px; }
.card__list { margin-top: 16px; display: grid; gap: 8px; font-size: 14px; }
.card__list li { padding-left: 26px; position: relative; }
.card__list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 16px; height: 9px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}
.card__foot { margin-top: auto; padding-top: 22px; }

/* ---------- お悩みセクション ---------- */
.worry {
  position: relative;
  overflow: hidden;
  background-color: #eef1f5;
  background-image: radial-gradient(circle, rgba(11, 36, 68, .09) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
}
/* 右上に車両写真を薄く敷く（白背景の写真なので multiply で地になじませる） */
.worry::after {
  content: "";
  position: absolute;
  top: 0; right: -50px;
  width: min(40%, 480px);
  aspect-ratio: 1176 / 788;
  background: url("../images/renta/2.png") no-repeat center / contain;
  opacity: .22;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* 左下にトラブル中の写真を薄く敷く（写真なのでマスクで周囲をぼかす） */
.worry::before {
  content: "";
  position: absolute;
  left: -40px; bottom: 0;
  width: min(36%, 440px);
  aspect-ratio: 1246 / 864;
  background: url("../images/res/2.png") no-repeat center / cover;
  opacity: .30;
  -webkit-mask-image: radial-gradient(ellipse at 40% 60%, #000 55%, transparent 85%);
  mask-image: radial-gradient(ellipse at 40% 60%, #000 55%, transparent 85%);
  pointer-events: none;
}
.worry > .wrap { position: relative; z-index: 1; }
.worry__title {
  text-align: center;
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: .01em;
  margin-bottom: 44px;
}
.worry__title strong {
  color: var(--orange);
  font-size: 1.18em;
  font-weight: 900;
}
.worry__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.worry__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 22px;
  min-height: 116px;
  /* アイコン左・テキスト右 */
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.7;
  box-shadow: 0 2px 12px rgba(11, 36, 68, .06);
}
.worry__text { display: block; }
.worry__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--red);
  background: #fdecec;
}
.worry__icon svg { width: 32px; height: 32px; }
.worry__card strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: .01em;
}
.worry__note {
  margin-top: 68px;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}
.worry__lead {
  margin: 10px 0 18px;
  font-size: clamp(19px, 2.6vw, 28px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.5;
}
.worry__note p:last-child { margin-bottom: 0; }

/* ---------- Points ---------- */
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.point {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  /* アイコンの横に見出し、その下に本文 */
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
}
.point::after {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue) 55%, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.point:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.point:hover::after { transform: scaleX(1); }
.point__num {
  flex-shrink: 0;
  background: var(--navy); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; letter-spacing: .02em;
}
.point__icon {
  width: 54px; height: 54px;
  margin: 0;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--blue);
  background: linear-gradient(140deg, var(--blue-light), #fff);
  box-shadow: inset 0 0 0 1px rgba(27, 111, 184, .14);
}
.point__icon svg { width: 30px; height: 30px; }
.point__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 800; color: var(--navy);
  line-height: 1.45;
}
.point__title { grid-column: 2; }
.point__text { grid-column: 1 / -1; font-size: 14.5px; color: var(--text-muted); margin-top: 14px; }

/* ---------- Flow ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flow__item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px 30px;
  text-align: center;
  position: relative;
}
.flow__item::after {
  content: "";
  position: absolute; top: 50%; right: -14px;
  width: 0; height: 0;
  border-left: 12px solid var(--orange);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateY(-50%);
}
.flow__item:last-child::after { display: none; }
.flow__icon {
  position: relative;
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 6px 16px rgba(11, 36, 68, .18);
}
.flow__icon svg { width: 26px; height: 26px; }
.flow__step {
  font-size: 27px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  color: var(--orange);
  flex-shrink: 0;
}
.flow__title, .flow__text { position: relative; }
.flow__title {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 17px; font-weight: 800; color: var(--navy); margin-top: 8px;
}
.flow__text { font-size: 14px; color: var(--text-muted); margin-top: 10px; }

/* ---------- 図解画像（流れ） ---------- */
.flow-figure { margin: 0; }
.flow-figure picture { display: block; }
.flow-figure img {
  display: block;
  width: 100%;
  max-width: 1067px;
  height: auto;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .flow-figure img { max-width: 568px; }
}

/* ---------- 訴求バナー ---------- */
.banner {
  margin-top: 44px;
  padding: 20px 28px 24px;
  border-radius: 10px;
  background: #e8501e;
  color: #fff;
  text-align: center;
  box-shadow: 0 6px 20px rgba(232, 80, 30, .22);
}
.banner__sub {
  font-size: clamp(14px, 1.75vw, 23px);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.55;
  -webkit-text-stroke: .012em #fff;
}
.banner__note { margin-left: .6em; }
.banner__main {
  margin-top: 6px;
  color: #ffe100;
  font-weight: 900;
  font-size: clamp(34px, 6.4vw, 78px);
  line-height: 1.1;
  letter-spacing: -.01em;
  /* 見出しをより太く見せる */
  -webkit-text-stroke: .022em #ffe100;
}
.banner__num { font-size: 1.12em; }
.banner__sm { font-size: .62em; }
.banner__ex { font-size: 1.05em; margin-left: .04em; }

@media (max-width: 600px) {
  .banner { padding: 18px 14px 22px; margin-top: 32px; }
  .banner__note { display: block; margin-left: 0; font-size: .92em; }
  .banner__main { margin-top: 8px; }
}

/* ---------- Table ---------- */
.table { min-width: 640px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 14.5px; text-align: left; vertical-align: top; }
.table thead th { background: linear-gradient(130deg, var(--navy), #1c5490); color: #fff; font-weight: 700; white-space: nowrap; }
.table tbody th { background: var(--bg-soft); color: var(--navy); font-weight: 700; width: 220px; white-space: nowrap; }
.table tr:last-child th, .table tr:last-child td { border-bottom: 0; }
.table td.is-yes { color: var(--green); font-weight: 800; }
.table td.is-no { color: #b6c1cd; font-weight: 800; }

/* ---------- Voices ---------- */
.voice {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  height: 100%;
  overflow: hidden;
}
.voice::before {
  content: "\201C";
  position: absolute; right: 14px; top: -14px;
  font-size: 92px; line-height: 1;
  color: rgba(27, 111, 184, .10);
  font-family: Georgia, serif;
}
.voice > * { position: relative; }
.voice__head { display: flex; align-items: center; gap: 14px; }
.voice__avatar {
  width: 58px; height: 58px; border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}
.voice__avatar svg { width: 30px; height: 30px; }
.voice__name { font-weight: 800; color: var(--navy); font-size: 15px; }
.voice__meta { font-size: 12.5px; color: var(--text-muted); }
.voice__stars { color: #f5a623; letter-spacing: .1em; font-size: 14px; }
.voice__text { margin-top: 14px; font-size: 14.5px; color: var(--text); }
/* SP：お客様の声は横スライド（スワイプ）表示 */
@media (max-width: 900px) {
  .grid.voices {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: -16px;
    padding: 6px 16px 18px;
    scrollbar-width: none;
  }
  .grid.voices::-webkit-scrollbar { display: none; }
  .grid.voices > .voice { flex: 0 0 84%; max-width: 360px; scroll-snap-align: start; height: auto; }
  .grid.voices > .voice.reveal { opacity: 1; transform: none; }
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 880px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px 54px 20px 22px;
  background: none; border: 0;
  font-family: inherit; font-size: 16px; font-weight: 700;
  color: var(--navy); text-align: left; line-height: 1.6;
  cursor: pointer; position: relative;
}
.faq__q::before {
  content: "Q";
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
}
.faq__q::after {
  content: "";
  position: absolute; right: 24px; top: 30px;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: translateY(-4px) rotate(45deg);
  transition: transform .25s;
}
.faq__q[aria-expanded="true"]::after { transform: translateY(2px) rotate(-135deg); }
.faq__a {
  display: none;
  gap: 14px;
  padding: 0 22px 24px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.faq__a.is-open { display: flex; }
.faq__a::before {
  content: "A";
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
}

/* ---------- Media block (ビジュアル＋テキスト) ---------- */
.media { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media--rev .media__visual,
.media--rev .media__img { order: 2; }
.media__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
}
.media__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 3;   /* 4:3 の高さ80% */
  background: var(--bg-soft);
}
.media__img img { width: 100%; height: 100%; object-fit: cover; }
/* Googleマップの埋め込み */
.map-embed {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media--rev .map-embed { order: 2; }
/* 縦を通常（4:3）の70%に抑えた枠 */
.media__img--short { aspect-ratio: 40 / 21; }
/* 写真を切らずに全体を見せる枠（顔が切れないように） */
.media__img--full { aspect-ratio: 2658 / 1656; }
.media__title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--navy); line-height: 1.5; }
.media__text { margin-top: 18px; color: var(--text-muted); font-size: 15px; }

/* ---------- Notice list ---------- */
.notes { display: grid; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.notes li { padding-left: 1.2em; text-indent: -1.2em; }
.notes li::before { content: "※ "; }
.notes--center { text-align: center; }
.notes--center li { padding-left: 0; text-indent: 0; }

/* ---------- CTA ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #071b35 0%, var(--navy) 45%, #17558f 100%);
  color: #fff; padding: 76px 0;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .06) 0 10px, transparent 10px 30px),
    radial-gradient(circle at 12% 110%, rgba(240, 131, 0, .35), transparent 45%);
}
.cta__inner { position: relative; z-index: 1; text-align: center; }
.cta__title { font-size: clamp(22px, 3.8vw, 34px); font-weight: 800; line-height: 1.5; }
.cta__text { margin-top: 14px; color: rgba(255, 255, 255, .82); font-size: 15px; }
.cta__tel { margin-top: 30px; }
.cta__tel a { font-size: clamp(30px, 6vw, 46px); font-weight: 900; color: #fff; letter-spacing: .02em; }
.cta__tel small { display: block; font-size: 13px; color: rgba(255, 255, 255, .78); }

/* お問い合わせ方法カードの大きなアイコン */
.contact-icon {
  width: 84px; height: 84px; margin: 4px auto 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--navy), var(--blue));
  box-shadow: 0 8px 22px rgba(27, 111, 184, .25);
}
.contact-icon svg { width: 42px; height: 42px; }

/* ---------- Form ---------- */
.form { max-width: 820px; margin-inline: auto; }
.form__row { display: grid; grid-template-columns: 240px 1fr; gap: 20px 28px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: start; }
.form__label { font-weight: 700; color: var(--navy); font-size: 15px; padding-top: 12px; }
.req, .any {
  display: inline-block; margin-left: 8px;
  font-size: 11px; font-weight: 700; color: #fff;
  padding: 2px 9px; border-radius: 4px; vertical-align: 2px;
}
.req { background: var(--red); }
.any { background: #98a6b4; }
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form input[type="date"],
.form select,
.form textarea {
  width: 100%;
  /* iOSでは入力欄の内容量に応じて幅が広がり、はみ出して横スクロールが出るため
     最大幅と最小幅を明示して押さえ込む */
  max-width: 100%;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid #cfd9e3;
  border-radius: var(--radius-sm);
  font-family: inherit;
  /* 16px未満だと iOS Safari がフォーカス時に自動ズームし、
     そのまま横スクロールできる状態になるので16pxを下回らせない */
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
}
/* 日付欄はiOSで内部パーツの分だけ横に広がるので、装飾を解除して幅を固定する */
.form input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  min-height: 50px;
}
/* グリッドの子要素は既定で min-width:auto のため、中身が大きいと列ごと広がる */
.form__row > * { min-width: 0; }
.form textarea { min-height: 160px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 3px solid rgba(27, 111, 184, .25);
  border-color: var(--blue);
}
.form__hint { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
/* 送信完了・エラーの表示 */
.form__done, .form__error {
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 28px;
  font-size: 14.5px;
  line-height: 1.9;
}
.form__done { background: #e8f6f0; border: 1px solid #9fd6c0; color: #106145; }
.form__error { background: #fdecec; border: 1px solid #f0b4b4; color: #8c2b2b; }
.form__done-title, .form__error-title { font-weight: 800; font-size: 17px; margin-bottom: 6px; }
.form__error ul { list-style: disc; padding-left: 1.3em; display: grid; gap: 4px; }
/* reCAPTCHA v3 のバッジ。SPでは下部固定バーと重なるので上にずらす */
.grecaptcha-badge { z-index: 80 !important; }
@media (max-width: 900px) {
  .grecaptcha-badge { bottom: 90px !important; }
}
/* 迷惑メール対策の項目。利用者には見せず、支援技術からも外す */
.form__hp {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form__check { display: grid; gap: 10px; }
.form__check label { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; cursor: pointer; }
.form__check input { margin-top: 6px; }
.form__agree { text-align: center; margin-top: 32px; font-size: 14.5px; }
.form__submit { margin-top: 24px; text-align: center; }
.form__note { background: var(--bg-soft); border-radius: var(--radius); padding: 20px 24px; font-size: 13.5px; color: var(--text-muted); }

/* ---------- Definition list (会社概要など) ---------- */
.dl { border-top: 1px solid var(--line); }
.dl__row { display: grid; grid-template-columns: 240px 1fr; border-bottom: 1px solid var(--line); }
.dl__row dt { padding: 18px 20px; background: var(--bg-soft); font-weight: 700; color: var(--navy); font-size: 14.5px; }
.dl__row dd { padding: 18px 20px; font-size: 14.5px; }

/* ---------- Legal document ---------- */
.doc { max-width: 880px; margin-inline: auto; }
.doc h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin-top: 44px; padding-left: 14px; border-left: 5px solid var(--orange); }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-top: 26px; }
.doc p { margin-top: 14px; font-size: 14.8px; }
.doc ol { margin-top: 14px; padding-left: 1.6em; list-style: decimal; display: grid; gap: 8px; font-size: 14.8px; }
.doc ul { margin-top: 14px; padding-left: 1.4em; list-style: disc; display: grid; gap: 8px; font-size: 14.8px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .82); padding: 64px 0 0; font-size: 14px; }
.footer a { color: rgba(255, 255, 255, .82); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer__logo { display: inline-block; }
.footer__logo:hover { opacity: .85; }
.footer__logo .logo__img { height: 68px; }
.footer__addr { margin-top: 18px; font-size: 13.5px; line-height: 1.9; color: rgba(255, 255, 255, .7); }
.footer__tel { margin-top: 16px; }
.footer__tel small {
  display: block;
  font-size: 12.5px; font-weight: 700;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
}
.footer__tel a {
  display: inline-block;
  margin-top: 2px;
  font-size: 26px; font-weight: 800; color: #fff; letter-spacing: .01em;
}
.footer__telnote {
  display: block;
  margin-top: 4px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
}
.footer h4 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: .04em; }
.footer__list { display: grid; gap: 10px; font-size: 13.5px; }
.footer__area {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 22px 0 24px;
}
.footer__area h4 { margin-bottom: 8px; }
.footer__area p {
  font-size: 12.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, .62);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 20px 0 100px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

/* ---------- Fixed bottom bar (SP) ---------- */
.fixed-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid var(--line);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  gap: 8px;
}
.fixed-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  min-height: 54px;
  border-radius: 10px;
  font-size: 12px; font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.fixed-bar a svg { width: 20px; height: 20px; }
.fixed-bar .fb-tel { background: var(--navy); }
.fixed-bar .fb-form { background: var(--orange); }

/* ---------- Reveal animation ----------
   JS が動かない環境では常に表示されるよう、html.js が付いたときだけ隠す */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

/* ---------------------------------------------------------
   ヘッダー：1240px以下はグローバルナビをドロワー（ハンバーガー）化。
   タブレット〜小型ノートで項目が収まらず横スクロールしていたため、
   「ロゴ ＋ 電話・CTA ＋ ハンバーガー」の3要素だけを並べる。
   --------------------------------------------------------- */
@media (max-width: 1240px) {
  .header__inner { gap: 16px; }
  .burger { display: block; order: 3; flex-shrink: 0; }
  .header__cta { order: 2; margin-left: auto; gap: 12px; }
  .header__tel a { font-size: 20px; }
  .gnav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    margin: 0;
    /* 下部固定バー(約74px)にかからない余白。スクロールはさせない */
    padding: 14px 20px calc(88px + env(safe-area-inset-bottom));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s ease;
    visibility: hidden;
    z-index: 90;
  }
  .gnav.is-open { transform: none; visibility: visible; }
  .gnav__list {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: stretch;
    gap: 0;
  }
  .gnav__list > li {
    display: flex; align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .gnav__list > li > a { width: 100%; margin: 0; padding: 15px 8px; font-size: 17px; border-radius: 0; }
  /* ハンバーガーメニュー：テキストの前にアイコン */
  .gnav__list > li > a { display: flex; align-items: center; gap: 12px; }
  .gnav__icon { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue); }
  .gnav__icon svg { width: 30px; height: 30px; }
  .gnav__sp-cta { display: grid; gap: 10px; margin-top: 24px; }
  .gnav__sp-cta .btn { min-height: 52px; }
}

/* タブレット〜小型ノートでは全画面ではなく右からのパネルにする */
@media (min-width: 901px) and (max-width: 1240px) {
  .gnav {
    left: auto;
    width: min(420px, 56vw);
    padding: 14px 20px 24px;
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 32px rgba(16, 32, 56, .10);
  }
}

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  /* ロゴは高さ58px基準で、狭い端末では幅に合わせて縮める。
     ロゴはフレックスアイテムなので、幅を伸縮させると max-height だけが効いて
     横に伸びてしまう。高さを基準にし、object-fit で比率を保証する */
  .header__inner { width: calc(100% - 20px); gap: 10px; }
  .logo { flex: 0 1 auto; min-width: 0; }
  .logo__img {
    height: 58px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .burger { width: 44px; height: 44px; flex-shrink: 0; }
  .burger span { left: 11px; }
  .burger span:nth-child(1) { top: 15px; }
  .burger span:nth-child(2) { top: 21px; }
  .burger span:nth-child(3) { top: 27px; }
  .footer__logo .logo__img { height: 60px; width: auto; max-height: none; }
  .section { padding: 60px 0; }

  /* SP用バナー（1136×1703）に切り替わるので比率も合わせる。
     画像は index.html の <picture><source media="(max-width: 900px)"> で切り替え */
  .hero__slides { aspect-ratio: 1136 / 1703; }
  .grid--3, .grid--4, .points, .flow { grid-template-columns: repeat(2, 1fr); }
  .worry__grid { grid-template-columns: repeat(2, 1fr); }
  /* SPではレッカー車は非表示。故障車の写真だけ下部に薄く敷く */
  .worry::after { display: none; }
  .worry::before {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(96%, 460px);
    transform: translateX(-50%);
    opacity: .22;
  }
  .media { grid-template-columns: 1fr; gap: 28px; }
  .media--rev .media__visual,
  .media--rev .media__img,
  .media--rev .map-embed { order: 0; }
  /* SPでは画像を80%幅にして中央寄せ */
  .media__img, .media__visual, .map-embed { width: 80%; margin-inline: auto; }
  .flow__item::after { display: none; }

  /* ドロワー化の共通指定は max-width:1240px 側にまとめてある。
     SPでは電話・CTAは下部固定バーに任せてヘッダーからは外す */
  .burger { margin-left: auto; }
  .header__cta { display: none; }

  .form__row, .dl__row { grid-template-columns: 1fr; gap: 8px; }
  .form__row { padding: 18px 0; }
  .form__label { padding-top: 0; }
  .dl__row dt { padding: 14px 16px; }
  .dl__row dd { padding: 14px 16px; }

  body { padding-bottom: 74px; }
  .fixed-bar { display: flex; }
  .footer__bottom { padding-bottom: 24px; }
}

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

  /* SPでは下層ページの見出し帯を約70%の高さに詰める（文字サイズは据え置き） */
  .page-head { padding: 39px 0; }

  /* SPでは流れのアイコンも左に配置する */
  .flow__item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center;
    text-align: left;
    padding: 22px 20px;
  }
  .flow__icon { grid-row: 1 / span 2; width: 52px; height: 52px; margin: 0; }
  .flow__icon svg { width: 26px; height: 26px; }
  .flow__step { font-size: 24px; }
  .flow__title { justify-content: flex-start; }
  .flow__title, .flow__text { grid-column: 2; }
  .flow__title { margin-top: 2px; }
  .flow__text { margin-top: 6px; }

  /* SPではアイコンをテキストの左に配置する */
  .point {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 24px 22px;
  }
  .point__icon {
    grid-row: 1 / span 2;
    width: 52px; height: 52px;
    margin: 0;
    border-radius: 14px;
  }
  .point__icon svg { width: 26px; height: 26px; }
  .point__title { grid-column: 2; align-self: center; font-size: 17px; }
  .point__text { grid-column: 2; margin-top: 10px; }
  .wrap { width: calc(100% - 32px); }
  .section { padding: 48px 0; }
  .grid--3, .grid--4, .grid--2, .points, .flow { grid-template-columns: 1fr; }
  /* プランカード：SPは文字サイズと余白だけ調整 */
  .plan-head { padding: 48px 42% 18px 16px; }
  .plan-head__name { font-size: 17px; line-height: 1.35; }
  .plan-head__price { font-size: 12px; margin-top: 8px; white-space: nowrap; }
  .plan-head__price strong { font-size: 27px; }
  .plan-head__term { font-size: 10.5px; padding: 3px 9px; margin-top: 8px; }
  .plan-head .card__ribbon { top: 14px; left: 14px; }

  .worry__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .worry__card {
    min-height: 0;
    padding: 20px 12px;
    gap: 10px;
    font-size: 12.5px;
    line-height: 1.6;
  }
  .worry__card strong { font-size: 15px; }
  .worry__icon { width: 48px; height: 48px; }
  .worry__icon svg { width: 25px; height: 25px; }
  /* アイコンの横にテキスト */
  .worry__card { grid-template-columns: 40px 1fr; gap: 10px; padding: 12px 10px; min-height: 0; font-size: 11.5px; line-height: 1.45; }
  .worry__card strong { font-size: 14px; line-height: 1.35; }
  .worry__icon { width: 40px; height: 40px; }
  .worry__icon svg { width: 21px; height: 21px; }
  .worry__text { display: block; line-height: 1.5; }
  .grid { gap: 20px; }
  .hero__dots { padding: 12px 0; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .sec-head { margin-bottom: 32px; }
}

/* =========================================================
   VANガレージ（カスタム＆リペア）ページ
   ========================================================= */

/* ---------- ヒーロー（看板イメージ） ---------- */
.vg-hero {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  padding: 48px 0 36px;
}
/* 緑のブラシ帯（斜め） */
.vg-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(112deg, transparent 0 6%, #2f6b2c 6% 8%, transparent 8%),
    linear-gradient(112deg, transparent 0 10%, #3f8a3a 10% 52%, transparent 52%),
    linear-gradient(112deg, transparent 0 55%, #2f6b2c 55% 57%, transparent 57%);
}
/* 網点（ハーフトーン） */
.vg-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(140, 220, 120, .7) 1.6px, transparent 2.2px);
  background-size: 13px 13px;
  -webkit-mask-image:
    radial-gradient(ellipse 34% 55% at 78% 8%, #000 0 40%, transparent 100%),
    radial-gradient(ellipse 30% 50% at 22% 100%, #000 0 40%, transparent 100%);
          mask-image:
    radial-gradient(ellipse 34% 55% at 78% 8%, #000 0 40%, transparent 100%),
    radial-gradient(ellipse 30% 50% at 22% 100%, #000 0 40%, transparent 100%);
  opacity: .75;
  pointer-events: none;
}
.vg-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px 40px;
  align-items: center;
}
.vg-hero__brand { grid-column: 1 / -1; margin: 0; line-height: 0; text-align: center; }
.vg-hero__brand img {
  width: min(100%, 880px);
  height: auto;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, .9)) drop-shadow(0 6px 14px rgba(0, 0, 0, .5));
}
.vg-hero__img { position: relative; }
.vg-hero__img img { width: 100%; height: auto; filter: drop-shadow(0 18px 20px rgba(0, 0, 0, .55)); }
.vg-hero__text { text-align: left; }
.vg-hero__dept {
  display: inline-block;
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em;
  color: #0a0a0a; background: #ffe600;
  padding: 3px 12px; border-radius: 4px;
}
.vg-hero__catch {
  margin-top: 14px;
  font-size: clamp(34px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: #ffe600;
  text-shadow: 0 3px 0 #0a0a0a, 0 0 18px rgba(0, 0, 0, .8);
}
.vg-hero__catch span { display: block; font-size: .62em; margin-top: .14em; white-space: nowrap; }
.vg-hero__en {
  margin-top: 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(14px, 1.6vw, 21px);
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}
.vg-hero__tel { margin-top: 10px; line-height: 1; }
.vg-hero__tel a {
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -.02em;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 4px 0 #0a0a0a, 0 0 22px rgba(0, 0, 0, .8);
}
.vg-hero__tel small { display: block; margin-top: 10px; font-size: 13px; font-weight: 700; color: rgba(255, 255, 255, .85); letter-spacing: .06em; }
@media (max-width: 900px) {
  .vg-hero { padding: 28px 0 26px; }
  .vg-hero__inner { grid-template-columns: 1fr; gap: 16px; }
  .vg-hero__brand { text-align: center; }
  .vg-hero__brand img { width: min(78%, 420px); }
  .vg-hero__img { max-width: 320px; margin-inline: auto; }
  .vg-hero__text { text-align: center; }
  .vg-hero__dept { font-size: 11.5px; letter-spacing: .04em; }
  .vg-hero__catch span { font-size: .7em; }
}

/* ---------- カスタム例（コンパクト4列） ---------- */
.vg-custom { justify-content: center; }
/* アイコンの横にテキスト（横並び） */
.vg-custom .visual {
  min-height: 96px; padding: 18px 16px;
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 14px;
  text-align: left;
}
.vg-custom .visual__icon { width: 40px; height: 40px; flex: 0 0 auto; }
.vg-custom .visual__label { font-size: 15px; line-height: 1.2; }
.vg-custom .visual__sub { margin-top: 3px; font-size: 12px; }
.vg-custom .visual__label + .visual__sub { display: block; }
.vg-custom .visual__text { display: flex; flex-direction: column; }
.vg-custom .card__body { padding: 18px 18px 20px; }
.vg-custom .card__title { font-size: 16px; }
.vg-custom .card__desc { font-size: 13.5px; margin-top: 6px; }
.vg-custom .card__desc--only { margin-top: 0; }
@media (max-width: 900px) { .vg-custom { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.vg-sales { max-width: 820px; margin-inline: auto; }
.vg-sales .visual, .vg-sales .plan-head { height: 200px; min-height: 0; }
/* 販売カード：右に写真、左にテキスト（レンタルリースのプランカードと同じ見せ方） */
.plan-head--sales, .plan-head--kuro {
  --plan-photo: url("../images/van/hanbai.jpg");
  --plan-pos: right center;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 20px 40% 20px 22px;
}
.plan-head--kuro { --plan-photo: url("../images/van/kuro.jpg"); }
.plan-head--sales .plan-head__name, .plan-head--kuro .plan-head__name { font-size: 18px; }
.plan-head--sales .plan-head__term, .plan-head--kuro .plan-head__term { margin-top: 10px; }
@media (max-width: 600px) {
  /* SPでは販売カードを1列にして写真（ナンバー）が見えるようにする */
  .vg-sales { grid-template-columns: 1fr; }
  .vg-sales .visual, .vg-sales .plan-head { height: 180px; }
  .plan-head--sales, .plan-head--kuro { padding-right: 46%; }
  .plan-head--sales .plan-head__name, .plan-head--kuro .plan-head__name { font-size: 15.5px; }
}

.card__title--icon { display: flex; align-items: center; gap: 10px; }
.card__icon {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy); color: #fff;
}
.card__icon svg { width: 19px; height: 19px; }
.vg-repair .card__img { aspect-ratio: 5 / 3; overflow: hidden; background: var(--bg-soft); }
.vg-repair .card__img img { width: 100%; height: 100%; object-fit: cover; }
/* ---------- 修理カード：SPでは横2列 ---------- */
@media (max-width: 600px) {
  .vg-repair { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vg-repair .visual { min-height: 96px; padding: 14px 10px; }
  .vg-repair .visual__icon { width: 32px; height: 32px; }
  .vg-repair .visual__label { font-size: 12px; }
  .vg-repair .card__body { padding: 14px 14px 16px; }
  .vg-repair .card__title { font-size: 15px; }
  .vg-repair .card__desc { font-size: 12.5px; margin-top: 6px; }
}

/* ---------- カラー例（イラスト1台＋色名リスト） ---------- */
.vg-sample { margin: 0 auto; max-width: 560px; text-align: center; }
.vg-sample img { width: 100%; height: auto; }
.vg-sample figcaption { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 16px; font-weight: 800; color: var(--navy); }
.vg-swatches { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 28px; }
.vg-swatches li { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--navy); }
.vg-sample i, .vg-swatches i { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.vg-colormedia {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "visual text";
  align-items: center;
}
.vg-colormedia__visual { grid-area: visual; }
.vg-colormedia__text { grid-area: text; }
.vg-colormedia .vg-swatches { grid-area: swatch; margin-top: 0; gap: 8px 20px; }
.vg-colormedia .vg-swatches li { font-size: 14px; }
.vg-colormedia .sec-head__en { margin-bottom: 8px; }
.vg-colormedia .media__text { line-height: 1.9; }
/* SPでも「左：イラスト／右：テキスト」の横並びを維持。色名は下に全幅で */
@media (max-width: 900px) {
  .vg-colormedia {
    grid-template-columns: 46% 1fr;
    grid-template-areas: "visual text";
    gap: 16px 14px;
  }
  .vg-colormedia .sec-head__en { font-size: 11px; letter-spacing: .16em; margin-bottom: 4px; }
  .vg-colormedia .media__title { font-size: clamp(16px, 4.4vw, 22px); line-height: 1.4; }
  .vg-colormedia .media__text { font-size: 12.5px; line-height: 1.7; margin-top: 10px; }
  .vg-colormedia .notes { display: none; }
  .vg-sample figcaption { font-size: 13px; }
  .vg-colormedia .vg-swatches { justify-content: center; gap: 6px 14px; }
  .vg-colormedia .vg-swatches li { font-size: 12.5px; }
}

/* ---------- 「ご要望をお聞かせください」帯 ---------- */
.vg-ask {
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.vg-ask__title { font-size: clamp(20px, 3vw, 28px); font-weight: 900; color: var(--navy); line-height: 1.5; }
.vg-ask__text { margin-top: 12px; font-size: 15px; color: var(--text-muted); }
.vg-ask .btn-row { margin-top: 22px; }

/* ---------- Print ---------- */
@media print {
  .header, .footer, .fixed-bar, .hero__dots, .cta { display: none !important; }
  body { padding: 0; }
}

/* ---------- Utility: visually hidden ---------- */
.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
