/* =====================================================================
   vehicle Co., Ltd. — Corporate Site
   Design System :  Light / Clean / Trust  (旧HPトンマナ踏襲・高品質刷新)
   --------------------------------------------------------------------
   Palette  : white + slate neutrals / blue #2563EB primary / emerald accent
   Type     : Space Grotesk (latin/numerals) + Noto Sans JP (body)
   ===================================================================== */

/* ---------- 1. Design Tokens ---------------------------------------- */
:root {
  /* surfaces */
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;          /* slate-50  */
  --bg-alt:      #f1f5f9;          /* slate-100 */
  --bg-tint:     #eff6ff;          /* blue-50   */
  --bg-glass:    rgba(255, 255, 255, 0.72);

  /* hairlines */
  --line:        #e6ebf2;          /* ~slate-200 */
  --line-2:      #cdd7e4;          /* ~slate-300 */

  /* text */
  --ink:         #0f1b33;          /* headings (deep navy-slate) */
  --text:        #1e293b;          /* slate-800 */
  --text-soft:   #4a5a72;          /* slate-600 */
  --text-mute:   #5b6b85;          /* darkened for WCAG AA on white */

  /* brand */
  --brand:       #2563eb;          /* blue-600 */
  --brand-deep:  #1d4ed8;          /* blue-700 */
  --brand-light: #3b82f6;          /* blue-500 */
  --accent:      #0ea5a3;          /* teal-green secondary */
  --accent-2:    #10b981;          /* emerald */
  --grad:        linear-gradient(118deg, #2563eb 0%, #1d8fe0 55%, #0fb5a6 115%);
  --grad-blue:   linear-gradient(120deg, #2f6dff 0%, #1d4ed8 100%);
  --grad-soft:   linear-gradient(120deg, #eff6ff, #e7fbf6);

  /* footer (dark) */
  --footer-bg:   #0c1626;          /* deep navy */
  --footer-2:    #122036;
  --footer-line: rgba(255,255,255,.10);
  --footer-text: #aab8cd;
  --footer-head: #ffffff;

  /* effects */
  --shadow-sm:   0 8px 24px -14px rgba(15, 27, 51, 0.28);
  --shadow:      0 24px 60px -34px rgba(15, 27, 51, 0.36);
  --shadow-blue: 0 16px 38px -14px rgba(37, 99, 235, 0.45);

  /* type */
  --font-jp:     "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en:     "Space Grotesk", "Noto Sans JP", sans-serif;

  /* layout */
  --maxw:        1240px;
  --gut:         clamp(20px, 5vw, 56px);
  --radius:      18px;
  --radius-lg:   28px;

  /* motion */
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);

  --header-h:    78px;
}

/* ---------- 2. Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: rgba(37, 99, 235, 0.16); color: var(--brand-deep); }

[hidden] { display: none !important; }   /* 写真差し込み後の予備プレースホルダーを確実に隠す */

/* ---------- 3. Typography ------------------------------------------ */
.font-en { font-family: var(--font-en); }

h1, h2, h3, h4 { line-height: 1.32; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }

.eyebrow {
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.95rem);
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-lead {
  color: var(--text-soft);
  font-size: clamp(.98rem, 1.6vw, 1.08rem);
  max-width: 56ch;
}

/* ---------- 4. Layout helpers -------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section   { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--tight { padding-block: clamp(54px, 8vw, 104px); }

.bg-1 { background: var(--bg); }
.bg-2 { background: var(--bg-soft); }
.bg-0 { background: var(--bg-alt); }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.divider { height: 1px; background: var(--line); border: 0; }

.head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.head .eyebrow { margin-bottom: 22px; }
.head.center { margin-inline: auto; }

/* ---------- 5. Buttons --------------------------------------------- */
.btn {
  --pad: 16px 30px;
  display: inline-flex; align-items: center; gap: .7em;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .02em;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), border-color .4s, color .4s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(37, 99, 235, 0.6); }

.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--text);
  background: #fff;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

.btn--lg { --pad: 18px 36px; font-size: 1rem; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-en);
  font-weight: 600; font-size: .9rem; letter-spacing: .03em;
  color: var(--brand);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--line-2);
  transition: color .3s, border-color .3s, gap .3s;
}
.tlink:hover { color: var(--brand-deep); border-color: var(--brand); gap: .9em; }

/* ---------- 6. Header ---------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h);
  z-index: 900;
  display: flex; align-items: center;
  transition: background .45s var(--ease), backdrop-filter .45s, border-color .45s, height .45s var(--ease), box-shadow .45s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -18px rgba(15, 27, 51, 0.4);
}
.header__inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-en); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.02em; color: var(--ink);
}
.brand__mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--grad-blue);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px -6px rgba(37, 99, 235, 0.6);
  position: relative; overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.55), transparent 50%);
}
.brand__mark svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.brand span { color: var(--ink); }
.brand small { color: var(--brand); }
.brand__logo { height: 30px; width: auto; display: block; transition: height .45s var(--ease); }
.header.scrolled .brand__logo { height: 26px; }
.brand__logo--white { filter: brightness(0) invert(1); }
.footer__brand .brand__logo { height: 38px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  color: var(--text-soft);
  font-family: var(--font-en);
  transition: color .3s;
}
.nav a .ja { font-family: var(--font-jp); font-size: .8rem; }
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px; border-radius: 2px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--brand); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__cta { display: inline-flex; align-items: center; gap: 14px; }
.header .btn { padding: 11px 22px; font-size: .84rem; }

/* hamburger */
.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 1001; }
.burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s, background .3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span { background: var(--ink); }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gut);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; }
.drawer nav a {
  font-family: var(--font-en); font-size: clamp(1.8rem, 9vw, 2.8rem); font-weight: 700;
  letter-spacing: -.02em; color: var(--ink);
  padding: 10px 0; display: flex; align-items: baseline; gap: 16px;
  transform: translateY(24px); opacity: 0;
  transition: transform .6s var(--ease), opacity .6s, color .3s;
}
.drawer nav a .ja { font-family: var(--font-jp); font-size: .9rem; color: var(--text-mute); }
body.menu-open .drawer nav a { transform: translateY(0); opacity: 1; }
body.menu-open .drawer nav a:nth-child(1) { transition-delay: .12s; }
body.menu-open .drawer nav a:nth-child(2) { transition-delay: .18s; }
body.menu-open .drawer nav a:nth-child(3) { transition-delay: .24s; }
body.menu-open .drawer nav a:nth-child(4) { transition-delay: .30s; }
.drawer nav a:hover { color: var(--brand); }
.drawer__foot { margin-top: 48px; color: var(--text-mute); font-size: .82rem; }

/* ---------- 7. Hero (HOME / RECRUIT) ------------------------------- */
.hero {
  position: relative; min-height: 90svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 20px); padding-bottom: 90px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 8%, #eaf2ff 0%, rgba(234,242,255,0) 55%),
    radial-gradient(90% 80% at 10% 100%, #e9fbf6 0%, rgba(233,251,246,0) 55%),
    var(--bg);
}
.hero__aura { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .55;
}
.blob--1 { width: 42vw; height: 42vw; right: -6vw; top: -8vw; background: radial-gradient(circle, rgba(59,130,246,.30), transparent 65%); }
.blob--2 { width: 36vw; height: 36vw; right: 18vw; top: 24vw; background: radial-gradient(circle, rgba(14,165,163,.22), transparent 65%); }
.blob--3 { width: 34vw; height: 34vw; left: -10vw; bottom: -14vw; background: radial-gradient(circle, rgba(37,99,235,.16), transparent 65%); }
/* faint grid mesh */
.hero__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 35%, #000 25%, transparent 78%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; }

.hero__layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(28px, 4vw, 60px); align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 100px;
  border: 1px solid var(--line-2); background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: .76rem; color: var(--text-soft); letter-spacing: .03em;
  margin-bottom: 30px;
}
.hero__badge b { color: var(--brand); font-weight: 700; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--brand); animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: 1;} 100% { transform: scale(1.9); opacity: 0;} }

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.4rem);
  line-height: 1.18; letter-spacing: -.035em; font-weight: 800; color: var(--ink);
  margin-bottom: 26px;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; white-space: nowrap; }
.hero h1 .line > span { display: inline-block; }
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.14rem); color: var(--text-soft);
  max-width: 42ch; margin-bottom: 38px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* hero visual (photo slot, 旧HP風 ブロブ) */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 520px; aspect-ratio: 1 / 1; }
.hero__photo-bg {
  position: absolute; inset: 4% 0 0 4%; border-radius: 50%;
  background: linear-gradient(150deg, #dfeaff 0%, #e6f9f3 100%);
  z-index: 0;
}
.hero__photo {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  border-radius: 46% 54% 56% 44% / 52% 46% 54% 48%;
  background: linear-gradient(160deg, #eef4ff, #e9fbf6);
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__photo .ph svg { width: 38%; max-width: 150px; opacity: .55; }
/* floating mini stat chip on hero photo */
.hero__chip {
  position: absolute; z-index: 2; bottom: 8%; left: -4%;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero__chip .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-tint); color: var(--brand); display: grid; place-items: center; }
.hero__chip .ic svg { width: 20px; }
.hero__chip b { font-family: var(--font-en); font-size: 1.2rem; color: var(--ink); line-height: 1; }
.hero__chip small { display: block; color: var(--text-mute); font-size: .68rem; letter-spacing: .04em; }

/* hero ticker strip */
.hero__ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
  overflow: hidden;
}
.ticker__track { display: flex; gap: 56px; padding: 15px 0; width: max-content; animation: ticker 34s linear infinite; }
.ticker__track span {
  font-family: var(--font-en); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-mute); display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.ticker__track span::after { content: "✦"; color: var(--brand); }
@keyframes ticker { to { transform: translateX(-50%); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 74px; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-en); font-size: .62rem; letter-spacing: .3em; color: var(--text-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .bar { width: 2px; height: 44px; border-radius: 2px; background: var(--line-2); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--brand); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { to { top: 120%; } }

/* page hero (sub pages) */
.phero {
  position: relative; padding: calc(var(--header-h) + 78px) 0 64px;
  overflow: hidden;
  background:
    radial-gradient(110% 90% at 90% 0%, #eaf2ff 0%, rgba(234,242,255,0) 55%),
    radial-gradient(80% 80% at 0% 100%, #e9fbf6 0%, rgba(233,251,246,0) 60%),
    var(--bg);
}
.phero__aura { position: absolute; inset: 0; z-index: 0; }
.phero .blob { opacity: .42; }
.phero__inner { position: relative; z-index: 3; }
.phero h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); letter-spacing: -.03em; line-height: 1.22; margin-bottom: 18px; color: var(--ink); }
.phero p { color: var(--text-soft); max-width: 52ch; }
.crumbs { display: flex; gap: 10px; font-family: var(--font-en); font-size: .74rem; letter-spacing: .1em; color: var(--text-mute); margin-bottom: 24px; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--brand); font-weight: 600; }

/* ---------- 8. Stat / numbers -------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 40px) clamp(20px, 3vw, 32px); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.stat__num { font-family: var(--font-en); font-weight: 600; font-size: clamp(2.4rem, 5.2vw, 3.5rem); line-height: 1; letter-spacing: -.03em; display: flex; align-items: baseline; gap: 4px; }
.stat__num .unit { font-size: .34em; color: var(--accent); letter-spacing: 0; font-weight: 700; }
.stat__num .val { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 14px; color: var(--text-soft); font-size: .88rem; }
.stat__en { font-family: var(--font-en); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); margin-top: 4px; }

/* ---------- 9. Cards ----------------------------------------------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(28px, 3.4vw, 38px);
  overflow: hidden; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .5s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card::after {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.07), transparent 60%);
  left: var(--mx, 50%); top: var(--my, 50%); transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 24px;
  background: var(--bg-tint); border: 1px solid #dbe7ff;
  color: var(--brand);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.26rem; margin-bottom: 12px; letter-spacing: -.01em; color: var(--ink); }
.card h3 .en { display: block; font-family: var(--font-en); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .92rem; }
.card__no { position: absolute; top: 26px; right: 30px; font-family: var(--font-en); font-size: .8rem; color: var(--line-2); letter-spacing: .1em; }

/* ---------- 10. Feature rows (strengths) --------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 8vw, 116px); }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media {
  position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(150deg, #eef4ff, #e9fbf6);
  box-shadow: var(--shadow-sm);
}
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__media .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.feature__media .ph svg { width: 34%; max-width: 150px; opacity: .55; }
.feature__media .tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  padding: 8px 14px; border-radius: 100px; font-family: var(--font-en);
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.86); border: 1px solid var(--line); backdrop-filter: blur(6px);
  color: var(--brand); font-weight: 600;
}
.feature__no { font-family: var(--font-en); font-size: .82rem; letter-spacing: .28em; color: var(--brand); margin-bottom: 16px; font-weight: 600; }
.feature h3 { font-size: clamp(1.5rem, 3vw, 2.05rem); letter-spacing: -.02em; margin-bottom: 16px; color: var(--ink); }
.feature p { color: var(--text-soft); margin-bottom: 22px; }
.feature__list { display: flex; flex-direction: column; gap: 11px; }
.feature__list li { display: flex; gap: 12px; color: var(--text-soft); font-size: .92rem; align-items: flex-start; }
.feature__list li::before {
  content: ""; flex: 0 0 20px; height: 20px; margin-top: 4px; border-radius: 6px;
  background: var(--bg-tint);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L20 7' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l5 5L20 7' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
  background: var(--brand);
}

/* ---------- 11. Vision statement ----------------------------------- */
.statement { position: relative; text-align: center; }
.statement__big {
  font-size: clamp(1.9rem, 5.2vw, 3.9rem); line-height: 1.32; letter-spacing: -.02em; font-weight: 800; color: var(--ink);
}
.statement__big .muted { color: var(--text-mute); }
.statement__sub { margin-top: 30px; color: var(--text-soft); max-width: 58ch; margin-inline: auto; }

/* ---------- 12. CTA band (recruit) — 旧HP風ソリッドブルー ----------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-blue); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(50% 70% at 5% 100%, rgba(14,165,163,.4), transparent 60%);
}
.cta-band__bg { display: none; }
.cta-band__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(64px, 10vw, 130px); }
.cta-band .eyebrow { color: rgba(255,255,255,.85); }
.cta-band .eyebrow::before { background: rgba(255,255,255,.6); }
.cta-band h2 { font-size: clamp(1.9rem, 5vw, 3.6rem); letter-spacing: -.03em; line-height: 1.28; margin-bottom: 22px; font-weight: 800; color: #fff; }
.cta-band h2 .gradient-text { background: linear-gradient(120deg,#bfe9ff,#d6fff4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 0 auto 36px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary { background: #fff; color: var(--brand-deep); box-shadow: 0 16px 36px -14px rgba(0,0,0,.4); }
.cta-band .btn--primary:hover { box-shadow: 0 22px 46px -14px rgba(0,0,0,.5); }
.cta-band .btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ---------- 13. News ----------------------------------------------- */
.news { display: flex; flex-direction: column; }
.news__item {
  display: grid; grid-template-columns: 150px 120px 1fr auto; gap: 24px; align-items: center;
  padding: 24px 8px; border-top: 1px solid var(--line); transition: padding-left .4s var(--ease), background .4s;
}
.news__item:last-child { border-bottom: 1px solid var(--line); }
.news__item:hover { padding-left: 18px; background: linear-gradient(90deg, var(--bg-tint), transparent); }
.news__date { font-family: var(--font-en); color: var(--text-mute); font-size: .84rem; letter-spacing: .04em; }
.news__cat { justify-self: start; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-en); font-weight: 600;
  padding: 5px 12px; border-radius: 100px; background: var(--bg-tint); color: var(--brand); }
.news__ttl { color: var(--text); font-size: .98rem; }
.news__item:hover .news__ttl { color: var(--brand-deep); }
.news__arrow { color: var(--line-2); transition: transform .4s, color .4s; }
.news__item:hover .news__arrow { transform: translateX(4px); color: var(--brand); }

/* ---------- 14. Company / table ------------------------------------ */
.profile { border-top: 1px solid var(--line); }
.profile__row { display: grid; grid-template-columns: 220px 1fr; gap: 20px; padding: 24px 4px; border-bottom: 1px solid var(--line); }
.profile__row dt { font-family: var(--font-en); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); padding-top: 3px; font-weight: 600; }
.profile__row dd { color: var(--text-soft); }
.profile__row dd b { color: var(--ink); font-weight: 600; }

/* representative message */
.message { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.message__portrait { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, #eef4ff, #e9fbf6); box-shadow: var(--shadow-sm); }
.message__portrait img { width: 100%; height: 100%; object-fit: cover; }
.message__portrait .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.message__portrait .ph svg { width: 42%; opacity: .5; }
.message__portrait .name { position: absolute; left: 22px; bottom: 22px; z-index: 2; padding: 12px 18px; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 14px; backdrop-filter: blur(6px); }
.message__portrait .name b { display: block; font-size: 1.16rem; color: var(--ink); }
.message__portrait .name small { color: var(--text-mute); font-family: var(--font-en); letter-spacing: .08em; font-size: .72rem; }
.message__body .quote { font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.5; letter-spacing: -.02em; font-weight: 700; margin-bottom: 26px; color: var(--ink); }
.message__body p { color: var(--text-soft); margin-bottom: 16px; }
.message__body .sign { margin-top: 28px; font-family: var(--font-en); color: var(--text-mute); letter-spacing: .06em; font-size: .84rem; }
.message__body .sign b { color: var(--ink); font-size: 1.06rem; }

/* values list */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 3.2vw, 40px); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--line-2); }
.value .no { font-family: var(--font-en); font-size: .76rem; letter-spacing: .18em; color: var(--brand); margin-bottom: 20px; font-weight: 600; }
.value h3 { font-size: 1.3rem; margin-bottom: 14px; color: var(--ink); }
.value h3 .en { display:block; font-family: var(--font-en); font-size:.68rem; letter-spacing:.14em; text-transform:uppercase; color: var(--text-mute); margin-top:6px; font-weight:600;}
.value p { color: var(--text-soft); font-size: .9rem; }

/* ---------- 15. Pharmacy / stores ---------------------------------- */
.stores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.store {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; transition: transform .5s var(--ease), box-shadow .5s, border-color .5s;
}
.store:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.store__img { aspect-ratio: 16/10; position: relative; background: linear-gradient(150deg, #eef4ff, #e9fbf6); overflow: hidden; }
.store__img img { width: 100%; height: 100%; object-fit: cover; }
.store__img .ph { position: absolute; inset: 0; display: grid; place-items: center; }
.store__img .ph svg { width: 60px; opacity: .5; }
.store__no { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-en); font-size: .7rem; letter-spacing: .12em; padding: 5px 11px; border-radius: 100px; background: rgba(255,255,255,.9); border: 1px solid var(--line); color: var(--brand); font-weight: 600; backdrop-filter: blur(6px); }
.store__body { padding: 24px; }
.store__body h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--ink); }
.store__body .addr { color: var(--text-soft); font-size: .86rem; display: flex; gap: 8px; }
.store__body .addr svg { width: 15px; flex-shrink: 0; margin-top: 4px; color: var(--brand); }
.store__meta { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: .7rem; letter-spacing: .02em; padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line); color: var(--text-soft); background: var(--bg-soft); }

/* process flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.flow__step { position: relative; padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.flow__step .n { font-family: var(--font-en); font-size: .76rem; letter-spacing: .18em; color: var(--brand); margin-bottom: 16px; font-weight: 600; }
.flow__step h4 { font-size: 1.06rem; margin-bottom: 8px; color: var(--ink); }
.flow__step p { color: var(--text-soft); font-size: .84rem; }
.flow__step:not(:last-child)::after { content: "→"; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); color: var(--line-2); z-index: 2; font-size: 1.1rem; }

/* ---------- 16. Recruit page --------------------------------------- */
.rec-hero { min-height: 90svh; }

/* benefit grid */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-2); }
.benefit .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-tint); color: var(--brand); margin-bottom: 20px; border: 1px solid #dbe7ff; }
.benefit .ic svg { width: 22px; }
.benefit h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--ink); }
.benefit p { color: var(--text-soft); font-size: .88rem; }

/* interview cards */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; transition: transform .5s var(--ease), box-shadow .5s, border-color .5s; }
.voice:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.voice__img { aspect-ratio: 1/1; position: relative; background: linear-gradient(160deg, #eef4ff, #e9fbf6); }
.voice__img img { width: 100%; height: 100%; object-fit: cover; }
.voice__img .ph { position:absolute; inset:0; display:grid; place-items:center; }
.voice__img .ph svg { width: 38%; opacity: .5; }
.voice__body { padding: 26px; }
.voice__role { font-family: var(--font-en); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; font-weight: 600; }
.voice__body h4 { font-size: 1.1rem; line-height: 1.6; margin-bottom: 12px; color: var(--ink); }
.voice__body p { color: var(--text-soft); font-size: .86rem; }
.voice__name { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--text-mute); font-size: .82rem; }
.voice__name b { color: var(--ink); }

/* positions / requirements */
.positions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.position { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; position: relative; overflow: hidden; transition: border-color .5s, transform .5s var(--ease), box-shadow .5s; }
.position:hover { border-color: var(--line-2); transform: translateY(-4px); box-shadow: var(--shadow); }
.position .badge { display: inline-block; font-family: var(--font-en); font-size: .68rem; letter-spacing: .1em; padding: 5px 12px; border-radius: 100px; background: var(--bg-tint); color: var(--brand); border: 1px solid #dbe7ff; margin-bottom: 18px; font-weight: 600; }
.position h3 { font-size: 1.38rem; margin-bottom: 12px; color: var(--ink); }
.position p { color: var(--text-soft); font-size: .9rem; margin-bottom: 22px; }
.position dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; font-size: .84rem; }
.position dt { color: var(--text-mute); }
.position dd { color: var(--text-soft); }

/* steps to entry */
.entry-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.estep { text-align: center; padding: 28px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; position: relative; box-shadow: var(--shadow-sm); }
.estep .n { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-blue); color: #fff; font-family: var(--font-en); font-weight: 700; box-shadow: var(--shadow-blue); }
.estep h4 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.estep p { color: var(--text-soft); font-size: .82rem; }

/* ---------- 17. FAQ ------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.faq__q .ic { flex: 0 0 24px; height: 24px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--brand); transition: transform .4s var(--ease); }
.faq__q .ic::before { left: 0; right: 0; top: 11px; height: 2px; border-radius: 2px; }
.faq__q .ic::after { top: 0; bottom: 0; left: 11px; width: 2px; border-radius: 2px; }
.faq__item[aria-expanded="true"] .ic::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a p { color: var(--text-soft); font-size: .92rem; padding: 0 4px 26px; }

/* ---------- 18. Footer (dark) -------------------------------------- */
.footer { background: var(--footer-bg); color: var(--footer-text); padding-top: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.footer__glow { position: absolute; left: 50%; top: -30%; transform: translateX(-50%); width: 80vw; height: 50vh; background: radial-gradient(circle, rgba(37,99,235,.22), transparent 62%); pointer-events: none; }
.footer .brand span { color: #fff; }
.footer .brand small { color: var(--brand-light); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(30px, 4vw, 56px); position: relative; z-index: 1; padding-bottom: 56px; }
.footer__brand .brand { font-size: 1.6rem; margin-bottom: 22px; }
.footer__brand p { color: var(--footer-text); font-size: .88rem; max-width: 34ch; margin-bottom: 22px; }
.footer__brand .addr { color: #7e8ca6; font-size: .82rem; line-height: 1.9; }
.fcol h4 { font-family: var(--font-en); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #7e8ca6; margin-bottom: 20px; }
.fcol ul { display: flex; flex-direction: column; gap: 12px; }
.fcol a { color: var(--footer-text); font-size: .9rem; transition: color .3s, padding-left .3s; }
.fcol a:hover { color: #fff; padding-left: 4px; }
.footer__cta { padding: 40px; border: 1px solid var(--footer-line); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--footer-2), #0a1322); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 56px; }
.footer__cta h3 { font-size: clamp(1.3rem, 3vw, 1.85rem); letter-spacing: -.02em; color: #fff; }
.footer__cta p { color: var(--footer-text); font-size: .9rem; margin-top: 6px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 26px 0; border-top: 1px solid var(--footer-line); position: relative; z-index: 1; }
.footer__bottom small { color: #7e8ca6; font-size: .78rem; font-family: var(--font-en); letter-spacing: .04em; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--footer-line); display: grid; place-items: center; color: var(--footer-text); transition: border-color .3s, color .3s, transform .3s, background .3s; }
.footer__social a:hover { border-color: var(--brand-light); color: #fff; background: rgba(59,130,246,.18); transform: translateY(-3px); }
.footer__social svg { width: 17px; }

/* ---------- 19. Scroll reveal -------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* hero line stagger */
.hero h1 .line > span { transform: translateY(110%); transition: transform 1s var(--ease-out); }
.hero.ready h1 .line > span { transform: translateY(0); }
.hero.ready h1 .line:nth-child(2) > span { transition-delay: .1s; }
.hero.ready h1 .line:nth-child(3) > span { transition-delay: .2s; }
.hero__badge, .hero__sub, .hero__cta, .hero__visual { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.hero.ready .hero__badge { opacity: 1; transform: none; }
.hero.ready .hero__sub { opacity: 1; transform: none; transition-delay: .32s; }
.hero.ready .hero__cta { opacity: 1; transform: none; transition-delay: .42s; }
.hero.ready .hero__visual { opacity: 1; transform: none; transition-delay: .25s; }

/* ---------- 20. Responsive ----------------------------------------- */
@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stores, .voices, .benefits, .values { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__step:nth-child(2)::after { display: none; }
  .entry-steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 300px; }
  .hero__chip { bottom: 4%; }
}

@media (max-width: 880px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .header__cta { gap: 0; }
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: 0; }
  .message { grid-template-columns: 1fr; }
  .message__portrait { max-width: 360px; }
  .positions { grid-template-columns: 1fr; }
  .news__item { grid-template-columns: 100px 1fr; row-gap: 6px; }
  .news__cat { grid-row: 1; grid-column: 2; }
  .news__ttl { grid-column: 1 / -1; }
  .news__arrow { display: none; }
}

@media (max-width: 620px) {
  .stats, .stores, .voices, .benefits, .values, .flow, .entry-steps { grid-template-columns: 1fr; }
  .flow__step::after { display: none !important; }
  .footer__top { grid-template-columns: 1fr; }
  .profile__row { grid-template-columns: 1fr; gap: 6px; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
  .hero__chip { display: none; }
  :root { --header-h: 64px; }
}

/* ---------- 21. Voice card as link + store card link --------------- */
a.voice { display: block; color: inherit; }
.voice__more { display: inline-flex; align-items: center; gap: .5em; margin-top: 16px; font-size: .82rem; font-weight: 600; color: var(--brand); }
.voice__more svg { transition: transform .35s var(--ease); }
a.voice:hover .voice__more { color: var(--brand-deep); }
a.voice:hover .voice__more svg { transform: translateX(4px); }

a.store { display: block; color: inherit; }
.store__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.store__head h3 { margin: 0; }
.store__arrow { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-tint); color: var(--brand); border: 1px solid #dbe7ff; transition: background .35s, color .35s, transform .35s var(--ease); }
a.store:hover .store__arrow { background: var(--grad-blue); color: #fff; transform: translateX(3px); }
.store__tel { color: var(--text-soft); font-size: .86rem; margin-top: 6px; font-family: var(--font-en); letter-spacing: .02em; }

/* ---------- 22. Detail pages (interview / store) ------------------- */
.detail-section { padding-top: calc(var(--header-h) + 56px); padding-bottom: clamp(48px, 7vw, 96px); }
.detail-wrap { max-width: 960px; }
.detail-loading { color: var(--text-mute); padding: 60px 0; text-align: center; }
.iv-back { display: inline-flex; align-items: center; gap: .5em; font-size: .86rem; font-weight: 600; color: var(--text-soft); margin-bottom: 30px; transition: color .3s, gap .3s; }
.iv-back:hover { color: var(--brand); gap: .8em; }

/* interview */
.iv-hero { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; margin-bottom: clamp(36px, 5vw, 60px); }
.iv-hero__photo { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(160deg, #eef4ff, #e9fbf6); box-shadow: var(--shadow); }
.iv-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.iv-hero__role { font-family: var(--font-en); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); font-weight: 600; margin-bottom: 16px; }
.iv-hero__text h1 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.4; letter-spacing: -.02em; color: var(--ink); margin-bottom: 18px; }
.iv-hero__name { color: var(--text-soft); font-size: .96rem; }
.iv-hero__name b { color: var(--ink); font-size: 1.06rem; }
.iv-lead { color: var(--text-soft); font-size: 1.02rem; line-height: 1.95; padding: 26px 0 8px; border-top: 1px solid var(--line); margin-bottom: 16px; }
.iv-qa { display: flex; flex-direction: column; gap: 26px; margin-top: 18px; }
.iv-qa__item { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); background: #fff; box-shadow: var(--shadow-sm); }
.iv-q { display: flex; gap: 14px; align-items: flex-start; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.iv-q span, .iv-a span { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-family: var(--font-en); font-weight: 700; font-size: .9rem; }
.iv-q span { background: var(--grad-blue); color: #fff; }
.iv-a { display: flex; gap: 14px; align-items: flex-start; }
.iv-a span { background: var(--bg-tint); color: var(--brand); border: 1px solid #dbe7ff; }
.iv-a p { color: var(--text-soft); margin-top: 3px; }

/* store detail */
.sd-title { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px; }
.sd-top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; margin-bottom: clamp(40px, 6vw, 72px); }
.sd-main { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: linear-gradient(150deg, #eef4ff, #e9fbf6); box-shadow: var(--shadow-sm); }
.sd-main img { width: 100%; height: 100%; object-fit: cover; }
.sd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.sd-thumb { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); padding: 0; cursor: pointer; transition: border-color .3s; }
.sd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sd-thumb.is-active, .sd-thumb:hover { border-color: var(--brand); }
.sd-info { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sd-row { display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--line); }
.sd-row:last-child { border-bottom: 0; }
.sd-row dt { background: var(--bg-soft); padding: 16px 18px; font-size: .88rem; font-weight: 600; color: var(--ink); border-right: 1px solid var(--line); }
.sd-row dd { padding: 16px 18px; color: var(--text-soft); font-size: .92rem; }
.sd-access h2 { display: flex; align-items: center; gap: 12px; font-size: 1.3rem; color: var(--ink); margin-bottom: 18px; }
.sd-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--grad-blue); }
.sd-access p { color: var(--text-soft); margin-bottom: 20px; white-space: pre-line; }
.sd-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.sd-map iframe { width: 100%; height: clamp(300px, 42vw, 440px); border: 0; display: block; }

@media (max-width: 820px) {
  .iv-hero { grid-template-columns: 1fr; }
  .iv-hero__photo { max-width: 300px; }
  .sd-top { grid-template-columns: 1fr; }
}

/* =========================================================
   ENTRY FORM MODAL
   ========================================================= */
.entry-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 64px) 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  overflow-y: auto;
}
.entry-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.entry-modal__overlay {
  position: fixed; inset: 0;
  background: rgba(12, 22, 38, .55); backdrop-filter: blur(6px);
}
.entry-modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 640px;
  margin: auto;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
  transform: translateY(18px) scale(.98); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.entry-modal.open .entry-modal__dialog { transform: none; opacity: 1; }
.entry-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--bg-alt); border: 1px solid var(--line); color: var(--text-soft);
  transition: background .25s, color .25s, transform .25s;
}
.entry-modal__close:hover { background: var(--brand); color: #fff; transform: rotate(90deg); }
.entry-modal__close svg { width: 20px; height: 20px; }

.entry-form__head { margin-bottom: 24px; }
.entry-form__head .eyebrow { color: var(--brand); }
.entry-form__head h3 { font-size: clamp(1.4rem, 3.2vw, 1.85rem); color: var(--ink); margin: 10px 0 12px; }
.entry-form__head p { color: var(--text-mute); font-size: .9rem; line-height: 1.7; }

.entry-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ef-field { display: flex; flex-direction: column; gap: 7px; }
.ef-field--full { margin-top: 16px; }
.ef-field > span { font-size: .82rem; font-weight: 600; color: var(--ink); }
.ef-field em { color: var(--brand); font-style: normal; font-size: .72rem; margin-left: 6px; font-weight: 700; }
.ef-field input, .ef-field select, .ef-field textarea {
  font-family: var(--font-jp); font-size: .95rem; color: var(--text);
  background: var(--bg-soft); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.ef-field textarea { resize: vertical; min-height: 96px; }
.ef-field input:focus, .ef-field select:focus, .ef-field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .14);
}
.ef-field input::placeholder, .ef-field textarea::placeholder { color: #9aa7ba; }

.ef-consent {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 18px;
  font-size: .85rem; color: var(--text-soft); cursor: pointer; line-height: 1.6;
}
.ef-consent input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--brand); flex-shrink: 0; }
.ef-consent em { color: var(--brand); font-style: normal; font-weight: 700; margin-left: 4px; }

.ef-actions { margin-top: 24px; }
.ef-actions .btn { width: 100%; justify-content: center; }
.ef-actions .btn[disabled] { opacity: .6; pointer-events: none; }

.ef-status { margin-top: 14px; font-size: .85rem; text-align: center; min-height: 1.2em; }
.ef-status.is-error { color: #dc2626; }

.entry-done { text-align: center; padding: 18px 0 8px; }
.entry-done__icon { width: 64px; height: 64px; margin: 0 auto 18px; color: var(--accent); }
.entry-done__icon svg { width: 100%; height: 100%; }
.entry-done h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 12px; }
.entry-done p { color: var(--text-mute); font-size: .92rem; line-height: 1.8; margin-bottom: 24px; }

@media (max-width: 560px) {
  .ef-grid { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero h1 .line > span { transform: none; }
  .hero__badge, .hero__sub, .hero__cta, .hero__visual { opacity: 1; transform: none; }
}
