/* ============================================================
   AIRAS / 合同会社SK Pharma — style.css
   デザイントークン（バクラク準拠・色相のみ独自）
   ============================================================ */

/* --- Fonts (自己ホスト宣言。実ファイルは assets/fonts/ に配置) --- */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal; font-weight: 400; font-display: swap;
  src: local("Noto Sans JP"), local("NotoSansJP-Regular");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal; font-weight: 500; font-display: swap;
  src: local("Noto Sans JP Medium"), local("NotoSansJP-Medium");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal; font-weight: 700; font-display: swap;
  src: local("Noto Sans JP Bold"), local("NotoSansJP-Bold");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal; font-weight: 500; font-display: swap;
  src: local("Montserrat Medium"), local("Montserrat-Medium");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal; font-weight: 600; font-display: swap;
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal; font-weight: 700; font-display: swap;
  src: local("Montserrat Bold"), local("Montserrat-Bold");
}

/* ============================================================
   Tokens
   ============================================================ */
:root {
  /* Font family */
  --font-family-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-family-en: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Font weight */
  --font-weight-r: 400;
  --font-weight-m: 500;
  --font-weight-b: 600;
  --font-weight-xb: 700;

  /* Font size (12段階) */
  --font-size-xxs: 10px;
  --font-size-2s:  12px;
  --font-size-xs:  14px;
  --font-size-sm:  16px;
  --font-size-md:  18px;
  --font-size-lg:  20px;
  --font-size-xl:  24px;
  --font-size-2xl: 28px;
  --font-size-2l:  32px;
  --font-size-3l:  40px;
  --font-size-4l:  56px;
  --font-size-5l:  64px;

  /* Line height */
  --line-height-xs: 100%;
  --line-height-sm: 125%;
  --line-height-md: 150%;
  --line-height-lg: 175%;
  --line-height-xl: 200%;

  /* Letter spacing */
  --letter-spacing-sm: 0;
  --letter-spacing-md: 0.02em;
  --letter-spacing-lg: 0.05em;

  /* Spacing */
  --spacing_2xs: 4px;
  --spacing_xs:  8px;
  --spacing_sm:  12px;
  --spacing_md:  16px;
  --spacing_lg:  24px;
  --spacing_xl:  32px;
  --spacing_2xl: 40px;
  --spacing_3xl: 56px;
  --spacing_4xl: 64px;
  --spacing_5xl: 80px;
  --spacing_full: 120px;

  /* Radius */
  --radius_xs:   4px;
  --radius_sm:   6px;
  --radius_md:   8px;
  --radius_lg:  10px;
  --radius_full: 9999px;
  --radius_section: 20px;

  /* Layout */
  --inner-main-pc: 1130px;
  --inner-sub-pc:  1040px;
  --gutter-sp:     24px;
  --section-spacing-pc: 120px;
  --section-spacing-sp: 80px;
  --section-title-spacing-pc: 64px;
  --section-title-spacing-sp: 40px;

  /* Brand (Navy) */
  --brand-5:  #F4F8FC;
  --brand-10: #E3EDF7;
  --brand-20: #CCDFEF;
  --brand-30: #A9C8E2;
  --brand-40: #7FA9CE;
  --brand-50: #4E82B3;
  --brand-60: #205F95;
  --brand-70: #124A79;
  --brand-80: #0B3559;
  --brand-90: #08243C;

  /* Neutral / Smoke */
  --neutral-5:  #F7F7F7;
  --neutral-10: #EDEDED;
  --neutral-20: #E1E1E1;
  --neutral-30: #CECECE;
  --neutral-70: #5B5B5B;
  --neutral-90: #1B1B1B;
  --smoke-40:   #B3C1CF;
  --smoke-80:   #233447;

  /* Accent */
  --accent-amber: #E09B00;

  /* Semantic roles */
  --color-text-primary: var(--smoke-80);
  --color-text-secondary: var(--neutral-70);
  --color-text-link: var(--brand-70);
  --color-text-on-brand: #FFFFFF;
  --color-border-primary: var(--smoke-40);
  --color-border-subtle: var(--neutral-20);
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: var(--neutral-5);
  --color-bg-brand-light: var(--brand-5);
  --color-bg-brand-dark: var(--brand-80);
  --color-button-primary: var(--brand-70);
  --color-button-primary-hover: var(--brand-80);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-r);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-lg);
  letter-spacing: var(--letter-spacing-md);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-text-link); text-decoration: underline; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
button { font-family: inherit; cursor: pointer; }

/* Numeric span — 数字・英字はMontserrat */
.num {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  letter-spacing: var(--letter-spacing-sm);
}
.num-accent {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  color: var(--accent-amber);
  letter-spacing: var(--letter-spacing-sm);
}

/* ============================================================
   Layout containers
   ============================================================ */
.inner {
  width: 100%;
  max-width: var(--inner-main-pc);
  margin: 0 auto;
  padding-left: var(--gutter-sp);
  padding-right: var(--gutter-sp);
}
.inner--sub { max-width: var(--inner-sub-pc); }

.section {
  padding-top: var(--section-spacing-sp);
  padding-bottom: var(--section-spacing-sp);
}
@media (min-width: 768px) {
  .section { padding-top: var(--section-spacing-pc); padding-bottom: var(--section-spacing-pc); }
}
.section--tight { padding-top: var(--spacing_5xl); padding-bottom: var(--spacing_5xl); }
.section--bg-smoke { background: var(--color-bg-secondary); }
.section--bg-brand-light { background: var(--color-bg-brand-light); border-radius: var(--radius_section); }
.section--bg-brand-dark { background: var(--color-bg-brand-dark); color: var(--color-text-on-brand); border-radius: var(--radius_section); }
.section--bg-brand-dark a { color: #FFFFFF; }

/* Section heading */
.section-title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-md);
  margin: 0 0 var(--section-title-spacing-sp);
  padding-bottom: var(--spacing_md);
  position: relative;
  color: var(--color-text-primary);
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 4px;
  background: var(--brand-70);
}
@media (min-width: 768px) {
  .section-title { font-size: var(--font-size-3l); margin-bottom: var(--section-title-spacing-pc); }
}
.section--bg-brand-dark .section-title { color: #FFFFFF; }
.section--bg-brand-dark .section-title::after { background: var(--brand-30); }

.section-lead {
  font-size: var(--font-size-md);
  line-height: var(--line-height-lg);
  margin: 0 0 var(--spacing_2xl);
  max-width: 720px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border-subtle);
  height: 64px;
  transition: height .2s ease;
}
.site-header.is-scrolled { height: 56px; }
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: var(--inner-main-pc);
}
.site-logo {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-lg);
  color: var(--brand-80);
  text-decoration: none;
  letter-spacing: var(--letter-spacing-md);
  min-width: 120px;
}
.site-logo:hover { text-decoration: none; }

.site-nav { display: none; }
@media (min-width: 900px) {
  .site-nav { display: flex; gap: var(--spacing_xl); }
  .site-nav a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-m);
  }
  .site-nav a:hover { color: var(--brand-70); }
}

.header-right { display: flex; align-items: center; gap: var(--spacing_md); }
.header-tel {
  display: none;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-md);
  color: var(--brand-80);
  text-decoration: none;
}
@media (min-width: 900px) { .header-tel { display: inline-block; } }

/* Hamburger (SP only) */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_md);
  padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--smoke-80); position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; top: 64px; left: 0; right: 0;
  background: #FFFFFF; border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--spacing_lg) var(--gutter-sp);
  transform: translateY(-120%); transition: transform .25s ease;
  z-index: 49;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  display: block; padding: var(--spacing_md) 0;
  color: var(--color-text-primary); text-decoration: none;
  font-size: var(--font-size-sm); font-weight: var(--font-weight-m);
  border-bottom: 1px solid var(--color-border-subtle);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px;
  padding: var(--spacing_sm) var(--spacing_lg);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-b);
  border-radius: var(--radius_md);
  border: 1px solid transparent;
  text-decoration: none;
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-md);
  transition: background-color .15s ease, color .15s ease;
}
.btn--primary {
  background: var(--color-button-primary);
  color: #FFFFFF;
}
.btn--primary:hover { background: var(--color-button-primary-hover); text-decoration: none; }
.btn--ghost {
  background: transparent;
  color: var(--brand-70);
  border-color: var(--brand-70);
}
.btn--on-dark {
  background: #FFFFFF;
  color: var(--brand-80);
}
.btn--on-dark:hover { background: var(--neutral-5); }
.btn--full { width: 100%; }
.btn--sm { min-height: 40px; padding: var(--spacing_xs) var(--spacing_md); font-size: var(--font-size-xs); }

.header-cta { min-height: 40px; padding: var(--spacing_xs) var(--spacing_md); font-size: var(--font-size-xs); }

/* Fixed CTA bar (SP) */
.sp-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: #FFFFFF;
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--spacing_xs) var(--gutter-sp);
}
.sp-cta-bar .btn { min-height: 56px; }
@media (min-width: 900px) { .sp-cta-bar { display: none; } }
body { padding-bottom: 72px; }
@media (min-width: 900px) { body { padding-bottom: 0; } }

/* ============================================================
   Hero (S1) — バクラク風の2カラム
   ============================================================ */
.hero {
  position: relative;
  padding-top: var(--spacing_2xl);
  padding-bottom: var(--spacing_2xl);
  background: linear-gradient(180deg, var(--brand-5) 0%, #FFFFFF 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding-top: var(--spacing_5xl); padding-bottom: var(--spacing_5xl); }
}
.hero-grid {
  display: grid;
  gap: var(--spacing_xl);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: var(--spacing_3xl); }
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing_xs);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_md);
  padding: var(--spacing_xs) var(--spacing_md);
  background: #FFFFFF;
  border: 1px solid var(--brand-20);
  border-radius: var(--radius_full);
}
.hero-eyebrow::before {
  content: "";
  display: block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--brand-70);
}
.hero-title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-xb);
  font-size: var(--font-size-2l);
  line-height: var(--line-height-sm);
  letter-spacing: var(--letter-spacing-md);
  margin: 0 0 var(--spacing_lg);
  color: var(--smoke-80);
}
@media (min-width: 768px) {
  .hero-title { font-size: var(--font-size-4l); }
}
.hero-title .accent {
  background: linear-gradient(180deg, transparent 65%, var(--brand-10) 65%);
  padding: 0 0.1em;
}
.hero-sub {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-lg);
  margin: 0 0 var(--spacing_xl);
  max-width: 560px;
}
@media (min-width: 768px) {
  .hero-sub { font-size: var(--font-size-md); }
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing_md);
  margin-bottom: var(--spacing_lg);
}
.hero-cta-group .btn { min-height: 56px; padding-left: var(--spacing_xl); padding-right: var(--spacing_xl); font-size: var(--font-size-sm); }
@media (min-width: 768px) {
  .hero-cta-group .btn { min-height: 64px; font-size: var(--font-size-md); }
}
.hero-cta-note {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  margin: 0;
}
.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: var(--spacing_lg) var(--spacing_2xl);
  margin-top: var(--spacing_2xl);
  padding-top: var(--spacing_lg);
  border-top: 1px solid var(--color-border-subtle);
}
.hero-trust-item {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  line-height: var(--line-height-md);
}
.hero-trust-item strong {
  display: block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-lg);
  color: var(--brand-80);
  letter-spacing: var(--letter-spacing-sm);
}
@media (min-width: 768px) {
  .hero-trust-item strong { font-size: var(--font-size-xl); }
}

/* Hero visual (右カラムの装飾ビジュアル) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 900px) {
  .hero-visual { max-width: 520px; aspect-ratio: 4 / 5; }
}
.hero-visual-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--radius_section);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 20px 40px -20px rgba(11, 53, 89, 0.15);
  padding: var(--spacing_lg);
}
.hero-visual-card.card-main {
  left: 5%; top: 10%; width: 70%;
  padding: var(--spacing_xl);
  z-index: 3;
}
.hero-visual-card.card-alt {
  right: 0; top: 50%; width: 55%;
  z-index: 2;
}
.hero-visual-card.card-badge {
  left: 12%; bottom: 4%; width: 60%;
  z-index: 4;
  background: var(--brand-80);
  color: #FFFFFF;
  border: none;
}
.card-label {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_sm);
  text-transform: uppercase;
}
.card-badge .card-label { color: var(--brand-30); }
.card-title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-md);
  line-height: var(--line-height-sm);
  margin: 0 0 var(--spacing_sm);
  color: var(--smoke-80);
}
.card-badge .card-title { color: #FFFFFF; }
.card-metric {
  display: flex; align-items: baseline; gap: var(--spacing_xs);
  margin-top: var(--spacing_sm);
}
.card-metric .num-lg {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-xb);
  font-size: var(--font-size-3l);
  color: var(--accent-amber);
  line-height: 1;
  letter-spacing: var(--letter-spacing-sm);
}
.card-metric .unit {
  font-size: var(--font-size-xs);
  color: var(--neutral-70);
}
.card-bars {
  display: flex; flex-direction: column; gap: var(--spacing_xs);
  margin-top: var(--spacing_md);
}
.card-bar {
  height: 6px; background: var(--neutral-10); border-radius: var(--radius_full);
  position: relative; overflow: hidden;
}
.card-bar::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%;
  background: var(--brand-70); border-radius: var(--radius_full);
}
.card-bar.b1::after { width: 78%; }
.card-bar.b2::after { width: 54%; background: var(--brand-40); }
.card-bar.b3::after { width: 92%; }

/* Hero right: サービス一覧（シンプルに並べる） */
.hero-services {
  background: #FFFFFF;
  border-radius: var(--radius_section);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 20px 40px -20px rgba(11, 53, 89, 0.15);
  padding: var(--spacing_xl);
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-services { padding: var(--spacing_2xl); max-width: none; }
}
.hero-services-label {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_lg);
  text-transform: uppercase;
}
.hero-services-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.hero-service-item {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--spacing_md);
  padding: var(--spacing_md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.hero-service-item:last-child { border-bottom: none; }
.hero-service-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-m);
  color: var(--smoke-80);
  line-height: var(--line-height-sm);
}
.hero-service-price {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-sm);
  color: var(--accent-amber);
  letter-spacing: var(--letter-spacing-sm);
  white-space: nowrap;
}
.hero-services-foot {
  margin-top: var(--spacing_lg);
  padding-top: var(--spacing_md);
  border-top: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
}
.hero-services-foot a {
  color: var(--brand-70);
  font-weight: var(--font-weight-b);
  text-decoration: none;
}
.hero-services-foot a:hover { text-decoration: underline; }

/* ============================================================
   Symptom result — もう少しリッチに
   ============================================================ */
.symptom-result-inner {
  display: grid; gap: var(--spacing_xl);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .symptom-result-inner { grid-template-columns: 1.1fr 1fr; }
}
.symptom-result-head {
  display: flex; align-items: center; gap: var(--spacing_md);
  margin-bottom: var(--spacing_lg);
}
.symptom-result-tag {
  display: inline-block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: #FFFFFF;
  background: var(--brand-70);
  padding: 4px var(--spacing_sm);
  border-radius: var(--radius_full);
  letter-spacing: var(--letter-spacing-md);
}

/* ============================================================
   Section image slot (装飾ビジュアル)
   ============================================================ */
.visual-slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius_section);
  background: linear-gradient(135deg, var(--brand-5) 0%, var(--brand-10) 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-10);
}
.visual-slot svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Price table (料金セクション) をカード風に */
.price-cards {
  display: grid; gap: var(--spacing_md);
  grid-template-columns: 1fr;
  margin-top: var(--spacing_xl);
}
@media (min-width: 768px) {
  .price-cards { grid-template-columns: 1fr 1fr; }
}
.price-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
  padding: var(--spacing_xl);
  display: flex; flex-direction: column; gap: var(--spacing_sm);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.price-card:hover {
  box-shadow: 0 12px 28px -16px rgba(11, 53, 89, 0.18);
  border-color: var(--brand-30);
}
.price-card-tag {
  display: inline-block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-xxs);
  color: var(--brand-70);
  background: var(--brand-5);
  padding: 4px var(--spacing_sm);
  border-radius: var(--radius_full);
  letter-spacing: var(--letter-spacing-lg);
  align-self: flex-start;
  margin-bottom: var(--spacing_xs);
}
.price-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-b);
  margin: 0;
  line-height: var(--line-height-sm);
}
.price-card-price {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2l);
  color: var(--accent-amber);
  letter-spacing: var(--letter-spacing-sm);
  line-height: 1;
  margin: var(--spacing_xs) 0;
}
.price-card-price .price-unit {
  font-family: var(--font-family-jp);
  font-size: var(--font-size-xs);
  color: var(--neutral-70);
  font-weight: var(--font-weight-m);
  margin-left: 4px;
}
.price-card-meta {
  font-size: var(--font-size-xs);
  color: var(--neutral-70);
  line-height: var(--line-height-md);
  margin: 0;
}
.price-card-deliver {
  font-size: var(--font-size-xs);
  color: var(--color-text-primary);
  line-height: var(--line-height-md);
  margin-top: var(--spacing_sm);
  padding-top: var(--spacing_sm);
  border-top: 1px dashed var(--color-border-subtle);
}
.price-card-link {
  margin-top: auto;
  padding-top: var(--spacing_md);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-b);
  color: var(--brand-70);
  text-decoration: none;
}
.price-card-link:hover { text-decoration: underline; }

/* FAQ card group */
.faq-list.faq-cards { display: grid; gap: var(--spacing_sm); }
.faq-list.faq-cards .faq-item {
  border: 1px solid var(--color-border-subtle);
  border-top: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_lg);
  padding: var(--spacing_lg) var(--spacing_xl);
  background: #FFFFFF;
}
.faq-list.faq-cards .faq-item:last-child { border-bottom: 1px solid var(--color-border-subtle); }
.faq-list.faq-cards .faq-q {
  position: relative;
  padding-left: var(--spacing_xl);
}
.faq-list.faq-cards .faq-q::before {
  content: "Q";
  position: absolute; left: 0; top: 0;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  color: var(--brand-70);
  font-size: var(--font-size-md);
}
.faq-list.faq-cards .faq-a {
  position: relative;
  padding-left: var(--spacing_xl);
}
.faq-list.faq-cards .faq-a::before {
  content: "A";
  position: absolute; left: 0; top: 0;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  color: var(--accent-amber);
  font-size: var(--font-size-md);
}

/* Section wave divider */
.section-divider {
  height: 1px;
  background: var(--color-border-subtle);
  margin: 0;
}

/* ============================================================
   Hero decorations — 幾何学
   ============================================================ */
.hero-orbit {
  position: absolute;
  right: -180px; top: 40px;
  width: 520px; height: 520px;
  border: 1px solid var(--brand-10);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--brand-10);
}
.hero-orbit::before { inset: 60px; }
.hero-orbit::after  { inset: 120px; border-color: var(--brand-20); }
.hero-orbit-dot {
  position: absolute;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent-amber);
  top: 20px; left: 50%; transform: translateX(-50%);
}
.hero-orbit-dot.d2 { top: auto; bottom: 40px; left: 30px; background: var(--brand-70); width: 8px; height: 8px; }
.hero-orbit-dot.d3 { top: 40%; left: auto; right: 20px; transform: none; background: var(--brand-40); width: 6px; height: 6px; }

/* ============================================================
   Diagnose section decoration
   ============================================================ */
.diagnose-wrap {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--brand-5) 100%);
}
.diagnose-header {
  display: grid; gap: var(--spacing_xl);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: var(--spacing_2xl);
}
@media (min-width: 900px) {
  .diagnose-header { grid-template-columns: 1.4fr 1fr; }
}
.diagnose-meta {
  display: flex; flex-direction: column; gap: var(--spacing_xs);
  padding: var(--spacing_lg) var(--spacing_xl);
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
}
.diagnose-meta strong {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-xl);
  color: var(--brand-80);
  letter-spacing: var(--letter-spacing-sm);
  line-height: 1.1;
}
.diagnose-meta strong .unit {
  font-size: var(--font-size-sm);
  color: var(--neutral-70);
  margin-left: 4px;
}
.diagnose-meta span {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
}

/* ============================================================
   Section band (色面リズム)
   ============================================================ */
.band-brand-dark {
  background: var(--brand-80);
  color: #FFFFFF;
  border-radius: var(--radius_section);
  padding: var(--spacing_3xl) var(--spacing_xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .band-brand-dark { padding: var(--spacing_4xl) var(--spacing_3xl); }
}

/* Price card thumbnails (幾何学のアイコン風) */
.price-card-thumb {
  width: 56px; height: 56px;
  border-radius: var(--radius_md);
  background: var(--brand-5);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--spacing_md);
  position: relative;
  overflow: hidden;
}
.price-card-thumb svg { width: 32px; height: 32px; }

/* Rule of thirds — hero visual arrangement */
.hero-visual-wrap {
  position: relative;
  min-height: 400px;
}
@media (min-width: 900px) {
  .hero-visual-wrap { min-height: 480px; }
}

/* Case card enhance */
.case-teaser {
  position: relative;
  overflow: hidden;
}
.case-teaser::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--brand-5) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   Value proposition (3カラム: 課題→対応→結果)
   ============================================================ */
.value-section {
  background: var(--color-bg-brand-light);
}
.value-grid {
  display: grid; gap: var(--spacing_lg);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 768px) {
  .value-grid { grid-template-columns: 1fr auto 1fr auto 1fr; gap: var(--spacing_xl); align-items: stretch; }
}
.value-arrow {
  display: none;
  align-items: center;
  color: var(--brand-40);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-lg);
}
@media (min-width: 768px) { .value-arrow { display: flex; } }
.value-card {
  background: #FFFFFF;
  border-radius: var(--radius_section);
  border: 1px solid var(--brand-10);
  padding: var(--spacing_xl);
  display: flex; flex-direction: column; gap: var(--spacing_sm);
}
.value-card .value-label {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
}
.value-card h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-b);
  margin: 0;
  line-height: var(--line-height-sm);
  color: var(--smoke-80);
}
.value-card p {
  font-size: var(--font-size-xs);
  margin: 0;
  color: var(--neutral-70);
  line-height: var(--line-height-md);
}

/* Flow steps (診断→相談→着手) */
.flow-steps {
  display: grid; gap: var(--spacing_lg);
  grid-template-columns: 1fr;
  margin-top: var(--spacing_2xl);
}
@media (min-width: 768px) {
  .flow-steps { grid-template-columns: repeat(3, 1fr); position: relative; }
}
.flow-step {
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
  padding: var(--spacing_xl);
  position: relative;
}
.flow-step-no {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-xb);
  font-size: var(--font-size-3l);
  color: var(--brand-10);
  line-height: 1;
  margin: 0 0 var(--spacing_md);
  letter-spacing: var(--letter-spacing-sm);
}
.flow-step h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_sm);
  line-height: var(--line-height-sm);
}
.flow-step p {
  font-size: var(--font-size-xs);
  margin: 0;
  line-height: var(--line-height-md);
  color: var(--color-text-primary);
}

/* Background dots pattern */
.hero-bg-dots {
  position: absolute;
  right: -60px; bottom: -60px;
  width: 320px; height: 320px;
  background-image: radial-gradient(var(--brand-20) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.hero-prompt {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-b);
  color: var(--smoke-80);
  margin: 0 0 var(--spacing_md);
}

/* ============================================================
   Section eyebrow (英字 + ラベル)
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_sm);
  text-transform: uppercase;
}

/* ============================================================
   Trust bar (ロゴ帯・信頼要素)
   ============================================================ */
.trust-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: var(--spacing_lg) 0;
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: var(--spacing_lg);
}
.trust-bar-label {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  font-weight: var(--font-weight-m);
  letter-spacing: var(--letter-spacing-md);
}
.trust-bar-items {
  display: flex; flex-wrap: wrap; gap: var(--spacing_xl);
}
.trust-item {
  display: flex; align-items: center; gap: var(--spacing_xs);
  font-size: var(--font-size-2s);
  color: var(--smoke-80);
  font-weight: var(--font-weight-m);
}
.trust-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-70);
}

/* ============================================================
   Feature cards (バクラク風の3カラム)
   ============================================================ */
.feature-grid {
  display: grid;
  gap: var(--spacing_lg);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: var(--spacing_xl); }
}
.feature-card {
  background: #FFFFFF;
  border-radius: var(--radius_section);
  border: 1px solid var(--color-border-subtle);
  padding: var(--spacing_2xl);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature-card:hover {
  box-shadow: 0 12px 32px -16px rgba(11, 53, 89, 0.15);
}
.feature-card-no {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_lg);
}
.feature-card-illust {
  width: 100%;
  height: 120px;
  margin-bottom: var(--spacing_lg);
  background: var(--brand-5);
  border-radius: var(--radius_md);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_sm);
  line-height: var(--line-height-sm);
}
.feature-card p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-lg);
  margin: 0;
  color: var(--color-text-primary);
}

/* Abstract SVG illustrations placeholders — 幾何学のみ */
.illust-shape {
  position: absolute;
}

/* ============================================================
   Stats band (数値で語るセクション帯)
   ============================================================ */
.stats-band {
  background: var(--brand-80);
  color: #FFFFFF;
  border-radius: var(--radius_section);
  padding: var(--spacing_3xl) var(--spacing_xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .stats-band { padding: var(--spacing_4xl) var(--spacing_3xl); }
}
.stats-band-grid {
  display: grid; gap: var(--spacing_2xl);
  grid-template-columns: 1fr 1fr;
  position: relative; z-index: 2;
}
@media (min-width: 768px) {
  .stats-band-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  border-left: 1px solid var(--brand-60);
  padding-left: var(--spacing_lg);
}
.stat:first-child { border-left: none; padding-left: 0; }
@media (max-width: 767px) {
  .stat { border-left: none; padding-left: 0; }
}
.stat-value {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-xb);
  font-size: var(--font-size-3l);
  color: #FFFFFF;
  letter-spacing: var(--letter-spacing-sm);
  line-height: 1;
  margin: 0 0 var(--spacing_sm);
}
@media (min-width: 768px) { .stat-value { font-size: var(--font-size-4l); } }
.stat-value .unit {
  font-size: var(--font-size-md);
  color: var(--brand-30);
  margin-left: 4px;
  font-weight: var(--font-weight-b);
}
.stat-label {
  font-size: var(--font-size-xs);
  color: var(--brand-20);
  line-height: var(--line-height-md);
  margin: 0;
}
.stats-band-bg {
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-70) 0%, transparent 70%);
  z-index: 1;
}

/* ============================================================
   Two-column with visual (交互レイアウト)
   ============================================================ */
.two-col {
  display: grid; gap: var(--spacing_2xl);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--spacing_4xl); }
  .two-col--reverse .two-col-visual { order: 2; }
}
.two-col-visual {
  aspect-ratio: 4/3;
  background: var(--brand-5);
  border-radius: var(--radius_section);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   Case card teaser (S6 プレースホルダーを豊かに)
   ============================================================ */
.case-teaser {
  padding: var(--spacing_2xl);
  background: #FFFFFF;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
  display: flex; flex-direction: column; gap: var(--spacing_md);
  min-height: 240px;
}
.case-teaser .tag {
  display: inline-block;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  color: var(--brand-70);
  background: var(--brand-5);
  padding: 4px var(--spacing_sm);
  border-radius: var(--radius_full);
  letter-spacing: var(--letter-spacing-md);
  align-self: flex-start;
}
.case-teaser h3 {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-b);
  margin: 0;
  line-height: var(--line-height-sm);
  color: var(--smoke-80);
}
.case-teaser p {
  font-size: var(--font-size-xs);
  color: var(--neutral-70);
  margin: 0;
  line-height: var(--line-height-md);
}
.case-teaser .stub-line {
  height: 8px; background: var(--neutral-10);
  border-radius: var(--radius_full);
  margin-top: var(--spacing_xs);
}
.case-teaser .stub-line.short { width: 60%; }

/* ============================================================
   Symptom selector (中核UI)
   ============================================================ */
.symptom-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--spacing_sm);
}
.symptom-btn {
  display: block; width: 100%;
  min-height: 64px;
  padding: var(--spacing_md) var(--spacing_lg) var(--spacing_md) var(--spacing_lg);
  background: #FFFFFF;
  border: 1px solid var(--smoke-40);
  border-left: 4px solid transparent;
  border-radius: var(--radius_md);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-m);
  color: var(--color-text-primary);
  line-height: var(--line-height-md);
  letter-spacing: var(--letter-spacing-md);
  transition: border-color .15s ease, background-color .15s ease;
}
.symptom-btn:hover { border-left-color: var(--brand-70); background: var(--brand-5); }
.symptom-btn[aria-expanded="true"] {
  border-left-color: var(--brand-70);
  background: var(--brand-5);
  border-color: var(--brand-70);
}

.symptom-result {
  display: none;
  margin-top: var(--spacing_xl);
  padding: var(--spacing_xl);
  background: var(--brand-5);
  border-radius: var(--radius_section);
}
.symptom-result.is-open { display: block; }
.symptom-result h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_sm);
  line-height: var(--line-height-sm);
}
.symptom-result .price-line {
  font-size: var(--font-size-md);
  margin: 0 0 var(--spacing_lg);
}
.symptom-result .price-line .num-accent { font-size: var(--font-size-2l); }

/* ============================================================
   Tables (料金・納品物・補助金試算)
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-md);
}
@media (min-width: 768px) { .data-table { font-size: var(--font-size-sm); } }
.data-table th,
.data-table td {
  padding: var(--spacing_md) var(--spacing_md);
  border-bottom: 1px solid var(--color-border-subtle);
  text-align: left;
  vertical-align: top;
}
.data-table thead th {
  background: var(--neutral-5);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-2s);
  letter-spacing: var(--letter-spacing-md);
  color: var(--smoke-80);
  border-bottom: 1px solid var(--color-border-primary);
}
.data-table tbody th {
  width: 32%;
  font-weight: var(--font-weight-m);
  color: var(--smoke-80);
  background: transparent;
}
@media (max-width: 640px) {
  .data-table tbody th { width: 40%; }
}
.data-table .price-cell {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  color: var(--accent-amber);
  font-size: var(--font-size-md);
  letter-spacing: var(--letter-spacing-sm);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .data-table .price-cell { font-size: var(--font-size-lg); }
}
.table-wrap { overflow-x: auto; }

/* ============================================================
   Service layers (S3)
   ============================================================ */
.service-layers {
  display: grid; gap: var(--spacing_xl);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .service-layers { grid-template-columns: 1fr 1fr; gap: var(--spacing_2xl); }
}
.service-layer {
  padding-top: var(--spacing_lg);
  border-top: 1px solid var(--color-border-primary);
}
.service-layer .layer-no {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-b);
  font-size: var(--font-size-md);
  color: var(--brand-70);
  letter-spacing: var(--letter-spacing-md);
  display: block;
  margin-bottom: var(--spacing_xs);
}
.service-layer h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_sm);
  line-height: var(--line-height-sm);
}
.service-layer p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-lg);
  margin: 0;
}

/* ============================================================
   Subsidy block (S5)
   ============================================================ */
.subsidy-block {
  background: var(--color-bg-brand-light);
  border-radius: var(--radius_section);
  padding: var(--spacing_2xl);
  margin-top: var(--spacing_2xl);
}
@media (min-width: 768px) {
  .subsidy-block { padding: var(--spacing_3xl); }
}
.subsidy-block h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_md);
  line-height: var(--line-height-sm);
}
.subsidy-block p { font-size: var(--font-size-sm); margin: 0 0 var(--spacing_md); }
.subsidy-note {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  margin-top: var(--spacing_md);
  line-height: var(--line-height-md);
}

/* ============================================================
   Case (S6)
   ============================================================ */
.case-empty {
  padding: var(--spacing_3xl) var(--spacing_xl);
  border: 1px dashed var(--smoke-40);
  border-radius: var(--radius_section);
  background: #FFFFFF;
  color: var(--neutral-70);
  font-size: var(--font-size-sm);
}
.case-card {
  padding: var(--spacing_xl);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
  background: #FFFFFF;
}
.case-grid {
  display: grid; gap: var(--spacing_lg);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .case-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Case cards — 6-case grid */
.case-cases {
  display: grid; gap: var(--spacing_lg);
  grid-template-columns: 1fr;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 768px) {
  .case-cases { grid-template-columns: repeat(2, 1fr); }
}
.case-item {
  display: flex; flex-direction: column;
  padding: var(--spacing_xl);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_section);
  background: #FFFFFF;
  gap: var(--spacing_md);
}
.case-item-num {
  font-family: var(--font-family-mono, monospace);
  font-size: var(--font-size-xs);
  color: var(--brand-60);
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-b);
}
.case-item-action {
  font-size: var(--font-size-md);
  line-height: 1.7;
  color: var(--neutral-90);
  margin: 0;
}
.case-item-arrow {
  color: var(--brand-50);
  font-size: var(--font-size-lg);
  line-height: 1;
  font-weight: var(--font-weight-b);
}
.case-item-result {
  padding: var(--spacing_md) var(--spacing_lg);
  background: var(--brand-10);
  border-left: 3px solid var(--brand-70);
  border-radius: 4px;
  font-weight: var(--font-weight-b);
  color: var(--brand-80);
  line-height: 1.7;
  margin: 0;
}
.case-item-result .metric {
  color: var(--accent-amber);
  font-weight: var(--font-weight-b);
}
.case-item-meta {
  font-size: var(--font-size-xs);
  color: var(--neutral-70);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item {
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--spacing_lg) 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-border-subtle); }
.faq-q {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-b);
  line-height: var(--line-height-sm);
  margin: 0 0 var(--spacing_sm);
  color: var(--smoke-80);
}
.faq-a {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-lg);
  margin: 0;
  color: var(--color-text-primary);
}

/* ============================================================
   Company info (S8)
   ============================================================ */
.company-info {
  display: grid; gap: var(--spacing_lg);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .company-info { grid-template-columns: 200px 1fr; gap: var(--spacing_2xl); align-items: start; }
}
.owner-photo {
  width: 160px; height: 160px;
  background: var(--neutral-10);
  border-radius: var(--radius_full);
  display: flex; align-items: center; justify-content: center;
  color: var(--neutral-70);
  font-family: var(--font-family-en);
  font-size: var(--font-size-2s);
  letter-spacing: var(--letter-spacing-md);
}

/* ============================================================
   Form
   ============================================================ */
.form {
  display: grid; gap: var(--spacing_lg);
}
.form-field { display: flex; flex-direction: column; gap: var(--spacing_xs); }
.form-field label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-b);
  color: var(--smoke-80);
  letter-spacing: var(--letter-spacing-md);
}
.form-field .req {
  font-family: var(--font-family-en);
  font-size: var(--font-size-2s);
  color: var(--accent-amber);
  margin-left: var(--spacing_xs);
}
.form-field .opt {
  font-family: var(--font-family-en);
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  margin-left: var(--spacing_sm);
  font-weight: var(--font-weight-m);
}
.form-field input,
.form-field textarea {
  min-height: 56px;
  padding: 0 var(--spacing_md);
  font-size: var(--font-size-sm);
  font-family: inherit;
  background: var(--neutral-5);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius_md);
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-md);
}
.form-field textarea {
  min-height: 120px;
  padding: var(--spacing_md);
  line-height: var(--line-height-md);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--brand-70);
  outline-offset: 1px;
  background: #FFFFFF;
}
/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  margin: var(--spacing_sm) 0 0;
  line-height: var(--line-height-md);
}
.section--bg-brand-dark .form-field label { color: #FFFFFF; }
.section--bg-brand-dark .form-field .opt { color: var(--brand-30); }
.section--bg-brand-dark .form-note { color: var(--brand-20); }
.section--bg-brand-dark .form-field input,
.section--bg-brand-dark .form-field textarea { background: #FFFFFF; }

.form-thanks {
  display: none;
  padding: var(--spacing_2xl);
  background: #FFFFFF;
  border-radius: var(--radius_section);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-primary);
}
.form-thanks.is-visible { display: block; }
.form-thanks h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-b);
  margin: 0 0 var(--spacing_md);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  padding: var(--spacing_md) 0;
  border-bottom: 1px solid var(--color-border-subtle);
  background: #FFFFFF;
}
.breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: var(--spacing_xs);
}
.breadcrumb li:not(:last-child)::after {
  content: "／"; margin-left: var(--spacing_xs); color: var(--neutral-30);
}
.breadcrumb a { color: var(--brand-70); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--spacing_5xl);
  padding-bottom: var(--spacing_2xl);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-lg);
  color: var(--color-text-primary);
}
.footer-grid {
  display: grid; gap: var(--spacing_2xl);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--spacing_3xl); }
}
.footer-brand .site-logo { font-size: var(--font-size-lg); }
.footer-nap {
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  margin-top: var(--spacing_md);
  line-height: var(--line-height-md);
}
.footer-nap .nap-tel {
  font-family: var(--font-family-en);
  color: var(--brand-80);
  font-weight: var(--font-weight-b);
}
.footer-col h4 {
  font-size: var(--font-size-2s);
  font-weight: var(--font-weight-b);
  letter-spacing: var(--letter-spacing-lg);
  margin: 0 0 var(--spacing_md);
  color: var(--neutral-70);
  text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--spacing_sm); }
.footer-col a { color: var(--color-text-primary); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: var(--spacing_2xl);
  padding-top: var(--spacing_lg);
  border-top: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-2s);
  color: var(--neutral-70);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--spacing_md);
}

/* ============================================================
   Utilities
   ============================================================ */
.text-note { font-size: var(--font-size-2s); color: var(--neutral-70); line-height: var(--line-height-md); }
.text-lead { font-size: var(--font-size-md); line-height: var(--line-height-lg); }
.mt-lg { margin-top: var(--spacing_lg); }
.mt-xl { margin-top: var(--spacing_xl); }
.mt-2xl { margin-top: var(--spacing_2xl); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-70); color: #FFFFFF; padding: var(--spacing_sm) var(--spacing_md);
  z-index: 100;
}
.skip-link:focus { left: var(--spacing_md); top: var(--spacing_md); }
