@charset "UTF-8";
/* ============================================================
   山王株式会社 リクルートサイト 共通スタイル
   コンセプト: 真直 × 二つの顔（深緑の安定 × 黄緑の勢い、明朝 × スラッシュ）
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --deep: #0B4128;
  --deep-2: #0E5232;
  --green: #00873C;
  --lime: #A9CE38;
  --ink: #16281F;
  --ink-soft: #47584E;
  --paper: #F6F8F3;
  --white: #FFFFFF;
  --charcoal: #101512;
  --line: #DCE3DA;
  --grad: linear-gradient(120deg, #A9CE38 0%, #00873C 55%, #0B4128 100%);
  --font-serif: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .7s;
  --sec-pad: clamp(64px, 10vw, 120px);
  --gutter: clamp(24px, 4vw, 40px);
  --header-h: 76px;
  --slash: -15deg;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
main { display: block; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: fixed; top: -48px; left: 16px; z-index: 300;
  background: var(--deep); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 6px;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- type ---------- */
.serif { font-family: var(--font-serif); }
.en { font-family: var(--font-en); letter-spacing: .08em; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.5; }

.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .en-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-weight: 600; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green);
  margin-bottom: 14px;
}
.sec-head .en-label::before {
  content: ""; width: 34px; height: 2px;
  background: var(--grad); transform: skewX(var(--slash));
}
.sec-head h2 {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px); line-height: 1.5; color: var(--deep);
}
.sec-head .lead { margin-top: 18px; max-width: 700px; color: var(--ink-soft); }
.sec-head.is-center { text-align: center; }
.sec-head.is-center .en-label { justify-content: center; }
.sec-head.is-center .lead { margin-inline: auto; }
.sec-head.is-white h2 { color: #fff; }
.sec-head.is-white .en-label { color: var(--lime); }

/* ---------- layout ---------- */
.wrap { max-width: 1160px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 860px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--sec-pad); }
.sec-alt { background: var(--white); }
.sec-dark { background: var(--charcoal); color: rgba(255,255,255,.92); }
.sec-deep { background: var(--deep); color: rgba(255,255,255,.94); }

/* 斜めエッジ（要所のみ） */
.edge-top { clip-path: polygon(0 0, 100% 3.2vw, 100% 100%, 0 100%); margin-top: -3.2vw; padding-top: calc(var(--sec-pad) + 3.2vw); }
.edge-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.2vw), 0 100%); padding-bottom: calc(var(--sec-pad) + 3.2vw); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(246, 248, 243, .0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 var(--line);
}
/* backdrop-filterはドロワー開時に付けない（付けるとheaderがfixed子孫(.gnav)のcontaining blockになり、ドロワーがheaderサイズに潰れるため） */
.site-header.is-scrolled:not(.is-open) {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-inner {
  width: 100%; max-width: 1400px; margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: clamp(150px, 16vw, 190px); height: auto; }
.brand .brand-note {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; color: var(--green); text-transform: uppercase;
  border-left: 1px solid var(--line); padding-left: 10px; line-height: 1.4;
}
.gnav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.gnav a.nav-link {
  font-size: 14px; font-weight: 500; padding: 8px 2px; position: relative; white-space: nowrap;
}
.gnav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--grad); transition: right .35s var(--ease);
}
.gnav a.nav-link:hover::after, .gnav a.nav-link[aria-current]::after { right: 0; }
.gnav a.nav-link .en-tag {
  display: block; font-family: var(--font-en); font-size: 10px; font-weight: 600;
  letter-spacing: .2em; color: var(--green); text-transform: uppercase; line-height: 1.2;
}

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15px; line-height: 1.4; text-align: center;
  padding: 16px 34px; border-radius: 999px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); font-family: var(--font-en); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(0, 135, 60, .28); }
.btn-primary:hover { background: var(--deep-2); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11, 65, 40, .32); }
.btn-primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .55s var(--ease); pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { border: 1.5px solid var(--deep); color: var(--deep); background: transparent; }
.btn-ghost:hover { background: var(--deep); color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--deep); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn-white:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-cta-header { padding: 12px 24px; font-size: 13px; white-space: nowrap; }

/* ---------- SP nav ---------- */
.nav-toggle { display: none; }
.sp-bar { display: none; }

/* ---------- hero (TOP) ---------- */
.hero {
  position: relative; min-height: min(92vh, 860px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 4vw) 0 6vw;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(24px, 4vw, 64px); }
.hero-copy .hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: .24em;
  color: var(--green); text-transform: uppercase; margin-bottom: 22px;
}
.hero-copy .hero-tag::before { content: ""; width: 40px; height: 2px; background: var(--grad); transform: skewX(var(--slash)); }
.hero-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.6; color: var(--deep);
}
.hero-title .ruby-note { font-size: .38em; font-weight: 600; letter-spacing: .3em; color: var(--green); display: block; margin-bottom: 6px; }
.hero-lead { margin-top: 24px; max-width: 520px; color: var(--ink-soft); font-size: 15px; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-visual { position: relative; }
.hero-visual .hero-photo {
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 4px; overflow: hidden;
  box-shadow: 24px 32px 60px rgba(11, 65, 40, .18);
}
.hero-visual .hero-photo img { width: 100%; height: min(64vh, 620px); object-fit: cover; }
.hero-visual::before {
  content: ""; position: absolute; inset: -8% -12% auto auto;
  width: 58%; height: 118%; background: var(--grad); opacity: .16;
  transform: skewX(var(--slash)); z-index: -1;
}
.hero-bg-slash {
  position: absolute; z-index: 1; top: -12%; right: -6%; width: 46vw; height: 130%;
  background: var(--grad); opacity: .07; transform: skewX(var(--slash)); pointer-events: none;
}
.hero-scroll {
  position: absolute; left: var(--gutter); bottom: 22px; z-index: 3; pointer-events: none;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .3em; color: var(--ink-soft); text-transform: uppercase;
}
.hero-scroll::after { content: ""; width: 56px; height: 1px; background: var(--ink-soft); animation: scrollLine 2.2s var(--ease) infinite; transform-origin: left; }
@keyframes scrollLine { 0% { transform: scaleX(0); } 45% { transform: scaleX(1); } 100% { transform: scaleX(1); opacity: 0; } }

/* ---------- intro wipe（シグネチャー・初回のみ） ---------- */
.intro-wipe {
  position: fixed; inset: 0; z-index: 400; pointer-events: none;
  background: var(--grad);
  transform: skewX(var(--slash)) scaleX(1.4); transform-origin: right;
}
body.intro-play .intro-wipe { animation: introOut .9s var(--ease) .15s forwards; }
body:not(.intro-play) .intro-wipe { display: none; }
@keyframes introOut { to { transform: skewX(var(--slash)) scaleX(1.4) translateX(-160%); } }

/* ---------- page hero（下層） ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(40px, 6vw, 72px);
  background: var(--white); overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; top: -20%; right: -8%; width: 38vw; height: 150%;
  background: var(--grad); opacity: .08; transform: skewX(var(--slash)); pointer-events: none;
}
.page-hero .en-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.page-hero .en-label::before { content: ""; width: 34px; height: 2px; background: var(--grad); transform: skewX(var(--slash)); }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 46px); color: var(--deep); line-height: 1.5; }
.page-hero .lead { margin-top: 16px; max-width: 720px; color: var(--ink-soft); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--green); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .5; }

/* ---------- reveal ---------- */
/* 初期非表示は html.js が付いた環境限定（JS無効・読込失敗時もコンテンツが見えるように） */
.js .rv { opacity: 0; transform: translateY(30px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
/* コンテナ自体はクリップしない（クリップするとIntersectionObserverの交差矩形が0になり発火しないため、子要素をワイプする） */
.js .rv-slash > * { clip-path: polygon(-16% 0, 0% 0, -15% 100%, -31% 100%); transition: clip-path .9s var(--ease); }
.rv-slash.is-in > * { clip-path: polygon(-16% 0, 131% 0, 116% 100%, -31% 100%); }
.rv-d1 { transition-delay: .09s; } .rv-d2 { transition-delay: .18s; }
.rv-d3 { transition-delay: .27s; } .rv-d4 { transition-delay: .36s; }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(22, 40, 31, .06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
a.card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(11, 65, 40, .14); }
.card .card-photo { overflow: hidden; aspect-ratio: 4 / 3; }
.card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
a.card:hover .card-photo img { transform: scale(1.05); }
.card .card-body { padding: clamp(18px, 2.4vw, 28px); flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card .card-tag { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--green); text-transform: uppercase; }
.card h3 { font-size: 18px; line-height: 1.65; color: var(--deep); }
.card .card-note { font-size: 13px; color: var(--ink-soft); }
.card .card-more { margin-top: auto; font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: .16em; color: var(--green); text-transform: uppercase; }

/* interview list */
.person-card .card-photo { aspect-ratio: 3 / 2; }
.person-meta { font-size: 12.5px; color: var(--ink-soft); }
.person-quote { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--deep); line-height: 1.7; }
.monogram {
  aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0B4128, #14603C); color: rgba(255,255,255,.9);
}
.monogram .mono-inner { text-align: center; }
.monogram .mono-initial { font-family: var(--font-en); font-size: 56px; font-weight: 600; letter-spacing: .1em; line-height: 1.2; }
.monogram .mono-note { font-size: 11px; letter-spacing: .2em; opacity: .75; }

/* ---------- numbers ---------- */
.num-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.num-item {
  background: var(--white); border-radius: 6px; padding: clamp(22px, 3vw, 34px) clamp(18px, 2.4vw, 28px);
  box-shadow: 0 2px 14px rgba(22, 40, 31, .06); position: relative; overflow: hidden;
}
.num-item::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--grad); transform: skewX(var(--slash)); }
.num-item .num-label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.num-item .num-value {
  font-family: var(--font-en); font-weight: 600; font-size: clamp(38px, 4.6vw, 56px);
  color: var(--deep); line-height: 1.25; letter-spacing: .01em;
}
.num-item .num-value .unit { font-family: var(--font-sans); font-size: .38em; font-weight: 700; margin-left: 4px; color: var(--green); }
.num-item .num-note { font-size: 12px; color: var(--ink-soft); }

/* ---------- timeline（ある一日） ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--lime), var(--green), var(--deep)); }
.timeline li { position: relative; padding: 0 0 30px 22px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 9px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--green);
}
.timeline .tl-time { font-family: var(--font-en); font-weight: 700; font-size: 18px; color: var(--green); letter-spacing: .04em; }
.timeline .tl-title { font-weight: 700; font-size: 16.5px; color: var(--deep); margin: 2px 0 4px; }
.timeline .tl-text { font-size: 14px; color: var(--ink-soft); }

/* ---------- tables ---------- */
.def-table { width: 100%; border-collapse: collapse; }
.def-table th, .def-table td { padding: 18px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; }
.def-table th { width: 190px; color: var(--deep); font-weight: 700; white-space: nowrap; }
.def-table td { color: var(--ink); }

/* ---------- tabs ---------- */
.tabs { display: flex; gap: 8px; border-bottom: 2px solid var(--line); margin-bottom: clamp(28px, 4vw, 44px); }
.tab-btn {
  padding: 14px 28px; font-weight: 700; font-size: 15px; color: var(--ink-soft);
  border-radius: 8px 8px 0 0; position: relative; transition: color .3s var(--ease), background-color .3s var(--ease);
}
.tab-btn[aria-selected="true"] { color: var(--deep); background: var(--white); }
.tab-btn[aria-selected="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--grad); }
.tab-panel[hidden] { display: none; }

/* ---------- accordion (FAQ) ---------- */
.faq-item { background: var(--white); border-radius: 6px; margin-bottom: 12px; box-shadow: 0 2px 10px rgba(22,40,31,.05); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 20px 22px; font-weight: 700; font-size: 15.5px; color: var(--deep);
}
.faq-q::before { content: "Q"; font-family: var(--font-en); font-weight: 600; color: var(--green); font-size: 18px; }
.faq-q .faq-icon { margin-left: auto; width: 14px; height: 14px; position: relative; flex-shrink: 0; }
.faq-q .faq-icon::before, .faq-q .faq-icon::after { content: ""; position: absolute; inset: 50% auto auto 0; width: 100%; height: 2px; background: var(--green); transition: transform .35s var(--ease); }
.faq-q .faq-icon::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-a { padding: 0 22px 20px 54px; color: var(--ink-soft); font-size: 14.5px; }
.faq-a[hidden] { display: none; }

/* ---------- form ---------- */
.form-block { background: var(--white); border-radius: 8px; padding: clamp(24px, 4vw, 48px); box-shadow: 0 2px 18px rgba(22,40,31,.07); }
.form-row { margin-bottom: 26px; }
.form-row > label, .form-row > .form-label { display: block; font-weight: 700; font-size: 14.5px; color: var(--deep); margin-bottom: 8px; }
.req::after { content: "必須"; display: inline-block; margin-left: 8px; font-size: 10.5px; font-weight: 700; color: #fff; background: #C0392B; border-radius: 3px; padding: 2px 7px; vertical-align: 2px; letter-spacing: .05em; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 13px 16px; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 6px; background: var(--paper);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 135, 60, .14); background: #fff; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
  display: inline-block; padding: 11px 22px; border: 1.5px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all .25s var(--ease); background: #fff;
}
.radio-pill input:checked + span { background: var(--deep); border-color: var(--deep); color: #fff; }
.radio-pill input:focus-visible + span { outline: 3px solid var(--green); outline-offset: 2px; }
.form-error { display: none; color: #C0392B; font-size: 13px; margin-top: 6px; font-weight: 500; }
.form-row.has-error .form-error { display: block; }
.form-row.has-error input, .form-row.has-error textarea, .form-row.has-error select { border-color: #C0392B; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.form-consent input { width: 18px; height: 18px; margin-top: 5px; accent-color: var(--green); }
.form-done { text-align: center; padding: clamp(32px, 6vw, 64px) 0; }
.form-done h3 { font-family: var(--font-serif); font-size: 24px; color: var(--deep); margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--deep); color: #fff; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -30%; right: -4%; width: 42%; height: 160%; background: var(--grad); opacity: .25; transform: skewX(var(--slash)); }
.cta-band .cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(24px, 3.4vw, 40px); line-height: 1.6; }
.cta-band .cta-lead { margin: 16px auto 0; max-width: 640px; color: rgba(255,255,255,.85); font-size: 15px; }
.cta-band .cta-buttons { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-band .cta-tel { margin-top: 26px; font-size: 14px; color: rgba(255,255,255,.85); }
.cta-band .cta-tel a { font-family: var(--font-en); font-weight: 700; font-size: 26px; color: #fff; letter-spacing: .04em; }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.85); padding: clamp(48px, 7vw, 80px) 0 110px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
.site-footer .f-brand img { width: 200px; }
.site-footer .f-addr { margin-top: 18px; font-size: 13px; line-height: 2; color: rgba(255,255,255,.65); }
.site-footer h4 { font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom { margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); }

/* ---------- misc ---------- */
.note-soft { font-size: 12.5px; color: var(--ink-soft); }
.tag-line { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--deep); }
.tag-line::before { content: ""; width: 22px; height: 2px; background: var(--grad); transform: skewX(var(--slash)); }
.photo-frame { border-radius: 6px; overflow: hidden; box-shadow: 0 10px 30px rgba(11, 65, 40, .12); }
.photo-frame img { width: 100%; object-fit: cover; }
.grad-band { height: 6px; background: var(--grad); }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-visual { order: -1; margin-inline: calc(var(--gutter) * -1) 0; }
  .hero-visual .hero-photo img { height: 44vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  /* SP/タブレット nav drawer（901〜1024pxでヘッダー内ナビが収まらないため1024で切替） */
  .gnav {
    position: fixed; inset: 0; z-index: 190; flex-direction: column; justify-content: center; gap: 8px;
    background: linear-gradient(160deg, #0B4128 0%, #101512 90%);
    opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .gnav.is-open { opacity: 1; visibility: visible; }
  .gnav a.nav-link { color: #fff; font-size: 18px; padding: 14px 0; text-align: center; font-family: var(--font-serif); }
  .gnav a.nav-link .en-tag { color: var(--lime); }
  .gnav .btn-cta-header { margin-top: 18px; }
  .nav-toggle {
    display: block; position: relative; z-index: 210; width: 46px; height: 46px; flex-shrink: 0;
  }
  .nav-toggle span {
    position: absolute; left: 11px; width: 24px; height: 2px; background: var(--deep);
    transition: transform .35s var(--ease), opacity .3s var(--ease), background-color .3s var(--ease);
  }
  .nav-toggle span:nth-child(1) { top: 16px; }
  .nav-toggle span:nth-child(2) { top: 23px; }
  .nav-toggle span:nth-child(3) { top: 30px; }
  .nav-toggle[aria-expanded="true"] span { background: #fff; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-lock { overflow: hidden; }

  /* SP bottom bar */
  .sp-bar {
    display: grid; grid-template-columns: 1fr auto; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -1px 0 var(--line);
  }
  .sp-bar .btn { padding: 13px 16px; font-size: 14px; border-radius: 8px; }
  .sp-bar .sp-tel {
    display: inline-flex; align-items: center; justify-content: center; width: 52px;
    border: 1.5px solid var(--green); border-radius: 8px; color: var(--green);
  }
  .sp-bar .sp-tel svg { width: 22px; height: 22px; }
  body { padding-bottom: 74px; }
  .site-footer { padding-bottom: 140px; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .hero-scroll { display: none; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .def-table th { width: 120px; white-space: normal; }
  .tabs { gap: 4px; }
  .tab-btn { padding: 12px 16px; font-size: 14px; flex: 1; text-align: center; }
  .hero-cta .btn { width: 100%; }
  .edge-top, .edge-bottom { clip-path: none; margin-top: 0; padding-block: var(--sec-pad); }
  .footer-grid { grid-template-columns: 1fr; }
  .faq-a { padding-left: 22px; }
}

@media (max-width: 560px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .num-item .num-value { font-size: 34px; }
  .brand .brand-note { display: none; }
  .hero-visual .hero-photo img { height: 38vh; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rv, .rv-slash, .rv-slash > * { opacity: 1; transform: none; clip-path: none; transition: none; }
  .intro-wipe { display: none !important; }
  .hero-scroll::after { animation: none; }
}
