/* =========================================================
   TORITEN — Brand site
   Design: warm / people-centric (A direction)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* color — TORITEN blue × white（白基調／清潔感・洗練） */
  --c-bg:        #ffffff;   /* カード等の純白 */
  --c-base:      #fcfdff;   /* ページ全体のベース（ほぼ白） */
  --c-cream:     #d8e7fb;   /* TORITENブルーの淡色背景（青み強め） */
  --c-cream-2:   #bcd5f4;
  --c-ink:       #14202e;   /* 文字（ネイビーに近い黒） */
  --c-ink-soft:  #14202e;   /* サブ文字も黒字に統一（視認性優先） */
  --c-line:      #dde7f3;   /* 罫線 */
  --c-accent:    #1a468f;   /* TORITENブルー（深く落ち着いた洗練ブルー） */
  --c-accent-d:  #123461;   /* 濃色：ホバー／本文リンク */
  --c-accent-bg: #eaf1fb;
  /* テクスチャ2種：白セクション＝紙、淡色セクション＝和紙繊維 */
  --tex-paper: url("../images/nordwood-themes-R53t-Tg6J4c-unsplash.jpg");  /* 白基調セクション：きめ細かい白グレイン（全ページ共通ベース） */
  --tex-fiber: url("../images/avinash-kumar-MjehAOr30n8-unsplash.jpg");    /* 淡色（青系）セクション：青みのある白プラスター */

  /* type — 和文＝Zen Kaku Gothic New（誠実で洗練されたゴシック）／英語大見出し＝Hanken Grotesk */
  --ff-sans: "Zen Kaku Gothic New", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  /* 見出し：英字は Hanken Grotesk、和字は自動で Zen Kaku Gothic New にフォールバック */
  --ff-serif: "Hanken Grotesk", "Zen Kaku Gothic New", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;

  /* layout */
  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 40px);
  --header-h: 72px;

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-ink);
  background: var(--c-base);
  line-height: 1.9;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
}
/* ① 全体に薄い紙テクスチャ（白基調のベース・ごく控えめ） */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background-image: var(--tex-paper); background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .07; mix-blend-mode: multiply;
}
/* カード・パネル類は紙テクスチャ（z-index:1の固定オーバーレイ）の上に出して、
   くすまないクリーンな面に統一する。白パネルには浮かせる薄い影も付与。 */
.member, .leader, .flow__step, .case-route {
  position: relative; z-index: 2;
  box-shadow: 0 2px 18px -12px rgba(20,32,46,.18);
}
.chiplist li, .news-item, .profile,
.field input, .field textarea, .field select {
  position: relative; z-index: 2;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4 { margin: 0; font-weight: 700; line-height: 1.4; }
p { margin: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(88px, 15vw, 176px); }
/* ② 淡色セクションは別テクスチャ（和紙繊維）で背景差をはっきり */
.section--cream { background: var(--c-cream); position: relative; isolation: isolate; }
.section--cream::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--tex-fiber); background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .14; mix-blend-mode: multiply;
}
/* ---------- セクション見出し ----------
   基本＝日本語がメイン（大）／英語がサブ（小）。
   .t-en を付けた見出しは 英語がメイン／日本語がサブ に反転（トップページ・コアバリュー）。
   ※ HEROのメインタイトル clamp(40px,11vw,96px) より必ず小さく設定 */
.eyebrow { /* 英語＝サブラベル */
  display: block; font-family: var(--ff-sans);
  font-size: clamp(13px, 2.3vw, 16px); font-weight: 800;
  letter-spacing: .2em; color: var(--c-accent);
  margin: 0 0 14px;
}
.section-title { /* 日本語＝メイン */
  font-family: var(--ff-serif);
  font-size: clamp(32px, 7vw, 76px);
  font-weight: 700; letter-spacing: .01em; line-height: 1.18;
  color: var(--c-ink);
}
.section-title em { font-style: normal; color: var(--c-accent); }

/* 英語をメインにする反転 */
.t-en .eyebrow {
  font-family: var(--ff-serif); color: var(--c-ink);
  font-size: clamp(32px, 7vw, 76px); font-weight: 700;
  letter-spacing: .005em; line-height: 1.18; margin: 0;
  padding-bottom: .12em; /* g/y などディセンダーの切れ防止（background-clip:text対策） */
}
.t-en .section-title {
  margin-top: 14px; font-family: var(--ff-sans);
  font-size: clamp(15px, 2.6vw, 19px); font-weight: 700;
  letter-spacing: .1em; line-height: 1.6;
  color: var(--c-accent); /* 大見出し（英語・黒）の下に添える和文サブは青の差し色 */
}
/* TOPページだけは和文サブも黒のまま */
.is-top .t-en .section-title { color: var(--c-ink); }
.t-en .section-title em { color: inherit; }

/* 英語タイトルは頭だけ大文字（sentence case：先頭1文字のみ大文字） */
.eyebrow, .hero__en, .page-hero__en, .mission__label { text-transform: lowercase; }
.eyebrow::first-letter,
.hero__en::first-letter,
.page-hero__en::first-letter,
.mission__label::first-letter { text-transform: uppercase; }

/* 見出しの寄せ */
.t-right { text-align: right; }
.center .eyebrow { margin-inline: auto; }
.lead { color: var(--c-ink-soft); margin-top: 20px; font-size: 15px; }
.center { text-align: center; }

/* two-column section layout (ONE CAREER style) — PC: left title / right body */
.split { display: grid; gap: 40px; text-align: left; }
@media (min-width: 920px){
  .split { grid-template-columns: minmax(300px, 380px) 1fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
}
.split__head .eyebrow { margin-bottom: 16px; }
.split__head .statement__big { font-size: clamp(24px, 2.8vw, 36px); line-height: 1.5; }
.split__body > :first-child { margin-top: 0; }

/* buttons (understated — branding, not CV) */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: .08em;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid var(--c-ink);
  transition: all .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--solid { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.btn--solid:hover { background: var(--c-accent); border-color: var(--c-accent); }
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--accent { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.btn--accent:hover { background: var(--c-accent-d); border-color: var(--c-accent-d); }

/* ============================================================
   HEADER  (PC: inline nav / SP: hamburger drawer)
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: var(--ff-serif);
  font-size: 21px; font-weight: 800; letter-spacing: .04em;
}
.brand small { display:block; font-family: var(--ff-sans); font-size: 9px; letter-spacing:.34em; color: var(--c-ink-soft); font-weight:600; margin-top:2px; }

/* PC nav */
.gnav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); margin-left: auto; margin-right: clamp(16px, 2.2vw, 30px); }
.gnav a { display: flex; flex-direction: column; gap: 3px; line-height: 1; position: relative; padding: 6px 0; }
.gnav a .nav-en { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; }
.gnav a .nav-ja { font-size: 9px; font-weight: 600; letter-spacing: .06em; color: var(--c-ink-soft); }
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--c-accent); transition: width .3s var(--ease);
}
.gnav a:hover::after, .gnav a[aria-current="page"]::after { width: 100%; }
.gnav .nav-cta {
  margin-left: 8px; padding: 10px 22px; border-radius: 999px;
  background: var(--c-accent); color: #fff;
  align-items: center; justify-content: center;
}
.gnav .nav-cta .nav-en { font-size: 13px; font-weight: 700; letter-spacing: .14em; line-height: 16px; }
.gnav .nav-cta::after { display: none; }
.gnav .nav-cta:hover { background: var(--c-accent-d); }

/* header right cluster (LINE CTA + hamburger) */
.header-right { display: flex; align-items: center; gap: 14px; }
.line-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: #06C755; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; line-height: 16px; white-space: nowrap;
  padding: 10px 22px; border-radius: 999px;
  box-shadow: 0 6px 16px -8px rgba(6,199,85,.6);
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.line-cta:hover { background: #05b14b; transform: translateY(-1px); }
.line-cta img { width: 16px; height: 16px; display: block; }
@media (max-width: 420px){
  .line-cta { padding: 9px 13px; font-size: 12px; gap: 6px; }
}

/* hamburger button (SP only) */
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  cursor: pointer; position: relative; z-index: 120;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--c-ink); transition: transform .35s var(--ease), opacity .2s;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* drawer + scrim */
.nav-scrim {
  position: fixed; inset: 0; z-index: 90; background: rgba(31,28,25,.4);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 110;
  width: min(82vw, 360px); height: 100dvh;
  background: var(--c-cream);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
body.nav-open .drawer { transform: translateX(0); }
.drawer a.drawer-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 0; border-bottom: 1px solid var(--c-line);
}
.drawer a.drawer-link .dl-en { font-size: 19px; font-weight: 700; letter-spacing: .08em; line-height: 1; }
.drawer a.drawer-link .dl-ja { font-size: 11px; letter-spacing: .12em; color: var(--c-ink-soft); font-weight: 500; }
.drawer .drawer-cta { margin-top: 28px; }
.drawer .drawer-cta .btn { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 11vh);
  /* 富士山は background-attachment:fixed でスクロール中ピン留め＆ヒーロー内にクリップ
     （sticky と違い後続セクションに絶対にはみ出さない） */
  background:
    /* 左を白く＝テキスト保護（右の富士山はくっきり残す） */
    linear-gradient(100deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 28%, rgba(255,255,255,.20) 52%, rgba(255,255,255,0) 72%),
    /* ヘッダー馴染ませ＋下部の青み */
    linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 24%, rgba(216,233,252,.32) 100%),
    /* 富士山ヒーロー写真（ピン留め） */
    url("../images/kimura2-mountain-477832.jpg") center center / cover no-repeat fixed,
    /* 写真未配置時のフォールバック */
    linear-gradient(180deg, #ffffff, var(--c-cream));
}
.hero::after { /* soft blue glow */
  content:""; position:absolute; left:-14%; bottom:-12%; width:48vw; height:48vw;
  background: radial-gradient(circle, rgba(31,95,191,.10), transparent 65%);
  pointer-events:none; z-index:0;
}

.hero__inner { position: relative; z-index: 2; }
.hero__copy {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 11vw, 96px);
  font-weight: 700; line-height: 1.28; letter-spacing: .01em;
  white-space: nowrap; /* <br> の位置だけで2行に。勝手な折り返しを防ぐ */
}
.hero__en { display:block; font-family: var(--ff-sans); font-size: clamp(12px,3vw,15px); letter-spacing:.3em; color: var(--c-accent); font-weight:600; margin-bottom: 26px; }
.hero__sub { margin-top: 30px; max-width: 30em; color: var(--c-ink); font-weight: 500; font-size: clamp(14px,3.6vw,16px); text-shadow: 0 1px 12px rgba(255,255,255,.65); }

/* 本文は初期表示では画面外に置き、スクロールで現れる演出に */
.hero__body { max-width: 34em; margin-top: clamp(180px, 42vh, 440px); padding-bottom: clamp(80px, 16vh, 180px); }
.hero__body > p {
  margin: 0 0 22px; color: var(--c-ink); line-height: 2;
  font-size: clamp(14px, 3.6vw, 16px);
  text-shadow: 0 1px 12px rgba(255,255,255,.75);
}
.hero__cta { margin-top: 42px; display:flex; gap:14px; flex-wrap: wrap; }

/* SP：固定背景はジャンク回避のため通常スクロールに */
@media (max-width: 899px){
  /* 富士山は画像の右寄り（横≒62%）にあるため、SPの縦長クロップでは
     中央基準だと右に切れる。基準を富士山に寄せて必ずフレーム内に収める */
  .hero { background-attachment: scroll; background-position: 65% center; padding-top: calc(var(--header-h) + 8vh); }
  .hero__body { margin-top: clamp(140px, 34vh, 300px); }
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
/* 表示タイミングは3段に統一：①タイトル（wipe）→ ②サブタイトル → ③本文（すべて一律）
   セクション単位で is-in が付くので、本文系はバラつかず一斉に立ち上がる。 */
.reveal:not(.reveal--wipe) { transition-delay: 1s; } /* ③本文・View more・カード等はすべて一律 */
.t-en .section-title.reveal,
.mission__label.reveal,
.page-hero__sub.reveal { transition-delay: .8s; } /* ②サブタイトルはタイトルの直後 */

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
/* mission statement */
.statement { text-align: center; }
.statement__big {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 6.8vw, 54px); line-height: 1.55; letter-spacing: .02em;
  font-weight: 700;
}
.statement__big em { font-style: normal; color: var(--c-accent); }

/* service cards */
.cards { display: grid; gap: 24px; margin-top: 56px; }
@media (min-width: 768px){ .cards.cols-2 { grid-template-columns: 1fr 1fr; } }
.card {
  position: relative; z-index: 2; /* 紙テクスチャの上に出してクリーンな白面に */
  background: var(--c-bg); border: 1px solid var(--c-line);
  border-radius: 20px; padding: clamp(28px, 5vw, 44px);
  box-shadow: 0 2px 18px -12px rgba(20,32,46,.20);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(31,28,25,.28); }
.card__en { font-size: 11px; letter-spacing: .2em; color: var(--c-accent); font-weight:600; }
.card__media { margin: 14px 0 18px; }
.card__media img { width: clamp(190px, 62%, 260px); height: auto; display: block; }
.card__title { font-family: var(--ff-serif); font-size: clamp(20px,4.4vw,26px); margin: 12px 0 6px; }
.card__catch { color: var(--c-accent-d); font-weight: 600; margin-bottom: 16px; }
.card__body { color: var(--c-ink-soft); font-size: 14px; }
.card__more { display:inline-flex; align-items:center; gap:8px; margin-top: 22px; font-weight:600; font-size:13px; letter-spacing:.06em; }
.card__more .arrow { transition: transform .3s var(--ease); }
.card:hover .card__more .arrow { transform: translateX(4px); }

/* ===== 5 Core Values — 囲みを外し、余白を主役に。3+2をW型（上段の隙間に下段）で配置 ===== */
.values {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(72px, 11vw, 150px) clamp(40px, 6vw, 110px);
  margin-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--c-line);
  padding-top: clamp(56px, 8vw, 120px); /* 区切り線と中身の間にゆとり */
}
@media (min-width: 680px) and (max-width: 1039.98px){
  .values { grid-template-columns: repeat(2, 1fr); }
}
/* PC：6カラムを土台に、上段3つ・下段2つを半カラムずつズラしてW型に */
@media (min-width: 1040px){
  .values { grid-template-columns: repeat(6, 1fr); }
  .value-item:nth-child(1){ grid-column: 1 / span 2; grid-row: 1; }
  .value-item:nth-child(2){ grid-column: 3 / span 2; grid-row: 1; }
  .value-item:nth-child(3){ grid-column: 5 / span 2; grid-row: 1; }
  .value-item:nth-child(4){ grid-column: 2 / span 2; grid-row: 2; }
  .value-item:nth-child(5){ grid-column: 4 / span 2; grid-row: 2; }
}
.value-item { display: flex; flex-direction: column; }
.value-item__title {
  font-family: var(--ff-sans); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 25px); color: var(--c-ink);
  margin: 0; letter-spacing: .02em; line-height: 1.4;
}
.value-item__en {
  display: block; font-family: var(--ff-serif); font-weight: 500;
  font-size: 12px; letter-spacing: .12em; color: var(--c-accent); margin-top: 9px;
}
.value-item__body {
  color: var(--c-ink-soft); font-size: 14px; line-height: 1.95;
  margin: 18px 0 0; max-width: 34ch;
}

/* core values (top page — ONE CAREER style two-column) */
.cv-grid { display: grid; gap: 44px; }
@media (min-width: 900px){
  .cv-grid { grid-template-columns: minmax(320px, 460px) 1fr; gap: clamp(48px, 7vw, 110px); align-items: start; }
}
.cv-head__en { font-family: var(--ff-serif); font-weight: 700; font-size: clamp(30px, 5.6vw, 56px); line-height: 1.12; letter-spacing: .005em; margin: 0; white-space: nowrap; }
.cv-head__ja { margin: 16px 0 0; font-size: clamp(17px, 3.4vw, 20px); letter-spacing: .1em; color: var(--c-accent); font-weight: 700; }
.cv-head__lead { margin: 22px 0 0; color: var(--c-ink-soft); font-size: 14px; line-height: 1.95; max-width: 26em; }

.cv-list { list-style: none; margin: 0; padding: 0; }
.cv { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 36px); padding: clamp(22px, 3.4vw, 34px) 0; border-bottom: 1px solid var(--c-line); }
.cv:first-child { padding-top: 0; }
.cv:last-child { border-bottom: none; }
.cv__title { font-family: var(--ff-serif); font-weight: 700; font-size: clamp(21px, 4.4vw, 30px); line-height: 1.2; }
.cv__en { margin-left: auto; font-size: clamp(11px, 2.2vw, 14px); letter-spacing: .12em; color: var(--c-accent); font-weight: 600; white-space: nowrap; }
@media (max-width: 480px){
  .cv { gap: 10px; flex-wrap: nowrap; }
  .cv__title { font-size: 18px; }
  .cv__en { margin-left: auto; font-size: 10px; letter-spacing: .04em; }
}

/* core values rows — rise + color reveal, staggered & synced with supporting content */
.cv-list.reveal { opacity: 1; transform: none; transition: none; }
.cv { transform: translateY(18px); transition: transform .8s var(--ease); }
.cv-list.is-in .cv { transform: none; }
.cv__title { color: var(--c-cream-2); transition: color .8s var(--ease); }
.cv-list.is-in .cv__title { color: var(--c-ink); }
.cv__en { color: transparent; transition: color .8s var(--ease); }
.cv-list.is-in .cv__en { color: var(--c-accent); }
.cv:nth-child(1), .cv:nth-child(1) .cv__title, .cv:nth-child(1) .cv__en { transition-delay: .50s; }
.cv:nth-child(2), .cv:nth-child(2) .cv__title, .cv:nth-child(2) .cv__en { transition-delay: .63s; }
.cv:nth-child(3), .cv:nth-child(3) .cv__title, .cv:nth-child(3) .cv__en { transition-delay: .76s; }
.cv:nth-child(4), .cv:nth-child(4) .cv__title, .cv:nth-child(4) .cv__en { transition-delay: .89s; }
.cv:nth-child(5), .cv:nth-child(5) .cv__title, .cv:nth-child(5) .cv__en { transition-delay: 1.02s; }
@media (prefers-reduced-motion: reduce){
  .cv { transform: none; }
  .cv__title { color: var(--c-ink); }
  .cv__en { color: var(--c-accent); }
}

/* title diagonal wipe — 文字色が左上→右下へ変化（ほぼ白 → 本来の色が斜めにスイープ） */
.reveal--wipe {
  opacity: 1; transform: translateY(16px);
  background-image: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink) 42%, #cfd6df 56%, #eef2f6 100%);
  background-size: 260% 260%; background-position: 100% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  transition: transform .7s var(--ease), background-position 1.3s var(--ease) .85s;
}
.reveal--wipe.is-in { background-position: 0% 0%; transform: none; }
/* 大見出しは全タイトル共通で「白→黒」。青は小ラベル・キーワード・リンク・CTA・コアバリューに集約。 */

@media (prefers-reduced-motion: reduce){
  .reveal--wipe { background: none; -webkit-text-fill-color: var(--c-ink); color: var(--c-ink); transform: none; }
}

/* members */
.members { display: grid; gap: 28px; margin-top: 52px; }
@media (min-width: 768px){ .members { grid-template-columns: 1fr 1fr; } }
.member {
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
}
.member__photo { aspect-ratio: 4/3; background: var(--c-cream-2); position: relative; overflow: hidden; }
.member__photo .ph { position:absolute; inset:0; display:grid; place-items:center; color:var(--c-ink-soft); font-size:12px; letter-spacing:.2em; }
.member__photo img { width:100%; height:100%; object-fit: cover; object-position: center 22%; display:block; }
.member__body { padding: clamp(22px,4vw,32px); }
.member__role { font-size: 12px; letter-spacing: .12em; color: var(--c-accent); font-weight:600; }
.member__name { font-family: var(--ff-serif); font-size: 22px; margin: 8px 0 2px; }
.member__en { font-size: 11px; letter-spacing: .14em; color: var(--c-ink-soft); }
.member__bio { color: var(--c-ink-soft); font-size: 13.5px; margin-top: 16px; }

/* leadership (about teaser) */
.leaders { display: grid; gap: 20px; margin-top: 52px; }
@media (min-width: 768px){ .leaders { grid-template-columns: 1fr 1fr; } }
.leader { display: grid; grid-template-columns: 88px 1fr; gap: 22px; align-items: center;
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 18px; padding: 26px; }
.leader__photo { width: 88px; height: 88px; border-radius: 50%; background: var(--c-cream-2); overflow: hidden;
  display: grid; place-items: center; color: var(--c-ink-soft); font-size: 10px; letter-spacing: .2em; }
.leader__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.leader__role { font-size: 11px; letter-spacing: .14em; color: var(--c-accent); font-weight: 700; }
.leader__name { font-family: var(--ff-serif); font-size: 20px; margin: 6px 0 1px; }
.leader__en { font-size: 10.5px; letter-spacing: .14em; color: var(--c-ink-soft); }
.leader__career { color: var(--c-ink-soft); font-size: 13px; margin-top: 11px; line-height: 1.75; }
@media (max-width: 480px){ .leader { grid-template-columns: 1fr; gap: 16px; } }

/* board members (about us) — 大きめポートレート＋「＋」ボタン（参考デザイン準拠） */
.board {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 52px);
  margin-top: clamp(40px, 6vw, 72px); max-width: 620px;
}
.board-card { display: block; text-decoration: none; color: inherit; }
.board-card__photo {
  position: relative; z-index: 2; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 14px; background: var(--c-cream-2);
  box-shadow: 0 10px 30px -20px rgba(20,32,46,.45);
}
.board-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  display: block; transition: transform .6s var(--ease), opacity .45s var(--ease);
}
.board-card__img--alt { opacity: 0; }   /* 笑顔はホバー/長押しで表示 */
/* PCホバー：真顔→笑顔（タッチ端末では効かないよう hover:hover で限定） */
@media (hover: hover) {
  .board-card:hover .board-card__img--default { opacity: 0; }
  .board-card:hover .board-card__img--alt { opacity: 1; }
  .board-card:hover .board-card__img { transform: scale(1.04); }
}
/* SP長押し（JSで .is-pressed を付与）：真顔→笑顔 */
.board-card.is-pressed .board-card__img--default { opacity: 0; }
.board-card.is-pressed .board-card__img--alt { opacity: 1; }
.board-card.is-pressed .board-card__img { transform: scale(1.04); }
/* 写真右下の「＋」ボタン */
.board-card__plus {
  position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.board-card__plus::before,
.board-card__plus::after {
  content: ""; position: absolute; background: var(--c-ink);
  transition: background .35s var(--ease);
}
.board-card__plus::before { width: 13px; height: 1.5px; }
.board-card__plus::after  { width: 1.5px; height: 13px; }
.board-card:hover .board-card__plus { background: var(--c-accent); transform: scale(1.08); }
.board-card:hover .board-card__plus::before,
.board-card:hover .board-card__plus::after { background: #fff; }
.board-card__en {
  display: block; margin-top: 16px; text-transform: uppercase;
  font-family: var(--ff-sans); font-weight: 700; font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: .05em; color: var(--c-ink); line-height: 1.35;
}
.board-card__meta { margin: 7px 0 0; font-size: 12.5px; color: var(--c-ink-soft); letter-spacing: .02em; }
.board-card__role { color: var(--c-accent); font-weight: 700; letter-spacing: .08em; margin-right: 10px; }
@media (max-width: 460px){ .board { gap: 16px; } .board-card__plus { width: 32px; height: 32px; right: 10px; bottom: 10px; } }

/* member detail page (individual profile) */
.mprofile { display: grid; gap: clamp(36px, 5vw, 64px); }
@media (min-width: 860px){ .mprofile { grid-template-columns: minmax(280px, 360px) 1fr; align-items: start; } }
.mprofile__media { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 859px){ .mprofile__media { position: static; } }
.mprofile__photo { aspect-ratio: 4/5; background: var(--c-cream-2); border-radius: 18px; overflow: hidden; }
.mprofile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.mprofile__role { margin: 22px 0 0; font-size: 12px; letter-spacing: .14em; color: var(--c-accent); font-weight: 700; }
.mprofile__nm { font-family: var(--ff-serif); font-size: clamp(24px, 3vw, 30px); font-weight: 700; margin: 6px 0 0; line-height: 1.25; }
.mprofile__nm span { display: block; font-family: var(--ff-sans); font-size: 11px; letter-spacing: .16em; color: var(--c-ink-soft); font-weight: 500; margin-top: 6px; }
.mprofile__lead { font-family: var(--ff-serif); font-size: clamp(22px, 3.4vw, 32px); font-weight: 700; line-height: 1.5; margin: 0 0 26px; }
.mprofile__bio p { color: var(--c-ink-soft); line-height: 2; font-size: 15px; margin: 0 0 18px; }
.mprofile__h { font-family: var(--ff-sans); font-size: 13px; letter-spacing: .2em; color: var(--c-accent); font-weight: 800; margin: 48px 0 0; }

/* career timeline */
.timeline { list-style: none; margin: 26px 0 0; padding: 0; }
.tl { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 18px; padding: 0 0 26px; }
.tl:last-child { padding-bottom: 0; }
.tl__mark { position: relative; width: 13px; height: 13px; margin-top: 5px; border-radius: 50%; background: var(--c-accent); box-shadow: 0 0 0 4px rgba(31,95,191,.14); }
.tl::before { content: ""; position: absolute; left: 6px; top: 18px; bottom: -5px; width: 2px; background: var(--c-line); }
.tl:last-child::before { display: none; }
.tl__c h4 { font-family: var(--ff-serif); font-size: 17px; margin: 0; line-height: 1.5; }
.tl__c p { color: var(--c-ink-soft); font-size: 13.5px; line-height: 1.8; margin: 6px 0 0; }

/* story / cases */
.stories { display:grid; gap: 20px; margin-top: 52px; }
@media (min-width: 768px){ .stories { grid-template-columns: repeat(3,1fr); } }
.story { position: relative; z-index: 2; background: var(--c-bg); border:1px solid var(--c-line); border-radius:18px; overflow:hidden; box-shadow: 0 2px 18px -12px rgba(20,32,46,.20); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.story:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(31,28,25,.28); }
.story__tag { display:inline-block; margin:0 0 0 0; }
.story__thumb { aspect-ratio: 16/10; background: var(--c-cream-2); display:grid; place-items:center; color:var(--c-ink-soft); font-size:12px; letter-spacing:.18em;}
.story__body { padding: 22px 24px 26px; }
.story__route { font-size:12px; font-weight:600; color: var(--c-accent); letter-spacing:.06em; }
.story__title { font-family: var(--ff-serif); font-size: 18px; margin: 10px 0 0; line-height:1.6; }

/* ===== Story（転職事例）専用：希望を感じるエディトリアル ===== */
.features { margin-top: clamp(52px, 8vw, 96px); display:flex; flex-direction:column; gap: clamp(64px, 10vw, 140px); }
.feature { display:grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 40px); align-items:center; color: inherit; text-decoration:none; }
@media (min-width: 860px){
  .feature { grid-template-columns: 1.04fr .96fr; gap: clamp(44px, 6vw, 88px); }
  .feature--rev .feature__media { order: 2; }
}
.feature__media { position:relative; aspect-ratio: 4/3; border-radius: 24px; overflow:hidden; background: linear-gradient(140deg, var(--c-cream) 0%, var(--c-cream-2) 100%); display:grid; place-items:center; box-shadow: 0 34px 64px -38px rgba(20,32,46,.5); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.feature:hover .feature__media { transform: translateY(-6px); box-shadow: 0 44px 80px -40px rgba(20,32,46,.55); }
.feature__media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position: center 38%; transition: transform .7s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__no { font-family: var(--ff-serif); font-weight: 800; font-size: clamp(96px, 16vw, 208px); line-height:.9; letter-spacing:-.03em; color: transparent; -webkit-text-stroke: 1.6px rgba(255,255,255,.92); }
.feature__badge { position:absolute; top:20px; left:22px; font-family: var(--ff-serif); font-size:11px; font-weight:700; letter-spacing:.24em; color: var(--c-accent-d); background: rgba(255,255,255,.85); padding:6px 13px; border-radius:999px; }
.feature__route { display:inline-flex; align-items:center; flex-wrap:wrap; gap:10px; font-size:13px; font-weight:700; letter-spacing:.04em; color: var(--c-ink-soft); }
.feature__route .from { color: var(--c-ink-soft); opacity:.7; }
.feature__route i { font-style:normal; color: var(--c-cream-2); font-size:15px; }
.feature__route .to { color: var(--c-accent); }
.feature__title { font-family: var(--ff-serif); font-size: clamp(23px, 3.2vw, 33px); line-height:1.5; margin: 16px 0 0; letter-spacing:.01em; }
.feature__sub { margin: 14px 0 0; padding-left: 14px; border-left: 2px solid var(--c-cream-2); font-size: 14px; line-height: 1.8; color: var(--c-ink-soft); font-weight: 500; max-width: 28em; }
.feature__excerpt { margin: 18px 0 0; font-size: 15px; line-height: 2.05; color: var(--c-ink-soft); max-width: 32em; }
.feature__meta { display:flex; align-items:center; gap: clamp(16px,3vw,28px); margin-top: clamp(24px,3vw,32px); }
.feature__person { font-size:13px; font-weight:600; color: var(--c-ink); letter-spacing:.03em; }
.feature__link { display:inline-flex; align-items:center; gap:8px; font-family: var(--ff-serif); font-size:13px; font-weight:700; letter-spacing:.07em; color: var(--c-accent); }
.feature__link .arrow { transition: transform .35s var(--ease); }
.feature:hover .feature__link .arrow { transform: translateX(6px); }

/* 締めの希望CTA */
.story-cta__inner { text-align:center; background: var(--c-accent-bg); border-radius: 28px; padding: clamp(48px,7vw,84px) clamp(24px,5vw,64px); }
.story-cta__en { font-family: var(--ff-serif); font-size:12px; letter-spacing:.28em; font-weight:700; color: var(--c-accent); }
.story-cta__title { font-family: var(--ff-serif); font-size: clamp(25px,4.4vw,40px); line-height:1.5; margin: 14px 0 0; }
.story-cta__lead { margin: 20px auto 0; max-width: 30em; font-size:15px; line-height:2; color: var(--c-ink-soft); }
.story-cta__btns { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top: clamp(28px,4vw,36px); }

/* セクション見出し（Story内） */
.sec-head__en { font-family: var(--ff-serif); font-size:12px; letter-spacing:.26em; font-weight:700; color: var(--c-accent); }
.sec-head__ja { font-family: var(--ff-serif); font-size: clamp(20px,3vw,27px); margin: 8px 0 0; line-height:1.4; }

/* すべてのインタビュー：職種フィルタ */
.sfilter { display:flex; flex-wrap:wrap; gap:10px; margin-top: clamp(18px,2.5vw,26px); }
.sfilter__btn { font: inherit; font-size:13px; font-weight:600; cursor:pointer; padding:8px 17px; border-radius:999px; border:1px solid var(--c-line); background: var(--c-bg); color: var(--c-ink-soft); transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.sfilter__btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.sfilter__btn.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

/* すべてのインタビュー：コンパクト一覧 */
.slist { display:grid; grid-template-columns:1fr; gap:16px; margin-top: clamp(24px,3.5vw,36px); }
@media (min-width: 640px){ .slist { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 980px){ .slist { grid-template-columns: repeat(3,1fr); } }
.scard { display:flex; align-items:center; gap:16px; padding:14px; border:1px solid var(--c-line); border-radius:16px; background: var(--c-bg); text-decoration:none; color:inherit; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.scard:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(20,32,46,.35); border-color: var(--c-cream-2); }
.scard__thumb { position:relative; flex:0 0 84px; width:84px; aspect-ratio:1/1; border-radius:12px; overflow:hidden; background: linear-gradient(140deg, var(--c-cream), var(--c-cream-2)); display:grid; place-items:center; }
.scard__thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.scard__no { font-family: var(--ff-serif); font-weight:800; font-size:26px; color: transparent; -webkit-text-stroke: 1.2px rgba(255,255,255,.9); }
.scard__body { min-width:0; }
.scard__route { font-size:11px; font-weight:700; color: var(--c-accent); letter-spacing:.03em; }
.scard__title { font-family: var(--ff-serif); font-size:14.5px; line-height:1.5; margin:5px 0 0; }
.slist__more { text-align:center; margin-top: clamp(28px,4vw,40px); }

/* ===== Column cards（転職コラム一覧：白基調・タイトル主役） ===== */
.colgrid { display:grid; grid-template-columns:1fr; gap:18px; margin-top: clamp(28px,4vw,40px); }
@media (min-width:640px){ .colgrid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:980px){ .colgrid { grid-template-columns: repeat(3,1fr); } }
.colcard { position:relative; display:flex; flex-direction:column; background: var(--c-bg); border:1px solid var(--c-line); border-radius:18px; padding: clamp(22px,3vw,30px); overflow:hidden; text-decoration:none; color:inherit; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.colcard::before { content:""; position:absolute; top:0; left:0; bottom:0; width:3px; background: var(--c-accent); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.colcard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(20,32,46,.4); border-color: var(--c-cream-2); }
.colcard:hover::before { transform: scaleY(1); }
.colcard__head { display:flex; align-items:baseline; gap:10px; margin-bottom:14px; }
.colcard__no { font-family: var(--ff-serif); font-weight:800; font-size: clamp(28px,3.6vw,38px); line-height:1; color: var(--c-accent); letter-spacing:.01em; }
.colcard__label { font-family: var(--ff-serif); font-size:10px; font-weight:700; letter-spacing:.18em; color: rgba(20,32,46,.38); }
.colcard__title { font-size: clamp(16px,2.1vw,18px); font-weight:700; line-height:1.6; letter-spacing:.01em; color: var(--c-ink); margin:0; }
.colcard__title .hl { color: var(--c-accent); }
.colcard__lead { margin-top:12px; font-size:13.5px; line-height:1.85; color: rgba(20,32,46,.6); flex:1; }
.colcard__more { margin-top:18px; font-family: var(--ff-serif); font-size:12px; font-weight:700; letter-spacing:.04em; color: var(--c-accent); display:inline-flex; align-items:center; gap:6px; }
.colcard:hover .colcard__more .arrow { transform: translateX(4px); }

/* message */
.message { max-width: 760px; }
.message p { color: var(--c-ink); margin-top: 1.6em; }
.message p:first-child { margin-top: 0; }
.message__sign { margin-top: 40px; font-family: var(--ff-serif); }
.message__sign small { display:block; font-family:var(--ff-sans); font-size:12px; color:var(--c-ink-soft); letter-spacing:.1em; margin-bottom:4px; }

/* mission：大きなステートメントを左上・本文を中央寄せ（ONE CAREER風） */
.mission__head .section-title { font-size: clamp(38px, 8.5vw, 88px); line-height: 1.22; }
.mission__label {
  display: inline-block; margin-top: clamp(16px, 2.4vw, 26px);
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(13px, 1.4vw, 16px); letter-spacing: .14em; color: var(--c-accent);
}
.mission__body { max-width: 60ch; margin: clamp(48px, 7vw, 104px) auto 0; }

/* message：左に本文・右に代表写真 */
.msg-grid { display: grid; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (min-width: 900px){ .msg-grid { grid-template-columns: 1.1fr 1fr; } }
.msg-photo { border-radius: 18px; overflow: hidden; background: var(--c-cream-2); aspect-ratio: 3/4; box-shadow: 0 30px 60px -34px rgba(20,32,46,.5); }
@media (min-width: 900px){ .msg-photo { position: sticky; top: calc(var(--header-h) + 28px); } }
.msg-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* news list */
.news-list { margin-top: 40px; border-top: 1px solid var(--c-line); }
.news-item { display:flex; gap: 20px; flex-wrap: wrap; align-items:baseline; padding: 22px 4px; border-bottom: 1px solid var(--c-line); transition: background .25s; }
.news-item:hover { background: var(--c-cream); }
.news-item time { font-size: 12px; color: var(--c-ink-soft); letter-spacing:.08em; min-width: 96px; }
.news-item .cat { font-size: 11px; font-weight:600; letter-spacing:.1em; color: var(--c-accent); border:1px solid var(--c-accent-bg); background:var(--c-accent-bg); border-radius:999px; padding: 3px 12px; }
.news-item .ttl { flex: 1 1 260px; font-weight:600; font-size: 14.5px; }

/* CTA band */
.cta-band { background: var(--c-ink); color: #fff; text-align:center; }
.cta-band .section-title { color:#fff; }
.cta-band .lead { color: rgba(255,255,255,.7); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.5); color:#fff; }
.cta-band .btn--ghost:hover { background:#fff; color: var(--c-ink); }

/* page hero (subpages) */
.page-hero { padding-top: calc(var(--header-h) + 64px); padding-bottom: 56px; background: var(--c-cream-2); position: relative; isolation: isolate; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--tex-fiber); background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: .14; mix-blend-mode: multiply;
}
/* Story詳細：白基調のシンプルなヒーロー（タイトルのみ／余計な背景なし） */
.page-hero--story { background: var(--c-bg); padding-bottom: clamp(12px, 3vw, 24px); }
.page-hero--story::before { display: none; }

/* 下層ページ：日本語＝メイン（大）／英語＝サブ（小ラベル） */
.page-hero__en {
  display: block; font-family: var(--ff-sans);
  font-size: clamp(13px, 2.4vw, 16px); letter-spacing: .2em;
  color: var(--c-accent); font-weight: 800;
}
.page-hero__title {
  font-family: var(--ff-serif); font-size: clamp(30px, 7vw, 72px);
  font-weight: 700; color: var(--c-ink); margin-top: 14px;
  letter-spacing: .01em; line-height: 1.18;
}

/* About Us 専用：左に大きな写真・右にタイトル＋和文サブ（ONE CAREER風／一目でインパクト） */
.page-hero--split { padding: 0; background: var(--c-cream-2); }
.ph-split { display: grid; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px){ .ph-split { grid-template-columns: 1.25fr 1fr; } }
.ph-photo { position: relative; overflow: hidden; background: var(--c-cream-2); min-height: 92vw; }
@media (min-width: 900px){ .ph-photo { min-height: min(94vh, 920px); } }
.ph-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-title {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(44px, 7vw, 96px) clamp(24px, 6vw, 100px);
  padding-top: calc(var(--header-h) + clamp(28px, 5vw, 56px));
}
.ph-title .page-hero__title {
  font-family: var(--ff-sans); font-weight: 700; color: var(--c-ink);
  margin-top: 0; letter-spacing: .005em; line-height: 1.04;
  font-size: clamp(38px, 9vw, 88px);
}
.ph-title .page-hero__sub {
  margin-top: clamp(14px, 1.8vw, 24px); color: var(--c-ink);
  font-family: var(--ff-sans); font-weight: 500;
  font-size: clamp(14px, 2vw, 18px); letter-spacing: .3em;
}
.ph-title .breadcrumb { margin-top: clamp(28px, 4vw, 48px); }
.breadcrumb { margin-top: 18px; font-size: 12px; color: var(--c-ink-soft); }
.breadcrumb a:hover { text-decoration: underline; }

/* 下層ヒーロー：英語＝大タイトル＋和文＝小サブ（About us と統一） */
.page-hero--en .page-hero__title {
  font-family: var(--ff-sans); font-weight: 700; color: var(--c-ink);
  margin: 0; line-height: 1.04; letter-spacing: .005em;
  font-size: clamp(38px, 9vw, 88px);
}
.page-hero--en .page-hero__sub {
  margin-top: clamp(12px, 1.8vw, 22px); color: var(--c-ink);
  font-family: var(--ff-sans); font-weight: 500;
  font-size: clamp(14px, 2vw, 18px); letter-spacing: .26em;
}
.ph-svc__lead {
  margin: clamp(22px, 3vw, 34px) 0 0; color: var(--c-ink);
  font-weight: 500; font-size: clamp(14px, 2vw, 18px); line-height: 1.95;
}
/* Service ヒーロー：About us（写真左）と対比 → タイトル左／写真右 */
@media (min-width: 900px){
  .ph-split--rev { grid-template-columns: 1fr 1.25fr; }
}
/* SPで写真が上に来るページ（About us/Story）はヘッダー回避の余白が不要
   → 写真↔タイトルの間隔を Services/Column と揃える */
@media (max-width: 899px){
  .ph-split:not(.ph-split--rev) .ph-title {
    padding-top: clamp(44px, 7vw, 96px);
  }
}

/* company profile table（タイトル左／情報は中央に配置） */
.profile { margin: 48px auto 0; max-width: 680px; border-top: 1px solid var(--c-line); }
.profile dl { display:flex; flex-wrap: wrap; gap: 0; margin:0; border-bottom: 1px solid var(--c-line); padding: 22px 4px; }
.profile dt { width: 140px; font-weight: 600; font-size: 13px; letter-spacing:.06em; }
.profile dd { margin:0; flex: 1 1 240px; color: var(--c-ink-soft); font-size: 14px; }
.profile .map-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--c-accent); }
.profile .map-link:hover { text-decoration: underline; }

/* contact */
.form { max-width: 680px; margin-top: 48px; display:grid; gap: 24px; }
.field label { display:block; font-size: 13px; font-weight:600; margin-bottom: 8px; }
.field label .req { color: var(--c-accent); margin-left: 6px; font-size:11px; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 15px; color: var(--c-ink);
  padding: 14px 16px; border: 1px solid var(--c-line); border-radius: 12px; background: var(--c-bg);
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--c-accent); }
.form__submit { justify-self: start; }
.form-note { font-size: 12px; color: var(--c-ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--c-bg); border-top: 1px solid var(--c-line); padding-block: 80px 32px; }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 768px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .brand { font-size: 24px; }
.footer-brand p { color: var(--c-ink-soft); font-size: 13px; margin-top: 16px; max-width: 28em; }
.footer-col h4 { font-size: 11px; letter-spacing:.16em; color: var(--c-ink-soft); margin-bottom: 16px; }
.footer-col a { display:block; padding: 7px 0; font-size: 14px; font-weight:600; }
.footer-col a:hover { color: var(--c-accent); }
.footer-col a .nav-en { font-size: 13px; font-weight: 700; letter-spacing: .1em; }
.footer-col a .nav-ja { font-size: 11px; font-weight: 500; color: var(--c-ink-soft); margin-left: 9px; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--c-line); display:flex; flex-wrap:wrap; gap:12px; justify-content: space-between; align-items:center; }
.footer-bottom small { font-size: 11px; color: var(--c-ink-soft); letter-spacing:.06em; }

/* ============================================================
   RESPONSIVE SWITCH
   ============================================================ */
@media (max-width: 860px) {
  .gnav { display: none; }      /* hide inline nav */
  .nav-toggle { display: block; } /* show hamburger */
}
@media (min-width: 861px) {
  .drawer, .nav-scrim { display: none; } /* drawer not needed on PC */
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------- Subpage extras ---------- */
/* flow steps */
.flow { margin-top: 40px; display: grid; gap: 16px; }
.flow__step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 16px; padding: 24px clamp(20px,3vw,32px); }
.flow__no { font-family: var(--ff-serif); font-size: 22px; color: var(--c-accent); width: 48px; height: 48px; border-radius: 50%; background: var(--c-accent-bg); display: grid; place-items: center; }
.flow__t { font-family: var(--ff-serif); font-size: 18px; margin: 4px 0 6px; }
.flow__d { color: var(--c-ink-soft); font-size: 14px; }
/* chip list */
.chiplist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chiplist li { font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 999px; background: var(--c-cream); border: 1px solid var(--c-line); }
/* service block — ジグザグ（左右交互）＋特大ナンバー */
.svc-block { padding-block: clamp(56px,10vw,120px); border-bottom: 1px solid var(--c-line); }
.svc-block:last-child { border-bottom: 0; }
.svc-block__inner { display: grid; grid-template-columns: 1fr; gap: clamp(6px,3vw,28px); align-items: start; }
@media (min-width: 880px){
  .svc-block__inner { grid-template-columns: minmax(150px, .46fr) 1fr; gap: clamp(40px,6vw,96px); }
}
.svc-block__no {
  display: block; font-family: var(--ff-serif); font-weight: 800;
  font-size: clamp(86px,18vw,232px); line-height: .82; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1.8px var(--c-cream-2);
  margin: 0;
}
.svc-block__logo { margin-bottom: 22px; }
.svc-block__logo img { width: clamp(250px,38vw,390px); height: auto; display: block; }
.svc-block__en { font-size: 11px; letter-spacing:.2em; color: var(--c-accent); font-weight:700; }
.svc-block__title { font-family: var(--ff-serif); font-size: clamp(24px,5vw,34px); margin: 10px 0 8px; }
.svc-block__catch { color: var(--c-accent-d); font-weight: 700; font-size: clamp(16px,2.4vw,19px); margin-bottom: 0; }
.svc-block__body { color: var(--c-ink-soft); max-width: 46em; margin-top: clamp(22px,3vw,32px); }
.svc-block__cta { margin-top: clamp(28px,4vw,40px); }
.badge-soon { display:inline-block; font-size: 11px; font-weight:600; letter-spacing:.08em; color: var(--c-ink-soft); border:1px solid var(--c-line); border-radius: 999px; padding: 4px 12px; margin-left: 10px; vertical-align: middle; }
/* member full */
.member--full .member__bio { white-space: pre-line; }
/* intro lead block */
.intro { max-width: 40em; }
.intro p { color: var(--c-ink-soft); margin-top: 1.4em; }
.intro p:first-child { margin-top: 0; }

/* intro lead — centered hero→PICK UP bridge */
.intro--lead { max-width: 100%; margin: clamp(8px, 3vw, 28px) auto clamp(48px, 8vw, 88px); text-align: center; }
.intro--lead p { margin: 0; font-size: clamp(16px, 2.4vw, 21px); line-height: 2.1; font-weight: 500; color: var(--c-ink); }
.intro--lead br { display: none; }
@media (min-width: 760px) { .intro--lead br { display: inline; } }

/* case detail */
.case-route { display: flex; align-items: center; gap: clamp(16px, 5vw, 48px); flex-wrap: wrap; padding: clamp(24px,4vw,32px) clamp(20px,4vw,36px); background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 16px; }
.case-route__col { display: flex; flex-direction: column; font-family: var(--ff-serif); font-size: clamp(18px,4.4vw,24px); font-weight: 700; }
.case-route__col small { font-family: var(--ff-sans); font-size: 11px; letter-spacing: .12em; color: var(--c-accent); font-weight: 600; margin-bottom: 4px; }
.case-route__arrow { color: var(--c-accent); font-size: 24px; font-weight: 700; }
.case-thumb { position:relative; aspect-ratio: 16/7; background: var(--c-cream-2); display: grid; place-items: center; color: var(--c-ink-soft); letter-spacing: .2em; font-size: 13px; border-radius: 16px; margin-top: 24px; overflow: hidden; }
.case-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 36%; display:block; }
.case-thumb--photo { aspect-ratio: 3/2; box-shadow: 0 30px 64px -40px rgba(20,32,46,.5); }
.case-q { font-family: var(--ff-serif); font-size: clamp(18px,4vw,21px); font-weight: 700; color: var(--c-ink); margin: 40px 0 12px; }
.case-q:first-of-type { margin-top: 0; }
