/* ================================================================
   K RIDE — 軽ライド  Brand Site  v6 "Publish"
   Single source of truth. Replaces styles/mobile/brand/pop/kride.css
   ----------------------------------------------------------------
   Palette   : Navy #1F2E4A / Orange #E9862F / White / Warm off-white
   Type      : Zen Kaku Gothic New (display) / Noto Sans JP (body)
               Archivo (EN labels)
   Signature : the logo's orange diagonal "K-slash", reused as a
               small brand mark across eyebrows / CTAs / dividers
   ================================================================ */

:root {
  --navy:        #1F2E4A;
  --navy-deep:   #17253F;
  --navy-soft:   #2C3D60;
  --orange:      #E9862F;
  --orange-deep: #C9721F;
  --orange-tint: #FBEEDF;
  --white:       #FFFFFF;
  --warm:        #FAF6EF;
  --sand:        #EFE8DC;
  --ink:         #22304C;
  --ink-dim:     rgba(31, 46, 74, 0.66);
  --ink-mute:    rgba(31, 46, 74, 0.45);
  --line:        rgba(31, 46, 74, 0.12);
  --line-soft:   rgba(31, 46, 74, 0.07);
  --w-dim:       rgba(255, 255, 255, 0.78);
  --w-mute:      rgba(255, 255, 255, 0.55);
  --w-line:      rgba(255, 255, 255, 0.16);

  --disp: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --sans: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --en:   "Archivo", "Helvetica Neue", Arial, sans-serif;

  --pad-x: clamp(22px, 5.5vw, 96px);
  --sec-y: clamp(96px, 13vw, 176px);
  --max:   1240px;
  --r-s: 10px;
  --r-m: 16px;
  --r-l: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 2.0;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, dl, dd, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
strong { font-weight: 700; color: var(--navy); }

::selection { background: var(--orange); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
  font-size: 13px;
}
.skip-link:focus { left: 0; }

/* ---------- Signature: K-slash brand mark ---------- */
.kslash {
  display: inline-block;
  width: 22px; height: 10px;
  background: var(--orange);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  flex: none;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow .kslash { width: 18px; height: 8px; }
.eyebrow--white { color: var(--w-dim); }

/* ---------- Headings ---------- */
.h-disp {
  font-family: var(--disp);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.42;
}
.h-sec { font-size: clamp(28px, 4.2vw, 44px); margin-top: 18px; }
.h-sec em {
  font-style: normal;
  color: var(--orange);
}

.sec-lead {
  margin-top: 22px;
  font-size: clamp(14.5px, 1.4vw, 16px);
  color: var(--ink-dim);
  line-height: 2.15;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.btn .arr { transition: transform 0.35s var(--ease); font-weight: 500; }
.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(233, 134, 47, 0.55);
}
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

.btn--ghost-w {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--w-line);
}
.btn--ghost-w:hover { border-color: var(--white); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--navy); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.4); }

/* ---------- Header ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad-x);
  height: 74px;
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
}
.nav.is-solid,
.nav.is-static {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  height: 66px;
}

.nav__logo { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 118; }
.nav__logo img { width: 34px; height: 34px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-en {
  font-family: var(--en);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.10em;
  color: var(--white);
  transition: color 0.35s;
}
.nav__logo-jp {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--w-dim);
  transition: color 0.35s;
}
.nav.is-solid .nav__logo-en, .nav.is-static .nav__logo-en { color: var(--navy); }
.nav.is-solid .nav__logo-jp, .nav.is-static .nav__logo-jp { color: var(--ink-dim); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav__links > a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 6px 0;
  transition: color 0.35s;
}
.nav.is-solid .nav__links > a, .nav.is-static .nav__links > a { color: var(--navy); }
.nav__links > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links > a:hover::after, .nav__links > a.is-current::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  transition: background 0.25s, transform 0.3s var(--ease);
}
.nav__cta:hover { background: var(--orange-deep); transform: translateY(-1px); }

.nav__links .nav__cta-m { display: none; }
.nav__toggle { display: none; }

/* ---------- Sections shell ---------- */
.section {
  padding: var(--sec-y) var(--pad-x);
}
.section--warm { background: var(--warm); }
.section--navy { background: var(--navy); color: var(--w-dim); }
.section__inner { max-width: var(--max); margin: 0 auto; }

.sec-head { max-width: 720px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

.sec-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.sec-split .sec-lead { max-width: 420px; margin-top: 0; padding-bottom: 6px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--pad-x) clamp(56px, 8vh, 96px);
  overflow: hidden;
  background: var(--navy);
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23, 37, 63, 0.82) 0%, rgba(23, 37, 63, 0.28) 42%, rgba(23, 37, 63, 0.10) 70%, rgba(23, 37, 63, 0.30) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: var(--white);
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--w-dim);
}
.hero__title {
  margin-top: 26px;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(40px, 7.2vw, 84px);
  line-height: 1.28;
  letter-spacing: 0.015em;
  color: var(--white);
}
.hero__title em { font-style: normal; color: var(--orange); }
.hero__sub {
  margin-top: 26px;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 2.2;
  color: var(--w-dim);
  max-width: 560px;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__kkk {
  margin-top: 46px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--w-mute);
}
.hero__scroll {
  position: absolute;
  right: calc(var(--pad-x) * 0.6);
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--w-mute);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--w-mute), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- STATEMENT ---------- */
.statement { text-align: center; }
.statement__inner { max-width: 840px; margin: 0 auto; }
.statement__small {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 2.3;
}
.statement__big {
  margin-top: 34px;
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.6;
  color: var(--navy);
}
.statement__big em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.statement__big em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: 0.06em;
  height: 0.34em;
  background: var(--orange-tint);
  z-index: -1;
}
.statement__close {
  margin-top: 34px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 2.3;
}
.statement__sig {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- CARLIFE ---------- */
.carlife__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.carlife__item {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
  aspect-ratio: 3 / 4.1;
  background: var(--sand);
}
.carlife__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.carlife__item:hover img { transform: scale(1.045); }
.carlife__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,37,63,0.62), rgba(23,37,63,0) 46%);
}
.carlife__cap {
  position: absolute;
  z-index: 2;
  left: 20px; right: 20px; bottom: 18px;
  color: var(--white);
}
.carlife__cap em {
  display: block;
  font-style: normal;
  font-family: var(--en);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 6px;
}
.carlife__cap span {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 17.5px);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

/* ---------- PROMISE (5つの約束) ---------- */
.promise__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}
.promise__photo {
  position: sticky;
  top: 96px;
  border-radius: var(--r-l);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--sand);
}
.promise__photo img { width: 100%; height: 100%; object-fit: cover; }
.promise__list { display: flex; flex-direction: column; }
.promise__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 8px 22px;
  padding: clamp(26px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.promise__item:first-child { padding-top: 6px; }
.promise__num {
  font-family: var(--en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--orange);
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promise__num .kslash { width: 16px; height: 7px; }
.promise__item h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 21px);
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.6;
}
.promise__item p {
  grid-column: 2;
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 2.05;
}

/* ---------- SERVICE (sub-brands) ---------- */
.service .h-sec { color: var(--white); }
.service .h-sec em { color: var(--orange); }
.service .sec-lead { color: var(--w-dim); }
.service__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--w-line);
  border: 1px solid var(--w-line);
  border-radius: var(--r-m);
  overflow: hidden;
}
.service__item {
  background: var(--navy);
  padding: clamp(26px, 2.6vw, 38px) clamp(20px, 2vw, 28px) clamp(30px, 3vw, 42px);
  transition: background 0.35s;
}
.service__item:hover { background: var(--navy-deep); }
.service__brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service__brand em {
  font-style: normal;
  font-family: var(--en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.10em;
  color: var(--white);
}
.service__brand em b { color: var(--orange); font-weight: 800; }
.service__brand small {
  font-family: var(--en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}
.service__item h3 {
  margin-top: 18px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.7;
}
.service__item p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.95;
  color: var(--w-dim);
}
.service__note {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--w-mute);
}

/* ---------- STOCK ---------- */
.stock__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.stock__card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.stock__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px -26px rgba(31, 46, 74, 0.28);
}
.stock__photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.stock__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.stock__card:hover .stock__photo img { transform: scale(1.04); }
.stock__tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.stock__tag .kslash { width: 13px; height: 6px; }
.stock__body { padding: clamp(22px, 2.4vw, 30px); }
.stock__body h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.7;
}
.stock__body p {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 2.0;
}
.stock__more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--orange-deep);
}
.stock__more .arr { transition: transform 0.35s var(--ease); }
.stock__card:hover .stock__more .arr { transform: translateX(4px); }
.stock__foot {
  margin-top: clamp(36px, 4.5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
}
.stock__foot p { font-size: 14px; color: var(--ink-dim); line-height: 2.0; }
.stock__foot strong { display: block; font-family: var(--disp); font-size: 16.5px; margin-bottom: 2px; }

/* ---------- VOICES ---------- */
.voices__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
}
.voice {
  position: relative;
  background: var(--warm);
  border-radius: var(--r-m);
  padding: clamp(28px, 3vw, 38px);
}
.voice::before {
  content: "";
  position: absolute;
  top: 30px; left: 0;
  width: 4px; height: 34px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 88%);
}
.voice p {
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--ink);
}
.voice footer {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.voice footer b { color: var(--navy); font-weight: 700; font-size: 13.5px; }
.voices__note { margin-top: 26px; font-size: 12px; color: var(--ink-mute); }

/* ---------- STORE ---------- */
.store__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(14px, 1.8vw, 24px);
}
.store__grid figure { border-radius: var(--r-m); overflow: hidden; background: var(--sand); }
.store__grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.store__grid figure:last-child img { aspect-ratio: auto; height: 100%; }
.store__info {
  margin-top: clamp(36px, 4.5vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid var(--line-soft);
}
.store__info dt {
  font-family: var(--en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 10px;
}
.store__info dd {
  font-size: 14.5px;
  line-height: 2.0;
  color: var(--ink);
  font-weight: 500;
}
.store__info dd small { display: block; font-size: 12.5px; color: var(--ink-mute); font-weight: 400; }

/* ---------- RECRUIT band ---------- */
.recruit-band {
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 110px) var(--pad-x);
  overflow: hidden;
  background: var(--navy);
}
.recruit-band__bg, .recruit-band__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.recruit-band__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,37,63,0.86) 24%, rgba(23,37,63,0.42) 62%, rgba(23,37,63,0.18));
}
.recruit-band__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: var(--white);
}
.recruit-band .h-sec { color: var(--white); }
.recruit-band__body {
  margin-top: 20px;
  max-width: 480px;
  font-size: 14.5px;
  line-height: 2.15;
  color: var(--w-dim);
}
.recruit-band .btn { margin-top: 32px; }

/* ---------- CONTACT CTA ---------- */
.contact-cta {
  background: var(--warm);
  text-align: center;
}
.contact-cta__inner { max-width: 760px; margin: 0 auto; }
.contact-cta__body {
  margin-top: 24px;
  font-size: clamp(14.5px, 1.5vw, 16px);
  line-height: 2.25;
  color: var(--ink-dim);
}
.contact-cta__btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-cta__tel {
  margin-top: 30px;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: var(--w-dim);
  padding: clamp(64px, 8vw, 96px) var(--pad-x) 36px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo { display: inline-flex; align-items: center; gap: 13px; }
.footer__logo img { width: 40px; height: 40px; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer__logo-en {
  font-family: var(--en);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer__logo-jp { font-size: 11px; letter-spacing: 0.34em; color: var(--w-mute); }
.footer__tag {
  margin-top: 22px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer__tagsub { margin-top: 10px; font-size: 13px; line-height: 2.1; color: var(--w-mute); }
.footer__kkk {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--w-mute);
}
.footer__col h4 {
  font-family: var(--en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 13.5px;
  color: var(--w-dim);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max);
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--w-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--w-mute);
}
.footer__bottom a { color: var(--w-mute); }
.footer__bottom a:hover { color: var(--white); }

/* ---------- Sub pages (contact / recruit / privacy) ---------- */
.page-hero {
  padding: calc(74px + clamp(64px, 9vw, 110px)) var(--pad-x) clamp(48px, 6vw, 72px);
  background: var(--warm);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; }
.page-hero .h-sec { max-width: 800px; }
.page-hero .sec-lead { max-width: 640px; }

/* Contact form */
.form-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.form {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form label { display: flex; flex-direction: column; gap: 8px; }
.form .k {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.form .k em { font-style: normal; color: var(--orange); }
.form input, .form select, .form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--warm);
  border: 1.5px solid transparent;
  border-radius: var(--r-s);
  padding: 13px 16px;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__consent { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-size: 13.5px; color: var(--ink-dim); }
.form__consent input { width: auto; margin-top: 5px; accent-color: var(--orange); }
.form__consent a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.form__error {
  display: none;
  background: #FDECEC;
  color: #B4232A;
  font-size: 13.5px;
  padding: 12px 16px;
  border-radius: var(--r-s);
}
.form__error.is-visible { display: block; }
.form__submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}
.form__note { font-size: 12.5px; color: var(--ink-mute); line-height: 2.0; }

.contact-quick {
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-quick a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  padding: 22px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}
.contact-quick a:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 18px 36px -20px rgba(31,46,74,0.25);
}
.contact-quick b {
  display: block;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.contact-quick small { font-size: 12.5px; color: var(--ink-mute); }
.contact-quick .arr { color: var(--orange); font-weight: 700; }

/* Recruit */
.values__grid {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  padding: clamp(26px, 3vw, 36px);
}
.value-card .n {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.value-card h3 {
  margin-top: 16px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.value-card p { margin-top: 10px; font-size: 13.5px; line-height: 2.05; color: var(--ink-dim); }

.jobs__list {
  margin-top: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 4vw, 64px);
}
.jobs__list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 4px 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
}
.jobs__list .n {
  font-family: var(--en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--orange-deep);
  padding-top: 6px;
}
.jobs__list h4 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
}
.jobs__list p { grid-column: 2; font-size: 13.5px; color: var(--ink-dim); line-height: 2.0; }

/* Legal article */
.legal {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 56px);
}
.legal h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { font-size: 14px; line-height: 2.1; color: var(--ink-dim); margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ================= Responsive ================= */
@media (max-width: 1080px) {
  .service__grid { grid-template-columns: repeat(3, 1fr); }
  .carlife__grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav { height: 64px; padding: 0 20px; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links > a {
    color: var(--white) !important;
    font-family: var(--disp);
    font-size: 20px;
    font-weight: 700;
    padding: 12px 0;
  }
  .nav__links .nav__cta-m {
    display: inline-flex;
    margin-top: 18px;
    background: var(--orange);
    border-radius: 999px;
    padding: 14px 38px;
  }
  .nav__cta { display: none; }
  .nav__toggle {
    display: block;
    position: relative;
    z-index: 120;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav__toggle span,
  .nav__toggle::before,
  .nav__toggle::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 24px; height: 2px;
    background: var(--white);
    transition: transform 0.35s var(--ease), opacity 0.25s, background 0.35s;
  }
  .nav.is-solid .nav__toggle span, .nav.is-static .nav__toggle span,
  .nav.is-solid .nav__toggle::before, .nav.is-static .nav__toggle::before,
  .nav.is-solid .nav__toggle::after, .nav.is-static .nav__toggle::after { background: var(--navy); }
  .nav .nav__toggle.is-open span,
  .nav.is-solid .nav__toggle.is-open span, .nav.is-static .nav__toggle.is-open span,
  .nav .nav__toggle.is-open::before,
  .nav.is-solid .nav__toggle.is-open::before, .nav.is-static .nav__toggle.is-open::before,
  .nav .nav__toggle.is-open::after,
  .nav.is-solid .nav__toggle.is-open::after, .nav.is-static .nav__toggle.is-open::after { background: var(--white); }
  .nav__toggle::before { top: 15px; }
  .nav__toggle span { top: 21px; }
  .nav__toggle::after { top: 27px; }
  .nav__toggle.is-open span { opacity: 0; }
  .nav__toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
  .nav__toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: 94vh; min-height: 94svh; }
  .hero__scroll { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }

  .sec-split { flex-direction: column; align-items: flex-start; }

  .promise__grid { grid-template-columns: 1fr; }
  .promise__photo { position: static; aspect-ratio: 4 / 3; }

  .stock__grid, .voices__grid, .values__grid { grid-template-columns: 1fr; }
  .stock__foot { flex-direction: column; align-items: flex-start; }

  .store__grid { grid-template-columns: 1fr; }
  .store__grid figure:last-child img { aspect-ratio: 16/10; }
  .store__info { grid-template-columns: 1fr 1fr; gap: 26px; }

  .jobs__list { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .contact-quick { grid-template-columns: 1fr; }

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

@media (max-width: 560px) {
  .carlife__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .carlife__cap span { font-size: 13px; }
  .carlife__cap em { display: none; }
  .service__grid { grid-template-columns: 1fr; }
  .store__info { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}
