:root {
  /* ─── パレット ─── */
  --green-deep:   #192e24;   /* 最暗部 */
  --green-dark:   #1f3a2d;   /* ベースグリーン */
  --green-mid:    #2d5240;   /* ミッドグリーン */
  --green-muted:  #3e6b55;   /* 明るめグリーン */
  --green-soft:   #5a8a6f;   /* アクセントグリーン */
  --beige-warm:   #f5f0e6;   /* メインベージュ */
  --beige-light:  #faf7f2;   /* 明るいベージュ */
  --beige-mid:    #e8e0d0;   /* ミッドベージュ */
  --beige-dark:   #c9bfa8;   /* ダークベージュ */
  --cream:        #fffdf8;   /* 白に近いクリーム */
  --sage:         #8aab96;   /* セージグリーン（サブカラー） */
  --gold:         #b5945a;   /* ゴールドアクセント */
  --gold-light:   #d4b07a;
  --text-dark:    #1a2218;
  --text-mid:     #3d4e3a;
  --text-muted:   #6b7d67;
  --danger:       #8b3a2a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--beige-warm);
  color: var(--text-dark);
  line-height: 1.85;
  font-weight: 300;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NOISE TEXTURE OVERLAY
══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ══════════════════════════════════════
   STICKY NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(25, 46, 36, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 171, 150, 0.2);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(25,46,36,0.35);
}
.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-brand-en {
  font-family: 'DM Serif Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
}
.nav-brand-ja {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--beige-warm);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,240,230,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding: 0.3rem 0;
}
.nav-link:hover { color: var(--sage); }
.nav-cta-btn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
}
.nav-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  margin-top: 52px;
  background: var(--green-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 木目・和紙テクスチャ風ライン */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      170deg,
      transparent 0px,
      transparent 60px,
      rgba(138,171,150,0.04) 60px,
      rgba(138,171,150,0.04) 61px
    ),
    repeating-linear-gradient(
      80deg,
      transparent 0px,
      transparent 120px,
      rgba(138,171,150,0.025) 120px,
      rgba(138,171,150,0.025) 121px
    );
}

/* 右側の大きな斜めブロック */
.hero-shape {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--green-deep) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.6;
}

/* 葉脈のような装飾線 */
.hero-ornament {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 280px;
  height: 280px;
  opacity: 0.07;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--sage);
}
.hero-eyebrow-text {
  font-family: 'DM Serif Display', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
}

.hero-h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--beige-warm);
  line-height: 1.45;
  margin-bottom: 1.75rem;
  letter-spacing: 0.01em;
}
.hero-h1 .accent {
  color: var(--gold-light);
  display: inline-block;
  position: relative;
}
.hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-sub {
  font-size: 0.92rem;
  color: rgba(245,240,230,0.7);
  max-width: 560px;
  line-height: 2.1;
  margin-bottom: 1.25rem;
}

.hero-note {
  font-size: 0.83rem;
  color: rgba(245,240,230,0.45);
  max-width: 500px;
  line-height: 2;
  margin-bottom: 2.5rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(138,171,150,0.2);
  border-left: 3px solid var(--sage);
  background: rgba(138,171,150,0.05);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
}
.badge {
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.8rem;
  border-radius: 1px;
  border: 1px solid rgba(138,171,150,0.4);
  color: var(--sage);
  background: rgba(138,171,150,0.08);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-gold {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 1rem 2.25rem;
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-gold:hover::after { background: rgba(255,255,255,0.12); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(181,148,90,0.35); }

.btn-outline-light {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.75rem;
  background: transparent;
  color: rgba(245,240,230,0.8);
  border: 1px solid rgba(245,240,230,0.25);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-outline-light:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* 下部波形 */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.section {
  padding: 6rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sec-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.sec-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.sec-eyebrow-text {
  font-family: 'DM Serif Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.sec-h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.sec-lead {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 2.1;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* light variant */
.sec-eyebrow-text.light { color: var(--sage); }
.sec-eyebrow-line.light { background: var(--sage); }
.sec-h2.light { color: var(--beige-warm); }
.sec-lead.light { color: rgba(245,240,230,0.65); }

/* ══════════════════════════════════════
   PAIN SECTION
══════════════════════════════════════ */
.pain-section {
  background: var(--cream);
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.pain-card {
  background: var(--beige-warm);
  border: 1px solid var(--beige-mid);
  border-left: 4px solid var(--green-soft);
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover {
  box-shadow: 0 4px 20px rgba(45,82,64,0.1);
  transform: translateY(-2px);
}
.pain-q {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--green-soft);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.pain-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}
.pain-close {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  padding: 1.25rem 1.5rem;
  background: var(--beige-mid);
  border-left: 4px solid var(--gold);
  display: inline-block;
}

/* ══════════════════════════════════════
   DIAGNOSIS SECTION
══════════════════════════════════════ */
.diag-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.diag-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(90,138,111,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.diag-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.diag-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 3rem;
  background: rgba(138,171,150,0.12);
}
.diag-box {
  background: rgba(25,46,36,0.7);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(4px);
}
.diag-box-label {
  font-family: 'DM Serif Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.diag-box-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--sage);
}
.diag-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diag-list li {
  font-size: 0.87rem;
  color: rgba(245,240,230,0.8);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(138,171,150,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.65;
}
.diag-list li::before {
  content: '–';
  color: var(--sage);
  flex-shrink: 0;
}
.diag-list li:last-child { border-bottom: none; }
.diag-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════
   STRENGTH SECTION
══════════════════════════════════════ */
.strength-section {
  background: var(--beige-warm);
}
.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.strength-card {
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-soft), var(--sage));
}
.strength-card:hover {
  box-shadow: 0 8px 32px rgba(31,58,45,0.1);
}
.strength-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--beige-mid);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}
.strength-h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 280px;
}
.strength-body {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 2;
}
.strength-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.strength-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  background: var(--green-dark);
  color: var(--sage);
  border-radius: 1px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   SERVICE SECTION
══════════════════════════════════════ */
.service-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.service-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(62,107,85,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(31,58,45,0.7);
  border: 1px solid rgba(138,171,150,0.15);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(138,171,150,0.35);
  background: rgba(45,82,64,0.7);
}
.service-card:hover::after { opacity: 1; }
.service-h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--beige-warm);
  margin-bottom: 0.75rem;
}
.service-body {
  font-size: 0.84rem;
  color: rgba(245,240,230,0.55);
  line-height: 2;
}

/* ══════════════════════════════════════
   RESULTS
══════════════════════════════════════ */
.result-section {
  background: var(--beige-light);
}
.result-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.result-item {
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  border-left: 3px solid var(--green-soft);
  padding: 1.1rem 1.5rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.result-item::before {
  content: '▸';
  color: var(--green-soft);
  flex-shrink: 0;
  margin-top: 1px;
}
.result-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  border-left: 2px solid var(--beige-dark);
  line-height: 2;
}

/* ══════════════════════════════════════
   FLOW SECTION
══════════════════════════════════════ */
.flow-section {
  background: var(--cream);
}
.flow-steps {
  display: flex;
  flex-direction: column;
}
.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr;
}
.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.flow-circle span {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--gold-light);
}
.flow-line {
  width: 1px;
  flex-grow: 1;
  background: var(--beige-mid);
  margin: 0 auto;
}
.flow-step:last-child .flow-line { display: none; }
.flow-body {
  padding: 0.25rem 0 2.75rem 1.5rem;
}
.flow-h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.flow-p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  background: var(--beige-warm);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--beige-mid);
  border: 1px solid var(--beige-mid);
}
.faq-item { background: var(--cream); }
details summary {
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  user-select: none;
  transition: background 0.2s;
}
details summary:hover { background: var(--beige-warm); }
details summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--green-soft);
  flex-shrink: 0;
  line-height: 1.5;
}
.faq-q-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  flex-grow: 1;
  line-height: 1.6;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 2px;
  transition: transform 0.3s;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
details[open] .faq-chevron { transform: rotate(45deg); }
.faq-ans {
  padding: 0 2rem 1.75rem 4.25rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 2;
  border-top: 1px solid var(--beige-mid);
  padding-top: 1.1rem;
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(90,138,111,0.12) 0%, transparent 65%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(138,171,150,0.03) 40px,
      rgba(138,171,150,0.03) 41px
    );
  pointer-events: none;
}
.final-cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 18vw, 14rem);
  color: rgba(138,171,150,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.08em;
  user-select: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--beige-warm);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.final-cta-body {
  font-size: 0.9rem;
  color: rgba(245,240,230,0.65);
  line-height: 2.1;
  margin-bottom: 1.25rem;
}
.final-cta-voices {
  font-size: 0.83rem;
  color: rgba(245,240,230,0.4);
  line-height: 2.3;
  margin-bottom: 2.75rem;
}
.final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-outline-green {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 1rem 1.75rem;
  background: transparent;
  color: rgba(245,240,230,0.75);
  border: 1px solid rgba(245,240,230,0.2);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}
.btn-outline-green:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* ══════════════════════════════════════
   FORM
══════════════════════════════════════ */
.form-section {
  background: var(--beige-light);
  padding: 6rem 2rem;
}
.form-section .section-inner { max-width: 1100px; margin: 0 auto; }
.form-wrap {
  background: var(--cream);
  border-top: 4px solid var(--green-dark);
  padding: 3rem 3rem;
  max-width: 740px;
  box-shadow: 0 4px 40px rgba(31,58,45,0.07);
}
.form-row { margin-bottom: 1.5rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.req-badge {
  font-size: 0.62rem;
  background: var(--danger);
  color: #fff;
  padding: 0.1rem 0.35rem;
  margin-left: 0.4rem;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 1px;
  text-transform: none;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--beige-mid);
  border-radius: 2px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--beige-warm);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green-soft);
  box-shadow: 0 0 0 3px rgba(90,138,111,0.1);
  background: var(--cream);
}
.form-textarea { height: 150px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1.15rem;
  background: var(--green-dark);
  color: var(--gold-light);
  border: none;
  font-family: 'Shippori Mincho', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31,58,45,0.25);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ハニーポット（ボット対策・非表示） */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* フォームエラー表示 */
.form-error-box {
  background: rgba(139,58,42,0.15);
  border: 1px solid rgba(139,58,42,0.4);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  color: #f5a898;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.form-error-box ul {
  margin: 0.5rem 0 0 1.25rem;
  padding: 0;
}

/* フォーム送信完了表示 */
.form-success-box {
  background: rgba(90,138,111,0.15);
  border: 1px solid rgba(90,138,111,0.4);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  color: #a8d4b8;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   COMPANY
══════════════════════════════════════ */
.company-section {
  background: var(--green-deep);
  padding: 5rem 2rem;
}
.company-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.company-label {
  font-family: 'DM Serif Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid rgba(138,171,150,0.1); }
.company-table td {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  vertical-align: top;
}
.company-table td:first-child {
  color: rgba(245,240,230,0.4);
  white-space: nowrap;
  padding-right: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.company-table td:last-child { color: rgba(245,240,230,0.85); }
.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.qual-item {
  font-size: 0.87rem;
  color: rgba(245,240,230,0.8);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.65;
}
.qual-item::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(138,171,150,0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(245,240,230,0.25);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE — BREAKPOINTS
   sp  : ～ 479px   スマートフォン縦
   tab : 480 ～ 768px タブレット縦・スマホ横
   pc  : 769px ～    デスクトップ
══════════════════════════════════════ */

/* ─── タブレット縦 + スマートフォン横 (～ 768px) ─── */
@media (max-width: 768px) {
  .nav { padding: 0.6rem 1.1rem; }
  .nav-link { display: none; }
  .hero-content { padding: 3.5rem 1.25rem 4rem; }
  .hero-note, .hero-sub { max-width: 100%; }
  .section { padding: 4rem 1.25rem; }
  .diag-cols { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }
  .company-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-wrap { padding: 2rem 1.25rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .final-cta { padding: 5rem 1.25rem; }
}

/* ─── タブレット専用 (480px ～ 768px) ─── */
@media (min-width: 480px) and (max-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-3qual { grid-template-columns: repeat(2, 1fr); }
  .legal-target-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── スマートフォン縦 (～ 479px) ─── */
@media (max-width: 479px) {
  /* セクション余白縮小 */
  .section,
  .legal-section,
  .compare-section,
  .voice-section,
  .diff-section,
  .form-section,
  .company-section { padding: 3rem 1rem; }
  .final-cta { padding: 4rem 1rem; }

  /* HERO */
  .hero-h1 { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { width: 100%; text-align: center; }

  /* ボタン: タップターゲット 48px 確保・全幅 */
  .btn-gold,
  .btn-outline-light,
  .btn-outline-green {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  /* DIAG CTA */
  .diag-ctas { flex-direction: column; }
  .diag-ctas a { width: 100%; text-align: center; }

  /* FINAL CTA */
  .final-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas a,
  .final-ctas button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* FORM: iOS Safari ズーム防止（16px未満でズーム発生） */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 0.9rem 1rem;
    min-height: 48px;
  }
  .form-textarea { min-height: 120px; height: 140px; }
  .form-submit {
    font-size: 1rem;
    padding: 1.3rem;
    min-height: 56px;
    letter-spacing: 0.06em;
  }
  .form-label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  /* NAV */
  .nav-cta-btn { padding: 0.5rem 0.9rem; font-size: 0.72rem; }

  /* GRIDS */
  .pain-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  /* FAQ */
  details summary { padding: 1.2rem 1rem; gap: 0.75rem; }
  .faq-ans { padding: 0 1rem 1.5rem 2.75rem; padding-top: 1rem; }

  /* COMPANY */
  .company-table td { font-size: 0.8rem; }
  .company-table td:first-child { padding-right: 1rem; white-space: normal; }
}

/* ══════════════════════════════════════
   v2 追加スタイル
══════════════════════════════════════ */

/* ── HERO FACT BANNER ── */
.hero-fact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.4rem;
  background: rgba(139, 58, 42, 0.18);
  border: 1px solid rgba(139, 58, 42, 0.35);
  border-left: 4px solid var(--danger);
  max-width: 600px;
}
.hero-fact-item {
  font-size: 0.8rem;
  color: rgba(245,240,230,0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5;
}
.hero-fact-item .fact-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-fact-item a {
  color: rgba(245,240,230,0.45);
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.3rem;
}
.hero-fact-item a:hover { color: var(--sage); }

/* ── LEGAL SECTION ── */
.legal-section {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
}
.legal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, rgba(139,58,42,0.08) 0%, transparent 70%),
    repeating-linear-gradient(135deg, transparent, transparent 50px, rgba(138,171,150,0.02) 50px, rgba(138,171,150,0.02) 51px);
  pointer-events: none;
}
.legal-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.legal-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.legal-target-card {
  background: rgba(31,58,45,0.7);
  border: 1px solid rgba(138,171,150,0.15);
  border-top: 3px solid var(--gold);
  padding: 1.6rem 1.5rem;
}
.legal-target-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.legal-target-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--beige-warm);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}
.legal-target-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.legal-target-unit {
  font-size: 0.75rem;
  color: rgba(245,240,230,0.5);
  margin-left: 0.2rem;
}

/* 罰則テーブル */
.legal-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(138,171,150,0.12);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.legal-table th {
  background: rgba(31,58,45,0.9);
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-align: left;
  border-bottom: 2px solid rgba(138,171,150,0.2);
  white-space: nowrap;
}
.legal-table td {
  padding: 0.9rem 1.25rem;
  font-size: 0.84rem;
  color: rgba(245,240,230,0.8);
  vertical-align: top;
  border-bottom: 1px solid rgba(138,171,150,0.08);
  line-height: 1.7;
  background: rgba(25,46,36,0.6);
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table .penalty-cell {
  color: #e8a090;
  font-weight: 700;
  white-space: nowrap;
}
.legal-table .source-link {
  font-size: 0.68rem;
  color: rgba(245,240,230,0.35);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.legal-table .source-link:hover { color: var(--sage); }

/* 出典リスト */
.legal-source-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(31,58,45,0.5);
  border: 1px solid rgba(138,171,150,0.1);
  border-left: 3px solid rgba(138,171,150,0.3);
}
.legal-source-list li {
  font-size: 0.75rem;
  color: rgba(245,240,230,0.45);
  line-height: 1.6;
}
.legal-source-list a {
  color: rgba(245,240,230,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-source-list a:hover { color: var(--sage); }
.legal-disclaimer {
  font-size: 0.78rem;
  color: rgba(245,240,230,0.35);
  line-height: 2;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(138,171,150,0.15);
}

/* ── COMPARISON SECTION ── */
.compare-section {
  background: var(--beige-light);
  padding: 6rem 2rem;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--beige-mid);
  margin-bottom: 2.5rem;
}
.compare-col {
  padding: 2.25rem 2rem;
}
.compare-col--bad {
  background: #fff8f7;
  border-top: 4px solid var(--danger);
}
.compare-col--good {
  background: var(--cream);
  border-top: 4px solid var(--green-soft);
}
.compare-col-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.compare-col--bad .compare-col-title { color: var(--danger); }
.compare-col--good .compare-col-title { color: var(--green-dark); }
.compare-col-title .col-icon { font-size: 1.2rem; }
.compare-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--beige-mid);
  font-size: 0.86rem;
  line-height: 1.7;
}
.compare-item:last-child { border-bottom: none; }
.compare-col--bad .compare-item { color: #5a2a22; }
.compare-col--good .compare-item { color: var(--text-mid); }
.compare-item::before {
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 2px;
}
.compare-col--bad .compare-item::before { content: '✕'; color: var(--danger); }
.compare-col--good .compare-item::before { content: '✓'; color: var(--green-soft); font-weight: 700; }

/* ── VOICE SECTION ── */
.voice-section {
  background: var(--beige-warm);
  padding: 6rem 2rem;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.voice-card {
  background: var(--cream);
  border: 1px solid var(--beige-mid);
  padding: 2rem 1.75rem;
  position: relative;
}
.voice-card::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--beige-mid);
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  line-height: 1;
}
.voice-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
}
.voice-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-soft);
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: rgba(90,138,111,0.08);
  border: 1px solid rgba(90,138,111,0.2);
  display: inline-block;
}
.voice-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 2px solid var(--beige-dark);
  line-height: 2;
}

/* ── 3資格差別化セクション ── */
.diff-section {
  background: var(--cream);
  padding: 6rem 2rem;
}
.diff-3qual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
}
.diff-3qual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige-mid), transparent);
  pointer-events: none;
}
.diff-qual-card {
  background: var(--green-dark);
  color: var(--beige-warm);
  padding: 2rem 1.75rem;
  position: relative;
  text-align: center;
}
.diff-qual-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.diff-qual-icon {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  display: block;
}
.diff-qual-role {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.diff-qual-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.diff-qual-desc {
  font-size: 0.79rem;
  color: rgba(245,240,230,0.6);
  line-height: 1.85;
}
.diff-rare-box {
  background: var(--beige-warm);
  border: 1px solid var(--beige-mid);
  border-left: 4px solid var(--gold);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.diff-rare-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}
.diff-rare-body {}
.diff-rare-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.diff-rare-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 2;
}
.diff-rare-text strong { color: var(--text-dark); }

/* ── CAPACITY NOTICE ── */
.capacity-notice {
  background: rgba(181,148,90,0.1);
  border: 1px solid rgba(181,148,90,0.35);
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.75rem;
  margin-bottom: 2rem;
  max-width: 740px;
}
.capacity-notice-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.capacity-notice-body {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ── RESPONSIVE v2 (〜 768px) ── */
@media (max-width: 768px) {
  .legal-target-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .hero-fact-bar { flex-direction: column; gap: 0.6rem; }
  .diff-3qual { grid-template-columns: 1fr; }
  .diff-rare-box { flex-direction: column; gap: 0.75rem; }
}
/* ── RESPONSIVE v2 (〜 479px) ── */
@media (max-width: 479px) {
  .legal-table-wrap { font-size: 0.78rem; }
  .legal-target-grid { grid-template-columns: 1fr; }
}
