/* ============================================================
   IT.Skill 営業サイト — v5.0 "Editorial Minimal"
   Reference: proximo.co.jp
   言語: 純白 × 黒 / 巨大エッジブリード英字見出し / 余白と細線のみ
   オレンジはロゴドットと微細なアクセントに限定。
   角丸・影・グラデーションは原則使わない。
   ============================================================ */

:root {
  /* 基調 */
  --bg: #ffffff;
  --bg-soft: #f7f7f4;
  --bg-tint: #f0f0ec;
  --panel: #ffffff;
  --panel-2: #fafaf8;
  --line: #e6e6e2;
  --line-strong: #cfcfc9;
  /* インク */
  --ink: #111111;
  --text: #262623;
  --muted: #52524d;   /* 1段濃く（可読性優先） */
  --faint: #98988f;
  /* アクセント（ロゴのオレンジ・微使用） */
  --accent: #e8590c;
  --accent-soft: #f0630f;
  --accent-deep: #c74a08;
  --accent-ink: #7c2d12;
  --accent-wash: #faf3ee;
  --green: #16a34a;
  --green-soft: #15803d;
  --amber: #b45309;
  /* 形状（ミニマル：ほぼ直角・影なし） */
  --radius: 2px;
  --radius-sm: 2px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  /* 書体 */
  --ff-sans: "Inter", "Noto Sans JP", system-ui, sans-serif;
  --ff-serif: "Instrument Serif", "Noto Serif JP", serif;
  --ff-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.85;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "palt";
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; }

/* ============================================================
   左端 SCROLL インジケータ（Proximo風）
   ============================================================ */
.scroll-rail {
  position: fixed;
  left: 26px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.scroll-rail span {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--faint);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.scroll-rail i {
  display: block;
  width: 1px; height: 120px;
  background: var(--line-strong);
}

/* ============================================================
   セクション共通 — 巨大英字 + 小さなラベル
   ============================================================ */
.section { padding: clamp(90px, 11vw, 150px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); position: relative; }

.section-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .32em;
  color: var(--faint);
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* 巨大エッジブリード英字（テンプレの .section-display） */
.section-display {
  font-family: var(--ff-sans);
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: .95;
  color: var(--ink);
  margin: 0 0 20px -4px;
  user-select: none;
  white-space: nowrap;
}

.section-title {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.section-title em { color: var(--accent); }
.section-lead { color: var(--muted); font-size: .98rem; max-width: 620px; margin: 0; }

/* ============================================================
   ボタン — 直角・塗り or 細線のみ
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .88rem; letter-spacing: .06em;
  padding: 16px 34px; border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease), color .2s, border-color .2s, opacity .2s;
  font-family: var(--ff-sans);
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; opacity: .82; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { opacity: .85; }
.btn-line svg { fill: #fff; }

/* ============================================================
   タグ・ステータス — 枠なしのモノスペース表記
   ============================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.tag {
  font-family: var(--ff-mono); font-size: .7rem; color: var(--faint);
  background: none; border: none; padding: 0; letter-spacing: .03em;
}
.tag::before { content: "#"; opacity: .6; margin-right: 1px; }

.status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 500; letter-spacing: .08em;
  padding: 4px 10px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--muted); background: transparent; text-transform: uppercase;
}
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--faint); }
.status.is-live { color: var(--green-soft); border-color: var(--green-soft); }
.status.is-live::before { background: var(--green); animation: pulse 2s infinite; }
.status.is-prep { color: var(--amber); border-color: var(--amber); }
.status.is-prep::before { background: var(--amber); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ============================================================
   Reveal（控えめに）
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .06s; }
.js .reveal[data-d="2"] { transition-delay: .12s; }
.js .reveal[data-d="3"] { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   NAV — 細字・レタースペース・白
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { display: flex; align-items: baseline; gap: 10px; }
.logo-mark { display: none; }               /* アイコンは使わない（ワードマーク主義） */
.logo-text { line-height: 1.2; }
.logo-name {
  font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; color: var(--ink);
  position: relative;
}
.logo-name::after { content: "."; color: var(--accent); }   /* オレンジドット */
.logo-sub {
  display: none;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-size: .8rem; font-weight: 500; letter-spacing: .14em;
  transition: opacity .15s;
}
.nav-links a:hover { opacity: .5; }
.nav-cta {
  border: 1px solid var(--ink) !important;
  padding: 9px 22px;
  letter-spacing: .14em;
}
.nav-cta:hover { background: var(--ink); color: #fff !important; opacity: 1 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ============================================================
   HERO — 巨大ワードマーク
   ============================================================ */
/* ヒーロー。最初の1画面で「何ができる人か」が読めることを最優先にする。
   屋号はまだ誰も知らないので、ワードマークを大きく出しても情報量がゼロ。
   実測では見出しが 391px 下にあり、スマホではスクロールしないと
   何屋か分からない状態だった。ワードマークは名残として残しつつ小さくする。 */
.hero { padding: clamp(28px, 5vw, 90px) 0 clamp(60px, 8vw, 110px); position: relative; }
.hero-wordmark {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.5vw, 4.2rem);
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 clamp(18px, 2.6vw, 30px) -2px;
  user-select: none;
  white-space: nowrap;
}
.hero-wordmark i { font-style: normal; color: var(--accent); }  /* ドット */

.hero-grid { display: block; }
.hero-copy { max-width: 720px; }
.hero-stack { display: none; }        /* ブラウザモックは廃止（タイポ主義） */
.hero-float-badge { display: none; }

.hero h1 {
  font-size: clamp(1.72rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.52;
  letter-spacing: .005em;
  color: var(--ink);
  margin: 0 0 20px;
  white-space: pre-line;   /* DBの改行位置をそのまま反映 */
}
.hero h1 em, .hero h1 .accent-word {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  color: var(--accent); letter-spacing: 0;
  white-space: nowrap;     /* 強調句の途中で改行させない */
}
.hero-sub { font-size: 1.02rem; color: var(--muted); max-width: 580px; margin: 0 0 34px; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* メタ情報（受付中・拠点・バッジ）を1行のモノスペース表記に */
.availability, .location-badge, .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; color: var(--muted);
  background: none; border: none; padding: 0; margin: 0 26px 14px 0;
  text-transform: uppercase;
}
.availability::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.location-badge svg { width: 12px; height: 12px; color: var(--accent); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 34px; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-trust-item { display: flex; align-items: center; gap: 9px; }
.hero-trust-ic { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; margin: 0; }
.hero-trust-label { font-size: .8rem; color: var(--muted); font-weight: 500; line-height: 1.5; }

/* ============================================================
   SERVICES — ミニマルな行リスト
   ============================================================ */
.services-grid { display: block; border-top: 1px solid var(--ink); }
.service-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 10px 34px;
  align-items: baseline;
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--line);
  background: none; border-radius: 0;
  transition: background .2s;
}
.service-card:hover { background: var(--bg-soft); }
.service-top { display: contents; }
.service-icon { display: none; }
.service-idx {
  grid-column: 1; grid-row: 1 / span 3;
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.7rem; color: var(--faint); line-height: 1;
}
.service-en {
  grid-column: 2;
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .26em;
  color: var(--faint); text-transform: uppercase; margin-bottom: 2px;
}
.service-name {
  grid-column: 2;
  font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 800; color: var(--ink);
  margin: 0; letter-spacing: -.01em; line-height: 1.5;
}
.service-desc {
  grid-column: 2;
  color: var(--muted); font-size: .94rem; margin: 6px 0 10px; max-width: 640px;
}
.service-card .tag-row { grid-column: 2; }
.service-price {
  grid-column: 3; grid-row: 1 / span 4;
  text-align: right; align-self: start;
  display: flex; flex-direction: column; gap: 3px;
  border: none; padding: 0; margin: 0;
}
.service-price-num {
  font-family: var(--ff-mono); font-weight: 700; font-size: 1.15rem;
  color: var(--ink); letter-spacing: -.01em;
}
.service-price-note { font-size: .68rem; color: var(--faint); max-width: 220px; line-height: 1.6; }

/* ============================================================
   WORKS — ケース（スクショあり）と行リスト（その他）
   ============================================================ */
.cases { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 110px); }
.case { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.case:nth-child(even) { direction: rtl; }
.case:nth-child(even) > * { direction: ltr; }
.case-media { position: relative; }
.case-glow { display: none; }
.browser { border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: #fff; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 9px 13px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.browser-url {
  margin-left: 9px; flex: 1; display: flex; align-items: center; gap: 7px;
  font-family: var(--ff-mono); font-size: .68rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 10px;
}
.browser-url svg { width: 11px; height: 11px; color: var(--green); flex-shrink: 0; }
/* height="900" 属性は CLS 対策として残すが、そのままだと高さ 900px が確定し
   aspect-ratio が無視される（aspect-ratio は「欠けている辺」を計算する指定のため）。
   height: auto を明示して、比率側に高さを決めさせる。 */
.browser-shot { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; background: var(--bg-soft); }

.case-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.case-tag { font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .22em; color: var(--faint); text-transform: uppercase; }
.case-title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 0 0 4px; line-height: 1.4; }
.case-sub { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.case-highlight {
  display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 600;
  color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 3px; margin-bottom: 16px;
}
.case-highlight svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.case-desc { color: var(--muted); font-size: .94rem; margin: 0 0 18px; }
.case-tags { margin-bottom: 20px; }
.case-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: gap .2s, opacity .2s;
}
.case-link:hover { gap: 13px; opacity: .6; }
.case-link svg { width: 14px; height: 14px; }

/* その他の実績 — 行リスト */
.works-more { margin-top: clamp(48px, 6vw, 80px); }
.works-more-h {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .3em;
  color: var(--faint); text-transform: uppercase; margin-bottom: 4px;
}
.mini-grid { display: block; border-top: 1px solid var(--ink); }
.work-mini {
  display: grid; grid-template-columns: 1fr auto; gap: 4px 30px;
  padding: 26px 0 22px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.work-mini:hover { background: var(--bg-soft); }
.work-mini-art { display: none; }
.work-mini-body { display: contents; }
.work-mini-tag {
  grid-column: 1;
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .24em;
  color: var(--faint); text-transform: uppercase;
}
.work-mini-title { grid-column: 1; font-size: 1.08rem; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.5; }
.work-mini-sub { grid-column: 1; font-size: .8rem; color: var(--muted); }
.work-mini-desc { grid-column: 1; font-size: .88rem; color: var(--muted); margin: 4px 0 8px; max-width: 720px; }
.work-mini-tags { grid-column: 1; }
.work-mini-status { grid-column: 2; grid-row: 1 / span 3; align-self: start; }

/* ============================================================
   WHY — 番号付き行
   ============================================================ */
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; border-top: 1px solid var(--ink); }
.reason-card { padding: 36px 0 30px; border-bottom: 1px solid var(--line); background: none; }
.reason-top { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.reason-num {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: 2.4rem; color: var(--accent); line-height: 1;
}
.reason-rule { flex: 1; height: 1px; background: var(--line); }
.reason-title { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 0 0 10px; line-height: 1.6; letter-spacing: -.005em; }
.reason-desc { color: var(--muted); font-size: .92rem; margin: 0; }

/* ============================================================
   PROCESS — 水平ステップ
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 40px; border-top: 1px solid var(--ink); }
.process-step { padding: 30px 0 0; position: relative; }
.process-dot {
  position: absolute; top: -4px; left: 0;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink);
}
.process-num {
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .26em;
  color: var(--faint); text-transform: uppercase; margin-bottom: 10px;
}
.process-title { font-size: 1rem; font-weight: 800; color: var(--ink); margin: 0 0 8px; }
.process-desc { font-size: .84rem; color: var(--muted); margin: 0; }

/* ============================================================
   VOICE — セリフイタリックの引用
   ============================================================ */
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; border-top: 1px solid var(--ink); }
.voice-card { padding: 40px 0 34px; border-bottom: 1px solid var(--line); background: none; position: relative; }
.voice-quote-mark { display: none; }
.voice-quote {
  font-family: var(--ff-serif); font-style: italic;
  font-size: 1.18rem; line-height: 1.8; color: var(--ink);
  margin: 0 0 16px;
}
.voice-result {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  color: var(--green-soft); margin-bottom: 20px;
  background: none; border: none; padding: 0;
}
.voice-result svg { color: var(--green); }
.voice-client { display: flex; align-items: center; gap: 13px; }
.voice-avatar {
  width: 38px; height: 38px; border-radius: 50%; object-fit: cover;
  background: var(--bg-tint); border: 1px solid var(--line);
  flex-shrink: 0;
}
.voice-avatar-init {
  display: grid; place-items: center;
  font-family: var(--ff-mono); font-weight: 600; font-size: .9rem;
  color: var(--accent);
}
.voice-client-name { font-weight: 700; color: var(--ink); font-size: .88rem; }
.voice-client-role { font-size: .74rem; color: var(--muted); margin-top: 1px; }
.voice-project { margin-top: 12px; font-family: var(--ff-mono); font-size: .66rem; color: var(--faint); letter-spacing: .04em; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: clamp(90px, 11vw, 150px) 0; background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; line-height: 1.65; color: var(--ink); margin: 0 0 16px; letter-spacing: -.01em; }
.contact h2 em { color: var(--accent); font-style: normal; }
.contact-sub { color: var(--muted); font-size: .94rem; margin: 0 0 22px; }
.contact-note {
  display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--ink);
  border-left: 2px solid var(--accent); padding: 4px 0 4px 16px; margin-bottom: 26px;
  background: none; border-radius: 0;
}
.contact-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--accent); }
.contact-direct { margin-bottom: 22px; }
.contact-or { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .2em; color: var(--faint); text-transform: uppercase; margin-bottom: 8px; }
.contact-mail { font-size: .88rem; color: var(--muted); }
.contact-mail a { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* フォーム — 下線のみの editorial 入力欄 */
.form-card { background: transparent; border: none; padding: 0; }
.inquiry-form .field { margin-bottom: 26px; }
.inquiry-form label {
  display: block; font-family: var(--ff-mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.inquiry-form input[type=text],
.inquiry-form input[type=email],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  padding: 10px 2px; background: transparent;
  border: none; border-bottom: 1px solid var(--line-strong); border-radius: 0;
  transition: border-color .2s;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: none; border-bottom-color: var(--ink);
}
.inquiry-form textarea { min-height: 120px; resize: vertical; }
.inquiry-form .errors, .errorlist { color: #c0392b; font-size: .8rem; margin-top: 5px; list-style: none; padding: 0; }
.inquiry-form .actions { display: flex; align-items: center; gap: 16px; margin-top: 10px; }
.submit-btn {
  background: var(--ink); color: #fff; font-weight: 600; font-size: .88rem; letter-spacing: .08em;
  border: none; cursor: pointer; padding: 16px 44px; border-radius: var(--radius);
  transition: opacity .2s;
  font-family: var(--ff-sans);
}
.submit-btn:hover { opacity: .82; }
.submit-btn:disabled { opacity: .45; cursor: wait; }
.htmx-indicator { opacity: 0; transition: opacity .2s; font-size: .8rem; color: var(--muted); }
.htmx-request .htmx-indicator { opacity: 1; }
.inquiry-success { border: 1px solid var(--ink); padding: 40px 32px; text-align: center; }
.inquiry-success h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.inquiry-success p { color: var(--muted); margin: 0; font-size: .92rem; }

/* ============================================================
   FOOTER — ダークチャコール・中央揃え
   ============================================================ */
.footer { background: #161616; color: rgba(255, 255, 255, .82); padding: clamp(70px, 9vw, 110px) 0 44px; text-align: center; }
.footer .container { max-width: var(--maxw); }
.footer-wordmark {
  font-family: var(--ff-sans); font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem); letter-spacing: -.04em; line-height: 1;
  color: #fff; margin: 0 0 36px;
}
.footer-wordmark i { font-style: normal; color: var(--accent); }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 34px;
  list-style: none; margin: 0 0 40px; padding: 0;
}
.footer-nav a {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em;
  color: rgba(255, 255, 255, .72); transition: color .15s;
}
.footer-nav a:hover { color: #fff; }
.footer-socials { display: flex; justify-content: center; gap: 26px; margin-bottom: 44px; }
.footer-socials a { color: rgba(255, 255, 255, .6); transition: color .15s; }
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 19px; height: 19px; }
.footer-meta {
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .14em;
  color: rgba(255, 255, 255, .38); line-height: 2.2;
}
.footer-meta a { color: rgba(255, 255, 255, .55); }
.footer-meta a:hover { color: #fff; }

/* ============================================================
   サブページ（about / tokushoho / contact / 汎用）
   ============================================================ */
.subpage { padding: clamp(70px, 9vw, 110px) 0 clamp(90px, 11vw, 140px); }
.subpage-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .14em;
  color: var(--muted); margin-bottom: 44px; text-transform: uppercase;
  transition: color .15s;
}
.subpage-back:hover { color: var(--ink); }
.subpage-back svg { width: 14px; height: 14px; }
.subpage-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 54px; }

.info-table { width: 100%; border-collapse: collapse; border-top: 1px solid var(--ink); }
.info-table th, .info-table td { padding: 18px 8px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: .92rem; }
.info-table th { width: 200px; color: var(--muted); font-weight: 500; font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .1em; }
.info-table a { color: var(--ink); border-bottom: 1px solid var(--ink); }

/* About */
.about-profile {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start;
  margin: 20px 0 60px; padding: 0; background: none; border: none;
  border-top: 1px solid var(--ink); padding-top: 44px;
}
.about-photo { width: 180px; height: 180px; overflow: hidden; background: var(--bg-tint); border: none; border-radius: var(--radius); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--ff-serif); font-style: italic; font-size: 4rem; color: var(--faint);
}
.about-role { font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .26em; color: var(--faint); text-transform: uppercase; margin-bottom: 10px; }
.about-name { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; line-height: 1.3; }
.about-name small { font-size: .78rem; font-weight: 500; color: var(--muted); margin-left: 10px; }
.about-bio { font-size: .95rem; line-height: 2; color: var(--text); margin: 0 0 18px; }
.about-community { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.about-community li { font-family: var(--ff-mono); font-size: .7rem; color: var(--muted); background: none; border: none; padding: 0; }
.about-community li::before { content: "— "; color: var(--faint); }

.about-block { margin: 54px 0; }
.about-block-h {
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  margin: 0 0 22px; padding: 0 0 12px; border-left: none; border-bottom: 1px solid var(--ink);
  letter-spacing: -.005em;
}
.about-timeline { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line-strong); padding-left: 26px; }
.about-timeline li { position: relative; padding: 8px 0; font-size: .92rem; color: var(--text); }
.about-timeline li::before {
  content: ""; position: absolute; left: -30px; top: 17px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--ink); border: none;
}
.about-skills, .about-credentials {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0; grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.about-skills li, .about-credentials li {
  padding: 13px 4px; border: none; border-bottom: 1px solid var(--line); border-radius: 0;
  font-size: .9rem; color: var(--text); display: flex; align-items: baseline; gap: 12px; background: none;
}
.about-skills li::before, .about-credentials li::before {
  content: "—"; color: var(--accent); flex-shrink: 0;
  width: auto; height: auto; border-radius: 0; background: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .scroll-rail { display: none; }
  .case { grid-template-columns: 1fr; }
  .case:nth-child(even) { direction: ltr; }
  .reasons-grid, .voices-grid { grid-template-columns: 1fr; gap: 0; }
  .process { grid-template-columns: 1fr 1fr; gap: 34px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0; top: 66px;
    background: #fff; flex-direction: column; justify-content: flex-start;
    padding: 44px 28px; gap: 30px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { font-size: 1rem; letter-spacing: .2em; }
  .nav-toggle { display: block; }

  .hero-wordmark { font-size: clamp(3.2rem, 19vw, 5rem); white-space: normal; }
  .section-display { font-size: clamp(2.6rem, 15vw, 4.4rem); white-space: normal; }

  .service-card { grid-template-columns: 1fr; gap: 4px; }
  .service-idx { grid-row: auto; font-size: 1.2rem; }
  .service-en, .service-name, .service-desc, .service-card .tag-row { grid-column: 1; }
  .service-price { grid-column: 1; grid-row: auto; text-align: left; margin-top: 10px; }

  .work-mini { grid-template-columns: 1fr; }
  .work-mini-status { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 8px; }

  .process { grid-template-columns: 1fr; gap: 30px; }
  .about-profile { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto; }
  .info-table th { width: 110px; }
  .btn { width: 100%; }
  .hero-ctas .btn { width: auto; flex: 1; }
}

/* Contact 内の section-display はカラム幅に合わせて縮小 */
.contact .section-display { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 14px; }

/* ============================================================
   中間CTA — Works 直後の細いバンド
   ============================================================ */
.mid-cta { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--bg); }
.mid-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: clamp(34px, 5vw, 56px) 0;
}
.mid-cta-copy {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem); font-weight: 800;
  letter-spacing: -.01em; color: var(--ink); margin: 0; line-height: 1.6;
}
.mid-cta-copy em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--accent);
}
@media (max-width: 720px) {
  .mid-cta-inner { justify-content: center; text-align: center; }
}

/* ============================================================
   v5.1 追加 — SLA / Stats / Pricing / FAQ
   ============================================================ */

/* ── ヒーロー メタ行 ── */
/* 受付状況などのメタ情報は、見出しより前に置かない。
   先に読ませるべきは「何ができるか」で、空き状況はその次。 */
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin: 22px 0 0; }
.hero-meta .availability, .hero-meta .location-badge, .capacity-badge {
  margin: 0;
}
.capacity-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: .66rem; font-weight: 600;
  letter-spacing: .1em; color: #fff; background: var(--accent);
  padding: 3px 10px; border-radius: var(--radius); text-transform: uppercase;
}
.hero-sla {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; color: var(--muted); margin: 0 0 40px;
}
.hero-sla svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* ── STATS 帯 ── */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  padding: clamp(28px, 4vw, 44px) 0; text-align: center;
  border-left: 1px solid var(--line);
}
.stat-item:first-child { border-left: none; }
.stat-num {
  display: block; font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; color: var(--ink); letter-spacing: -.02em;
}
.stat-num span { font-family: var(--ff-sans); font-style: normal; font-size: .3em; font-weight: 600; color: var(--muted); margin-left: 4px; }
.stat-label { display: block; margin-top: 10px; font-size: .76rem; color: var(--muted); letter-spacing: .02em; }

/* ── PRICING ── */
.pricing-table { border-top: 1px solid var(--ink); margin-bottom: clamp(40px, 5vw, 64px); }
.pricing-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1.6fr auto; gap: 16px 24px;
  align-items: baseline; padding: 24px 0 20px; border-bottom: 1px solid var(--line);
}
.pricing-cat { font-size: 1.05rem; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.pricing-dur { font-family: var(--ff-mono); font-size: .78rem; color: var(--muted); }
.pricing-note { font-size: .82rem; color: var(--faint); }
.pricing-price { font-family: var(--ff-mono); font-weight: 700; font-size: 1.15rem; color: var(--accent); text-align: right; white-space: nowrap; }

.pricing-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.pricing-example, .pricing-terms { border: 1px solid var(--line); padding: 28px 26px; }
.pricing-example-h { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .18em; color: var(--faint); text-transform: uppercase; margin-bottom: 20px; }
.pricing-breakdown { list-style: none; padding: 0; margin: 0 0 16px; }
.pricing-breakdown li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.pricing-breakdown li span { font-size: .84rem; color: var(--muted); }
.pricing-breakdown li b { font-family: var(--ff-mono); font-size: 1.05rem; color: var(--ink); text-align: right; }
.pricing-breakdown li em { font-style: normal; font-size: .72rem; color: var(--faint); }
.pricing-caption { font-size: .82rem; color: var(--muted); margin: 0; }
.pricing-terms-list { list-style: none; padding: 0; margin: 0; }
.pricing-terms-list li { position: relative; padding: 9px 0 9px 22px; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--line); }
.pricing-terms-list li:last-child { border-bottom: none; }
.pricing-terms-list li::before { content: ""; position: absolute; left: 0; top: 17px; width: 8px; height: 8px; border: 1.5px solid var(--accent); border-radius: 50%; }

/* ── FAQ アコーディオン ── */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: 1.02rem; font-weight: 700; color: var(--ink); letter-spacing: -.005em;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform .25s var(--ease); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 26px; font-size: .92rem; line-height: 1.95; color: var(--muted); max-width: 820px;
}
.faq-item[open] .faq-q { color: var(--accent); }

@media (max-width: 1020px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-left: none; }
  .stat-item:nth-child(odd) { border-left: none; }
  .stat-item { border-top: 1px solid var(--line); }
  .stat-item:nth-child(-n+2) { border-top: none; }
  .pricing-detail { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-row { grid-template-columns: 1fr auto; gap: 4px 16px; }
  .pricing-dur, .pricing-note { grid-column: 1; }
  .pricing-price { grid-row: 1 / span 3; align-self: center; }
}

/* ============================================================
   v5.2 UX磨き — focus / skip-link / CLS
   ============================================================ */

/* キーボードフォーカスを明示（マウスクリックでは出さない） */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible, .nav-cta:focus-visible { outline-offset: 4px; }

/* スキップリンク（キーボード / スクリーンリーダー） */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: var(--radius);
  font-size: .85rem; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* CLS対策：スクショ枠は比率を先に確保（画像ロード前でも高さが決まる）。
   height 属性を打ち消すため height: auto をここでも明示する。 */
.browser-shot { height: auto; aspect-ratio: 16 / 10; }
.about-photo, .voice-avatar { aspect-ratio: 1 / 1; }

/* ============================================================
   v5.3 — SPEED 帯（3日プロトタイプ / FDE のスピード訴求）
   ============================================================ */
.speed { background: var(--ink); color: #fff; padding: clamp(56px, 8vw, 96px) 0; }
.speed-inner {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.speed-kicker {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .32em; color: var(--accent); text-transform: uppercase; margin-bottom: 18px;
}
.speed-title {
  font-size: clamp(1.9rem, 4.4vw, 3.2rem); font-weight: 800; line-height: 1.35;
  letter-spacing: -.02em; color: #fff; margin: 0 0 20px;
}
.speed-title em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  color: var(--accent); font-size: 1.15em;
}
.speed-sub { font-size: .96rem; line-height: 1.9; color: rgba(255,255,255,.68); margin: 0 0 30px; max-width: 560px; }
.speed-cta { }

.speed-flow {
  border-left: 1px solid rgba(255,255,255,.16); padding-left: clamp(28px, 4vw, 56px);
}
.speed-num {
  font-family: var(--ff-serif); font-weight: 400;
  font-size: clamp(4.2rem, 9.5vw, 7.6rem); line-height: .9; color: #fff; letter-spacing: -.01em;
  margin-bottom: 24px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.speed-num span {
  font-family: var(--ff-mono); font-style: normal; font-size: .16em; font-weight: 600;
  letter-spacing: .28em; color: var(--accent); text-transform: uppercase;
}
.speed-steps { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.speed-steps li {
  font-family: var(--ff-mono); font-size: .82rem; letter-spacing: .04em;
  color: rgba(255,255,255,.82); padding: 11px 0; border-top: 1px solid rgba(255,255,255,.12);
}
.speed-steps li:first-child { border-top: none; }

@media (max-width: 820px) {
  .speed-inner { grid-template-columns: 1fr; gap: 36px; }
  .speed-flow { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 28px; }
  .speed-cta { width: 100%; }
}

/* 料金セクションのリード内アクセント */
.lead-accent { color: var(--ink); font-weight: 700; border-bottom: 2px solid var(--accent); padding-bottom: 1px; }

/* ============================================================
   なぜこの価格か — 体制コストの構造比較
   ============================================================ */
.why-price { margin: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px); }
.why-price-head { max-width: 680px; margin-bottom: 32px; }
.why-price-title {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 800; letter-spacing: -.01em;
  color: var(--ink); margin: 0 0 12px;
}
.why-price-lead { font-size: .94rem; color: var(--muted); margin: 0; }

.why-price-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line-strong);
}
.why-price-col { padding: clamp(24px, 3.4vw, 40px); }
.why-price-col + .why-price-col { border-left: 1px solid var(--line-strong); }
.why-price-col--solo { background: var(--ink); color: #fff; }

.why-price-col-h {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--faint); margin-bottom: 20px;
}
.why-price-col--solo .why-price-col-h { color: var(--accent); }

.why-price-rows { list-style: none; margin: 0 0 18px; padding: 0; }
.why-price-rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: .9rem; color: var(--text);
}
.why-price-rows li b { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }

.why-price-total {
  font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; letter-spacing: -.02em;
  color: var(--ink); padding-top: 6px;
}
.why-price-solo-text { font-size: .92rem; line-height: 1.95; color: rgba(255,255,255,.75); margin: 0 0 22px; }
.why-price-total--solo {
  color: #fff;
  font-family: var(--ff-serif); font-weight: 400; letter-spacing: 0;
}
.why-price-total--solo::after { content: ""; display: block; width: 44px; height: 3px; background: var(--accent); margin-top: 12px; }

.why-price-note {
  font-size: .84rem; line-height: 2; color: var(--muted);
  max-width: 780px; margin: 22px 0 0; padding-left: 16px; border-left: 2px solid var(--line-strong);
}

@media (max-width: 760px) {
  .why-price-compare { grid-template-columns: 1fr; }
  .why-price-col + .why-price-col { border-left: none; border-top: 1px solid var(--line-strong); }
}

/* ============================================================
   STANCE — なぜオーダーメイドか（ポジショニング宣言）
   ============================================================ */
.stance { padding: clamp(80px, 10vw, 130px) 0; background: var(--bg-soft); }
.stance-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.stance-kicker {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .3em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px;
}
.stance-title {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 800; line-height: 1.5;
  letter-spacing: -.015em; color: var(--ink); margin: 0 0 18px;
}
.stance-title em {
  font-family: var(--ff-serif); font-style: italic; font-weight: 400;
  color: var(--accent); font-size: 1.1em;
}
.stance-lead { font-size: .96rem; line-height: 2; color: var(--muted); margin: 0; }

.stance-points {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong);
}
.stance-point { padding: 28px 28px 28px 0; border-bottom: 1px solid var(--line-strong); }
.stance-point + .stance-point { padding-left: 28px; border-left: 1px solid var(--line); }
.stance-point-num {
  font-family: var(--ff-mono); font-size: .7rem; font-weight: 600;
  color: var(--accent); letter-spacing: .2em; margin-bottom: 12px;
}
.stance-point-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.stance-point-text { font-size: .88rem; line-height: 1.95; color: var(--muted); margin: 0; }

.stance-note {
  font-size: .84rem; line-height: 2; color: var(--muted);
  max-width: 780px; margin: 26px 0 0; padding-left: 16px; border-left: 2px solid var(--line-strong);
}

@media (max-width: 820px) {
  .stance-points { grid-template-columns: 1fr; }
  .stance-point { padding: 22px 0; }
  .stance-point + .stance-point { padding-left: 0; border-left: none; }
}

/* ============================================================
   ケーススタディ（課題 → 対応 → 結果）
   ============================================================ */
.case-study {
  margin: 20px 0 18px; padding: 20px 22px;
  background: var(--bg-soft); border-left: 2px solid var(--line-strong);
}
.case-study dt {
  font-family: var(--ff-mono); font-size: .66rem; font-weight: 600;
  letter-spacing: .2em; color: var(--faint); text-transform: uppercase;
  margin-bottom: 6px;
}
.case-study dt.is-result { color: var(--accent); }
.case-study dd {
  margin: 0 0 16px; font-size: .88rem; line-height: 1.95; color: var(--text);
}
.case-study dd:last-child { margin-bottom: 0; }
.case-study dd.is-result { color: var(--ink); font-weight: 600; }

/* スクリーンショットを持たないケーススタディは1カラムで見せる。
   .case:nth-child(even) の rtl 反転は効かせず、常に左揃えにする。 */
.case.case--nomedia,
.case.case--nomedia > * { grid-template-columns: 1fr; direction: ltr; }
.case.case--nomedia .case-body { max-width: 860px; }

/* 価格の根拠を数字で示す実例ブロック */
.why-price-proof {
  margin-top: 22px; padding: 22px 24px;
  border: 1px solid var(--accent); background: var(--accent-wash);
}
.why-price-proof-label {
  font-family: var(--ff-mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
}
.why-price-proof p {
  margin: 0; font-size: .92rem; line-height: 1.95; color: var(--ink); font-weight: 500;
}

/* ═══════════════════════════ PACKAGE / 型で買える開発 ═══════════════════════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}
.pkg {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
  padding: clamp(24px, 3vw, 34px);
}
.pkg-head { margin-bottom: 18px; }
.pkg-eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.pkg-tag {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .22em;
  color: var(--faint); text-transform: uppercase;
}
.pkg-badge {
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  color: var(--accent-ink); background: var(--accent-wash);
  border: 1px solid #f0dccd; border-radius: 100px; padding: .2rem .6rem;
}
.pkg-name {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.4; color: var(--ink); margin: 0 0 8px;
}
.pkg-sub { font-size: .9rem; color: var(--muted); line-height: 1.7; margin: 0; }

.pkg-price {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0; margin-bottom: 18px;
}
.pkg-price-main { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.pkg-price-num {
  font-family: var(--ff-mono); font-size: 1.5rem; font-weight: 700;
  color: var(--accent); letter-spacing: -.02em;
}
.pkg-price-dur {
  font-family: var(--ff-mono); font-size: .78rem; color: var(--muted);
  border-left: 1px solid var(--line-strong); padding-left: 12px;
}
.pkg-price-cmp { font-size: .78rem; color: var(--faint); margin-top: 6px; }

.pkg-desc { font-size: .9rem; line-height: 1.85; color: var(--text); margin: 0 0 22px; }

.pkg-block { margin-bottom: 20px; }
.pkg-block-h {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  color: var(--ink); text-transform: none; margin-bottom: 10px;
}
.pkg-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
/* grid だと <b> などのインライン要素が別のグリッド項目になり、
   16px の列に押し込まれて縦1文字ずつになる。flex なら行内に収まる。 */
.pkg-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .85rem; line-height: 1.65; color: var(--text);
}
.pkg-list svg { width: 14px; height: 14px; flex: none; margin-top: .34em; color: var(--green); }
/* テキストが複数のインライン要素に割れても、行として詰まって見えるようにする */
.pkg-list li > span { flex: 1; min-width: 0; }
.pkg-list--dot li { display: block; padding-left: 15px; position: relative; }
.pkg-list--dot li::before {
  content: ""; position: absolute; left: 2px; top: .68em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong);
}

.pkg-opt { margin-bottom: 20px; border-top: 1px dashed var(--line); padding-top: 14px; }
.pkg-opt summary {
  cursor: pointer; font-size: .8rem; font-weight: 700; color: var(--muted);
  list-style: none; display: flex; align-items: center; gap: 7px;
}
.pkg-opt summary::-webkit-details-marker { display: none; }
.pkg-opt summary::before {
  content: "+"; font-family: var(--ff-mono); font-size: .95rem; color: var(--accent);
  line-height: 1; width: 12px;
}
.pkg-opt[open] summary::before { content: "−"; }
.pkg-opt summary:hover { color: var(--ink); }
.pkg-opt .pkg-list { margin-top: 12px; }

.pkg-foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.pkg-based {
  font-size: .78rem; line-height: 1.7; color: var(--faint);
  margin: 0 0 16px; padding-left: 12px; border-left: 2px solid var(--line);
}
.pkg-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.btn-sm { padding: .62rem 1.15rem; font-size: .84rem; }
.pkg-demo {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; font-weight: 700; color: var(--muted);
  border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.pkg-demo svg { width: 13px; height: 13px; }
.pkg-demo:hover { color: var(--accent); border-color: var(--accent); }

.pkg-note {
  margin: clamp(28px, 3.5vw, 40px) 0 0;
  font-size: .84rem; line-height: 1.9; color: var(--muted);
  padding: 16px 20px; background: var(--bg-tint); border-left: 2px solid var(--line-strong);
}

@media (max-width: 560px) {
  .pkg { padding: 22px 18px; }
  .pkg-price-num { font-size: 1.3rem; }
  .pkg-actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════ LOCAL LP / 大垣・岐阜 ═══════════════════════════ */
.local-hero {
  padding: clamp(110px, 13vw, 170px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}
.crumbs {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: .76rem; color: var(--faint); margin-bottom: clamp(28px, 4vw, 44px);
}
.crumbs a { color: var(--muted); border-bottom: 1px solid var(--line); }
.crumbs a:hover { color: var(--accent); border-color: var(--accent); }
.local-hero-label {
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .22em;
  color: var(--faint); text-transform: uppercase; margin-bottom: 20px;
}
.local-hero-title {
  font-size: clamp(2.1rem, 5.6vw, 4.1rem); font-weight: 900;
  letter-spacing: -.035em; line-height: 1.22; color: var(--ink); margin: 0 0 24px;
}
.local-hero-lead {
  font-size: clamp(.95rem, 1.25vw, 1.06rem); line-height: 2;
  color: var(--muted); max-width: 62ch; margin: 0 0 32px;
}
.local-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(32px, 4vw, 48px); }
.local-hero-facts {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line);
}
.local-hero-facts li {
  flex: 1 1 150px; padding: 18px 20px 18px 0;
  font-size: .82rem; color: var(--muted);
  border-right: 1px solid var(--line);
}
.local-hero-facts li:last-child { border-right: 0; }
.local-hero-facts strong {
  display: block; font-family: var(--ff-mono); font-size: 1.05rem;
  font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em;
}

.local-cards {
  /* 4枚あるので 2×2 に揃える。3列だと1枚だけ余って間延びする。 */
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.local-card {
  background: var(--panel); border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 32px);
}
.local-card-n {
  font-family: var(--ff-mono); font-size: .8rem; font-weight: 700;
  color: var(--accent); letter-spacing: .1em; margin-bottom: 14px;
}
.local-card h3 {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em;
  color: var(--ink); margin: 0 0 12px; line-height: 1.5;
}
.local-card p { font-size: .875rem; line-height: 1.95; color: var(--muted); margin: 0; }

.local-works-more {
  margin: clamp(28px, 3.5vw, 40px) 0 0; font-size: .85rem; color: var(--muted);
}
.local-works-more a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }
.local-works-more a:hover { border-color: var(--accent); }

.local-svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.local-svc { background: var(--panel); padding: clamp(20px, 2.5vw, 28px); }
.local-svc h3 {
  font-size: .95rem; font-weight: 800; color: var(--ink);
  margin: 0 0 10px; letter-spacing: -.01em;
}
.local-svc p { font-size: .83rem; line-height: 1.85; color: var(--muted); margin: 0; }

.local-price-note {
  margin: clamp(24px, 3vw, 34px) 0 0; font-size: .84rem; line-height: 1.9;
  color: var(--muted); padding: 16px 20px;
  background: var(--bg-tint); border-left: 2px solid var(--line-strong);
}

.local-area-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.local-area-block {
  border-top: 2px solid var(--ink); padding-top: 16px;
}
.local-area-block h3 {
  font-size: .88rem; font-weight: 800; color: var(--ink);
  margin: 0 0 10px; letter-spacing: .01em;
}
.local-area-block p { font-size: .82rem; line-height: 1.95; color: var(--muted); margin: 0; }

@media (max-width: 560px) {
  .local-hero-actions .btn { width: 100%; justify-content: center; }
  .local-hero-facts li { flex-basis: 50%; border-right: 0; padding-right: 12px; }
}

/* ═══════════════════════════ 送信完了 ═══════════════════════════ */
.thanks { padding: clamp(120px, 15vw, 180px) 0 clamp(70px, 9vw, 110px); }
.thanks-card {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--panel); border: 1px solid var(--line);
  border-top: 2px solid var(--ink);
  padding: clamp(32px, 5vw, 56px) clamp(22px, 4vw, 48px);
}
.thanks-icon {
  width: 52px; height: 52px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border-radius: 50%; background: #e6f4ea; color: var(--green);
}
.thanks-icon svg { width: 24px; height: 24px; }
.thanks-title {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 900;
  letter-spacing: -.025em; color: var(--ink); margin: 0 0 16px;
}
.thanks-lead { font-size: .92rem; line-height: 2; color: var(--muted); margin: 0 0 32px; }
.thanks-lead strong { color: var(--ink); font-weight: 700; }

.thanks-note, .thanks-next {
  text-align: left; border-top: 1px solid var(--line);
  padding-top: 20px; margin-bottom: 24px;
}
.thanks-note-h, .thanks-next-h {
  font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  color: var(--ink); margin-bottom: 10px;
}
.thanks-note p { font-size: .84rem; line-height: 1.9; color: var(--muted); margin: 0; }
.thanks-next ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.thanks-next li { font-size: .86rem; }
.thanks-next a {
  color: var(--muted); border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.thanks-next a:hover { color: var(--accent); border-color: var(--accent); }

/* ═══════════════════════════ 実績：数値プレート（スクショが出せない案件用）═══════════════════════════ */
.case-plate {
  background: var(--ink); color: #fff;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid var(--ink);
}
.case-plate-h {
  font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px;
}
.case-plate-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.case-stat-num {
  font-family: var(--ff-mono); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.1;
  color: #fff; margin-bottom: 7px; word-break: break-word;
}
.case-stat-label { font-size: .74rem; line-height: 1.6; color: rgba(255,255,255,.62); }
.case-plate-tech ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.case-plate-tech li {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .01em;
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
  padding: .24rem .62rem;
}
.case-plate-note {
  margin-top: 22px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .7rem; color: rgba(255,255,255,.42);
}
@media (max-width: 560px) {
  .case-plate-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ミニカードの実数 */
.work-mini-stats {
  /* .work-mini-body は display:contents なので、この要素は .work-mini の
     グリッド直下に置かれる。列を指定しないと右カラム（ステータス列）に
     回り込むため、明示的に本文列へ固定する。 */
  grid-column: 1;
  display: flex; flex-wrap: wrap; gap: 18px;
  margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line);
  max-width: 720px;
}
.work-mini-stats > div { min-width: 0; }
.work-mini-stats b {
  display: block; font-family: var(--ff-mono); font-size: .95rem;
  font-weight: 700; color: var(--ink); letter-spacing: -.02em;
  line-height: 1.2; margin-bottom: 3px; word-break: break-word;
}
.work-mini-stats span { font-size: .68rem; line-height: 1.45; color: var(--faint); }

/* ═══════════════════════════ PARTNER / 協力会社向け ═══════════════════════════ */
.p-status {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  border: 1px solid var(--line); border-left: 3px solid var(--line-strong);
  background: var(--panel); padding: 14px 18px;
  margin-bottom: clamp(28px, 3.5vw, 40px); max-width: 640px;
}
.p-status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--faint); flex: none; }
.p-status strong { display: block; font-size: .92rem; font-weight: 800; color: var(--ink); }
.p-status span { font-size: .8rem; color: var(--muted); }
.p-status-date { margin-left: auto; font-family: var(--ff-mono); font-size: .7rem; color: var(--faint); }
.p-status--open { border-left-color: var(--green); }
.p-status--open .p-status-dot { background: var(--green); }
.p-status--limited { border-left-color: var(--amber); }
.p-status--limited .p-status-dot { background: var(--amber); }
.p-status--full { border-left-color: var(--line-strong); }

.p-scope {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(24px, 3.5vw, 48px);
}
.p-scope-col h3 {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: var(--ink);
  padding-bottom: 12px; margin: 0 0 18px; border-bottom: 2px solid var(--ink);
}
.p-tech { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.p-tech li {
  display: grid; grid-template-columns: 92px 1fr; gap: 14px;
  font-size: .84rem; line-height: 1.65; color: var(--text);
}
.p-tech b {
  font-size: .72rem; font-weight: 800; color: var(--faint);
  letter-spacing: .04em; padding-top: .14em;
}

.p-proof {
  margin-top: clamp(36px, 4.5vw, 56px);
  border-top: 1px solid var(--line); padding-top: clamp(26px, 3vw, 36px);
}
.p-proof-h {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 20px;
}
.p-proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}
.p-proof-grid > div { border-left: 2px solid var(--line); padding-left: 16px; }
.p-proof-grid b {
  display: block; font-family: var(--ff-mono); font-size: 1.6rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 8px;
}
.p-proof-grid span { font-size: .78rem; line-height: 1.7; color: var(--muted); }
.p-proof-note { margin: 22px 0 0; font-size: .8rem; color: var(--faint); }
.p-proof-note a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }

.p-terms dl { margin: 0; display: grid; gap: 0; }
.p-terms dt {
  font-size: .8rem; font-weight: 800; color: var(--ink); letter-spacing: .02em;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.p-terms dd {
  margin: 8px 0 20px; font-size: .88rem; line-height: 1.9; color: var(--muted);
}
.p-terms dd ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.p-terms dd li { padding-left: 15px; position: relative; }
.p-terms dd li::before {
  content: ""; position: absolute; left: 2px; top: .78em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong);
}
@media (min-width: 760px) {
  .p-terms dl { grid-template-columns: 180px 1fr; }
  .p-terms dt { grid-column: 1; }
  .p-terms dd { grid-column: 2; margin: 0 0 0 0; padding-top: 20px; border-top: 1px solid var(--line); }
}

.rfp-notice {
  margin-bottom: 16px; padding: 12px 16px;
  background: #e6f4ea; border-left: 3px solid var(--green);
  font-size: .82rem; line-height: 1.7; color: #14532d;
}

/* パートナー（外注先）ページ 追補 */
.p-hero-sub {
  display: inline-block; margin-top: 10px;
  font-size: clamp(.9rem, 1.6vw, 1.15rem); font-weight: 700;
  color: var(--muted); letter-spacing: 0;
}
.p-notses {
  max-width: 680px; margin: 0 0 clamp(24px, 3vw, 32px);
  padding: 14px 18px; background: var(--bg-tint);
  border-left: 3px solid var(--ink);
  font-size: .85rem; line-height: 1.9; color: var(--muted);
}
.p-notses strong { color: var(--ink); }

.p-merit-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.p-merit-table th, .p-merit-table td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.p-merit-table thead th {
  font-size: .74rem; font-weight: 800; color: var(--faint);
  border-bottom: 2px solid var(--ink);
}
.p-merit-table thead th:last-child { color: var(--accent); }
.p-merit-table tbody td:first-child {
  font-weight: 700; color: var(--ink); white-space: nowrap;
}
.p-merit-table tbody td:nth-child(2) { color: var(--faint); }
.p-merit-table tbody td:last-child { color: var(--text); font-weight: 600; }
.p-merit-note { margin: 20px 0 0; font-size: .82rem; line-height: 1.9; color: var(--muted); }
.p-terms dd strong { color: var(--ink); }
@media (max-width: 700px) {
  .p-merit { overflow-x: auto; }
  .p-merit-table { min-width: 560px; }
}

/* ═══════════════════════════ 資料ダウンロード帯 ═══════════════════════════ */
.doc-band { background: var(--bg-tint); border-top: 1px solid var(--line); }
.doc-band-inner {
  display: grid; grid-template-columns: 1.5fr auto; gap: clamp(24px, 4vw, 56px);
  align-items: center; padding: clamp(36px, 5vw, 56px) 0;
}
.doc-band-label {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 14px;
}
.doc-band-title {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 800;
  letter-spacing: -.02em; color: var(--ink); margin: 0 0 12px;
}
.doc-band-lead { font-size: .88rem; line-height: 1.9; color: var(--muted); margin: 0; max-width: 62ch; }
.doc-band-lead strong { color: var(--ink); font-weight: 700; }
.doc-band-action { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.doc-band-action .btn svg { width: 15px; height: 15px; }
.doc-band-meta { font-family: var(--ff-mono); font-size: .72rem; color: var(--faint); }
@media (max-width: 820px) {
  .doc-band-inner { grid-template-columns: 1fr; }
  .doc-band-action { align-items: stretch; }
  .doc-band-action .btn { justify-content: center; }
  .doc-band-meta { text-align: center; }
}

/* ═══════════════════════════ 法務ページ（プライバシーポリシー等）═══════════════════════════ */
.legal-intro {
  font-size: .92rem; line-height: 2; color: var(--muted);
  max-width: 68ch; margin: 0 0 clamp(32px, 4vw, 44px);
  padding-bottom: clamp(24px, 3vw, 32px); border-bottom: 1px solid var(--line);
}
.legal-body { max-width: 78ch; }
.legal-sec { margin-bottom: clamp(34px, 4vw, 48px); }
.legal-sec h3 {
  font-size: 1.02rem; font-weight: 800; color: var(--ink);
  letter-spacing: -.01em; margin: 0 0 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--ink);
}
.legal-sec h4 {
  font-size: .88rem; font-weight: 700; color: var(--ink);
  margin: 22px 0 8px;
}
.legal-sec p { font-size: .88rem; line-height: 2; color: var(--muted); margin: 0 0 12px; }
.legal-sec p b, .legal-sec li b { color: var(--ink); font-weight: 700; }
.legal-sec ul { margin: 0 0 14px; padding: 0; list-style: none; display: grid; gap: 8px; }
.legal-sec li {
  font-size: .88rem; line-height: 1.9; color: var(--muted);
  padding-left: 16px; position: relative;
}
.legal-sec li::before {
  content: ""; position: absolute; left: 2px; top: .82em;
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.legal-sec a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }
.legal-sec a:hover { border-color: var(--accent); }
.legal-sec .info-table { margin-top: 4px; }
.legal-note { font-size: .8rem !important; color: var(--faint) !important; }
.legal-date {
  margin-top: clamp(36px, 4vw, 52px); padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .78rem; color: var(--faint);
}

/* 見出しに添える英字。スタイルが未定義だと和文と地続きに繋がって読めない。 */
.section-title .en {
  display: block; margin-top: 10px;
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 400;
  letter-spacing: .18em; color: var(--faint); text-transform: uppercase;
}

/* ═══════════════════════════ 試作1日（プロトタイプ）═══════════════════════════ */
.proto-price {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 26px;
  padding: 20px 0; margin-bottom: 22px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.proto-price-main { display: flex; align-items: baseline; gap: 10px; }
.proto-price-num {
  font-family: var(--ff-mono); font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 700; color: var(--accent); letter-spacing: -.03em; line-height: 1;
}
.proto-price-unit { font-size: .84rem; color: var(--muted); }
.proto-price-meta { display: flex; flex-wrap: wrap; gap: 6px 22px; font-size: .82rem; color: var(--muted); }
.proto-price-meta b { color: var(--ink); font-weight: 700; }

.proto-credit {
  max-width: 680px; margin: 0 0 clamp(24px, 3vw, 32px);
  border: 1px solid #cfe8d7; background: #e6f4ea; padding: 18px 22px;
}
.proto-credit-h { font-size: .92rem; font-weight: 800; color: #14532d; margin-bottom: 12px; }
.proto-credit-calc {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px;
  font-family: var(--ff-mono); font-size: .92rem; color: #14532d;
  padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid #cfe8d7;
}
.proto-credit-calc i { font-style: normal; color: #4f8a68; }
.proto-credit-calc b { font-size: 1.1rem; color: #0f6b3d; }
.proto-credit p { font-size: .84rem; line-height: 1.85; color: #2f5e42; margin: 0; }
.proto-credit p b { color: #14532d; }

/* 実例（暗色帯） */
.section--ink { background: var(--ink); }
.section--ink .section-title { color: #fff; }
.section--ink .section-title em { color: var(--accent); }
.section--ink .section-label { color: rgba(255,255,255,.45); }
.section--ink .section-lead { color: rgba(255,255,255,.62); }
.proto-example {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 34px);
}
@media (min-width: 900px) { .proto-example { grid-template-columns: 1.35fr 1fr; align-items: start; } }
.proto-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: rgba(255,255,255,.12); }
.proto-steps li {
  display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start;
  background: var(--ink); padding: 14px 4px;
  font-size: .87rem; line-height: 1.8; color: rgba(255,255,255,.72);
}
.proto-step-n {
  font-family: var(--ff-mono); font-size: .78rem; font-weight: 700;
  color: var(--accent); border: 1px solid rgba(255,255,255,.25);
  width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
}
.proto-steps b { display: block; color: #fff; font-weight: 700; margin-bottom: 2px; }
.proto-example-note {
  align-self: start; background: rgba(255,255,255,.06);
  border-left: 2px solid var(--accent); padding: 18px 20px;
  font-size: .84rem; line-height: 1.9; color: rgba(255,255,255,.68);
}
.proto-example-note b { color: #fff; }

/* 範囲（含む／含まない） */
.proto-scope { display: grid; grid-template-columns: 1fr; gap: clamp(24px, 3vw, 44px); }
@media (min-width: 820px) { .proto-scope { grid-template-columns: 1fr 1fr; } }
.proto-col h3 { margin: 0 0 16px; }
.proto-mark {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .04em;
  padding: .24rem .7rem; border-radius: 100px;
}
.proto-mark--ok { color: var(--green-soft); background: #e6f4ea; border: 1px solid #cfe8d7; }
.proto-mark--ng { color: #8a3d1a; background: #fbeade; border: 1px solid #f0d6c4; }
.proto-nglist { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.proto-nglist li {
  font-size: .85rem; line-height: 1.7; color: var(--faint);
  padding-left: 18px; position: relative;
}
.proto-nglist li::before {
  content: "×"; position: absolute; left: 0; top: -.05em;
  font-family: var(--ff-mono); color: #b4694a;
}
.proto-nglist b { display: block; color: var(--muted); font-weight: 700; }

.callout-note {
  margin-top: clamp(28px, 3.5vw, 40px); padding: 16px 20px;
  background: var(--bg-tint); border-left: 2px solid var(--line-strong);
  font-size: .86rem; line-height: 1.9; color: var(--muted);
}
.callout-note b { color: var(--ink); }

.proto-promise {
  margin-top: clamp(30px, 4vw, 44px); max-width: 680px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: var(--panel); padding: 18px 22px;
}
.proto-promise-h { font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.proto-promise p { font-size: .86rem; line-height: 1.9; color: var(--muted); margin: 0; }
.proto-promise b { color: var(--ink); }

.proto-caution {
  margin-top: clamp(30px, 4vw, 44px);
  border: 1px solid #f0d6c4; background: #fdf6f1;
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
}
.proto-caution-h { font-size: .92rem; font-weight: 800; color: #7a3d10; margin-bottom: 10px; }
.proto-caution p { font-size: .86rem; line-height: 1.95; color: #6b4526; margin: 0 0 10px; }
.proto-caution p:last-child { margin-bottom: 0; }
.proto-caution b { color: #5c3410; }

/* お客様の声：継続の実績を数字で示す帯 */
.voice-proof {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.voice-proof > div {
  background: var(--panel); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.voice-proof b {
  font-family: var(--ff-mono); font-size: 1.9rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.03em; line-height: 1;
}
.voice-proof span { font-size: .76rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 560px) {
  .voice-proof > div { padding: 16px 18px; }
  .voice-proof b { font-size: 1.5rem; }
}

/* 試作1日：決めている人向けの直接申込 */
.proto-direct {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 26px; max-width: 720px; margin-top: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--line-strong); border-left: 3px solid var(--accent);
  background: var(--panel); padding: 16px 20px;
}
.proto-direct-text b { display: block; font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.proto-direct-text span { font-size: .8rem; line-height: 1.75; color: var(--muted); }
.proto-direct-action { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.proto-direct-note { font-size: .72rem; color: var(--faint); }

.proto-shortcut {
  margin-top: clamp(26px, 3vw, 36px); max-width: 720px;
  border: 1px dashed var(--line-strong); background: var(--bg-tint); padding: 18px 22px;
}
.proto-shortcut-h { font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.proto-shortcut p { font-size: .84rem; line-height: 1.9; color: var(--muted); margin: 0 0 8px; }
.proto-shortcut p:last-child { margin-bottom: 0; }
.proto-shortcut a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }
.proto-shortcut b { color: var(--ink); }
@media (max-width: 620px) {
  .proto-direct { flex-direction: column; align-items: stretch; }
  .proto-direct-action .btn { justify-content: center; }
}

/* ══════════ 制作会社向けページ（/web-production/） ══════════ */

/* 3つの約束。制作会社が外注で最初に見るのは能力ではなく
   「顧客を奪われないか」なので、ヒーロー直下に置いている。 */
.s-promise {
  list-style: none; margin: 0 0 clamp(24px, 3vw, 32px); padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.s-promise li {
  display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start;
  padding: 16px 18px; background: var(--bg-tint); border-top: 2px solid var(--ink);
}
.s-promise svg { width: 20px; height: 20px; color: var(--ink); margin-top: .1em; }
.s-promise div { font-size: .8rem; line-height: 1.85; color: var(--muted); min-width: 0; }
.s-promise b {
  display: block; font-size: .88rem; font-weight: 800; color: var(--ink);
  margin-bottom: 5px; line-height: 1.5;
}

/* やらないことの一覧。pkg-list と違いチェックアイコンを付けない
   （肯定の記号を否定の項目に使うと意味が反転して読める）。 */
.s-no { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.s-no li {
  font-size: .84rem; line-height: 1.8; color: var(--muted);
  padding-left: 18px; border-left: 2px solid var(--line-strong);
}
.s-no b {
  display: block; font-size: .86rem; font-weight: 800; color: var(--ink); margin-bottom: 4px;
}

/* 診断メニューの料金表。p-merit-table を土台にするが、あちらは
   「項目 / SES / 請負」の比較用に色と太さが割り振られている。
   こちらは「メニュー / 価格 / 内容」なので、強調する列が違う。 */
.s-menu { overflow-x: auto; }
.s-menu-table { min-width: 620px; }
.s-menu-table thead th:last-child { color: var(--faint); }
.s-menu-table tbody td:first-child { white-space: normal; min-width: 190px; }
.s-menu-table tbody td.s-menu-price {
  font-family: var(--ff-mono); font-weight: 700; color: var(--accent);
  white-space: nowrap; font-size: .88rem;
}
.s-menu-table tbody td:last-child {
  color: var(--muted); font-weight: 400; line-height: 1.75;
}

/* 試作1日の抜粋ブロック。/prototype/ の完全版へ送るための要約。 */
.s-proto {
  max-width: 760px; background: var(--bg-tint);
  border-left: 3px solid var(--accent);
  padding: clamp(22px, 3vw, 32px);
}
.s-proto-price {
  padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--line-strong);
}
.s-proto .pkg-note {
  margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-strong);
}

/* 月別アーカイブの補足。直近12か月しか出していないことの説明。 */
.mag-archive-note {
  margin: 12px 0 0; font-size: .74rem; line-height: 1.7; color: var(--faint);
}
.mag-archive-note a { color: var(--muted); border-bottom: 1px solid var(--line); }

/* ══════════ 試作1日：即日枠と、RFPから持ち込んだ要件 ══════════ */

/* 受付状況の中に置く残枠表示。上限ではなく「即日で出せる本数」なので、
   数字が0でも受付は止まらない。文言側でそれを必ず添えること。 */
.proto-slots {
  display: block; margin-top: 6px;
  font-size: .78rem; line-height: 1.7; color: var(--muted);
}
.proto-slots b { color: var(--accent); font-family: var(--ff-mono); }

/* RFP作成ツールから持ち込んだ要件のパネル。
   既定は畳んでおく。開いた状態が既定だと、フォームが画面外へ押し出される。 */
.proto-brief {
  margin: clamp(18px, 2.4vw, 26px) 0 0;
  border: 1px dashed var(--line-strong); background: var(--bg-tint);
  padding: 16px 18px;
}
.proto-brief-h {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  justify-content: space-between;
}
.proto-brief-h b { font-size: .88rem; font-weight: 800; color: var(--ink); }
.proto-brief-body {
  margin: 14px 0 0; padding: 14px; max-height: 320px; overflow-y: auto;
  background: var(--bg); border: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .74rem; line-height: 1.85; color: var(--text);
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.proto-brief-note { margin: 12px 0 0; font-size: .76rem; line-height: 1.75; color: var(--faint); }

/* RFPツールの出口。申し込みを主導線、見積り相談を副導線として差をつける。 */
.rfp-cta-lead { margin-top: 10px; }
.rfp-cta-lead b { color: var(--ink); }
.rfp-cta-alt {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
}
.rfp-cta-alt span { font-size: .78rem; line-height: 1.7; color: var(--faint); }

/* ══════════ 特商法まわり ══════════ */

/* 特商法の表記。商品ごとに表を分けているので、見出しで区切る。 */
.tk-h {
  margin: clamp(30px, 4vw, 44px) 0 16px;
  font-size: .92rem; font-weight: 800; color: var(--ink);
  padding-bottom: 10px; border-bottom: 2px solid var(--ink);
}
.tk-h:first-of-type { margin-top: clamp(20px, 2.5vw, 28px); }
.tk-note { margin: 26px 0 0; font-size: .78rem; line-height: 1.9; color: var(--faint); }

/* お申し込み前の確認（法12条の6）。 */
.order-confirm {
  max-width: 840px;
  border: 2px solid var(--ink); background: var(--panel);
  padding: clamp(22px, 3vw, 34px);
}
.order-confirm-list { margin: 0; display: grid; gap: 18px; }
.order-confirm-list > div {
  display: grid; grid-template-columns: 190px 1fr; gap: 18px;
  padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.order-confirm-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.order-confirm-list dt {
  font-size: .82rem; font-weight: 800; color: var(--ink); line-height: 1.7;
}
.order-confirm-list dd {
  margin: 0; font-size: .82rem; line-height: 1.9; color: var(--muted); min-width: 0;
}
.order-confirm-list dd b { color: var(--ink); }

.order-confirm-agree {
  display: flex; align-items: flex-start; gap: 11px;
  margin: 26px 0 18px; padding: 16px 18px;
  background: var(--bg-tint); border-left: 3px solid var(--ink);
  font-size: .84rem; line-height: 1.75; color: var(--text); cursor: pointer;
}
.order-confirm-agree input { margin-top: .28em; flex: none; width: 17px; height: 17px; }
.order-confirm-agree a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }

/* チェック前の決済ボタン。押せないことが見て分かる状態にする。 */
.order-confirm-go.is-locked { opacity: .42; }
.order-confirm-note { margin: 12px 0 0; font-size: .78rem; line-height: 1.75; color: var(--faint); }

@media (max-width: 640px) {
  .order-confirm-list > div { grid-template-columns: 1fr; gap: 6px; }
}

/* ══════════ 試作1日の申し込みフォーム・完了画面 ══════════ */

.order-form { margin-top: 24px; display: grid; gap: 16px; }
.order-form label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink); }
.order-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-form input[type="text"],
.order-form input[type="email"],
.order-form textarea {
  display: block; width: 100%; margin-top: 7px;
  padding: 11px 13px; border: 1px solid var(--line-strong); background: var(--bg);
  font-family: inherit; font-size: .88rem; line-height: 1.7; color: var(--text);
}
.order-form input:focus, .order-form textarea:focus {
  outline: 2px solid var(--ink); outline-offset: 1px; border-color: var(--ink);
}
.order-form textarea { resize: vertical; }
.order-form .hint { display: block; margin-top: 6px; font-size: .74rem; font-weight: 400; color: var(--faint); }
.order-form .req, .order-form .opt {
  margin-left: 8px; padding: 2px 7px; font-size: .64rem; font-weight: 700; letter-spacing: .04em;
}
.order-form .req { background: var(--ink); color: #fff; }
.order-form .opt { background: var(--line); color: var(--muted); }
/* 同意欄はフォームの中でも見た目を変えない（label の太字を打ち消す） */
.order-form .order-confirm-agree { font-weight: 400; }
.order-confirm-go { width: 100%; justify-content: center; }

.order-errors {
  padding: 14px 16px; border-left: 3px solid var(--accent); background: #fff5ef;
  font-size: .82rem; line-height: 1.8; color: var(--text);
}
.order-errors b { display: block; margin-bottom: 6px; color: var(--accent); }
.order-errors ul { margin: 0; padding-left: 1.2em; }

.order-done { max-width: 760px; border: 2px solid var(--ink); padding: clamp(22px, 3vw, 34px); }
.order-done-token {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--line);
}
.order-done-token span { font-size: .74rem; font-weight: 700; color: var(--faint); letter-spacing: .08em; }
.order-done-token b { font-family: var(--ff-mono); font-size: 1.5rem; letter-spacing: .06em; color: var(--ink); }
.order-done-lead { margin: 0 0 22px; font-size: .88rem; line-height: 1.95; color: var(--text); }
.order-done-sub { display: block; margin-top: 8px; font-size: .8rem; color: var(--muted); }
.order-done-list { margin: 0; display: grid; gap: 14px; }
.order-done-list > div { display: grid; grid-template-columns: 160px 1fr; gap: 16px; }
.order-done-list dt { font-size: .78rem; font-weight: 700; color: var(--faint); }
.order-done-list dd { margin: 0; font-size: .84rem; line-height: 1.8; color: var(--text); min-width: 0; }
.order-done-brief {
  margin: 0; padding: 12px; background: var(--bg-tint); border: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .74rem; line-height: 1.85;
  white-space: pre-wrap; overflow-wrap: anywhere;
}
.order-done-note {
  margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .78rem; line-height: 1.9; color: var(--muted);
}
.order-done-note a { color: var(--accent); border-bottom: 1px solid var(--line-strong); }

@media (max-width: 640px) {
  .order-form-row { grid-template-columns: 1fr; }
  .order-done-list > div { grid-template-columns: 1fr; gap: 5px; }
}

/* ══════════ 公開期限の延長 ══════════ */

.ext-current {
  display: grid; gap: 14px; padding-bottom: 20px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.ext-current > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.ext-current span { font-size: .74rem; font-weight: 700; color: var(--faint); letter-spacing: .06em; min-width: 108px; }
.ext-current b { font-size: 1.06rem; font-weight: 800; color: var(--ink); }
.ext-current em { font-style: normal; font-size: .78rem; color: var(--muted); }
.ext-current em.is-over { color: var(--accent); font-weight: 700; }
.ext-url { font-family: var(--ff-mono); font-size: .84rem !important; overflow-wrap: anywhere; }
.ext-note {
  margin: 0 0 20px; padding: 12px 16px; background: var(--bg-tint);
  border-left: 3px solid var(--accent); font-size: .82rem; line-height: 1.8; color: var(--muted);
}

/* 期間の選択。ラジオは隠さず、当たり判定をラベル全体に広げる。 */
.ext-plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
  gap: 10px;
}
.ext-plan { position: relative; cursor: pointer; }
.ext-plan input {
  position: absolute; top: 12px; left: 12px; margin: 0; width: 15px; height: 15px;
}
.ext-plan-body {
  display: block; padding: 12px 12px 12px 36px;
  border: 1px solid var(--line-strong); background: var(--bg);
  transition: border-color .15s, background .15s;
}
.ext-plan input:checked + .ext-plan-body { border-color: var(--ink); background: var(--bg-tint); }
.ext-plan input:focus-visible + .ext-plan-body { outline: 2px solid var(--ink); outline-offset: 2px; }
.ext-plan-body b { display: block; font-size: .92rem; font-weight: 800; color: var(--ink); }
.ext-plan-price {
  display: block; margin-top: 3px;
  font-family: var(--ff-mono); font-size: .78rem; color: var(--muted);
}

/* 選択に応じて出る結果。ここが延長手続きの要なので目立たせる。 */
.ext-result {
  margin-top: 20px; padding: 18px 20px;
  background: var(--ink); color: #fff; display: grid; gap: 10px;
}
.ext-result > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; }
.ext-result span { font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.62); min-width: 122px; }
.ext-result b { font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; }
.ext-result em { font-style: normal; font-size: .72rem; color: rgba(255,255,255,.62); }
.ext-terms { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }

/* ══════════ ご紹介できる領域 ══════════ */

.ref-list { display: grid; gap: clamp(16px, 2.4vw, 24px); }
.ref {
  display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  background: var(--panel); border: 1px solid var(--line);
  padding: clamp(20px, 2.8vw, 30px);
}
.ref-head h3 { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin: 0 0 10px; line-height: 1.55; }
.ref-lead { margin: 0; font-size: .8rem; line-height: 1.85; color: var(--faint); }
.ref-body { min-width: 0; }
.ref-body p { margin: 0 0 12px; font-size: .85rem; line-height: 1.95; color: var(--text); }
.ref-body p:last-child { margin-bottom: 0; }
/* 約束できないことは、本文と同じ見た目にしない。
   同化させると読み飛ばされ、できると受け取られる。 */
.ref-caution {
  margin-top: 14px !important; padding: 11px 14px;
  background: var(--bg-tint); border-left: 3px solid var(--line-strong);
  font-size: .78rem !important; color: var(--muted) !important;
}

@media (max-width: 720px) {
  .ref { grid-template-columns: 1fr; gap: 14px; }
}

/* ハブ→クラスタ記事のリンク一覧 */
.hub-guides {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
}
.hub-guides li { border-bottom: 1px solid var(--line); }
.hub-guides a {
  display: block; padding: 14px 4px; font-size: .88rem; line-height: 1.7;
  color: var(--text); transition: color .15s;
}
.hub-guides a:hover { color: var(--accent); }


/* ── ヒーロー右のキーボード（装飾・打鍵で 1DAY が点灯） ───────────
   タイポ主義のヒーローはそのまま、右の余白にだけ意味のある装飾を足す。
   等角にせず 8〜12° の浅い傾きに留める（深いとSaaSテンプレ感が出る）。 */
.hero-kbd { display: none; }
@media (min-width: 1080px) {
  .hero .container { display: grid; grid-template-columns: minmax(0, 680px) 1fr;
                     /* 1行目=ロゴの高さだけ。キーボードの余剰高さは2行目(1fr)に流し、
                        本文がキーボード分だけ下に押し出されるのを防ぐ */
                     grid-template-rows: auto 1fr;
                     column-gap: clamp(24px, 4vw, 64px); align-items: start; }
  /* ロゴは左列のみ。右列はキーボードが最上段から始まり、
     左の大きなロゴと右のタイプ行が同じ高さで向かい合う */
  .hero-wordmark { grid-column: 1; }
  .hero-kbd { display: flex; flex-direction: column; perspective: 1200px;
              grid-column: 2; grid-row: 1 / -1; align-self: start; margin-top: 10px;
              margin-right: max(-40px, -3vw); }
  /* CTA はデスクトップではキーボードの下へ（site.js が移設する） */
  .hero-kbd .hero-ctas { margin: 26px 0 0; justify-content: flex-start; }
}
.hero-kbd-tilt {
  transform: rotateX(14deg) rotateZ(-7deg);
  transform-style: preserve-3d;
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px 18px;
  background: var(--card, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 24px 32px 60px -32px rgba(23,23,26,.28);
}
.hero-kbd-row { display: flex; gap: 7px; }
.hero-kbd-key {
  /* 文字キーは正方形。幅は flex で決まり、高さが追従する */
  aspect-ratio: 1 / 1; height: auto; flex: 1 1 0; border: 1px solid var(--line);
  border-radius: 6px; background: var(--bg, #f7f6f3);
  box-shadow: 0 2px 0 var(--line);
  transition: background .18s, color .18s, transform .12s, box-shadow .12s, border-color .18s;
  display: flex; align-items: center; justify-content: center;
  font: 700 12px/1 -apple-system, "Hiragino Sans", sans-serif;
  color: transparent; user-select: none;
}
/* 機能キー（Tab/Shift/Enter/スペース等）は実物どおり横長。
   高さは同じ行の正方形キーに stretch で揃う */
.hero-kbd-key[data-w="15"] { flex-grow: 1.5; aspect-ratio: auto; }
.hero-kbd-key[data-w="2"]  { flex-grow: 2;   aspect-ratio: auto; }
.hero-kbd-key[data-w="6"]  { flex-grow: 6;   aspect-ratio: auto; }
.hero-kbd-key.lit {
  background: var(--accent); border-color: var(--accent); color: #fff;
  transform: translateY(2px); box-shadow: 0 0 0 var(--accent),
             0 8px 26px -8px color-mix(in srgb, var(--accent) 70%, transparent);
}
.hero-kbd-screen {
  font: 800 clamp(20px, 1.8vw, 26px)/1 "Hiragino Sans", -apple-system, sans-serif;
  letter-spacing: .02em; color: var(--ink);
  min-height: 1.2em; margin: 0 6px 14px; text-align: left;
}
.hero-kbd-screen .dot { color: var(--accent); }
.hero-kbd-screen .caret {
  display: inline-block; width: 2px; height: 1em; background: var(--accent);
  vertical-align: -2px; margin-left: 2px; animation: kbd-caret 1s steps(1) infinite;
}
@keyframes kbd-caret { 50% { opacity: 0; } }
.hero-kbd-key.press { transform: translateY(3px); box-shadow: 0 0 0 var(--line); }
@media (prefers-reduced-motion: reduce) { .hero-kbd-screen .caret { animation: none; } }

.hero-kbd-caption { margin-top: 22px; font-size: .86rem; color: var(--muted); text-align: right; }
.hero-kbd-caption b { color: var(--accent); font-weight: 800; }
@media (prefers-reduced-motion: reduce) {
  .hero-kbd-key { transition: none; }
}


/* ── FAQ背景のラーテル透かし ─────────────────────────
   イースターエッグ級の薄さに留める。読み物の邪魔をしないことが最優先。
   本文カラムと重ならない右外側に置き、はみ出しは overflow で切る。 */
#faq { position: relative; overflow: hidden; }
.faq-watermark {
  display: none; position: absolute; right: calc(-6% - 10px); bottom: -4%;
  width: min(840px, 58vw); height: auto;
  opacity: .09; pointer-events: none; user-select: none;
}
@media (min-width: 1080px) { .faq-watermark { display: block; } }


/* ── 診断1日（移行ページの入口商品カード） ─────────────── */
.shindan-card { background: var(--card, #fff); border: 2px solid var(--ink);
  border-radius: 4px; padding: clamp(20px, 3vw, 32px); margin-bottom: 28px; }
.shindan-badge { display: inline-block; font-size: 11.5px; font-weight: 800;
  letter-spacing: .08em; background: var(--accent); color: #fff;
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.shindan-head h3 { font-size: clamp(20px, 2.6vw, 26px); font-weight: 900; }
.shindan-price { color: var(--accent); margin-left: 10px; }
.shindan-price small { font-size: .55em; color: var(--muted); font-weight: 700; }
.shindan-lead { margin: 10px 0 14px; color: var(--muted); }
.shindan-list { list-style: none; display: grid; gap: 8px; margin: 0 0 14px; padding: 0; }
.shindan-list li { padding-left: 24px; position: relative; }
.shindan-list li::before { content: "✓"; position: absolute; left: 0;
  color: var(--accent); font-weight: 900; }
.shindan-note { font-size: 13.5px; background: var(--bg, #f7f6f3);
  border-left: 3px solid var(--accent); padding: 10px 14px; margin-bottom: 18px; }
.shindan-cta { display: inline-flex; }
@media (min-width: 720px) { .shindan-list { grid-template-columns: 1fr 1fr; } }
