/* =============================================================
   現場採用ラボ — Design System v2
   B2B・現場感 × 信頼。太いゴシックの力強さと、余白の品を両立。
   ============================================================= */

:root {
  /* --- brand tones --- */
  --navy: #10233f;
  --navy-700: #0b1a30;
  --navy-600: #16304f;
  --navy-500: #1d3d63;
  --ink: #08111f;
  --ink-2: #0a1424;
  --orange: #e86f22;
  --orange-600: #d65e13;
  --orange-300: #ff9b5a;
  --orange-150: #ffd3b7;
  --orange-tint: #fdeada;
  --bluegray: #526476;
  --bluegray-600: #41505f;
  --paper: #f7f3ec;
  --bg: #faf8f3;
  --line: #cbd2d9;
  --hairline: rgba(16, 35, 63, .12);
  --hairline-dark: rgba(255, 255, 255, .14);
  --white: #ffffff;

  /* --- elevation (multi-layer, soft) --- */
  --shadow-sm:
    0 1px 2px rgba(8, 17, 31, .05),
    0 4px 12px -4px rgba(8, 17, 31, .08);
  --shadow-md:
    0 2px 4px rgba(8, 17, 31, .04),
    0 10px 24px -8px rgba(8, 17, 31, .1),
    0 24px 48px -18px rgba(8, 17, 31, .14);
  --shadow-lg:
    0 4px 8px rgba(8, 17, 31, .05),
    0 18px 40px -14px rgba(8, 17, 31, .16),
    0 44px 90px -30px rgba(8, 17, 31, .26);
  --shadow-orange:
    0 4px 10px -2px rgba(232, 111, 34, .28),
    0 16px 36px -10px rgba(214, 94, 19, .4);
  --shadow: var(--shadow-md);

  /* --- radii: 3 tiers only --- */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 26px;
  --radius: var(--r-md);

  /* --- rhythm (8px grid) --- */
  --sec: clamp(96px, 6vw + 72px, 152px);
  --sec-sm: clamp(64px, 4vw + 48px, 96px);
  --gap: clamp(20px, 2.4vw, 32px);
  --header-h: 76px;

  /* --- fluid type scale --- */
  --fs-hero: clamp(40px, 2.4rem + 4.6vw, 104px);
  --fs-display: clamp(34px, 1.7rem + 2.9vw, 72px);
  --fs-h2: clamp(30px, 1.5rem + 2.2vw, 58px);
  --fs-h3: clamp(19px, 1rem + .8vw, 26px);
  --fs-lead: clamp(16px, .92rem + .5vw, 21px);
  --fs-body: clamp(15px, .9rem + .15vw, 16px);
  --fs-num-xl: clamp(96px, 4rem + 15vw, 280px);
  --fs-num-lg: clamp(64px, 3rem + 6vw, 152px);
  --fs-num-md: clamp(40px, 2rem + 2.6vw, 72px);

  /* --- motion --- */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);

  --font-jp: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-num: "Oswald", "Noto Sans JP", sans-serif;
}

/* =============================================================
   Base
   ============================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  line-height: 2;
  letter-spacing: .01em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 {
  word-break: auto-phrase;
  text-wrap: balance;
  letter-spacing: .015em;
  line-height: 1.34;
  font-weight: 900;
}
.lead, .btn, summary { word-break: auto-phrase; letter-spacing: .01em; }
::selection { background: rgba(232, 111, 34, .28); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

/* =============================================================
   Header — shrinks & blurs on scroll
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--hairline);
  box-shadow: 0 8px 30px -18px rgba(8, 17, 31, .22);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height .4s var(--ease);
}
.site-header.is-scrolled .header-inner { min-height: 62px; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .02em;
  color: var(--navy);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: width .4s var(--ease), height .4s var(--ease);
}
.site-header.is-scrolled .brand img { width: 34px; height: 34px; }
.brand small {
  display: block;
  font-size: 10.5px;
  color: var(--bluegray);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: #22314a;
}
.nav a:not(.btn) {
  position: relative;
  white-space: nowrap;
  padding: 12px 12px;
  border-radius: 999px;
  transition: color .3s var(--ease);
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:not(.btn):hover { color: var(--orange-600); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .btn { margin-left: 10px; }

/* =============================================================
   Buttons — 面で強く
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .03em;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f2853a 0%, var(--orange) 46%, var(--orange-600) 100%);
  box-shadow: var(--shadow-orange), inset 0 1px 0 rgba(255, 255, 255, .28);
}
.btn-primary::after {
  content: "→";
  font-family: var(--font-num);
  font-weight: 600;
  transition: transform .35s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 14px -2px rgba(232, 111, 34, .34),
    0 24px 48px -12px rgba(214, 94, 19, .48);
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(16, 35, 63, .16);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 35, 63, .3);
  box-shadow: var(--shadow-md);
}
.btn-dark { color: #fff; background: var(--navy); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav .btn { min-height: 44px; padding: 10px 22px; font-size: 13.5px; }

/* =============================================================
   Labels / eyebrows
   ============================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--orange-150);
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 38px; height: 2px; border-radius: 2px; background: var(--orange); }
.catalog-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--orange);
  font-family: var(--font-num);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.catalog-label::before { content: ""; width: 34px; height: 2px; border-radius: 2px; background: currentColor; }

/* =============================================================
   Motion — reveal system
   ============================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.no-js .reveal-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-up { opacity: 1; transform: none; transition: none; }
  .staff-orbit, .staff-item { animation: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =============================================================
   Section shells
   ============================================================= */
.section { padding: var(--sec) 0; position: relative; overflow: hidden; }
.section.alt { background: var(--paper); }
.section.dark { color: #fff; background: var(--ink-2); }
.section-title {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-title .index {
  color: var(--orange);
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .22em;
  border-top: 2px solid var(--orange);
  padding-top: 12px;
}
.section-title h2 { margin: 0; color: var(--navy); font-size: var(--fs-h2); line-height: 1.32; }
.dark .section-title h2 { color: #fff; }
.section-title p { color: var(--bluegray); max-width: 720px; margin-top: 12px; font-weight: 500; }
.dark .section-title p { color: rgba(255, 255, 255, .72); }

/* =============================================================
   FV — StickyStack（課題 → 約束 → 証拠）
   ============================================================= */
.stack-fv { min-height: 300vh; background: var(--ink); overflow: visible; }
.stack-card {
  position: sticky;
  top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 8vw;
  isolation: isolate;
  box-shadow: 0 -40px 90px rgba(0, 0, 0, .34);
}
.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.stack-problem {
  z-index: 1;
  color: #fff;
  background:
    radial-gradient(circle at 78% 28%, rgba(232, 111, 34, .22), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(29, 61, 99, .5), transparent 42%),
    linear-gradient(152deg, #0d1a2e 0%, #08111f 62%, #030609 100%);
}
.stack-promise {
  z-index: 2;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .3), transparent 32%),
    linear-gradient(135deg, #f28a3f 0%, var(--orange) 44%, #f7bd77 100%);
}
.stack-proof {
  z-index: 3;
  color: #fff;
  background:
    radial-gradient(circle at 22% 22%, rgba(232, 111, 34, .16), transparent 30%),
    linear-gradient(148deg, #07111f 0%, var(--navy) 60%, #050a13 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .66; }
.stack-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .26;
  z-index: -2;
  filter: saturate(1.08) contrast(1.1);
}
.stack-proof .stack-photo { opacity: .18; }
.stack-content { position: relative; z-index: 2; width: min(1060px, 100%); }
.stack-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--orange-150);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
}
.stack-promise .stack-tag { color: rgba(8, 17, 31, .78); }
.stack-tag::before { content: ""; width: 56px; height: 1px; background: currentColor; }
.stack-idx {
  position: absolute;
  right: 5vw;
  top: 7vh;
  z-index: 3;
  font-family: var(--font-num);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .26em;
  opacity: .56;
}
.stack-card h1,
.stack-card h2 {
  margin: 0;
  max-width: 980px;
  font-size: var(--fs-hero);
  line-height: 1.16;
  letter-spacing: .01em;
  font-weight: 900;
}
.stack-card .lead {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: var(--fs-lead);
  line-height: 2;
  font-weight: 500;
}
.stack-promise .lead { color: rgba(8, 17, 31, .8); font-weight: 700; }
.stack-ghost {
  position: absolute;
  left: -3vw;
  bottom: -16vh;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .1);
  font-family: var(--font-num);
  font-size: clamp(120px, 24vw, 330px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
  pointer-events: none;
}

/* FV load-in（初回だけの演出） */
.js .stack-problem .stack-tag,
.js .stack-problem h1,
.js .stack-problem .lead {
  animation: fv-rise 1.1s var(--ease) both;
}
.js .stack-problem h1 { animation-delay: .12s; }
.js .stack-problem .lead { animation-delay: .26s; }
@keyframes fv-rise {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

/* promise: 3つの約束（面と階調で見せる） */
.stack-rules {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 52px;
}
.stack-rules div {
  min-height: 112px;
  padding: 20px 22px;
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), 0 12px 28px -18px rgba(8, 17, 31, .4);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  color: rgba(8, 17, 31, .78);
  backdrop-filter: blur(4px);
}
.stack-rules b { display: block; margin-bottom: 6px; font-size: 17px; color: var(--ink); letter-spacing: .02em; }

/* proof: 巨大数字 */
.stack-num {
  display: block;
  font-family: var(--font-num);
  font-size: var(--fs-num-xl);
  line-height: .92;
  font-weight: 700;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(105deg, #ffb27a 0%, var(--orange-300) 40%, #ffe0c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 40px rgba(232, 111, 34, .3));
}
.stack-proof-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.stack-proof-row span {
  min-width: 172px;
  padding: 16px 18px;
  border-radius: var(--r-sm);
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 16px 34px -20px rgba(0, 0, 0, .5);
  font-size: 12.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, .78);
  backdrop-filter: blur(6px);
}
.stack-proof-row b {
  display: block;
  color: var(--orange-150);
  font-family: var(--font-num);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* =============================================================
   INTRO — 応募が消える3つの場所（ダーク・診断カード）
   ============================================================= */
.intro-diagnostic {
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    radial-gradient(circle at 84% 4%, rgba(232, 111, 34, .2), transparent 30%),
    linear-gradient(180deg, #060d18 0%, var(--ink-2) 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
}
.intro-head { max-width: 900px; margin-bottom: clamp(44px, 5vw, 64px); }
.intro-head h2,
.reasons-side h2,
.vs-head h2,
.voice-feature h2 {
  margin: 0;
  font-size: var(--fs-display);
  line-height: 1.3;
  letter-spacing: .015em;
}
.diagnostic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.diagnostic-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--r-md);
  background: linear-gradient(170deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 30px 70px -30px rgba(0, 0, 0, .5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.diagnostic-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 40px 90px -32px rgba(0, 0, 0, .6);
}
.diagnostic-card:nth-child(2) { transition-delay: .1s; }
.diagnostic-card:nth-child(3) { transition-delay: .2s; }
.diagnostic-pic { aspect-ratio: 16 / 10; overflow: hidden; background: rgba(255, 255, 255, .06); }
.diagnostic-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform .8s var(--ease);
}
.diagnostic-card:hover .diagnostic-pic img { transform: scale(1.04); }
.diagnostic-card span {
  display: block;
  padding: 24px 26px 0;
  color: var(--orange-300);
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
}
.diagnostic-card h3 { margin: 10px 26px 12px; font-size: var(--fs-h3); line-height: 1.42; }
.diagnostic-card p { padding: 0 26px 30px; color: rgba(255, 255, 255, .72); font-size: 14.5px; line-height: 1.95; }

/* =============================================================
   REASONS — sticky 見出し × 番号ルール
   ============================================================= */
.reasons-index { background: var(--bg); }
.reasons-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(40px, 5.5vw, 72px); align-items: start; }
.reasons-side { position: sticky; top: calc(var(--header-h) + 40px); }
.reasons-side h2 { color: var(--navy); }
.reasons-side h2 span { color: var(--orange); }
.reasons-side p { margin-top: 22px; max-width: 25em; color: var(--bluegray); font-weight: 600; }
.side-mark { width: 72px; height: 5px; margin-top: 34px; background: linear-gradient(90deg, var(--orange), var(--orange-300)); border-radius: 999px; }
.reason-rules { border-top: 2px solid var(--navy); }
.reason-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(36px, 4.5vw, 52px) 0;
  border-bottom: 1px solid var(--hairline);
}
.reason-row:nth-child(2) { transition-delay: .08s; }
.reason-row:nth-child(3) { transition-delay: .16s; }
.reason-row b {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--navy);
  font-family: var(--font-num);
  font-size: clamp(56px, 3rem + 4vw, 104px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: .02em;
}
.reason-row img {
  float: right;
  width: clamp(104px, 12vw, 132px);
  height: clamp(76px, 9vw, 96px);
  margin: 0 0 14px 22px;
  border-radius: var(--r-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.reason-row h3 { margin: 0 0 12px; color: var(--navy); font-size: clamp(20px, 1.1rem + 1.2vw, 30px); line-height: 1.38; }
.reason-row p { max-width: 620px; color: var(--bluegray); line-height: 1.95; }

/* =============================================================
   NUMBERS 1 — ピクトグラム 10社中9社
   ============================================================= */
.pictogram-numbers {
  background:
    linear-gradient(rgba(16, 35, 63, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 63, .035) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  background-size: 32px 32px, 32px 32px, auto;
}
.pictogram-head { max-width: 840px; margin: 0 auto clamp(44px, 5vw, 64px); text-align: center; }
.pictogram-head h2 { margin: 0; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.pictogram-head p { max-width: 42em; margin: 20px auto 0; color: var(--bluegray); font-weight: 600; }
.pictogram-crowd { display: flex; justify-content: center; align-items: flex-end; flex-wrap: wrap; gap: clamp(10px, 1.7vw, 22px); }
.person { position: relative; width: clamp(42px, 6vw, 76px); height: clamp(72px, 10vw, 124px); }
.person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--line);
  transform: translateX(-50%);
}
.person::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 70%;
  border: 3px solid var(--line);
  border-radius: 20px 20px 7px 7px;
}
.person.fill::before,
.person.fill::after {
  border-color: var(--orange-600);
  background: linear-gradient(to top, var(--orange) 0 100%);
  box-shadow: 0 10px 24px -10px rgba(232, 111, 34, .5);
}
.person.fill { opacity: 0; transform: translateY(24px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.person.fill.is-filled { opacity: 1; transform: translateY(0); }
.pictogram-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  color: var(--bluegray);
  font-size: 13px;
  font-weight: 800;
}
.pictogram-legend span { display: inline-flex; align-items: center; gap: 8px; }
.pictogram-legend i { width: 14px; height: 14px; border-radius: 4px; background: var(--orange); }
.pictogram-legend i.open { background: #fff; border: 2px solid var(--line); }
.pictogram-minis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(48px, 6vw, 72px);
}
.pictogram-minis div {
  padding: 32px 18px 28px;
  text-align: center;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pictogram-minis strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-num);
  font-size: var(--fs-num-md);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pictogram-minis span {
  display: block;
  margin-top: 10px;
  color: var(--bluegray);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

/* =============================================================
   NUMBERS 2 — 写真マスク数字（最大の見せ場）
   ============================================================= */
.photo-mask-numbers {
  background:
    radial-gradient(circle at 50% 120%, rgba(232, 111, 34, .14), transparent 46%),
    linear-gradient(180deg, #050d1a 0%, #071120 100%);
}
.photo-mask-head { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; }
.photo-mask-head h2 { margin: 0; color: #fff; font-size: var(--fs-h2); line-height: 1.32; }
.photo-mask-feature { margin-top: clamp(28px, 4vw, 48px); text-align: center; }
.photo-mask-num {
  display: inline-block;
  color: transparent;
  font-family: var(--font-num);
  font-size: clamp(96px, 5rem + 14vw, 300px);
  font-weight: 700;
  line-height: .94;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  background-image: linear-gradient(rgba(232, 111, 34, .3), rgba(232, 111, 34, .3)), url("../../src/case-1.jpg");
  background-size: cover;
  background-position: 50% 40%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
  will-change: background-position, transform;
}
.photo-mask-num span { font-size: .36em; }
.photo-mask-sub { color: #fff; font-size: clamp(20px, 1.1rem + 1.4vw, 34px); font-weight: 900; letter-spacing: .02em; }
.photo-mask-desc { max-width: 44em; margin: 18px auto 0; color: rgba(255, 255, 255, .66); font-weight: 500; line-height: 2.05; }
.photo-mask-sides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(52px, 6vw, 80px);
}
.photo-mask-sides div {
  padding: 30px 18px 26px;
  text-align: center;
  border-radius: var(--r-md);
  background: linear-gradient(170deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  opacity: .35;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.photo-mask-sides div.is-visible { opacity: 1; transform: translateY(0); }
.photo-mask-sides strong {
  display: block;
  color: #fff;
  font-family: var(--font-num);
  font-size: var(--fs-num-md);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.photo-mask-sides small { color: var(--orange-300); font-size: .46em; font-weight: 600; margin-left: 2px; }
.photo-mask-sides span { display: block; margin-top: 10px; color: rgba(255, 255, 255, .55); font-size: 12px; font-weight: 800; letter-spacing: .1em; }

/* =============================================================
   SERVICES — 横開きアコーディオン
   ============================================================= */
.services-accordion-section { background: var(--paper); }
.services-accordion-head { margin-bottom: clamp(36px, 4.5vw, 56px); }
.services-accordion-head h2 { margin: 0; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.service-accordion { display: flex; gap: 12px; height: min(68vh, 580px); }
.service-slat {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--r-md);
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: flex 1s var(--ease-io), box-shadow .6s var(--ease);
}
.service-slat.is-open { flex: 4.4; cursor: default; box-shadow: var(--shadow-lg); }
.service-slat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
  transition: transform 1.2s var(--ease), opacity .8s;
}
.service-slat:hover img { transform: scale(1.05); }
.service-slat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, .08) 30%, rgba(8, 17, 31, .82));
}
.vertical-title {
  position: absolute;
  left: 50%;
  top: 28px;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 900;
  letter-spacing: .3em;
  white-space: nowrap;
  transition: opacity .45s;
  text-shadow: 0 1px 16px rgba(0, 0, 0, .55);
}
.slat-index {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  transition: opacity .45s;
}
.service-slat.is-open .vertical-title,
.service-slat.is-open .slat-index { opacity: 0; }
.slat-info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  padding: clamp(22px, 3.4vw, 42px);
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease) .34s, transform .55s var(--ease) .34s;
}
.service-slat.is-open .slat-info { opacity: 1; transform: none; }
.slat-info span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-150);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
}
.slat-info h3 { max-width: 20em; margin: 0 0 10px; font-size: clamp(21px, 1.2rem + 1.4vw, 34px); line-height: 1.36; }
.slat-info p { max-width: 42em; color: rgba(255, 255, 255, .82); font-size: 14px; font-weight: 600; line-height: 1.9; }

/* =============================================================
   GALLERY — カバーフロー
   ============================================================= */
.coverflow-gallery { background: linear-gradient(180deg, #eef2f5 0%, #e7edf2 100%); }
.coverflow-head { margin-bottom: 34px; text-align: center; }
.coverflow-head h2 { margin: 0; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.coverflow-head p { margin-top: 16px; color: var(--bluegray); font-weight: 600; }
.coverflow-viewport {
  position: relative;
  overflow: hidden;
  padding: 24px max(24px, calc((100vw - 1160px) / 2)) 62px;
  min-height: 440px;
}
.coverflow-rail { display: flex; gap: clamp(18px, 3vw, 42px); width: max-content; will-change: transform; }
.coverflow-card { flex: none; width: min(34vw, 420px); margin: 0; }
.coverflow-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  filter: grayscale(1) brightness(.9);
  transform: scale(.84);
  box-shadow: 0 30px 60px -30px rgba(8, 17, 31, .46);
  transition: filter .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.coverflow-card.is-focus img {
  filter: grayscale(0) brightness(1);
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}
.coverflow-card figcaption {
  margin-top: 14px;
  color: var(--bluegray);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.coverflow-card.is-focus figcaption { opacity: 1; }
.coverflow-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--bluegray);
  font-family: var(--font-num);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .32em;
}

/* =============================================================
   VS — Before / After
   ============================================================= */
.vs-shift {
  background:
    radial-gradient(circle at 8% 10%, rgba(232, 111, 34, .07), transparent 34%),
    linear-gradient(180deg, #eef2f5 0%, #f5f7f9 100%);
}
.vs-head { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.vs-head h2 { color: var(--navy); }
.vs-rows { width: min(1000px, 100%); margin: 0 auto; display: grid; gap: 18px; }
.vs-row {
  display: grid;
  grid-template-columns: 116px 1fr 54px 1.18fr;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 36px);
  border-radius: var(--r-md);
  background: linear-gradient(170deg, #fff, #fbfcfd);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease),
    opacity .9s var(--ease);
}
.vs-row.is-visible:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vs-row:nth-child(2) { transition-delay: .08s; }
.vs-row:nth-child(3) { transition-delay: .16s; }
.vs-row span {
  color: var(--orange-600);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.vs-row b { display: block; color: #8b94a0; font-size: clamp(17px, 1rem + .9vw, 24px); line-height: 1.4; font-weight: 800; }
.vs-row small { display: block; margin-top: 7px; color: var(--bluegray); font-weight: 600; font-size: 13px; line-height: 1.8; }
.vs-row i {
  color: var(--orange);
  font-style: normal;
  font-family: var(--font-num);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.vs-row .now b { color: var(--navy); font-size: clamp(21px, 1.1rem + 1.5vw, 34px); }
.vs-row .now small { color: var(--ink); }

/* =============================================================
   VOICE — インタビューアーカイブ（ダーク）
   ============================================================= */
.voice-archive {
  background:
    radial-gradient(circle at 88% 0%, rgba(232, 111, 34, .12), transparent 34%),
    linear-gradient(180deg, #050d1a 0%, #081321 100%);
}
.voice-top { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 4.5vw, 56px); align-items: stretch; }
.voice-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-lg);
}
.voice-photo::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -12px;
  z-index: 2;
  width: 98px;
  height: 98px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-sm) 0 0 0;
}
.voice-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.voice-photo:hover img { transform: scale(1.03); }
.voice-photo span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.voice-feature { display: flex; flex-direction: column; justify-content: center; }
.voice-feature h2 { color: #fff; }
.voice-feature p { margin-top: 26px; max-width: 640px; color: rgba(255, 255, 255, .72); font-size: var(--fs-lead); font-weight: 500; line-height: 2.05; }
.voice-index { list-style: none; margin: clamp(48px, 6vw, 72px) 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .6); }
.voice-index li {
  display: grid;
  grid-template-columns: 64px 1fr 150px 120px;
  gap: 20px;
  align-items: baseline;
  padding: clamp(24px, 3vw, 32px) 8px clamp(24px, 3vw, 32px) 4px;
  border-bottom: 1px solid var(--hairline-dark);
  transition: background .4s var(--ease), padding .4s var(--ease),
    opacity .9s var(--ease), transform .9s var(--ease);
}
.voice-index li:hover { background: rgba(255, 255, 255, .03); padding-left: 14px; }
.voice-index li:nth-child(2) { transition-delay: .08s; }
.voice-index li:nth-child(3) { transition-delay: .16s; }
.voice-index span { color: var(--orange-300); font-family: var(--font-num); font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.voice-index p { color: rgba(255, 255, 255, .9); font-size: clamp(15px, .9rem + .5vw, 20px); font-weight: 700; line-height: 1.85; }
.voice-index b { color: #fff; font-size: 14px; }
.voice-index em {
  color: rgba(255, 255, 255, .42);
  font-family: var(--font-num);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* =============================================================
   STAFF — 軌道チーム
   ============================================================= */
.staff-orbit-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 111, 34, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f2f6f9 100%);
}
.staff-orbit-head { max-width: 880px; margin: 0 auto 28px; text-align: center; }
.staff-orbit-head h2 { margin: 14px 0 16px; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.staff-orbit-head p { max-width: 690px; margin: 0 auto; color: var(--bluegray); font-weight: 600; }
.staff-orbit-space { position: relative; width: min(620px, 92vw); height: min(620px, 92vw); margin: 10px auto 0; }
.staff-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(16, 35, 63, .26);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.staff-ring-inner { width: 46%; height: 46%; }
.staff-ring-outer { width: 82%; height: 82%; }
.staff-orbit { position: absolute; inset: 0; animation: staff-orbit-spin 56s linear infinite; }
.staff-orbit-outer { animation-name: staff-orbit-spin-reverse; animation-duration: 88s; }
.staff-orbit-space:hover .staff-orbit,
.staff-orbit-space:hover .staff-item { animation-play-state: paused; }
.staff-pos {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  margin: -42px 0 0 -42px;
  transform: rotate(var(--angle)) translateX(var(--distance)) rotate(calc(var(--angle) * -1));
}
.staff-item { position: relative; width: 100%; height: 100%; animation: staff-orbit-spin-reverse 56s linear infinite; }
.staff-orbit-outer .staff-item { animation-name: staff-orbit-spin; animation-duration: 88s; }
.staff-avatar {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 14px 32px -12px rgba(8, 17, 31, .44);
  cursor: pointer;
}
.staff-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.staff-item:hover .staff-avatar img { transform: scale(1.12); }
.staff-item span {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  z-index: 4;
  min-width: max-content;
  padding: 6px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.staff-item span small { margin-right: 8px; color: var(--orange-300); font-family: var(--font-num); font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.staff-item:hover span { opacity: 1; transform: translateX(-50%) translateY(0); }
.staff-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 28%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 32% 26%, var(--navy-500), var(--navy) 64%, var(--navy-700));
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 30px 60px -28px rgba(8, 17, 31, .68);
  transform: translate(-50%, -50%);
}
.staff-core span,
.staff-core em {
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-num);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .22em;
}
.staff-core strong { font-size: clamp(17px, 2.5vw, 26px); line-height: 1.4; }
.staff-orbit-hint { margin-top: 14px; color: var(--bluegray); font-size: 12px; font-weight: 700; text-align: center; }
@keyframes staff-orbit-spin { to { transform: rotate(360deg); } }
@keyframes staff-orbit-spin-reverse { to { transform: rotate(-360deg); } }

/* =============================================================
   MESSAGE — 代表挨拶
   ============================================================= */
.message { display: grid; grid-template-columns: .42fr .58fr; gap: clamp(32px, 4.5vw, 56px); align-items: center; }
.message img {
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.message h2 { font-size: var(--fs-h2); color: var(--navy); margin: 0 0 22px; line-height: 1.34; }
.message p { color: var(--bluegray-600); line-height: 2.05; }
.message p + p { margin-top: 16px; }
.message strong { color: var(--navy); }
.message .eyebrow { color: var(--orange-600); margin-bottom: 14px; }

/* =============================================================
   PLAN — 2カード
   ============================================================= */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: stretch; }
.plain-card {
  position: relative;
  background: linear-gradient(170deg, #fff, #fdfcfa);
  border-radius: var(--r-md);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.plain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plain-card::before {
  content: "";
  position: absolute;
  left: clamp(26px, 3.4vw, 40px);
  top: 0;
  width: 46px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-300));
}
.plain-card h3 { margin: 6px 0 12px; color: var(--navy); font-size: var(--fs-h3); }
.plain-card p { color: var(--bluegray-600); line-height: 2; }

/* =============================================================
   PROCESS — 8週カレンダー
   ============================================================= */
.process-calendar { background: var(--bg); }
.process-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.process-calendar-head h2 { margin: 0; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.calendar-note {
  color: var(--bluegray);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  white-space: nowrap;
}
.planner-board {
  position: relative;
  padding: clamp(24px, 3.8vw, 44px);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.planner-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.planner-title strong { color: var(--navy); font-size: clamp(17px, 1rem + .8vw, 23px); }
.planner-legend { display: flex; flex-wrap: wrap; gap: 16px; color: var(--bluegray); font-size: 11px; font-weight: 800; }
.planner-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  border-radius: 3px;
  vertical-align: -1px;
}
.phase-1 i, .week-card.phase-1 .week-fill, .week-card.phase-1 b { --phase: #e86f22; }
.phase-2 i, .week-card.phase-2 .week-fill, .week-card.phase-2 b { --phase: #10233f; }
.phase-3 i, .week-card.phase-3 .week-fill, .week-card.phase-3 b { --phase: #526476; }
.phase-4 i, .week-card.phase-4 .week-fill, .week-card.phase-4 b { --phase: #2f6e4f; }
.planner-legend i { background: var(--phase); }
.weeks-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.week-card {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: 15px 14px;
  border-radius: var(--r-sm);
  background: #fbfaf8;
  box-shadow: inset 0 0 0 1px rgba(16, 35, 63, .08);
  opacity: .5;
  transform: translateY(24px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.week-card.is-visible { opacity: 1; transform: translateY(0); }
.week-fill {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: color-mix(in srgb, var(--phase) 13%, transparent);
  transition: transform .5s var(--ease);
}
.week-card.is-filled .week-fill { transform: scaleX(1); }
.week-no {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--bluegray);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.week-no span { letter-spacing: .02em; }
.week-card b {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  background: var(--phase);
  font-size: 12px;
  letter-spacing: .02em;
}
.week-card ul {
  position: relative;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #3a4554;
  font-size: 12px;
  line-height: 1.75;
}
.week-card li { position: relative; padding-left: 13px; }
.week-card li::before { content: "・"; position: absolute; left: 0; color: var(--bluegray); }
.week-card em {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border: 1px solid rgba(232, 111, 34, .5);
  border-radius: 999px;
  color: var(--orange-600);
  background: rgba(232, 111, 34, .06);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}
.planner-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.planner-footer p { max-width: 720px; color: var(--bluegray); font-size: 13px; font-weight: 700; line-height: 1.9; }
.planner-footer span { color: var(--bluegray); font-size: 11px; font-weight: 700; letter-spacing: .06em; }

/* =============================================================
   FAQ — チャット型
   ============================================================= */
.faq-chat-section {
  background:
    linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .94)),
    radial-gradient(rgba(232, 111, 34, .14) 1.4px, transparent 1.4px);
  background-size: auto, 26px 26px;
}
.faq-chat-wrap { width: min(880px, calc(100% - 48px)); }
.faq-chat-head { margin-bottom: clamp(40px, 5vw, 56px); text-align: center; }
.faq-chat-head h2 { margin: 14px 0 16px; color: var(--navy); font-size: var(--fs-h2); line-height: 1.32; }
.faq-chat-head p { max-width: 690px; margin: 0 auto; color: var(--bluegray); font-weight: 600; }
.faq-chat { display: flex; flex-direction: column; gap: 28px; padding: 0 52px; }
.faq-pair { display: flex; flex-direction: column; gap: 12px; }
.faq-bubble {
  position: relative;
  max-width: 78%;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.85;
}
.faq-q {
  align-self: flex-start;
  color: var(--ink);
  background: #fff;
  border-radius: var(--r-sm) var(--r-lg) var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(16, 35, 63, .08);
  font-weight: 800;
}
.faq-q::before,
.faq-a::before {
  position: absolute;
  top: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-num);
  font-size: 15px;
  font-weight: 600;
}
.faq-q::before {
  content: "Q";
  left: -48px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-500), var(--navy));
  box-shadow: var(--shadow-sm);
}
.faq-a {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, #f0803a, var(--orange) 60%, var(--orange-600));
  border-radius: var(--r-lg) var(--r-sm) var(--r-lg) var(--r-lg);
  box-shadow: var(--shadow-orange);
  font-weight: 600;
}
.faq-a::before {
  content: "A";
  right: -48px;
  color: var(--orange-600);
  background: var(--orange-tint);
  box-shadow: var(--shadow-sm);
}
.faq-pair:nth-child(2) .faq-bubble { transition-delay: .08s; }
.faq-pair:nth-child(3) .faq-bubble { transition-delay: .16s; }
.faq-pair:nth-child(4) .faq-bubble { transition-delay: .24s; }
.faq-pair:nth-child(5) .faq-bubble { transition-delay: .32s; }
.faq-pair .faq-a { transition-delay: .1s; }

/* =============================================================
   NEWS — スマホ通知型
   ============================================================= */
.notification-news { background: var(--paper); }
.notification-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.notification-copy h2 { margin: 0; color: var(--navy); font-size: var(--fs-display); line-height: 1.3; }
.notification-copy p { max-width: 29em; margin-top: 22px; color: var(--bluegray); font-weight: 600; }
.notification-arrow {
  display: inline-block;
  margin-top: 32px;
  color: var(--bluegray);
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
}
.phone-news {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 44px;
  padding: 18px 16px 28px;
  background: linear-gradient(165deg, var(--navy) 0%, #24476e 40%, #6b5f55 72%, var(--orange) 120%);
  box-shadow: var(--shadow-lg), inset 0 0 0 3px rgba(255, 255, 255, .12);
}
.phone-notch { width: 118px; height: 24px; margin: -18px auto 0; border-radius: 0 0 16px 16px; background: rgba(0, 0, 0, .85); }
.phone-clock { margin: 28px 0 22px; text-align: center; color: #fff; }
.phone-clock strong { display: block; font-family: var(--font-num); font-weight: 500; font-size: 58px; line-height: 1; font-variant-numeric: tabular-nums; }
.phone-clock span { display: block; margin-top: 10px; font-size: 12px; font-weight: 800; letter-spacing: .12em; opacity: .86; }
.notification-stack { display: grid; gap: 10px; }
.phone-note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, .42);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-44px) scale(.94);
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}
.phone-note.is-dropped { opacity: 1; transform: translateY(0) scale(1); }
.phone-note:hover { background: rgba(255, 255, 255, .96); }
.phone-icon {
  flex: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
}
.phone-note:nth-child(2) .phone-icon { background: var(--navy); }
.phone-note:nth-child(3) .phone-icon { background: var(--bluegray); }
.phone-note small { color: #6f7780; font-size: 10px; font-weight: 800; letter-spacing: .06em; }
.phone-note b { display: block; margin-top: 2px; color: var(--ink); font-size: 13px; line-height: 1.5; }
.phone-note p { margin-top: 2px; color: var(--bluegray); font-size: 11.5px; line-height: 1.6; }
.phone-homebar {
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 120px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .75);
  transform: translateX(-50%);
}

/* =============================================================
   CTA — 1画面級のインパクト
   ============================================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(110px, 8vw + 72px, 180px) 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 111, 34, .3), transparent 38%),
    radial-gradient(circle at 6% 96%, rgba(29, 61, 99, .6), transparent 42%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy) 52%, #071120 100%);
}
.cta-section::before {
  content: "CONTACT";
  position: absolute;
  inset: auto auto -.08em 2%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .09);
  font-family: var(--font-num);
  font-size: clamp(90px, 18vw, 260px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.cta-inner h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 1.4rem + 2.4vw, 56px);
  line-height: 1.36;
  letter-spacing: .015em;
}
.cta-inner p { color: rgba(255, 255, 255, .74); max-width: 760px; line-height: 2.05; font-weight: 500; }
.cta-inner .btn-primary {
  min-height: 68px;
  padding: 20px 44px;
  font-size: clamp(16px, 1rem + .3vw, 19px);
  box-shadow:
    0 0 0 8px rgba(232, 111, 34, .14),
    var(--shadow-orange);
}
.cta-inner .btn-primary:hover {
  box-shadow:
    0 0 0 12px rgba(232, 111, 34, .18),
    0 6px 14px -2px rgba(232, 111, 34, .34),
    0 28px 56px -12px rgba(214, 94, 19, .5);
}

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  color: #cfdae8;
  background: linear-gradient(180deg, #050d18 0%, #060f1d 100%);
  padding: clamp(56px, 6vw, 88px) 0 32px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255, 255, 255, .55); }
.site-footer p { color: rgba(255, 255, 255, .62); font-size: 13.5px; line-height: 2; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: 6px 4px; font-weight: 700; font-size: 13.5px; }
.footer-links a {
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  transition: color .3s var(--ease), background .3s var(--ease);
}
.footer-links a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.copy {
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  letter-spacing: .06em;
}

/* =============================================================
   サブページ共通 — page-hero
   ============================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 7vw + 56px, 160px) 0 clamp(72px, 5vw + 40px, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(232, 111, 34, .26), transparent 36%),
    radial-gradient(circle at 4% 100%, rgba(29, 61, 99, .55), transparent 44%),
    linear-gradient(150deg, var(--navy-700) 0%, var(--navy) 58%, #0a1830 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 76% 30%, #000, transparent 62%);
  -webkit-mask-image: radial-gradient(circle at 76% 30%, #000, transparent 62%);
  pointer-events: none;
}
.page-hero::after {
  content: "FIELD NOTES";
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: clamp(20px, 3vw, 42px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
  font-family: var(--font-num);
  font-size: clamp(44px, 8vw, 118px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, .24);
}
.page-hero .container::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(232, 111, 34, .14), 0 42px 0 -3px rgba(255, 255, 255, .52);
}
.page-hero .container::after {
  content: "RECRUITMENT OPERATIONS / FIELD 01";
  position: absolute;
  right: 0;
  top: 2px;
  color: rgba(255, 255, 255, .48);
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: .2em;
  white-space: nowrap;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(8, 17, 31, .28);
  backdrop-filter: blur(8px);
}
.page-hero h1 {
  margin: 18px 0 0;
  max-width: 22em;
  font-size: clamp(30px, 1.4rem + 3vw, 62px);
  line-height: 1.32;
  letter-spacing: .015em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}
.js .page-hero .eyebrow,
.js .page-hero h1 { animation: fv-rise 1s var(--ease) both; }
.js .page-hero h1 { animation-delay: .12s; }
@media(max-width:680px){
  .page-hero::after{right:-12px;bottom:22px;font-size:54px;opacity:.72;}
  .page-hero .container{padding-left:20px;}
  .page-hero .container::after{display:none;}
}

/* =============================================================
   サブページ部品
   ============================================================= */
/* サービスカード */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.service-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover img { transform: scale(1.04); }
.service-card > div { padding: clamp(22px, 2.6vw, 30px); }
.service-card h3 { margin: 0 0 10px; color: var(--navy); font-size: var(--fs-h3); }
.service-card p { color: var(--bluegray-600); font-size: 14.5px; line-height: 1.95; }

/* 事例レイアウト */
.case-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); align-items: stretch; }
.case-main {
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.case-main img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .8s var(--ease); }
.case-main:hover img { transform: scale(1.03); }
.case-main > div { padding: clamp(26px, 3vw, 36px); }
.case-main h3 { margin: 0 0 12px; color: var(--navy); font-size: clamp(19px, 1rem + 1vw, 27px); line-height: 1.4; }
.case-main p { color: var(--bluegray-600); line-height: 2; }
.quote-stack { display: grid; gap: var(--gap); align-content: start; }
.quote {
  background: linear-gradient(170deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.6vw, 30px);
  color: rgba(255, 255, 255, .84);
  line-height: 1.95;
}
.quote img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .16);
}

/* 会社概要テーブル */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.info-table th,
.info-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  width: 190px;
  color: var(--navy);
  background: linear-gradient(90deg, #f2f5f8, #f7f9fb);
  font-size: 14px;
  letter-spacing: .04em;
}
.info-table td { color: var(--bluegray-600); }

/* FAQページ — details/summary */
.faq { display: grid; gap: 14px; }
.faq details {
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .4s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 64px 22px 28px;
  color: var(--navy);
  font-size: clamp(15px, .9rem + .3vw, 17px);
  font-weight: 800;
  line-height: 1.7;
  min-height: 44px;
  transition: color .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q";
  margin-right: 14px;
  color: var(--orange-600);
  font-family: var(--font-num);
  font-weight: 600;
  font-size: 18px;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .4s var(--ease);
}
.faq details[open] summary { color: var(--orange-600); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p {
  padding: 0 28px 26px 58px;
  color: var(--bluegray-600);
  line-height: 2;
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .diagnostic-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .vs-row { grid-template-columns: 96px 1fr 40px 1.18fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }
  .nav a:not(.btn) { display: none; }
  .lead-block, .case-layout, .message, .cta-inner, .footer-grid, .two-col,
  .diagnostic-grid, .reasons-grid, .voice-top, .service-grid,
  .pictogram-minis, .photo-mask-sides, .notification-layout { grid-template-columns: 1fr; }
  .message img { max-width: 420px; }
  .stack-fv { min-height: auto; }
  .stack-card { position: relative; top: auto; min-height: auto; padding: 96px 24px; }
  .stack-card h1, .stack-card h2 { font-size: clamp(38px, 10.5vw, 72px); line-height: 1.2; }
  .stack-rules { grid-template-columns: 1fr; gap: 10px; }
  .stack-rules div { min-height: auto; }
  .stack-num { font-size: clamp(88px, 26vw, 168px); }
  .stack-idx { top: 26px; right: 24px; }
  .stack-proof-row span { flex: 1 1 150px; min-width: 0; }
  .section-title { grid-template-columns: 1fr; gap: 14px; }
  .reasons-side { position: static; }
  .reason-row { grid-template-columns: 1fr; gap: 12px; }
  .service-accordion { flex-direction: column; height: auto; }
  .service-slat { height: 72px; flex: none; transition: height 1s var(--ease-io); }
  .service-slat.is-open { height: 380px; flex: none; }
  .vertical-title { left: 20px; top: 50%; transform: translateY(-50%); writing-mode: horizontal-tb; letter-spacing: .14em; }
  .slat-index { left: auto; right: 18px; top: 50%; bottom: auto; transform: translateY(-50%); }
  .coverflow-card { width: min(72vw, 360px); }
  .vs-row { grid-template-columns: 1fr; gap: 10px; }
  .vs-row i { text-align: left; }
  .voice-photo { min-height: 320px; }
  .voice-index li { grid-template-columns: 44px 1fr; gap: 8px 14px; }
  .voice-index b { grid-column: 2; }
  .voice-index em { display: none; }
  .faq-chat-head { text-align: left; }
  .faq-chat { padding: 0 0 0 48px; }
  .faq-bubble { max-width: 100%; }
  .faq-q::before { left: -46px; }
  .faq-a::before { right: auto; left: -46px; content: "A"; }
  .staff-orbit-head { text-align: left; }
  .staff-orbit-head h2 { font-size: clamp(30px, 8.5vw, 46px); }
  .staff-pos { width: 68px; height: 68px; margin: -34px 0 0 -34px; }
  .staff-item span { font-size: 11px; }
  .staff-core { width: 31%; }
  .process-calendar-head, .planner-title, .planner-footer { flex-direction: column; align-items: flex-start; }
  .calendar-note { white-space: normal; }
  .weeks-grid { grid-template-columns: 1fr 1fr; }
  .phone-news { max-width: 420px; width: 100%; min-height: 560px; margin: 0 auto; }
  .cta-inner { text-align: left; }
  .cta-inner .btn-primary { justify-self: start; }
}

@media (max-width: 520px) {
  :root { --header-h: 60px; }
  .container { width: min(100% - 32px, 1160px); }
  .header-inner { min-height: var(--header-h); }
  .site-header.is-scrolled .header-inner { min-height: 54px; }
  .brand { font-size: 15px; }
  .brand small { display: none; }
  .brand img { width: 34px; height: 34px; }
  .btn { width: 100%; min-height: 52px; }
  .nav .btn { width: auto; padding: 10px 16px; font-size: 12.5px; min-height: 44px; }
  .stack-card { padding: 84px 20px; }
  .stack-card h1, .stack-card h2 { font-size: clamp(34px, 10.8vw, 46px); }
  .stack-card .lead { line-height: 1.9; font-size: 15px; }
  .stack-rules { display: none; }
  .stack-proof-row { display: grid; grid-template-columns: 1fr; }
  .hero-actions { margin-top: 28px; }
  .diagnostic-card h3 { margin: 8px 20px 10px; }
  .diagnostic-card span { padding: 20px 20px 0; }
  .diagnostic-card p { padding: 0 20px 24px; }
  .pictogram-minis { grid-template-columns: 1fr; }
  .photo-mask-sides { grid-template-columns: 1fr; }
  .faq-chat-wrap { width: min(100% - 32px, 880px); }
  .faq-chat { padding: 0 0 0 40px; gap: 24px; }
  .faq-bubble { padding: 15px 18px; font-size: 14px; }
  .faq-q::before, .faq-a::before { width: 32px; height: 32px; font-size: 13px; left: -40px; }
  .staff-orbit-space { width: min(100%, 360px); height: min(100vw - 32px, 360px); }
  .staff-pos { width: 58px; height: 58px; margin: -29px 0 0 -29px; }
  .staff-core strong { font-size: 15px; }
  .staff-core span, .staff-core em { font-size: 8px; }
  .weeks-grid { grid-template-columns: 1fr; }
  .week-card { min-height: auto; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 6px; border-bottom: 0; }
  .info-table td { padding-top: 0; }
  .faq summary { padding: 18px 52px 18px 20px; }
  .faq summary::after { right: 20px; }
  .faq details p { padding: 0 20px 22px 20px; }
  .cta-inner .btn-primary { min-height: 60px; padding: 16px 28px; white-space: normal; text-align: center; }
  .copy { font-size: 11px; }
}


/* ZOROYA:BLOG — static preview / WordPress-ready archive and single */
.p-news{padding-block:clamp(48px,7vw,96px)}.p-newsgrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(18px,3vw,36px)}
.p-card{display:block;color:inherit;text-decoration:none;background:var(--paper,#fff);border:1px solid rgba(80,80,80,.16);border-radius:18px;overflow:hidden;transition:transform .25s ease,box-shadow .25s ease}.p-card:hover{transform:translateY(-4px);box-shadow:0 18px 44px rgba(0,0,0,.1)}
.p-card__ph{aspect-ratio:16/10;overflow:hidden;background:#eee}.p-card__ph img{width:100%;height:100%;object-fit:cover}.p-card__bd{padding:22px}.p-card__meta{display:flex;gap:12px;align-items:center;font-size:12px}.p-card__cat,.post-hero__cat{padding:4px 10px;border-radius:99px;background:var(--accent,#555);color:#fff}.p-card__ttl{font-size:clamp(19px,2vw,25px);line-height:1.55}.p-card__ex{line-height:1.8}.p-card__more{font-size:12px;letter-spacing:.12em}.p-newsnote{margin-top:28px;font-size:12px;color:#666}
.post-hero{position:relative;min-height:420px;padding:clamp(110px,13vw,170px) 24px 70px;color:#fff;display:flex;align-items:flex-end}.post-hero__bg{position:absolute;inset:0}.post-hero__bg img{width:100%;height:100%;object-fit:cover}.post-hero__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(0,0,0,.82),rgba(0,0,0,.38))}.post-hero .wrap{position:relative;z-index:1;width:min(100%,1100px);margin:auto}.post-hero h1{max-width:900px;font-size:clamp(28px,4vw,52px);line-height:1.45}.post-hero__meta{display:flex;gap:12px;align-items:center}.post-hero .crumb a{color:inherit}
.post-wrap{width:min(calc(100% - 40px),1160px);margin:auto;padding:clamp(50px,7vw,90px) 0;display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:clamp(32px,5vw,64px)}.post-figure{margin:0 0 36px}.post-figure img{width:100%;max-height:540px;object-fit:cover;border-radius:18px}.post-body{font-size:16px;line-height:2}.post-body h2{margin:2.2em 0 .8em;font-size:clamp(24px,3vw,34px)}.post-body h3{margin:1.8em 0 .6em}.post-lead{font-size:1.1em}.post-foot__bar{display:flex;flex-wrap:wrap;gap:14px;justify-content:space-between;margin-top:48px;padding-top:24px;border-top:1px solid #ddd}.post-foot a,.w-cta a{color:inherit}.post-side{position:sticky;top:100px}.widget{padding:22px 0;border-bottom:1px solid #ddd}.widget__ttl{font-size:17px}.w-recent a{display:grid;grid-template-columns:72px 1fr;gap:12px;padding:10px 0;color:inherit;text-decoration:none}.w-recent img{width:72px;height:56px;object-fit:cover}.w-recent b,.w-recent span{display:block;font-size:12px}.w-list{list-style:none;padding:0}.w-list a{display:flex;justify-content:space-between;padding:8px 0;color:inherit;text-decoration:none}.w-search{display:flex}.w-search input{min-width:0;flex:1;padding:10px}.w-search button{padding:10px}
@media(max-width:800px){.p-newsgrid{grid-template-columns:1fr}.post-wrap{grid-template-columns:1fr}.post-side{position:static}.post-hero{min-height:360px}.p-card__bd{padding:18px}}

