:root {
  --bg: #e1e1e1; /* ページの薄いグレー */
  --ink: #0b0f19; /* 文字色 */
  --blue: #0e3f86;
  --red: #c53632;
  --muted: #6b7785;
  --accent: #0e3f86;
  --nav-underline: 220px; /* 線の長さ（デザイン通り長め） */
  --nav-underline-h: 4px;
  --maxw: 1600px;
  --scroll-fg: #111;
  --scroll-dim: #7a7d82;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "", "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  letter-spacing: 0.02em;
}
a {
  text-decoration: none;
}
/* ============ Header ============ */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
}
header {
  position: static;
  top: 0;
  padding-bottom: 22px;
  box-shadow: 3px 3px 3px #b4b4b4;
  width: 100%;
  z-index: 10; /* 固定したい場合は sticky */
}
.header-group_head {
  display: flex;
  justify-content: space-around;
}
.header-group_head p {
  font-weight: 900;
}
.c_blue {
  color: var(--blue);
}
.c_red {
  color: var(--red);
}
.bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-weight: 700;
}
.logo img {
  height: 40px;
  display: block;
}

nav {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-around;
  width: 100%;
}
.nav-item {
  width: 11vw;
}
/* 文字色を青/赤に。小見出しも同色に */
.nav-item.blue {
  color: var(--blue);
}
.nav-item.red {
  color: var(--red);
}
.nav-item.blue small {
  color: var(--blue);
  opacity: 0.9;
}
.nav-item.red small {
  color: var(--red);
  opacity: 0.9;
}

/* アンダーラインの造形を“長め・太め・左起点”に調整 */
.nav-item {
  font-weight: 600;
  letter-spacing: 0.14em;
  position: relative;
  cursor: pointer;
  font-size: 1vw;
  text-decoration: none;
}
.nav-item small {
  margin-top: 6px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 7%;
  font-size: 0.6vw;
}

/* 初期は薄め・6割スケール、ホバーで1.0に */
.nav-item::after {
  content: "";
  position: absolute;
  left: 3vw;
  bottom: -14px;
  width: 8vw;
  height: 2px;
  border-radius: 3px;
  opacity: 0.95;
  transform: scaleX(0.62);
  transform-origin: left;
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

/* 線の色は文字色に合わせる */
.nav-item.blue::after {
  background: var(--blue);
  filter: saturate(110%);
}
.nav-item.red::after {
  background: var(--red);
  filter: saturate(110%);
}

/* ホバー/フォーカスで線がスッと伸び、色も少し濃く */
.nav-item:hover::after,
.nav-item:focus-visible::after {
  transform: scaleX(0.7);
  opacity: 1;
  filter: saturate(130%) brightness(1.05);
}

/* アクセシビリティ：キーボードフォーカス縁取り（控えめ） */
.nav-item:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

/* 画面幅が狭い時は線を少し短く・太さも控えめ */
@media (max-width: 1024px) {
  :root {
    --nav-underline: 180px;
    --nav-underline-h: 3px;
  }
  .nav-l,
  .nav-r {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  :root {
    --nav-underline: 140px;
  }
  .nav-item {
    font-size: 16px;
    letter-spacing: 0.12em;
  }
  .nav-item small {
    font-size: 11px;
  }
}
/* ============ Side Scroll Label ============ */

/* 画面左に固定（必要なら親要素にposition不要） */
.scroll-indicator {
  position: absolute;
  left: 4%;
  top: 53%;
  height: 28vh;
  width: 44px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  pointer-events: none;
}

/* 縦書きラベル（縁取りで視認性UP） */
.scroll-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 27px;
  color: var(--scroll-fg);
  text-shadow: 1px 1px 0 rgba(14, 63, 134, 0.35),
    -1px -1px 0 rgba(197, 54, 50, 0.25);
  position: relative;
}

/* 縦ライン（下に向かって描画アニメ） */
.scroll-line {
  position: relative;
  width: 3px;
  top: 7%;
  flex: 1 1 auto;
  border-radius: 2px;
  overflow: hidden;
}
.scroll-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: var(--scroll-fg);
  border-radius: 2px;
  animation: scrollGrow 2.2s ease-out infinite;
}
@keyframes scrollGrow {
  0% {
    height: 0;
    opacity: 1;
  }
  60% {
    height: 100%;
    opacity: 1;
  }
  80% {
    height: 100%;
    opacity: 0.25;
  }
  100% {
    height: 0;
    opacity: 0.25;
  } /* すっと消えて再スタート */
}

/* 先端の矢印（ちょい跳ねアニメ） */
.scroll-arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--scroll-fg);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.2));
  animation: scrollBob 1.1s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.95;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

/* 背景が暗い/明るいで色を切り替えたい場合はクラスで調整 */
.on-dark {
  --scroll-fg: #fff;
  --scroll-dim: #cfd2d6;
}
.on-light {
  --scroll-fg: #111;
  --scroll-dim: #7a7d82;
}

/* 小さな画面では控えめに or 隠す */
@media (max-width: 768px) {
  .scroll-indicator {
    left: 8px;
    height: 25vh;
  }
  .scroll-label {
    font-size: 18px;
  }
}

/* ユーザーが“動き少なめ”指定の場合はアニメ停止 */
@media (prefers-reduced-motion: reduce) {
  .scroll-line::before,
  .scroll-arrow {
    animation: none;
  }
}

/* ============ Hero ============ */
.hero {
  position: relative;
}
.hero-inner {
  position: relative;
  padding: 20px 20px 40px;
}
.stage {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* 車画像 */
.car {
  position: relative;
  display: block;
  width: min(1150px, 92vw);
  margin: 0 auto;
}
.car img {
  width: 100%;
  height: auto;
}

/* CTA ボタン行 */
.ctas {
  display: flex;
  gap: min(6vw, 40px);
  justify-content: center;
  align-items: flex-start;
  margin-top: 26px;
  flex-wrap: wrap;
}
.cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 30px;
  color: #d9d9d9;
  text-decoration: none;
  min-width: clamp(260px, 30vw, 420px);
  justify-content: center;
  box-shadow: 4px 6px 7px 3px rgba(0, 0, 0, 0.08);
}
.cta .play {
  font-size: 0;
  width: 0;
  height: 0;
  border-left: 22px solid #d9d9d9;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
}
.cta.blue {
  background: #1f609f;
}
.cta.red {
  background: #b91e2a;
}

.cta-caption {
  max-width: clamp(260px, 30vw, 420px);
  text-align: center;
  margin: 10px auto 0;
  color: #2b2f37;
  font-weight: 400;
  font-size: 1.3vw;
  line-height: 1.2;
}

/* 影（楕円グロー） */
.glow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 42px;
  bottom: -26px;
  filter: blur(14px);
  opacity: 0.55;
}
.glow.blue {
  background: radial-gradient(
    80% 100% at 50% 50%,
    rgba(30, 90, 168, 0.45),
    rgba(0, 0, 0, 0) 70%
  );
}
.glow.red {
  background: radial-gradient(
    80% 100% at 50% 50%,
    rgba(198, 42, 42, 0.45),
    rgba(0, 0, 0, 0) 70%
  );
}

/* ============ Strength Section ============ */
.strength {
  padding: 60px 20px 90px;
  background: var(--bg);
}
.strength .wrap {
  max-width: 1400px;
}
.strength-header {
  margin: 0 auto 26px;
  max-width: var(--maxw);
}
.strength-title {
  /* font-size: 48px; */
  letter-spacing: 0.25em;
  font-weight: 600;
  margin: 0 0 8px;
}
.strength-sub {
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
  padding-left: 6px;
  font-size: 1.4rem;
}
.strength-sub::after {
  content: "";
  display: block;
  width: 200px;
  height: 6px;
  background: #5b5e64;
  border-radius: 3px;
  margin-top: 6px;
}

.strength-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.strength-photo {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  position: relative;
}
.strength-photo img {
  position: absolute;
  height: 100%;
  max-width: 700px;
  object-fit: cover;
  display: block;
  left: -20%;
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 32px;
  align-items: flex-start;
}
.fact {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  
}
.fact .num {
  font-size: 160px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  font-family:"Oswald";
}
.fact h3 {
  font-size: 23px;
  line-height: 1.1;
  margin: 22px 0 6px;
  font-weight: 800;
}
.fact p {
  margin: 0;
  color: #5b5b5b;
  font-weight: 400;
  line-height: 1.2;
}

.more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
  margin-left: 57%;
}
.more a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  font-size: 34px;
  text-decoration: none;
  color: #111;
  padding: 12px 18px;
  border-bottom: 3px solid #222;
}
.arrow {
  width: 18px;
  height: 18px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-45deg);
}

/* ===== FLOW Section ===== */
.flow {
  background: var(--bg);
  padding: 64px 20px 90px;
  color: #111;
}
.flow-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* 見出し */

.flow-sub {
  margin-top: 8px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.flow-sub::after {
  content: "";
  display: block;
  width: 220px;
  height: 6px;
  background: #5b5e64;
  border-radius: 3px;
  margin-top: 16px;
}

/* ステップ */
.flow-steps {
  list-style: none;
  padding: 0;
  margin: 34px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
  max-width: 1058px;
}
.flow-step {
  text-align: center;
}

.flow-icon {
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.flow-icon img {
  width: 100%;
  object-fit: contain;
}

.flow-step h3 {
  font-size: 28px;
  margin: 6px 0 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.flow-step p {
  width: min(360px, 92%);
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
  color: #3d3f45;
  font-weight: 600;
}

/* 矢印（左右） */
.flow-arrow {
  align-self: center;
  justify-self: center;
  width: 0;
  margin-top: -308%;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #111;
}
/* ===== CASES / CONTACT (row layout) ===== */
.section {
  background: var(--bg);
  padding: 70px 20px;
  color: #111;
}
.section-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  /* font-size: 48px; */
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
}
.section-sub {
  margin-top: 8px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.section-sub::after {
  content: "";
  display: block;
  width: 267px;
  height: 6px;
  background: #5b5e64;
  border-radius: 3px;
  margin-top: 16px;
}
.section .left {
  padding-left: 3rem;
  font-size: 1.1rem;
  width: 109%;
}
#contact.section .row {
  align-items: end;
}
#contact .right {
  justify-content: center;
}

/* 行レイアウト */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
/* row */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 28px;
}
#cases.row {
  align-items: center;
}
.left {
  flex: 1 1 56%;
}
.right {
  flex: 0 0 51%;
  display: flex;
  gap: 143px;
  justify-content: flex-end;
}

/* text blocks */
.lead {
  font-weight: 600;
  line-height: 1.9;
}

/* SNS buttons */

.sns-btn img {
  width: 258px;
}

.sns-btn:hover {
  opacity: 0.88;
}

/* phone + LINE */
.tel {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tel img {
  width: 60px;
  height: 60px;
}

.line-btn img {
  width: 100%;
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--bg);
  padding: 70px 20px 90px;
  color: #0f0f10;
}
.faq.second {
  background-color: #0f0f10;
}
.faq header {
  color: #fff;
}
.faq-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* 見出し */
#faq .faq-title,
#faq .faq-sub {
  color: #000;
}
#faq2 .faq-title,
#faq2 .faq-sub {
  color: #fff;
}
.faq-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0;
}
.faq-sub {
  margin-top: 8px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.faq-sub::after {
  content: "";
  display: block;
  width: 180px;
  height: 6px;
  background: #5b5e64;
  border-radius: 3px;
  margin-top: 8px;
}

/* レイアウト：左 見出し / 右 リスト */
.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 18px;
}

/* リスト本体 */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10rem;
}

/* details アコーディオン */
.faq-item {
  overflow: hidden;
}

/* 質問行 (summary) */
.faq-q {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 24px 22px 110px;
  background: #fff;
  font-weight: 900;
  font-size: 20px;
}
.faq-q::-webkit-details-marker {
  display: none;
} /* Safari等のデフォ矢印を消す */
.faq-q::before {
  /* 左の青帯 + 'Q' */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: #1e5aa8;
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.faq-q::after {
  /* 右端の + / - 記号 */
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-56%);
  font-size: 52px;
  font-weight: 100;
}
.faq-item[open] .faq-q::after {
  content: "—";
  transform: translateY(-58%) translateX(21%) scaleX(0.7);
} /* マイナス表現 */

/* 回答ブロック */
/* アニメーション用ラッパー */
.faq-a {
  margin: 0;
  padding: 20px 64px 20px 110px;
  background: #b9b9b9;
  font-weight: 700;
  line-height: 1.9;
  position: relative;
  overflow: hidden;
  max-height: 0; /* 初期は閉じる */
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  content: "";
  background: #b91e2a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] .faq-a {
  padding: 20px 64px 20px 110px; /* 開いた時だけ余白復活 */
  max-height: 800px; /* 十分大きい値を設定 */
}
.faq-a span,
.faq-q span {
  position: absolute;
  left: 3rem;
  font-size: 2rem;
}
.faq-q span {
  top: 14%;
}
.faq-a span {
  top: 0.5rem;
}
/* ===== ACCESS Section ===== */
.access {
  background: var(--bg);
  padding: 70px 20px 140px;
  color: #111;
  position: relative;
  overflow: hidden;
}
.access-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.access-title {
  letter-spacing: 0.18em;
  margin: 0;
}
.access-sub {
  margin-top: 8px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.access-sub::after {
  content: "";
  display: block;
  width: 220px;
  height: 6px;
  background: #5b5e64;
  border-radius: 3px;
  margin-top: 8px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  margin-top: 28px;
}
.map {
  aspect-ratio: 16 / 11;
  background: #dcdcdc;
  border-radius: 6px;
  overflow: hidden;
  width: 67%;
  height: 418px;
  margin: 12px 93px 0 auto;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.access-grid .card {
  max-width: 447px;
  background-color: #fff;
  text-align: left;
  color: #000;
  border-radius: 0;
  padding: 20px 45px;
}
.access-grid .card p {
  color: #000;
}
.card {
  color: #fff;
  border-radius: 6px;
  padding: 26px 28px;
  box-shadow: 0 14px 18px rgba(0, 0, 0, 0.18);
  max-width: 300px;
}
.card img {
  width: 100%;
}
.card dl {
  display: grid;
  grid-template-columns: 88px 1fr;
  row-gap: 12px;
  column-gap: 10px;
  margin: 16px 0 0;
}
.card dt {
  font-weight: 900;
  color: #1e5aa8;
}
.card dt.openH {
  color: #000;
}
.card dt.holiday {
  color: #b91e2a;
}
.card dd {
  margin: 0;
  font-weight: 700;
}

.card .name {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
}

/* 左側の縦ラベル */
.side-label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.15em;
  font-weight: 800;
}
.side-label::after {
  content: "";
  display: block;
  width: 2px;
  height: 120px;
  background: #111;
  margin: 12px auto 0;
  position: relative;
}
.side-label::before {
  content: "";
  position: absolute;
  bottom: -116px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
}

/* セクション下部の斜め帯 */
.access::after {
  content: "";
  position: absolute;
  left: -10vw;
  right: -10vw;
  bottom: -120px;
  height: 220px;
  background: #111;
  transform: skewY(-6deg);
}

/* ===== COATING Section ===== */
.coating {
  background: #0f0f10;
  color: #fff;
  padding: 48px 0 90px;
}
.coating-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 上部：動画＋丸ボタン */
.media {
  position: relative;
  margin: 0 auto;
  background: #5f5f61;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 9; /* 比率固定（iframe/videoどちらでも） */
}
.media > iframe,
.media > video {
  width: 100%;
  height: 100%;
  display: block;
}

/* 丸い LINE ボタン */
.line-fab {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 140px;
  height: 140px;
  background: #e1e1e1;
  color: #111;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
}
.line-fab small {
  display: block;
  font-weight: 800;
}
.line-fab .chev {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1;
}

/* 見出し */
.coat-title,.hd-ttl,.faq-title,.access-title,.section-title,.flow-title,.strength-title {
  margin: 36px 0 0;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.coat-title,.sb-title,.flaqs-title,.hd-ttl,.faq-title,.access-title,.section-title,.flow-title,.strength-title {
  font-size: 44px;
}
.coat-sub {
  margin-top: 10px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
}
.coat-sub::after {
  content: "";
  display: block;
  width: 210px;
  height: 6px;
  background: #9da0a4;
  border-radius: 3px;
  margin-top: 10px;
}

/* 下部レイアウト */
.coat-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 34px;
}

/* 左カラム（リード文） */
.lead-catch {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.1em;
  margin: 5rem 0 20px 5rem;
}
.lead-text {
  color: #d7d8da;
  font-weight: 700;
  line-height: 1.9;
}

/* 右カラム：3カード */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  align-items: baseline;
}
.card {
  text-align: center;
}
.card-logo {
  width: 67% !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
}
.card-logo.wide {
  width: 100% !important;
}

/* 説明テキスト */
.card p {
  color: #d7d8da;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 14px;
}

/* CTAボタン（ゴールド／ブルー） */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.btn-gold {
  background: linear-gradient(#d6b07a, #b98d55);
  color: #1a140c;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 8px 14px rgba(0, 0, 0, 0.35);
}
.btn-blue {
  background: linear-gradient(#1aa2ff, #0d6ac6);
  color: #fff;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 8px 14px rgba(0, 0, 0, 0.35);
}

/* ===== SCRATCH BARRIER – layout tune ===== */

/* セクション共通 */
.sb {
  background: #0f0f10;
  color: #f5f5f5;
  padding: 64px 20px 90px;
}
.sb .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.sb-title {
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
}
.sb-sub {
  margin-top: 10px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 1.4rem;
}
.sb-sub::after {
  content: "";
  display: block;
  width: 260px;
  height: 7px;
  background: #8e9297;
  border-radius: 3px;
  margin-top: 35px;
}

/* 左右レイアウト */
.sb-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}
.sb-left {
  min-width: 0;
}
.sb-right {
  position: relative;
}

/* レイヤー図（左上） */
.sb-layer {
  max-width: 520px;
  margin: 18px 0 10px;
}
.sb-layer img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* テキスト */
.sb-catch {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  margin: 24px 0 10px;
  letter-spacing: 0.02em;
}
.sb-body {
  font-weight: 400;
  line-height: 2;
  color: #e9eaec;
}
.sb-body p {
  margin: 0.6em 0;
}

/* チップ（ボタン風） */
.sb-chips {
  margin-top: 24px;
}
.sb-chips img {
  width: 100%;
}
/* 右：車＋縦ロゴ */
.sb-car {
  position: relative;
  margin-top: 18px;
  height: 316px;
}
.sb-car img {
  width: 32vw;
  position: absolute;
  height: auto;
  display: block;
  left: -17vw;
}

/* 縦ロゴを車にオーバーレイ */

/* 工程リスト（車の右肩に縦並び） */
.sb-steps {
  position: absolute;
  right: 12vw;
  width: 30%;
  top: -23%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}
.sb-vertical-logo {
  position: absolute;
  right: 0vw;
  top: -84%;
  max-width: 169px;
  max-height: none;
  pointer-events: none;
  opacity: 0.9;
  left: inherit !important;
}

.sb-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.sb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfd2d6;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.13) inset;
}
.sb-step.yellow .sb-dot {
  background: #f2b531;
}
.sb-step.gold .sb-dot {
  background: #d29a31;
}
.sb-label {
  white-space: nowrap;
  color: #f1f2f3;
  text-shadow: 0 1px 0 #000;
}

/* 価格ブロック（右下寄せ、大きめ） */
.sb-price {
  margin-top: 14px;
  text-align: right;
  position: relative;
}
.sb-price .lead {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.sb-price .yen {
  text-align: center;
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 2px 0;
}
.sb-price .tax {
  font-size: 24px;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 4px;
  position: absolute;
  right: 17%;
  top: 25%;
}
.sb-notes {
  margin-top: 18px;
  color: #d5d7da;
  font-weight: 700;
  line-height: 1.9;
}
.sb-notes img {
  width: 60%;
}
.sb-notes li {
  margin: 0.25em 0;
}

/* ===== FLAQS Section ===== */
.flaqs {
  background: #0f0f10;
  color: #f5f5f5;
  padding: 64px 20px 90px;
}
.flaqs .wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* 見出し */
.flaqs-title {
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
}
.flaqs-sub {
  margin-top: 10px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  color: #fff;
}
.flaqs-sub::after {
  content: "";
  display: block;
  width: 240px;
  height: 7px;
  background: #8e9297;
  border-radius: 3px;
  margin-top: 10px;
}

/* レイアウト：左右＋中央ビジュアル */
.flaqs-grid {
  display: grid;
  grid-template-columns: 1fr 640px 1fr;
  gap: 0px;
  align-items: center;
  margin-top: 28px;
}

/* 左右のロゴ＆テキスト */
.fq-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.fq-logo {
  height: 86px;
  width: 61%;
  object-fit: contain;
}
.fq-desc {
  font-weight: 400;
  line-height: 2;
  color: #e8eaec;
  font-size: 1vw;
}

/* 中央ビジュアル */
.fq-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}
.fq-splash {
  position: absolute;
  inset: 0;
  background: url(images/water-splash.png) center/contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}
.fq-car {
  position: relative;
  width: 100%;
  margin-left: 4%;
  max-width: 100%;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}

/* バッジ（円） */
.badge {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35),
    0 10px 18px rgba(0, 0, 0, 0.45);
}
.badge.gold {
  background: radial-gradient(
    130% 130% at 30% 20%,
    #e8d4b0,
    #bf8e4e 60%,
    #7e532b 100%
  );
}
.badge.silver {
  background: radial-gradient(
    130% 130% at 30% 20%,
    #bfc3c7,
    #888d94 60%,
    #5a6068 100%
  );
}
.badge.blue {
  background: radial-gradient(
    130% 130% at 30% 20%,
    #2ab0ff,
    #0c6abd 60%,
    #0a3f6d 100%
  );
}

/* バッジ配置（お好みで微調整） */
.badge.top {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.badge.lt {
  left: 20px;
  top: 110px;
}
.badge.rt {
  right: 20px;
  top: 110px;
}
.badge.lb {
  left: 110px;
  bottom: -10px;
}
.badge.rb {
  right: 110px;
  bottom: -10px;
}

/* 右側の丸アイコン2つ（半透明） */
.badge.ghost {
  opacity: 0.75;
  filter: saturate(0.8);
}

/* 価格帯 */
.fq-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  position: relative;
}
.fq-price .lead {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #e9eaec;
}
.fq-price .yen {
  font-size: 5rem;
  font-weight: 700;
  margin-right: 3%;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.fq-price .tax {
  font-size: 24px;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 4px;
  position: absolute;
  right: 0px;
  top: 38%;
}
.fq-price span {
  font-size: 1.8rem;
  position: absolute;
  top: 39%;
  left: 69%;
}
.fq-note {
  font-weight: bold;
  margin-top: 1%;
  background: #007cc3;
  padding: 3px 5px;
  color: #000;
  border-radius: 0;
}

/* ===== CONTACT / SNS – premium layout ===== */
.ctsns {
  background: #0f0f10;
  color: #f5f5f5;
  padding: 64px 20px 100px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}
.ctsns .wrap {
  max-width: 1400px;
  margin: 0 auto;
}

/* 見出し */
.hd {
  margin: 0 0 18px;
}
.hd.sns {
  margin-top: 3rem;
}

.hd-sub {
  margin-top: 10px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}
.hd-sub::after {
  content: "";
  display: block;
  width: 240px;
  height: 7px;
  background: #8e9297;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== CONTACT block ===== */
#contact .row {
  justify-content: space-evenly;
  align-items: baseline;
}
.ct-copy {
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.01em;
}
.ct-copy span {
  border-bottom: 5px solid #95833a;
}
.ct-note {
  margin-top: 10px;
  color: #cfd1d3;
  font-weight: 700;
  line-height: 1.9;
}

.line-btn {
  display: inline-block;
  margin-top: 18px;
  border-radius: 999px;
}
.line-btn img {
  height: 90px;
  width: auto;
}

/* 電話側 */
.tel-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tel-copy {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
}
.tel-wrap a[href^="tel:"] {
  color: #fff;
}
.tel-num {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 0 #000;
}
.tel-num img {
  width: 40px;
  height: auto;
}

/* 備考 */
.ct-foot {
  margin-top: 8px;
  color: #cfd1d3;
  font-weight: 400;
  line-height: 1.4;
}

/* ===== SNS block ===== */
.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 6px;
}
.mnav-header,
.mnav-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .sns-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  header.pc {
    display: none;
  }
  .mnav-logo img {
    z-index: 30;
  }
  /* ===== ヘッダー（モバイル専用） ===== */
  .mnav-header {
    position: static;
    inset: 0 0 auto 0;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    z-index: 40;
    pointer-events: none;
    box-sizing: border-box;
  }
  .mnav-header > * {
    pointer-events: auto;
  }

  .mnav-logo img {
    height: 50px;
    display: block;
  }

  .mnav-burger {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: grid;
    margin-right: 30px;
    place-items: center;
    cursor: pointer;
    backdrop-filter: saturate(130%) blur(4px);
    position: fixed;
    right: 0;
    top: 10px;
    z-index: 99999;
  }
  .mnav-burger span {
    display: block;
    width: 40px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.25s ease;
  }
  .mnav-burger span {
    background: #000;
  }
  .mnav-burger.is-dark-bg span {
    background: #fff;
  }
  /* トグル時の×アイコン化 */
  .mnav-toggle:checked ~ .mnav-header .mnav-burger span:nth-child(1) {
    transform: translateY(17px) rotate(45deg);
  }
  .mnav-toggle:checked ~ .mnav-header .mnav-burger span:nth-child(2) {
    opacity: 0;
  }
  .mnav-toggle:checked ~ .mnav-header .mnav-burger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* ===== トグルコントロール ===== */
  .mnav-toggle {
    position: fixed;
    opacity: 0;
    pointer-events: none;
  }

  /* ===== オーバーレイ（暗幕） ===== */
  .mnav-overlay {
    position: fixed;
    inset: 0;
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition: 0.28s ease;
    backdrop-filter: blur(1px);
  }
  .mnav-toggle:checked ~ .mnav-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* ===== スライドパネル ===== */
  .mnav-panel {
    position: fixed;
    top: 0;
    right: 0; /* 右固定 */
    height: 110vh;
    width: 80%; /* ← 横幅を常に80%に */
    z-index: 50;
    color: var(--ink);
    background: rgba(0, 0, 0, 0.8);
    transform: translateX(102%);
    transition: transform 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
  }

  .mnav-toggle:checked ~ .mnav-panel {
    transform: translateX(0);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  /* 共通バー */
  .mnav-burger span {
    display: block;
    width: 40px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.25s ease;
  }

  /* チェックONで全バー白 */
  .mnav-toggle:checked ~ .mnav-burger span {
    background: #fff;
  }

  /* トグル時の「×」アニメーション */
  .mnav-toggle:checked ~ .mnav-burger span:nth-child(1) {
    transform: translateY(17px) rotate(45deg);
  }
  .mnav-toggle:checked ~ .mnav-burger span:nth-child(2) {
    opacity: 0;
  }
  .mnav-toggle:checked ~ .mnav-burger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* 内側スクロール */
  .mnav-inner {
    height: 100%;
    width: 90%;
    overflow: auto;
    padding: 70px 18px 28px 18px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.04),
        rgba(255, 255, 255, 0) 140px
      ),
      url(images/mv.webp) center top/cover no-repeat; /* 背景に薄くモチーフ */
    background-blend-mode: multiply;
    overflow-y: scroll;
  }

  /* 見出し */
  .mnav-headline {
    font-size: 25px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    margin: 0 0 14px;
  }
  .mnav-sec {
    font-size: 25px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    margin: 14px 0 6px;
  }

  /* リスト */
  .mnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
  }
  .mnav-item {
    display: block;
    padding: 0px 0px 14px;
    text-decoration: none;
    color: #fff;
    position: relative;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.25s ease;
    text-align: left;
  }
  .mnav-item .ttl {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }
  .mnav-item small {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
  }

  .mnav-item::after {
    content: "";
    position: absolute;
    left: 0px;
    right: auto;
    bottom: 6px;
    width: 320px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transform-origin: left;
    transform: scaleX(0.25);
    opacity: 0.9;
    transition: transform 0.28s ease;
  }
  .mnav-item:where(:hover, :focus-visible) {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(2px);
  }
  .mnav-item:where(:hover, :focus-visible)::after {
    transform: scaleX(1);
  }

  /* SNS アイコン列 */
  .mnav-sns {
    display: flex;
    gap: 12px;
    margin: 10px 0 6px;
  }
  .mnav-sns img {
    width: 36px;
    height: 36px;
    display: block;
  }
}

.sns-left p {
  font-weight: 900;
  line-height: 2;
  font-size: 18px;
  margin: 2rem 0 20px 5rem;
}
.sns-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 400px;
}

.sns-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #fff;
  padding: 7px 15px;
  padding: 16px 22px;
  transition: 0.25s ease;
}
.sns-card:hover {
  border-color: #fff;
  transform: translateX(4px);
}
.sns-card img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}
.sns-handle {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}
/* → 矢印（右端） */
.sns-card::after {
  content: url(../images/sns-arr.png);
  position: absolute;
  right: 44px;
  top: 0%;
  width: 19px;
  transform: scale(0.3);
}

/* ===== Footer (SBクオリティ寄せ) ===== */
.ft {
  background: #d9d6d5;
  color: #111;
  padding: 45px 20px 16px;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}
.ft-wrap {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 234px 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ロゴ */
.ft-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* 見出し */
.ft-title {
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 19px;
  line-height: 1.5;
}

/* 2カラム情報 */
.ft-cols {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px 40px;
  align-items: start;
  font-size: 13px;
}

/* 定義リスト行ごとに揃える */
.ft-dl {
  margin: 0;
}
.ft-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px 18px;
  align-items: baseline;
  padding: 2px 0;
}
.ft-row dt {
  font-weight: 600;
  color: #111111; /* 紺（SBの青系に寄せ） */
  min-width: 0;
  white-space: nowrap;
}
.ft-row dd {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* コピーライト */
.ft-copy {
  max-width: 1200px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 13px;
  color: #222;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sp-b {
  display: none;
}
.sp-n {
  display: block;
}
a[href^="tel:"] {
  color: #000;
  text-decoration: none;
}
#contact a[href^="tel:"] {
  color: #fff;
}
#contact.ct1 a[href^="tel:"] {
  color: #000;
}
.p-mainVisual__video {
  width: 100%;
}
.sns_name {
  padding: 1px;
  text-align: center;
  color: #fff;
  display: block;
  font-size: 12px;
  background: linear-gradient(45deg, #cf2e92, #f26939);
  margin: 0 auto;
}
.sns_name.tiktok {
  background: linear-gradient(45deg, #25f4ee, #fe2c55);
}
  .sns-card div{
    margin: 0 auto;
  }
/* 768px以下：ハンバーガーとモバイルナビを表示 */
@media (max-width: 768px) {
  .mnav-btn {
    display: block; /* ハンバーガーボタン表示 */
  }
  .mnav-panel {
    display: block; /* ナビ本体 */
  }
}

/* 769px以上：ハンバーガーとモバイルナビを非表示 */
@media (min-width: 1024px) {
  .mnav-btn,
  .mnav-panel {
    display: none !important;
  }
}

@media (max-width: 1300px) and (min-width: 768px) {
  .sb-car img {
    left: -11vw;
  }
  .sb-price .lead {
    font-size: 2vw;
  }
  .sb-price .tax {
    font-size: 1vw;

    right: 25%;
    top: 24%;
  }
  .sb-catch {
    font-size: 2vw;
  }
  .fq-price .yen {
    font-size: 4vw;
  }
  .fq-price span {
    font-size: 25px;
    left: 46%;
  }

  .fq-desc {
    font-size: 1vw;
  }
  .fq-car {
    width: 74%;
  }
  .card p {
    font-size: 1.3vw;
    font-weight: 500;
  }
  .lead-catch {
    font-size: 1.8vw;
  }
  .fact .num {
    font-size: 12vw;
  }
  .fact h3 {
    font-size: 2vw;
  }
  .fact p {
    font-size: 1vw;
  }
  .strength-photo img {
    height: 91%;
    left: 0;
  }
  .lead-catch {
    margin: 2rem 0 20px 0rem;
  }
  .sb-price {
    text-align: right;
  }
  .faq-list {
    width: 75%;
  }
  .faq-q {
    padding: 20px 50px 22px 110px;
  }
  .cta {
    padding: 6px 0;
  }
  .right {
    flex: 0 0 51%;
    display: flex;
    gap: 63px;
    justify-content: flex-end;
  }
}
/* レスポンシブ */
@media (max-width: 1400px) {
  .ft-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ft-logo img {
    width: 220px;
  }
  .sp-n-1100{
    display: none;
  }
}
@media (max-width: 780px) {
  .cta {
    padding: 6px 0;
  }
  .strength-photo {
    aspect-ratio: auto;
    margin: 0;
  }
  .strength-photo img {
    position: static;
    height: 100%;
    width: 100%;
    max-width: 700px;
    object-fit: cover;
    display: block;
  }

  /* ===== ブレークポイント ===== */
  @media (min-width: 960px) {
    /* PCではこのモバイルナビを隠す（必要に応じて調整） */
    .mnav-header,
    .mnav-overlay,
    .mnav-panel {
      display: none;
    }
  }
  .ft-title {
    font-size: 8px;
  }
  .ft-cols {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 11px;
  }
  .ft-row {
    grid-template-columns: 86px 1fr;
  }
}

/* レスポンシブ */
@media (max-width: 1180px) {
  .fq-visual {
    height: 480px;
  }
  .fq-price {
    order: 3;
  }
  .flaqs-title {
    font-size: 42px;
  }
  .fq-price .yen {
    font-size: 6rem;
  }
}
@media (max-width: 768px) {
  .cta-caption {
    font-size: 1rem;
  }
  .sb-vertical-logo {
    right: 0;
  }

  .section .left {
    padding-left: 0;
    width: 100%;
  }
  .sns-btn img {
    width: 100%;
  }
  #faq.faq header {
    color: #000;
  }
  .faq-list {
    margin-top: 3rem;
  }
}
@media (max-width: 640px) {
  .badge {
    width: 104px;
    height: 104px;
    font-size: 14px;
  }
  .badge.lb {
    left: 40px;
  }
  .badge.rb {
    right: 40px;
  }
  .fq-visual {
    height: 420px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .sb-steps {
    right: 180px;
  }
  .sb-vertical-logo {
    right: 0px;
    top: -21rem;
    width: 180px;
  }
}
@media (max-width: 1100px) {
  .sb-grid {
    grid-template-columns: 1fr;
  }
  .sb-price {
    text-align: left;
    margin-top: 3rem;
  }
  .sb-steps {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin: 0 0 0 auto;
  }
  .sb-steps img {
    width: 100%;
  }
  .sb-vertical-logo {
    position: static;
    width: 160px;
    margin: 6px 0 0 auto;
    display: block;
  }
  .sb-price .yen {
    font-size: 84px;
  }
  .sb-car img.car-image {
    left: -1vw;
    width: 55vw;
    top: -29vw;
  }
  .sb-car {
    height: auto;
  }
}
@media (max-width: 640px) {
  .sb-catch {
    font-size: 24px;
  }
  .sb-chip {
    min-width: unset;
    padding: 12px 18px;
  }
  .sb-car img.car-image {
    width: 80%;
  }
}

/* レスポンシブ */
@media (max-width: 1080px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .coat-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .cards {
    grid-template-columns: 1fr;
  }

  .coat-title {
    font-size: 38px;
  }
}

/* responsive */
@media (max-width: 1024px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
  .card {
    order: 2;
  }
  .section .left {
    width: 100%;
    box-sizing: border-box;
  }
  .faq-list {
    margin-top: 2rem;
  }
  .map {
    width: 80%;
    margin: 12px auto;
  }
  .access-grid .card {
    max-width: 95%;
    width: 68%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 640px) {

  .access-sub::after {
    width: 180px;
  }
}

/* レイアウト調整（レスポンシブ） */
@media (max-width: 980px) {
  .sb-steps {
    width: 34%;
  }
  .sb-price .yen {
    text-align: right;
    padding-right: 1rem;
  }
  .sb-price {
    text-align: right;
  }
  .sb-price .yen {
    font-size: 6vw;
  }
  .sb-price .tax {
    right: 0;
    top: 19%;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .nav-l,
  .nav-r {
    gap: 22px;
  }
  .nav-item {
    font-size: 16px;
  }
  .nav-item::after {
    bottom: -8px;
  }
  .polisher {
    left: 5%;
    top: 36%;
    width: 180px;
  }
  .sprayer {
    right: 4%;
    top: 20%;
    width: 180px;
  }
  .line-fab {
    width: 118px;
    height: 118px;
    right: 16px;
    bottom: -58px;
  }
}
@media (max-width: 640px) {
  .bar {
    gap: 18px;
  }
  .logo {
    font-size: 14px;
  }
  .nav-item {
    font-size: 15px;
  }
  .nav-item small {
    display: none;
  }
  .sparkles {
    left: 12%;
    width: 180px;
  }
  .side-scroll {
    display: none;
  }
}

@media (max-width: 980px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 13px105px;
  }
  .fact {
    column-gap: 0px;
  }
  .fact .num {
    font-weight: 500;
    font-size: 105px;
    margin-right: 9px;
  }
  .flow-steps {
    display: flex;
    width: 100%;
  }
  .flow-step h3 {
    font-size: 18px;
  }
  .flow-step p {
    font-size: 12px;
  }
  .flow-icon {
    width: 100%;
    height: 100%;
  }
  .flow-arrow {
    border: 0;
    width: 0;
    height: 0;
margin-top: -18vh;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 26px solid #111;
  }
  .flow-title {
    font-size: 42px;
  }
  .row {
    flex-direction: column;
    align-items: flex-start;
  }
  .right {
    width: 100%;
    justify-content: flex-start;
  }
  .media {
    overflow: visible;
  }
}
@media (max-width: 640px) {
  .fact h3 {
    font-size: 16px;
  }
  .more a {
    font-size: 28px;
  }
  .fact p {
    font-size: 11px;
  }
  .more {
    margin-left: 0;
  }
  .sb-layer {
    width: 100%;
  }
  .sb-layer img {
    width: 65%;
  }
  .sb-car img.sb-vertical-logo {
    width: 25%;
    top: -178vw;
    left: 0;
  }
  .sb-car {
    height: auto;
  }
  .sb-car img.car-image {
    width: 93%;
    top: -102px;
    left: -26%;
  }
  .sb-notes img {
    width: 75%;
    display: block;
    margin: 0 0 0 auto;
  }
  .sb-catch,
  .sb-body p {
    font-size: 1rem;
  }
  .sb-sub,
  .sb-catch,
  .flaqs-sub {
    font-size: 4vw;
  }
  .flow-arrow{
    margin-top: -22vh;
  }
  .sb-chips img {
    width: 100%;
  }
  .sb-right {
    width: 100%;
  }
  .sb-price .yen,
  .fq-price .yen {
    font-size: 2rem;
  }
  .strength-sub{
    padding-left: 0;
  }
  .fq-price {
    margin-top: 10px;
  }
  .sb-price {
    margin-top: 6rem;
  } 
  .coat-title,.strength-title,.flow-title,.section-title,.faq-title,.access-title, .sb-title, .flaqs-title,
  .hd-ttl  {
    font-size: 1.8rem;
  }
  .coat-sub {
    font-size: 1rem;
  }

    .hd-ttl{
      margin-top: 0;
    }
  .flaqs-sub::after {
    width: 143px;
  }
  .fq-col {
    justify-content: space-around;
    flex-direction: row-reverse;
  }
  .fq-col .fq-logo {
    height: auto;
    width: 50%;
  }
  .fq-desc {
    font-weight: 400;
    line-height: 1.5;
    font-size: 3vw;
  }
  .sb-price .lead,
  .fq-price .lead {
    font-size: 15px;
    text-align: right;
  }
  .sb-price .tax {
    font-size: 12px;
    right: 0;
    top: 19%;
  }
  .fq-price span {
    font-size: 1.3rem;
    position: absolute;
    top: 41%;
    left: 42%;
  }
  .fq-price .yen {
    margin-right: 12%;
  }
  .fq-price .tax {
    top: 33%;
    font-size: 14px;
    right: 21px;
  }
  .fq-note {
    font-size: 0.7rem;
    border-radius: 0;
    margin-right: 8%;
  }
  .fq-col:last-child {
    order: 2;
  }
  .ct-copy,
  .tel-copy {
    font-size: 1rem;
    font-weight: 700;
  }
  .ct-foot {
    font-size: 0.75rem;
  }
  .sp-b {
    display: block;
  }
  .sp-n,.sp-n-1100{
    display: none;
  }
  .tel-num {
    font-size: 23px;
    height: 75px;
  }
  .tel-num img {
    width: 30px;
  }
  .sns-right {
    flex-direction: unset;
    justify-content: space-between;
  }
  .sns-card {
    padding: 9px;
    gap: 5px;
    width: 45%;
  }
  .sns-card img {
    width: 20px;
    height: 20px;
  }
  .sns-card::after {
    right: -3px;
    top: -18%;
    width: 19px;
    transform: scale(0.07);
  }
  .sns_name {
    font-size: 12px;
    width: 72%;
    border-radius: 12px;
  }
  .faq {
    padding: 30px 20px 90px;
  }
  .ft-logo img {
    width: 300px;
    display: block;
    margin: 0 auto;
  }
  .faq-q {
    font-size: 16px;
    padding: 20px 50px 22px 83px;
  }
  .faq-a {
    padding: 20px 50px 22px 83px;
  }
  .faq-item[open] .faq-a {
    padding: 20px 50px 22px 83px;
  }
  .ft-cols .ft-row {
    grid-template-columns: 7px 1fr;
  }
  .ft {
    padding: 22px 9px 16px;
  }
  .sns-handle {
    font-size: 12px;
  }
  .hero-inner {
    overflow: hidden;
    padding: 80px 0px 40px;
  }
  .car {
    width: 100%;
  }
  .car img {
    width: 90%;
    height: auto;
  }
  .ctas {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
  }
  .cta {
    padding: 10px;
    box-shadow: 1px 3px 9px #939393;
    font-weight: 600;
  }
  .lead {
    font-size: 1rem;
  }
  .map {
    width: 100%;
    margin: 0;
  }
  .faq-a span,
  .faq-q span {
    left: 14%;
  }
  .faq-q::after {
    font-size: 27px;
  }
  .flaqs-grid {
    grid-template-columns: 1fr;
  }
  .lead-catch {
    font-size: 4vw;
    margin: 1rem 0 20px 0rem;
  }
  .coating-car {
    width: 100%;
  }
  .coating .cards {
    grid-template-columns: 1fr 1fr;
  }
  .coating .cards p {
    display: none;
  }
  .coating .card {
    padding: 0;
  }
  .faq-a span,
  .faq-q span {
    left: 9%;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  a[href^="tel:"] {
    color: #000;
  }
  .line-btn img {
    height: auto;
    width: 100%;
  }
  .mnav-logo img {
    height: 39px;
    display: block;
  }
  .card dt,
  .card dd {
    font-weight: 500;
    font-size: 3.3vw;
  }
  .access-grid .card p {
    line-height: 1.3;
    font-weight: 500;
  }
  .access-grid .card {
    max-width: 95%;
    width: 89%;
    padding: 20px;
  }
  #cases .right {
    gap: 25px;
  }
  .ctsns {
  padding: 0px 20px 50px;
  }
  .sb,.flow,.strength,.section,.faq{
    padding: 64px 20px 10px;
  }
    .coating-wrap .cards{
    margin-top: -3rem;
  }
  .faq{
    padding: 20px 20px 10px;
  }
  #faq2{
    padding-bottom: 50px;
  }
}

@media (max-width: 450px) {
  .ft-title {
    font-size: 12px;
  }
  .fq-price .tax {
    top: 37%;
    font-size: 14px;
    right: 21px;
  }
  .sns-left p {
    font-weight: 600;
    margin: 2rem 0 20px 0rem;
  }
  .faq-a span,
  .faq-q span {
    left: 12%;
  }
  .flow-arrow {
    margin-top: -58%;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 15px solid #111;
  }
  .flow-icon img {
    width: 83%;
  }
  .access::after {
    content: "";
    position: absolute;
    left: -10vw;
    right: -45vw;
    bottom: -104px;
    height: 264px;
    background: #111;
    transform: skewY(-30deg);
  }
  .access {
    padding: 70px 20px 300px;
    margin-bottom: -10px;
  }
  #access .scroll-indicator {
    top:87%;
  }
  .fact h3 {
    font-size: 15px;
  }
  .scroll-indicator {
    top: 60%;
  }
  .flow-arrow {
    margin-top: -63%;
  }
  .ft-cols .ft-row {
    grid-template-columns:59px 226px;
  }
  .sb-car img.sb-vertical-logo {
    width: 20%;
    top: -175vw;
  }
  .chev img {
    width: 65%;
  }
  .fq-price span {
    left: 42%;
  }
  .flow-icon {
    width: 100px;
    height: 100%;
  }

  .coating{
    padding-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .flow-arrow {
    margin-top: -66%;
  }
}
@media (max-width: 380px) {
  .fact h3 {
    font-size: 15px;
  }
  .scroll-indicator {
    top: 60%;
  }
  .flow-arrow {
          margin-top: -69%;
  }
  .fq-price span{
    left: 39%;
  }
}
