/* ================================================================
   K RIDE — 軽ライド  Brand Site  v8 "Bright & Friendly"
   毎日を、ちょっとワクワクに。
   ----------------------------------------------------------------
   Ratio     : White 65% / Orange 20% / Navy 10% / Beige 5%
   Orange    : #EE7A2E (Afternoon Tea 寄り、明るく元気)
   Navy      : #223558 (アクセントのみ)
   Beige     : #FBF3E6 / #F7EEDD (温かい紙)
   Voice     : 明るい、元気、親しみやすい、笑顔、地域密着
   Reference : Apple / Afternoon Tea LIVING / niko and... / ACTUS
   ================================================================ */

:root {
  /* Orange — 主役 */
  --orange:       #EE7A2E;
  --orange-deep:  #D4661B;
  --orange-soft:  #F6A263;
  --orange-tint:  #FDE6D0;
  --orange-mist:  #FEF2E4;

  /* Navy — アクセント */
  --navy:         #223558;
  --navy-deep:    #172444;
  --navy-soft:    #3B4C6E;

  /* Beige / paper */
  --paper:        #FFFFFF;      /* メイン背景 白 */
  --paper-warm:   #FBF3E6;      /* セクション区切り */
  --paper-cream:  #F7EEDD;      /* 少し濃いめのクリーム */
  --sand:         #EEE4D0;

  --white:        #FFFFFF;

  /* Text */
  --text:         #22344F;
  --text-strong:  #172444;
  --text-dim:     rgba(34, 52, 79, 0.68);
  --text-mute:    rgba(34, 52, 79, 0.50);
  --line:         rgba(34, 52, 79, 0.10);
  --line-soft:    rgba(34, 52, 79, 0.06);
  --w-text:       rgba(255, 255, 255, 0.96);
  --w-dim:        rgba(255, 255, 255, 0.78);
  --w-mute:       rgba(255, 255, 255, 0.55);

  /* Type */
  --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;

  /* Spacing */
  --pad-x: clamp(22px, 5.5vw, 88px);
  --sec-y: clamp(96px, 13vw, 168px);
  --gap:   clamp(20px, 3vw, 40px);
  --max:   1280px;

  /* Soft radius */
  --r-s:  12px;
  --r-m:  20px;
  --r-l:  28px;
  --r-xl: 40px;

  /* Soft shadows */
  --sh-s: 0 6px 20px -8px rgba(34, 52, 79, 0.10);
  --sh-m: 0 14px 40px -14px rgba(34, 52, 79, 0.14);
  --sh-l: 0 28px 60px -22px rgba(34, 52, 79, 0.22);
  --sh-orange: 0 14px 32px -12px rgba(238, 122, 46, 0.42);

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

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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(--text-strong); }
em { font-style: normal; }

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

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

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

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

/* ---------- Eyebrow (英字) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--en);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--white { color: var(--white); opacity: 0.9; }
.eyebrow .kslash { width: 16px; height: 7px; }

/* ---------- Headings ---------- */
.h-disp {
  font-family: var(--disp);
  font-weight: 900;
  color: var(--text-strong);
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-wrap: balance;
}
.h-sec {
  font-size: clamp(28px, 4.4vw, 46px);
  margin-top: 18px;
  line-height: 1.4;
}
.h-sec em {
  color: var(--orange);
}

.sec-lead {
  color: var(--text-dim);
  font-size: clamp(14.5px, 1.35vw, 16px);
  line-height: 2.0;
  max-width: 40em;
  margin-top: 18px;
}

/* ---------- Section primitives ---------- */
.section {
  padding: var(--sec-y) var(--pad-x);
  position: relative;
}
.section__inner { max-width: var(--max); margin: 0 auto; }
.section--warm  { background: var(--paper-warm); }
.section--cream { background: var(--paper-cream); }
.section--navy  { background: var(--navy); color: var(--w-text); }
.section--navy .h-disp { color: var(--w-text); }
.section--navy strong { color: var(--w-text); }
.section--orange { background: var(--orange); color: var(--white); }
.section--orange .h-disp { color: var(--white); }
.section--orange .h-sec em { color: var(--navy-deep); }

.sec-head { max-width: 720px; }
.sec-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.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; }
.reveal--d4 { transition-delay: 0.32s; }

.img-reveal {
  overflow: hidden;
  position: relative;
}
.img-reveal img {
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.img-reveal.is-in img { transform: scale(1.0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out),
              background 0.35s var(--ease-out),
              color 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  position: relative;
}
.btn .btn__icon {
  width: 20px; height: 20px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn .btn__icon svg { width: 100%; height: 100%; }
.btn .arr {
  font-family: var(--en);
  font-weight: 500;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .arr { transform: translateX(4px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 24px -10px rgba(238, 122, 46, 0.55);
}
.btn--primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(238, 122, 46, 0.60);
}

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

.btn--ghost-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost-w:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-3px); }

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease-out),
              padding 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 6px 24px -18px rgba(34, 52, 79, 0.20);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__logo { color: var(--navy); }
.nav__logo img { width: 32px; height: 32px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-en {
  font-family: var(--en);
  font-weight: 800; font-size: 16px;
  letter-spacing: 0.16em;
}
.nav__logo-jp {
  margin-top: 5px;
  font-family: var(--disp);
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.22em;
  opacity: 0.75;
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--white);
  transition: color 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__links { color: var(--navy); }
.nav__links > a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.nav__links > a:hover { opacity: 1; color: var(--orange); }

/* Group link (to TORABAS ONE parent site) */
.nav__group-link {
  padding: 8px 14px !important;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.7 !important;
  font-size: 11.5px !important;
  letter-spacing: 0.08em !important;
  transition: all 0.3s var(--ease-out);
}
.nav__group-link:hover {
  opacity: 1 !important;
  background: currentColor;
  color: var(--orange) !important;
}
.nav.is-scrolled .nav__group-link:hover { color: var(--white) !important; background: var(--navy) !important; border-color: var(--navy); }

.nav__cta-m { display: none; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid var(--orange);
  box-shadow: 0 8px 20px -8px rgba(238, 122, 46, 0.55);
  transition: all 0.35s var(--ease-out);
}
.nav__cta:hover { background: var(--orange-deep); border-color: var(--orange-deep); transform: translateY(-2px); }
.nav__cta svg { width: 16px; height: 16px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.34);
  border-radius: 999px;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.nav.is-scrolled .nav__toggle {
  background: var(--orange);
  border-color: var(--orange);
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__toggle span { top: 50%; margin-top: -1px; }
.nav__toggle span::before { content: ""; top: -6px; }
.nav__toggle span::after  { content: ""; top:  6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- HERO — 明るい家族写真 + オレンジカラーブロック ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  background: var(--paper);
}
.hero__left {
  position: relative;
  z-index: 2;
  padding: clamp(110px, 14vh, 160px) var(--pad-x) clamp(60px, 8vh, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--paper);
}
/* Small decorative orange chip: outside content area (bottom-right of left column) */
.hero__block {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.94;
}
.hero__block::before {
  content: "";
  position: absolute;
  right: 30px; top: 40px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.hero__block::after {
  content: "";
  position: absolute;
  left: 40px; bottom: 40px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}
/* All text content sits on top */
.hero__label,
.hero__title,
.hero__sub,
.hero__cta,
.hero__meta { position: relative; z-index: 2; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  font-family: var(--en);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.9s var(--ease-out) 0.3s forwards;
}
.hero__label .kslash { width: 14px; height: 6px; background: var(--orange-deep); }
.hero__title {
  font-family: var(--disp);
  font-weight: 900;
  color: var(--navy-deep);
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.28;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn 1.0s var(--ease-out) 0.45s forwards;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero__title em {
  background: linear-gradient(180deg, transparent 62%, var(--orange-tint) 62%);
  padding: 0 6px;
  display: inline-block;
}
.hero__sub {
  color: var(--text-dim);
  font-size: clamp(14.5px, 1.15vw, 15.5px);
  line-height: 2.0;
  max-width: 26em;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 1.0s var(--ease-out) 0.6s forwards;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 1.0s var(--ease-out) 0.75s forwards;
}
.hero__meta {
  margin-top: 44px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 1.0s var(--ease-out) 0.95s forwards;
}
.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 500;
}
.hero__meta-item svg { width: 16px; height: 16px; color: var(--orange); }

@keyframes heroIn { to { opacity: 1; transform: none; } }

.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}
.hero__photo {
  position: absolute;
  inset: 0;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  transform: scale(1.04);
  animation: heroKen 10s var(--ease-out) forwards;
}
@keyframes heroKen { from { transform: scale(1.06); } to { transform: scale(1.0); } }

/* Orange decorative dot near photo */
.hero__dot {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  animation: heroPop 0.7s var(--ease-out) 1.1s forwards;
}
.hero__dot--1 {
  left: 50%; top: 80px;
  width: 14px; height: 14px;
  transform: translateX(-50%) scale(0);
}
.hero__dot--2 {
  right: 44px; bottom: 44px;
  width: 84px; height: 84px;
  background: transparent;
  border: 4px solid var(--orange);
  transform: scale(0);
  animation-delay: 1.25s;
}
@keyframes heroPop { to { opacity: 1; transform: translateX(-50%) scale(1); } }
.hero__dot--2 { animation-name: heroPop2; }
@keyframes heroPop2 { to { opacity: 1; transform: scale(1); } }

/* KKK band at bottom */
.hero__band {
  position: absolute;
  right: 0; bottom: 24px;
  z-index: 4;
  padding: 8px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  border-radius: 999px 0 0 999px;
  opacity: 0;
  animation: heroIn 1.0s var(--ease-out) 1.4s forwards;
}

/* ---------- KEYS BAR — 5 服務快速入口 ---------- */
.keys-bar {
  padding: 72px var(--pad-x);
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.keys-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.key {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px;
  text-align: center;
  border-radius: var(--r-m);
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
}
.key:hover {
  background: var(--orange-mist);
  transform: translateY(-4px);
}
.key__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-mist);
  border-radius: 50%;
  transition: background 0.35s var(--ease-out);
}
.key:hover .key__icon { background: var(--orange); }
.key__icon svg {
  width: 30px; height: 30px;
  color: var(--orange);
  transition: color 0.35s var(--ease-out);
  stroke-width: 1.6;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.key:hover .key__icon svg { color: var(--white); }
.key__label {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.key__sub {
  font-family: var(--en);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- STATEMENT ---------- */
.statement {
  padding: clamp(120px, 16vw, 200px) var(--pad-x);
  background: var(--paper-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  left: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--orange-mist);
  opacity: 0.7;
}
.statement::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--orange-tint);
  opacity: 0.5;
}
.statement__inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.statement__small {
  display: inline-block;
  padding: 8px 18px;
  background: var(--white);
  color: var(--orange);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  border-radius: 999px;
  margin-bottom: 32px;
  font-weight: 700;
}
.statement__big {
  font-family: var(--disp);
  font-weight: 900;
  color: var(--navy-deep);
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.statement__big em {
  color: var(--orange);
}
.statement__close {
  color: var(--text-dim);
  font-size: clamp(14px, 1.25vw, 15.5px);
  line-height: 2.1;
  margin-top: 40px;
  max-width: 34em;
  margin-left: auto; margin-right: auto;
}

/* ---------- CARLIFE ---------- */
.carlife__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.carlife__item figure {
  overflow: hidden;
  border-radius: var(--r-m);
  aspect-ratio: 3/4;
  background: var(--sand);
  margin: 0;
  box-shadow: var(--sh-s);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.carlife__item figure:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-m);
}
.carlife__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.carlife__item figure:hover img { transform: scale(1.06); }
.carlife__cap {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.carlife__cap em {
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
}
.carlife__cap span {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---------- PROMISE — soft cards with icons ---------- */
.promise__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.promise__card {
  padding: 32px 26px;
  background: var(--white);
  border-radius: var(--r-l);
  box-shadow: var(--sh-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promise__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-m);
}
.promise__icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-mist);
  border-radius: 50%;
}
.promise__icon svg {
  width: 34px; height: 34px;
  color: var(--orange);
  stroke-width: 1.6;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promise__num {
  font-family: var(--en);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--orange);
  text-transform: uppercase;
}
.promise__card h3 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 17px;
  color: var(--navy-deep);
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.promise__card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.9;
}

/* ---------- KUMAMOTO PLACES ---------- */
.places {
  background: var(--paper-cream);
  padding: var(--sec-y) 0;
  overflow: hidden;
}
.places__head {
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto 56px;
}
.places__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.place {
  background: var(--white);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.place:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.place__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--sand);
}
.place__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.place:hover .place__photo img { transform: scale(1.05); }
.place__body {
  padding: 26px 26px 30px;
}
.place__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.place__name {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.6;
}
.place__note {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.9;
}

/* ---------- SERVICE ---------- */
.service {
  background: var(--paper);
}
.service__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service__card {
  padding: 32px 26px;
  border-radius: var(--r-l);
  background: var(--paper-warm);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.service__card:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--sh-orange);
}
.service__card:hover .service__brand em,
.service__card:hover h3,
.service__card:hover p { color: var(--white); }
.service__card:hover .service__brand small { color: rgba(255,255,255,0.86); }
.service__card:hover .service__icon { background: rgba(255,255,255,0.18); }
.service__card:hover .service__icon svg { color: var(--white); }
.service__icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  transition: background 0.4s var(--ease-out);
  margin-bottom: 4px;
}
.service__icon svg {
  width: 28px; height: 28px;
  color: var(--orange);
  stroke-width: 1.6;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 0.4s var(--ease-out);
}
.service__brand {
  display: flex; flex-direction: column; gap: 4px;
}
.service__brand small {
  font-family: var(--en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.4s var(--ease-out);
}
.service__brand em {
  font-family: var(--en);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--navy);
  transition: color 0.4s var(--ease-out);
}
.service__card h3 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 15px;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  line-height: 1.6;
  transition: color 0.4s var(--ease-out);
}
.service__card p {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.85;
  transition: color 0.4s var(--ease-out);
}

/* ---------- STOCK ---------- */
.stock {
  background: var(--paper-warm);
}
.stock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.stock__card {
  background: var(--white);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: var(--sh-s);
}
.stock__card:hover { transform: translateY(-8px); box-shadow: var(--sh-m); }
.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.4s var(--ease-out);
}
.stock__card:hover .stock__photo img { transform: scale(1.05); }
.stock__tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 8px 14px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(238, 122, 46, 0.5);
}
.stock__body {
  padding: 26px 26px 30px;
}
.stock__body h3 {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(19px, 1.9vw, 22px);
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.stock__body p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 20px;
}
.stock__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
}
.stock__more:hover { background: var(--orange); color: var(--white); gap: 12px; }
.stock__foot {
  margin-top: 56px;
  padding: 40px 40px;
  background: var(--white);
  border-radius: var(--r-l);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--sh-s);
}
.stock__foot p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.95;
}
.stock__foot strong {
  display: block;
  color: var(--navy-deep);
  font-size: 16px;
  margin-bottom: 4px;
}

/* ---------- STAFF ---------- */
.staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.staff__card {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 28px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--r-l);
  box-shadow: var(--sh-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.staff__card:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.staff__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-m);
  background: var(--sand);
}
.staff__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.staff__card:hover .staff__photo img { transform: scale(1.05); }
.staff__body {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.staff__role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--orange-mist);
  color: var(--orange-deep);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.staff__name {
  font-family: var(--disp);
  font-weight: 900;
  font-size: clamp(18px, 1.7vw, 21px);
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.5;
}
.staff__quote {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 2.0;
}

/* ---------- DELIVERY (笑顔ギャラリー) ---------- */
.delivery {
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
}
.delivery .h-disp { color: var(--white); }
.delivery .h-sec em { color: var(--navy-deep); }
.delivery .eyebrow { color: var(--white); opacity: 0.9; }
.delivery .eyebrow .kslash { background: var(--white); }
.delivery .sec-lead { color: rgba(255,255,255,0.86); }
.delivery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.delivery__item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-l);
  background: rgba(255,255,255,0.1);
  transition: transform 0.5s var(--ease-out);
}
.delivery__item:hover { transform: translateY(-6px); }
.delivery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.delivery__item:hover img { transform: scale(1.05); }
.delivery__cap {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  color: var(--white);
  z-index: 2;
}
.delivery__cap em {
  display: inline-block;
  padding: 4px 10px;
  background: var(--white);
  color: var(--orange);
  font-family: var(--en);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  border-radius: 999px;
  text-transform: uppercase;
}
.delivery__cap span {
  display: block;
  font-family: var(--disp);
  font-weight: 900;
  font-size: 16px;
  margin-top: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.delivery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* ---------- INSTAGRAM FEED ---------- */
.feed {
  background: var(--paper);
}
.feed__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.feed__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--en);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease-out);
}
.feed__handle:hover { background: var(--orange); transform: translateY(-2px); }
.feed__handle svg { width: 18px; height: 18px; }
.feed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.feed__item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--r-m);
  background: var(--sand);
  transition: transform 0.4s var(--ease-out);
}
.feed__item:hover { transform: translateY(-4px); }
.feed__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feed__item:hover img { transform: scale(1.06); }
.feed__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(238, 122, 46, 0);
  transition: background 0.35s var(--ease-out);
}
.feed__item:hover::after { background: rgba(238, 122, 46, 0.20); }

/* ---------- VOICES ---------- */
.voices {
  background: var(--paper-warm);
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.voice {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--r-l);
  box-shadow: var(--sh-s);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.voice:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }
.voice__mark {
  font-family: var(--disp);
  font-weight: 900;
  font-size: 44px;
  color: var(--orange);
  line-height: 0.5;
  height: 24px;
}
.voice > p {
  font-size: 14px;
  line-height: 2.0;
  color: var(--text);
}
.voice footer {
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  display: flex; flex-direction: column; gap: 4px;
}
.voice footer b {
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 700;
}
.voices__note {
  margin-top: 32px;
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ---------- STORE ---------- */
.store__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}
.store__grid figure {
  overflow: hidden;
  border-radius: var(--r-l);
  background: var(--sand);
  margin: 0;
  aspect-ratio: 16/10;
  height: 100%;
  box-shadow: var(--sh-s);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.store__grid figure:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.store__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.store__grid figure:hover img { transform: scale(1.04); }
.store__imgnote {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.store__info {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--r-l);
  box-shadow: var(--sh-s);
}
.store__info dt {
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.store__info dd {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-deep);
  line-height: 1.75;
  letter-spacing: 0.03em;
}
.store__info dd small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ---------- RECRUIT BAND ---------- */
.recruit-band {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px var(--pad-x);
}
.recruit-band__bg {
  position: absolute;
  inset: 0;
}
.recruit-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 12s var(--ease-out);
}
.recruit-band.is-in .recruit-band__bg img { transform: scale(1.0); }
.recruit-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(238, 122, 46, 0.86) 0%,
      rgba(212, 102, 27, 0.78) 100%);
}
.recruit-band__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  color: var(--white);
}
.recruit-band__inner .h-sec { color: var(--white); }
.recruit-band__inner .h-sec em { color: var(--navy-deep); }
.recruit-band__body {
  color: rgba(255,255,255,0.94);
  font-size: 15px;
  line-height: 2.0;
  margin: 24px 0 32px;
  text-wrap: balance;
}
.recruit-band__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--white);
  color: var(--orange);
  border-radius: 999px;
  font-family: var(--en);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

/* ---------- CONTACT CTA ---------- */
.contact-cta {
  text-align: center;
  padding: clamp(110px, 15vw, 180px) var(--pad-x);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  background: var(--orange-mist);
  opacity: 0.55;
  z-index: 0;
}
.contact-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-cta__inner .eyebrow { justify-content: center; }
.contact-cta__body {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 2.05;
  margin: 28px 0 40px;
  text-wrap: balance;
}
.contact-cta__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 88px var(--pad-x) 36px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__logo img { width: 36px; height: 36px; }
.footer__logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer__logo-en {
  font-family: var(--en);
  font-weight: 800; font-size: 17px;
  letter-spacing: 0.16em;
}
.footer__logo-jp {
  margin-top: 6px;
  font-family: var(--disp);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.65;
}
.footer__tag {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.footer__tag em { color: var(--orange); }
.footer__tagsub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.95;
  margin-bottom: 20px;
}
.footer__kkk {
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.55);
}
.footer__col h4 {
  font-family: var(--en);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  transition: color 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--orange); }
.footer__note {
  max-width: var(--max);
  margin: 56px auto 32px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
}
.footer__bottom a { color: rgba(255,255,255,0.72); }

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 12px 32px rgba(23, 36, 68, 0.20);
}
.floating-cta svg { width: 16px; height: 16px; }
.floating-cta__line {
  background: #06C755;
  color: var(--white);
}
.floating-cta__visit {
  background: var(--orange);
  color: var(--white);
}

/* ================================================================
   MOBILE FIRST
   ================================================================ */
@media (max-width: 900px) {
  :root {
    --pad-x: 18px;
    --sec-y: clamp(72px, 16vw, 110px);
    --r-l: 22px;
    --r-xl: 32px;
  }
  body { font-size: 14.5px; line-height: 1.9; letter-spacing: 0.02em; }
  .h-sec { font-size: clamp(24px, 6.4vw, 34px) !important; line-height: 1.45; }
  .btn { font-size: 14px; padding: 16px 22px; }

  /* Hide group link on mobile inside drawer separately styled below */
  .nav__group-link { display: none; }

  /* Nav */
  .nav { padding: 14px var(--pad-x); }
  .nav.is-scrolled { padding: 10px var(--pad-x); }
  .nav__logo img { width: 28px; height: 28px; }
  .nav__logo-en { font-size: 14.5px; }
  .nav__logo-jp { font-size: 9.5px; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(88vw, 380px);
    background: var(--paper);
    color: var(--navy) !important;
    padding: 80px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: -24px 0 60px rgba(23,36,68,0.12);
  }
  .nav.is-menu-open .nav__links { transform: none; }
  .nav__links > a {
    font-size: 17px;
    font-weight: 700;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: 0.06em;
    opacity: 1;
    color: var(--navy);
  }
  .nav__cta-m {
    display: flex !important;
    justify-content: center;
    margin-top: 24px;
    padding: 18px 24px !important;
    background: var(--orange) !important;
    color: var(--white) !important;
    text-align: center;
    border-radius: 999px !important;
    border: none !important;
    font-weight: 700;
    box-shadow: 0 10px 24px -8px rgba(238,122,46,0.5);
  }
  .nav.is-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(23,36,68,0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    order: 2;
    padding: 44px var(--pad-x) 72px;
  }
  .hero__block {
    right: -80px; bottom: -80px;
    width: 180px; height: 180px;
  }
  .hero__right {
    order: 1;
    aspect-ratio: 4/3;
    min-height: 360px;
  }
  .hero__photo img { object-position: 60% 45%; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 20px; line-height: 1.32; }
  .hero__sub { font-size: 13.5px; margin-bottom: 28px; line-height: 1.95; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn { justify-content: center; padding: 18px 24px; font-size: 14.5px; }
  .hero__meta { gap: 14px; margin-top: 28px; }
  .hero__meta-item { font-size: 11.5px; }
  .hero__dot--1 { top: 40px; }
  .hero__dot--2 {
    right: 16px; bottom: 16px;
    width: 52px; height: 52px;
    border-width: 3px;
  }
  .hero__band {
    bottom: 10px;
    font-size: 9px;
    letter-spacing: 0.28em;
    padding: 6px 12px;
  }
  .hero__label { font-size: 10.5px; padding: 8px 16px; margin-bottom: 20px; }

  /* Keys bar */
  .keys-bar { padding: 40px var(--pad-x); }
  .keys-bar__inner {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
  .key { padding: 12px 4px; gap: 8px; }
  .key__icon { width: 46px; height: 46px; }
  .key__icon svg { width: 24px; height: 24px; }
  .key__label { font-size: 11px; letter-spacing: 0.02em; }
  .key__sub { display: none; }

  /* Statement */
  .statement { padding: 96px var(--pad-x); }
  .statement__big { font-size: clamp(26px, 6.5vw, 36px); line-height: 1.55; }

  /* Sec split */
  .sec-split {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 32px;
    align-items: start;
  }

  /* Carlife */
  .carlife__grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Promise */
  .promise__grid {
    grid-template-columns: none;
    grid-auto-columns: 78%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 40vw;
    gap: 14px;
    scrollbar-width: none;
    margin: 40px calc(-1 * var(--pad-x)) 0;
    padding-left: var(--pad-x);
    padding-right: 40vw;
  }
  .promise__grid::-webkit-scrollbar { display: none; }
  .promise__card { scroll-snap-align: start; padding: 26px 22px; }
  .promise__icon { width: 52px; height: 52px; }
  .promise__icon svg { width: 28px; height: 28px; }

  /* Places */
  .places__head { margin-bottom: 36px; }
  .places__grid {
    grid-template-columns: none;
    grid-auto-columns: 78%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 40vw;
    gap: 14px;
    scrollbar-width: none;
  }
  .places__grid::-webkit-scrollbar { display: none; }
  .place { scroll-snap-align: start; }

  /* Service */
  .service__grid {
    grid-template-columns: none;
    grid-auto-columns: 72%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-right: 40vw;
    scrollbar-width: none;
    margin: 40px calc(-1 * var(--pad-x)) 0;
    padding-left: var(--pad-x);
  }
  .service__grid::-webkit-scrollbar { display: none; }
  .service__card { scroll-snap-align: start; min-height: 220px; padding: 26px 22px; }

  /* Stock */
  .stock__grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
  .stock__foot {
    padding: 26px 22px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .stock__foot .btn { justify-content: center; }

  /* Staff */
  .staff__grid { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
  .staff__card { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .staff__body { padding: 4px 8px 12px; }

  /* Delivery */
  .delivery__grid {
    grid-template-columns: none;
    grid-auto-columns: 72%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 40vw;
    gap: 12px;
    scrollbar-width: none;
    margin: 40px calc(-1 * var(--pad-x)) 0;
    padding-left: var(--pad-x);
  }
  .delivery__grid::-webkit-scrollbar { display: none; }
  .delivery__item { scroll-snap-align: start; }

  /* Feed */
  .feed__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .feed__grid { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Voices */
  .voices__grid {
    grid-template-columns: none;
    grid-auto-columns: 82%;
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-right: 30vw;
    gap: 12px;
    scrollbar-width: none;
    margin: 40px calc(-1 * var(--pad-x)) 0;
    padding-left: var(--pad-x);
  }
  .voices__grid::-webkit-scrollbar { display: none; }
  .voice { scroll-snap-align: start; padding: 26px 22px; }

  /* Store */
  .store__grid { grid-template-columns: 1fr; margin-top: 24px; }
  .store__info {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px 22px;
    margin-top: 32px;
  }

  /* Recruit */
  .recruit-band { min-height: 52vh; padding: 72px var(--pad-x); }

  /* Contact */
  .contact-cta { padding: 80px var(--pad-x); }
  .contact-cta__btns { flex-direction: column; align-items: stretch; }
  .contact-cta__btns .btn { justify-content: center; padding: 16px 24px; }

  /* Footer */
  .footer { padding: 64px var(--pad-x) 28px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Floating CTA */
  .floating-cta {
    display: flex;
    right: 14px;
    bottom: 14px;
    flex-direction: row;
  }
  .floating-cta a { padding: 12px 16px; font-size: 12px; letter-spacing: 0.04em; }

  .h-sec { margin-top: 12px; }
  .sec-lead { margin-top: 12px; font-size: 13.5px; }
}

/* Tablet */
@media (min-width: 901px) and (max-width: 1200px) {
  .promise__grid { grid-template-columns: repeat(3, 1fr); }
  .service__grid { grid-template-columns: repeat(3, 1fr); }
  .carlife__grid { grid-template-columns: repeat(2, 1fr); }
  .feed__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__photo img { animation: none; transform: none; }
}

/* ==============================================================
   小型スマホ最適化 (〜560px)
   ============================================================== */
@media (max-width: 560px) {
  :root { --pad-x: 16px; }

  /* Keys bar: 5列は窮屈なため 3列 + 2列に折り返す */
  .keys-bar__inner { grid-template-columns: repeat(3, 1fr); gap: 10px 6px; }
  .key { padding: 10px 2px; gap: 6px; }
  .key__icon { width: 40px; height: 40px; }
  .key__icon svg { width: 20px; height: 20px; }
  .key__label { font-size: 10.5px; line-height: 1.35; }

  /* 見出し・本文の圧縮 */
  .hero__title { font-size: clamp(25px, 8.2vw, 32px); line-height: 1.34; }
  .h-sec { font-size: clamp(21px, 6.6vw, 27px) !important; }
  .statement__big { font-size: clamp(21px, 6.4vw, 27px); line-height: 1.6; }
  body { font-size: 14px; }

  /* 2列グリッドの間隔調整 */
  .carlife__grid { gap: 10px; }
  .feed__grid { gap: 6px; }

  /* ボタンは縦積みで全幅 (タップしやすさ優先) */
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .btn { padding: 15px 18px; font-size: 13.5px; }
}

/* 横向き(ランドスケープ)でヒーローが伸びすぎるのを防止 */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(22px, 5vw, 30px); }
}

/* ==============================================================
   モバイルドロワー 重なり修正
   ドロワーに z-index 未指定のため、フッター等が上に抜けていた問題
   ============================================================== */
@media (max-width: 900px) {
  /* 親navを最前面に (固定CTA z-index:90 より上) */
  .nav.is-menu-open { z-index: 1000; }

  /* 半透明オーバーレイ: nav内で背面、ただしページ本体より前面 */
  .nav.is-menu-open::before { z-index: 1; }

  /* ドロワー本体: オーバーレイより前面 */
  .nav__links {
    z-index: 2;
    overflow-y: auto;               /* 項目が多い端末でもスクロール可 */
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  /* ロゴ・閉じるボタンをドロワーより前面に */
  .nav__logo, .nav__toggle { position: relative; z-index: 3; }

  /* メニュー展開中は固定CTAを隠す (LINEボタンの突き抜け防止) */
  .nav.is-menu-open ~ .floating-cta,
  body:has(.nav.is-menu-open) .floating-cta { opacity: 0 !important; pointer-events: none !important; }
}

/* ---------- 送信完了メッセージ ---------- */
.form__thanks {
  padding: 40px 32px;
  background: var(--paper, #FAF6EF);
  border-radius: var(--r-l, 22px);
  border: 1px solid var(--line, rgba(23,36,68,0.12));
  text-align: center;
}
.form__thanks-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--navy, #172444);
  margin: 0 0 12px;
}
.form__thanks-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--navy, #172444);
  opacity: 0.78;
  margin: 0;
}


/* ==============================================================
   お問い合わせフォーム
   v8では未定義だったため新規作成
   ============================================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--sans);
}
.form label.full { grid-column: 1 / -1; }

.form .k {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form .k em {
  color: var(--orange);
  font-style: normal;
  margin-left: 2px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form textarea {
  resize: vertical;
  min-height: 140px;
}
.form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23223458' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(34, 52, 79, 0.35); }

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(238, 122, 46, 0.14);
}

/* 同意チェックボックス */
.form__consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--navy);
  cursor: pointer;
}
.form__consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}
.form__consent a { color: var(--orange); }

/* エラー表示 */
.form__error {
  display: none;
  padding: 14px 18px;
  background: var(--orange-mist);
  border: 1.5px solid var(--orange-soft);
  border-radius: var(--r-s);
  font-size: 14px;
  line-height: 1.7;
  color: var(--orange-deep);
}
.form__error.is-visible { display: block; }

/* 送信ボタン */
.form__submit {
  align-self: flex-start;
  min-width: 220px;
  justify-content: center;
  margin-top: 4px;
}

.form__note {
  font-size: 13px;
  line-height: 1.9;
  color: var(--navy);
  opacity: 0.6;
  margin: 0;
}

@media (max-width: 700px) {
  .form { gap: 18px; }
  .form .row { grid-template-columns: 1fr; gap: 18px; }
  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form select,
  .form textarea {
    font-size: 16px;   /* iOSの自動ズーム防止 */
    padding: 13px 15px;
  }
  .form textarea { min-height: 120px; }
  .form__submit { width: 100%; align-self: stretch; }
}


/* ==============================================================
   お問い合わせページ（page-hero / contact-quick / form-wrap）
   v8では未定義だったため新規作成
   ============================================================== */
.page-hero {
  padding: calc(var(--sec-y, 110px) + 60px) var(--pad-x) var(--sec-y, 110px);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
}
.page-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-hero__inner .eyebrow { justify-content: center; }

/* クイック導線 */
.contact-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.contact-quick a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-m);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-quick a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(34, 52, 79, 0.35);
}
.contact-quick a > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-quick b {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.contact-quick small {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.6;
}
.contact-quick .arr {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.contact-quick a:hover .arr { transform: translateX(4px); }

/* フォームの外枠 */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-l);
}

@media (max-width: 700px) {
  .page-hero { padding: 120px var(--pad-x) clamp(48px, 10vw, 72px); }
  .contact-quick { grid-template-columns: 1fr; gap: 12px; }
  .contact-quick a { padding: 18px 20px; }
  .form-wrap {
    padding: 22px 18px;
    border-radius: var(--r-m);
  }
}


/* ---------- プライバシーポリシー本文 ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--sans);
  color: var(--navy);
}
.legal h2 {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  margin: clamp(36px, 5vw, 52px) 0 14px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--line);
  letter-spacing: 0.02em;
}
.legal h2:first-child { margin-top: 0; }
.legal p,
.legal li {
  font-size: 15px;
  line-height: 2;
  opacity: 0.82;
}
.legal p { margin: 0 0 16px; }
.legal ul,
.legal ol { margin: 0 0 16px; padding-left: 1.4em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--orange); }

@media (max-width: 700px) {
  .legal p, .legal li { font-size: 14.5px; line-height: 1.95; }
}
