/* ============================================
   Kubota Glass® Subscription LP — Production CSS
   Based on DESIGN.md specifications
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Backgrounds */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f5f5f7;
  --deep-black: #0a0a0a;
  --soft-black: #1a1a1a;

  /* Text */
  --heading-dark: #0d0d0d;
  --body-dark: #333333;
  --muted: #666666;
  --subtle: #999999;
  --white-muted: rgba(255,255,255,0.7);

  /* Brand Accent — use sparingly, under 5% surface */
  --teal: #0D7C66;
  --teal-light: #10A37F;
  --teal-pale: #E6F5F0;
  --teal-dark: #095C4B;

  /* Campaign */
  --gold: #C8A84E;
  --gold-light: #FFF8E7;
  --gold-dark: #8B6914;

  /* Borders & Shadows */
  --border-light: #e5e7eb;
  --border-dark: rgba(255,255,255,0.1);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.08), 0 12px 28px rgba(0,0,0,0.1);
  --shadow-cta: 0 4px 14px rgba(13,124,102,0.3);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: "Noto Sans JP", "Inter", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--body-dark);
  line-height: 1.8;
  font-size: 15px;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ---------- Container ---------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Fade In ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.justify-center { justify-content: center; }

/* ---------- Typography ---------- */

/* Section Label (EN) */
.section-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-label.on-dark { color: var(--teal-light); }

/* Section Heading — 2.4x body ratio */
.section-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--heading-dark);
  margin-bottom: 24px;
}
.section-heading.on-dark { color: var(--white); }

/* Sub Heading */
.section-subheading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: var(--heading-dark);
  margin-bottom: 16px;
}
.section-subheading.on-dark { color: var(--white); }

/* Section Heading Sub (日本語サブ見出し) */
.section-heading-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-top: -16px;
  margin-bottom: 24px;
}

/* Body Large (lead) */
.body-large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--body-dark);
}
.body-large.on-dark { color: var(--white-muted); }

/* Body */
.body-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-dark);
}

/* Caption */
.caption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 1em;
  text-indent: -1em;
}

/* Number (always Inter) */
.num {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 6px;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 20px rgba(13,124,102,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}
.btn-dark {
  background: var(--white);
  color: var(--deep-black);
}
.btn-dark:hover { background: #f0f0f0; }
.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Ghost Link */
.ghost-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.ghost-link:hover {
  color: var(--teal-light);
  text-decoration: underline;
}

/* ---------- Image Utilities ---------- */
.img-rounded { border-radius: 12px; }
.img-rounded-lg {
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
.shadow { box-shadow: var(--shadow-card); }

/* ---------- Section Backgrounds ---------- */
.section-light {
  background: var(--white);
  padding: 100px 0;
}
.section-offwhite {
  background: var(--off-white);
  padding: 100px 0;
}
.section-gray {
  background: var(--light-gray);
  padding: 100px 0;
}
.section-dark {
  background: var(--deep-black);
  padding: 100px 0;
  color: var(--white);
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.two-col--align-center { align-items: center; }
.two-col--safety { grid-template-columns: 2fr 1fr; }
.two-col--dev { grid-template-columns: 1fr 1.2fr; align-items: center; }

/* ---------- Photo Row ---------- */
.photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.photo-row img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 24px;
  width: auto;
}
.nav-cta { display: flex; gap: 8px; }
.nav-cta .btn { padding: 8px 20px; font-size: 13px; }


/* ============================================
   CAMPAIGN BANNER (sticky top)
   ============================================ */
.campaign-banner {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #D64A2E 0%, #E9803A 55%, #F0A033 100%);
  color: var(--white);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(214, 74, 46, 0.25);
  border-bottom: 2px solid #B83A1F;
}
.campaign-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  text-decoration: none;
}
.campaign-banner-text,
.campaign-banner-text-sp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.campaign-banner-text-sp { display: none; }
.campaign-banner-link {
  display: inline-block;
  color: #D64A2E;
  background: var(--white);
  margin-left: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.campaign-banner-inner:hover .campaign-banner-link {
  background: #FFF7E6;
}

/* ============================================
   HERO (FV) — Dark bg
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  background: var(--deep-black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--deep-black) 0%, transparent 100%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1080px;
  margin: 0 auto;
  padding: 180px 40px 100px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text {
  max-width: 560px;
}
.hero-text .section-label {
  color: var(--teal-light);
}
.hero-catchcopy {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-catchcopy em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-catchcopy-accent {
  font-size: 1.15em;
  letter-spacing: -2px;
}
.hero-program-box {
  position: absolute;
  right: -40px;
  bottom: 100px;
  z-index: 4;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 0 32px 24px;
  text-align: center;
  max-width: 400px;
  overflow: hidden;
}
.hero-program-line1 {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  background: var(--gold);
  letter-spacing: 1px;
  margin: 0 -32px 16px;
  padding: 10px 16px;
}
.hero-program-line2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.hero-campaign-period {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white-muted);
  margin-bottom: 40;
}
.hero-sub-highlight {
  color: var(--teal-light);
  font-size: 1.3em;
  font-weight: 700;
}
.hero-cta { margin-top: 8px; }
.btn-hero-main {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.btn-group-sub {
  display: flex;
  gap: 12px;
}
.btn-group-sub .btn {
  flex: 1;
  text-align: center;
}
.hero-image-sp { display: none; }

/* ============================================
   MYOPIA — Eye Description
   ============================================ */
.eye-desc {
  font-size: 14px;
  line-height: 1.8;
}
.eye-desc dt { font-weight: 600; }
.eye-desc dd { margin-left: 0; margin-bottom: 12px; color: var(--muted); }
.eye-desc-normal { color: var(--teal); }
.eye-desc-myopic { color: #c0392b; }

/* ============================================
   WHAT IS IT — Layout & Images
   ============================================ */
.two-col--align-start { align-items: flex-start; }

/* What is it — Sub Heading */
.whatisit-sub-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
  padding: 20px 28px;
  border-left: none;
  background: linear-gradient(135deg, var(--soft-black) 0%, #2a2a2a 100%);
  border-radius: 8px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.whatisit-sub-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--teal-light), var(--teal-dark));
}
.whatisit-sub-heading::after {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(13,124,102,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* What is it — Lead Text (大きめ) */
.whatisit-lead-text {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--heading-dark);
}
/* PPT準拠: 本文テキスト（差し色入り） */
.whatisit-detail-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--body-dark);
}
.accent-brand {
  font-size: 21px;
  font-weight: 700;
  color: var(--teal);
}
.accent-keyword {
  font-size: 19px;
  font-weight: 700;
  color: var(--teal);
}
.color-teal {
  color: var(--teal);
}
.whatisit-bottom-catch {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--heading-dark);
  letter-spacing: 1px;
}

/* ASMD: 左グループ(2fr) + 右グループ(1fr) */
.whatisit-asmd-groups {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.whatisit-video-wrap {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.whatisit-asmd-group-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.whatisit-asmd-group-left img,
.whatisit-asmd-group-right img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
.whatisit-asmd-group-left img.img-contain {
  object-fit: contain;
  background: #4a4a4a;
}
.whatisit-block-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}
.whatisit-sub-images {
  display: flex;
  gap: 16px;
  align-items: center;
}
.whatisit-sub-images img {
  border-radius: 8px;
  flex: 1;
  max-height: 160px;
  object-fit: contain;
}
.whatisit-sun-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

/* Wavelength Compare */
.wavelength-compare {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border-light);
}
.wavelength-title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-dark);
  margin-bottom: 32px;
  line-height: 1.6;
  position: relative;
  padding-bottom: 20px;
}
.wavelength-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: 16px auto 0;
  border-radius: 2px;
}
.wavelength-iso {
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 16px;
}
.wavelength-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.wavelength-chart {
  display: flex;
  flex-direction: column;
}
.wavelength-chart-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-dark);
  text-align: center;
  margin-bottom: 12px;
}
.wavelength-chart picture {
  display: flex;
  align-items: center;
  flex: 1;
}
.wavelength-chart img {
  width: 100%;
  height: auto;
}

/* ============================================
   WHAT IS IT — Highlight Box
   ============================================ */
.highlight-box {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid var(--teal);
  margin-bottom: 24px;
}
.highlight-lead {
  font-size: 15px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.highlight-tagline {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-dark);
}
.accent-num {
  font-size: 28px;
  color: var(--teal);
}

/* ============================================
   SAFETY — Badges & Check List
   ============================================ */
.badge-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.badge-pill {
  background: var(--teal-pale);
  color: var(--teal-dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid var(--teal);
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.7;
}
.check-list li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   HOW TO USE — Step Cards
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.step-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-gray);
}
.step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-card-body {
  padding: 28px 24px;
}

/* Step number: "STEP" small, number large */
.step-num-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.step-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}
.step-number {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--teal);
  line-height: 1;
}
.step-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-dark);
  margin-bottom: 8px;
  margin-top: -8px;
}
.step-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Usage Note */
.usage-note {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 40px;
  border: 1px solid var(--border-light);
  text-align: left;
}
.usage-note p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-dark);
}

/* ============================================
   TECHNOLOGY
   ============================================ */
.tech-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--teal-light);
  margin-bottom: 24px;
}

/* Video embed */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft-black);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   EVIDENCE
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--teal-pale);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(13,124,102,0.15);
}
.stat-num {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat-unit {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
}
.stat-card p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}
.evidence-rank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* ============================================
   VOICE OF CUSTOMER — Bento Grid
   ============================================ */
.voc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}
.voc-card--featured {
  grid-row: span 2;
}
.voc-featured-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}
.voc-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voc-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.voc-card:hover { box-shadow: var(--shadow-hover); }
.voc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.voc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
}
.voc-meta { font-size: 13px; color: var(--muted); }
.voc-meta strong { color: var(--heading-dark); font-size: 15px; display: block; }
.voc-card > p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--body-dark);
}

/* ============================================
   DEVELOPER
   ============================================ */
.dev-profile {
  padding: 24px;
  background: var(--off-white);
  border-radius: 12px;
}
.dev-profile h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.dev-title {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.dev-profile > p:last-child {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body-dark);
}

/* ============================================
   CAMPAIGN — Gold Independent Section
   ============================================ */
.campaign-section {
  background: linear-gradient(135deg, #C8A84E, #E8C95A);
  padding: 80px 0;
  color: #3d2f00;
}
.campaign-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.campaign-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 48px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.campaign-section-sub {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  background: #3d2f00;
  letter-spacing: 2px;
  margin: -40px -48px 28px;
  padding: 18px 24px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  width: calc(100% + 96px);
}
.campaign-title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}
.campaign-starter {
  font-size: 24px;
  font-weight: 700;
  color: #3d2f00;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
.campaign-section-title {
  font-family: "Inter", sans-serif;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  color: #3d2f00;
}
.campaign-target-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #3d2f00;
  border: 2px solid #C8A84E;
  box-shadow: 0 4px 16px rgba(61, 47, 0, 0.45);
  font-size: 11px;
  color: #ffffff;
  line-height: 1.4;
  z-index: 1;
}
.campaign-target-badge strong {
  font-size: 14px;
  font-weight: 800;
  color: #ffe08e;
}
.campaign-section-title-sub {
  font-size: 32px;
  font-weight: 800;
  color: #3d2f00;
  letter-spacing: 3px;
  line-height: 1;
  margin-top: 4px;
}
.campaign-period-text {
  margin-top: 16px;
  font-size: 18px;
  color: #3d2f00;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.campaign-catchcopy {
  font-size: 22px;
  font-weight: 700;
  color: #3d2f00;
  line-height: 1.7;
}
.campaign-num-lg {
  font-size: 56px;
  color: #3d2f00;
}
.campaign-x {
  font-size: 18px;
  margin: 0 4px;
}
.campaign-brand {
  font-size: 28px;
  font-weight: 800;
}
.campaign-benefits-heading {
  font-size: 20px;
  font-weight: 800;
  color: #3d2f00;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-align: center;
}
.campaign-benefits-heading::before,
.campaign-benefits-heading::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #3d2f00;
  vertical-align: middle;
  margin: 0 14px;
}
.campaign-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 720px;
}
.campaign-benefit-item {
  position: relative;
  background: rgba(255,255,255,0.35);
  border-top: 3px solid #3d2f00;
  border-radius: 0 0 12px 12px;
  padding: 32px 20px 24px;
  text-align: center;
}
.campaign-benefit-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3d2f00;
  color: #ffe08e;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.benefit-num-lg {
  font-size: 48px;
  color: #3d2f00;
  display: block;
  margin-bottom: 6px;
  line-height: 1.1;
}
.campaign-section .benefit-label {
  font-size: 15px;
  font-weight: 700;
  color: #3d2f00;
}
.campaign-section .benefit-detail {
  font-size: 13px;
  color: rgba(61,47,0,0.75);
  margin-top: 6px;
}
.btn-campaign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: #3d2f00;
  color: #ffe08e;
  transition: all 0.3s ease;
}
.btn-campaign:hover {
  background: #241a00;
}
.campaign-notes {
  width: 100%;
  max-width: 720px;
  margin-top: 40px;
  text-align: left;
}
.campaign-notes-details summary {
  font-size: 12px;
  font-weight: 700;
  color: #3d2f00;
  cursor: pointer;
  margin-bottom: 12px;
}
.campaign-notes-body p {
  font-size: 10px;
  color: rgba(61,47,0,0.7);
  line-height: 1.8;
}
.campaign-notes-list {
  font-size: 10px;
  color: rgba(61,47,0,0.7);
  line-height: 1.8;
  list-style: disc;
  padding-left: 1.5em;
  margin: 4px 0 8px;
  margin-bottom: 12px;
}
.campaign-notes-body strong {
  color: #3d2f00;
}
.campaign-notes-body a {
  color: #3d2f00;
  text-decoration: underline;
}
.campaign-highlight-num {
  color: #cc0000;
  font-size: 14px;
  font-weight: 800;
}

/* ============================================
   PRICING — 2-Column Compare
   ============================================ */
.pricing-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--recommended {
  border: 2px solid var(--teal-light);
}
.pricing-card--purchase {
  border: 2px solid #E97132;
  margin-top: 64px;
}
.badge-start-circle {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(191, 149, 63, 0.4);
  z-index: 1;
}
.badge-start-date {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #3d2400;
  line-height: 1;
}
.badge-start-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #3d2400;
  letter-spacing: 1px;
}
.recommended-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 10px 32px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-muted);
  padding: 8px 0;
}
.pricing-features li::before {
  content: "\2713";
  color: var(--teal-light);
  font-weight: 700;
  flex-shrink: 0;
}
.btn-full { width: 100%; }
.plan-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 24px;
}
.price-initial {
  font-size: 15px;
  color: var(--white-muted);
}
.price-initial-num {
  font-size: 24px;
  color: var(--white);
}
.price-tax { font-size: 13px; }
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}
.price-label {
  font-size: 15px;
  color: var(--white-muted);
}
.price-label-top {
  font-size: 16px;
  color: var(--white-muted);
  text-align: center;
  margin-bottom: 4px;
}
.price-value {
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}
.price-unit {
  font-size: 18px;
  color: var(--white-muted);
}
.price-total {
  font-size: 14px;
  color: var(--subtle);
  margin-top: 8px;
}
.plan-service-name {
  font-size: 20px;
  font-weight: 700;
  color: #E8C547;
  margin-bottom: 24px;
}
.price-includes {
  font-size: 13px;
  color: var(--white-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  flex-grow: 1;
}
/* サブスクヒーローカード（PC横幅活用） */
.pricing-card--hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding: 48px 40px;
}
.pricing-hero-inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 56px;
  align-items: end;
}
.pricing-hero-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
}
.pricing-hero-left .plan-service-name {
  font-size: 28px;
  margin-bottom: 16px;
}
.pricing-hero-left .price-initial {
  font-size: 16px;
}
.pricing-hero-left .price-initial-num {
  font-size: 28px;
}
.price-total-hero {
  font-size: 14px;
  color: var(--subtle);
  margin-top: 4px;
}
.pricing-hero-left .price-includes {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
}
.pricing-hero-right {
  text-align: center;
  min-width: 360px;
}
.price-label-hero {
  font-size: 16px;
  color: var(--white-muted);
  margin-bottom: 4px;
}
.price-value-hero {
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}
.price-unit-hero {
  font-size: 16px;
  color: var(--white-muted);
  margin-top: 4px;
}
.price-main-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 8px;
}
.price-main-hero .price-tax-included {
  width: 100%;
}
/* 一括購入カード（単体） */
.pricing-card--single {
  max-width: 480px;
  margin: 64px auto 0;
}
.purchase-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #E97132;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 8px 28px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tax-below {
  font-size: 13px;
  color: var(--white-muted);
  margin-top: 0;
}
.pricing-card--purchase .price-includes {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-block;
}
.btn-purchase {
  background: #E97132;
  color: var(--white);
  border: none;
}
.btn-purchase:hover {
  background: #d4652b;
}

/* おすすめの3つのポイント */
.pricing-points {
  max-width: 900px;
  margin: 64px auto 0;
}
.pricing-points-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}
.pricing-points-num {
  font-size: 36px;
  color: var(--teal-light);
}
.pricing-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-point {
  position: relative;
  background: var(--white);
  border: none;
  border-radius: 12px;
  padding: 36px 28px;
  overflow: visible;
}
.pricing-point-number {
  position: absolute;
  top: -20px;
  right: -16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #095C4B, #10A37F, #0D7C66, #14B88A, #095C4B);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(13, 124, 102, 0.4);
  z-index: 1;
}
.pricing-point-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1px;
  line-height: 1;
}
.pricing-point-number .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-point-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.pricing-point p {
  font-size: 14px;
  color: #444444;
  line-height: 1.7;
}
.pricing-start-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.btn-lg {
  padding: 16px 48px;
  font-size: 16px;
}

/* Campaign Badge (shared) */
.campaign-badge-pill {
  display: inline-block;
  background: rgba(61,47,0,0.15);
  color: #3d2f00;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.6;
}
.faq-question::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: "\2212";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-dark);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta .btn-group {
  justify-content: center;
}
.final-cta .btn-group .btn {
  min-width: 240px;
}
.final-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 15px;
  color: var(--white-muted);
  flex-wrap: wrap;
}
.final-plan strong {
  font-size: 20px;
  color: var(--white);
}
.final-plan-divider {
  color: rgba(255,255,255,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep-black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: var(--subtle);
}
.footer-notes {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.footer-notes p {
  font-size: 10px;
  color: var(--subtle);
  line-height: 1.6;
  margin-bottom: 4px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--white-muted);
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ============================================
   RESPONSIVE (SP: <768px)
   ============================================ */
.sp-only { display: none; }
@media screen and (max-width: 768px) {
  .sp-only { display: inline; }

  /* Container */
  .container { padding: 0 5.33vw; }

  /* Nav */
  .nav-cta { display: none; }

  /* Scroll offset for fixed header */
  html { scroll-padding-top: calc(64px + 2.13vw * 2 + 2.93vw * 1.7); }

  /* Campaign banner */
  .campaign-banner { font-size: 3.2vw; padding: 2.4vw 3.73vw; }
  .campaign-banner-inner { gap: 1.6vw; }
  .campaign-banner-text { display: none; }
  .campaign-banner-text-sp { display: inline-flex; }
  .campaign-banner-link { font-size: 2.93vw; margin-left: 1.6vw; padding: 1.07vw 3.2vw; }

  /* Hero (base SP) */
  .hero { min-height: auto; }
  .hero-bg { display: none; }
  .hero-inner { padding: 0 5.33vw 10.67vw; padding-top: calc(64px + 2.13vw * 2 + 2.93vw * 1.7); }
  .hero-sub { color: var(--white-muted); }
  .hero-cta { margin-top: 6.4vw; }
  .hero-image-sp {
    display: block;
    margin: 0 -5.33vw 6.4vw;
  }
  .hero-image-sp img {
    width: 100%;
    height: auto;
  }
  .hero-sub { font-size: 3.73vw; }
  .hero-program-box {
    position: static;
    margin-top: 6.4vw;
    max-width: none;
    border-radius: 2.13vw;
    padding: 0 6.4vw 5.33vw;
  }
  .hero-program-line1 {
    font-size: 4.27vw;
    margin: 0 -6.4vw 3.2vw;
    padding: 2.67vw 4.27vw;
  }
  .hero-program-line2 { font-size: 5.33vw; }

  /* Sections */
  .section-light, .section-offwhite, .section-gray, .section-dark {
    padding: 17.07vw 0;
  }

  /* Typography */
  .section-label { font-size: 3.2vw; }
  .section-heading { font-size: 6.4vw; }
  .section-subheading { font-size: 4.8vw; }
  .body-large { font-size: 4.27vw; }
  .body-text { font-size: 3.73vw; }
  body { font-size: 3.73vw; }

  /* Grids → 1 col */
  .two-col, .two-col--dev {
    grid-template-columns: 1fr;
    gap: 8.53vw;
  }
  .photo-row { gap: 2.67vw; }
  .photo-row img { height: 40vw; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .step-number { font-size: 12.8vw; }
  .step-card-body h3 { font-size: 4.8vw; }
  .step-card-body p { font-size: 3.73vw; }

  /* VOC Bento */
  .voc-bento { grid-template-columns: 1fr; }
  .voc-card--featured { grid-row: span 1; }
  .voc-card > p { font-size: 3.73vw; }
  .voc-meta { font-size: 3.2vw; }
  .voc-meta strong { font-size: 4vw; }

  /* Eye desc */
  .eye-desc { font-size: 3.73vw; }

  /* Buttons */
  .btn { width: 100%; text-align: center; font-size: 3.73vw; }
  .btn-group-sub .btn { padding: 3.73vw 2.67vw; white-space: nowrap; }
  .btn-group { flex-direction: column; }
  .btn-sm { width: auto; }

  /* Safety */
  .badge-pill { font-size: 4vw; padding: 3.2vw 5.33vw; }
  .check-list li { font-size: 3.73vw; }

  /* Evidence */
  .stats-row { gap: 4.27vw; }
  .stat-card { padding: 6.4vw 4vw; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .stat-num { font-size: 9.07vw; white-space: nowrap; }
  .stat-unit { font-size: 4.8vw; }
  .stat-card p { font-size: 3.2vw; }
  .evidence-rank { font-size: 3.47vw; }

  /* Developer */
  .two-col--dev > :first-child { order: 2; }
  .two-col--dev > :last-child { order: 1; }
  .dev-profile h4 { font-size: 5.33vw; }
  .dev-title { font-size: 3.2vw; }
  .dev-profile > p:last-child { font-size: 3.73vw; }

  /* Hero */
  .hero-catchcopy { font-size: 8.53vw; }
  .hero-catchcopy-accent { font-size: 1.1em; }

  /* Campaign Section */
  .campaign-section { padding: 12.8vw 0; }
  .campaign-section-inner { gap: 6.4vw; }
  .campaign-header { padding: 6.4vw 4vw; }
  .campaign-title-block { flex-direction: column; gap: 4.27vw; }
  .campaign-starter { text-align: center; font-size: 5.33vw; }
  .campaign-section-title { font-size: 17.07vw; letter-spacing: -0.53vw; white-space: nowrap; }
  .campaign-section-sub {
    font-size: 5.33vw;
    padding: 4vw 4.27vw;
    margin: -6.4vw -4vw 5.33vw;
    width: calc(100% + 8vw);
  }
  .campaign-section-title-sub { font-size: 7.47vw; letter-spacing: 0.8vw; margin-top: 1.07vw; }
  .campaign-period-text { font-size: 3.73vw; margin-top: 3.73vw; line-height: 1.6; white-space: nowrap; }
  .campaign-target-badge { width: 21.33vw; height: 21.33vw; font-size: 2.4vw; top: -5.33vw; right: -2.67vw; }
  .campaign-target-badge strong { font-size: 2.93vw; }
  .campaign-catchcopy {
    font-size: 4.8vw;
    line-height: 11vw;
    background: #f0e4ca;
    padding: 4.8vw 4vw;
    border-radius: 2.13vw;
    margin-top: 5.33vw;
  }
  .campaign-num-lg { font-size: 9.6vw; line-height: 1; vertical-align: baseline; }
  .campaign-x { font-size: 4vw; line-height: 1; vertical-align: baseline; }
  .campaign-brand { font-size: 5.87vw; line-height: 1; vertical-align: baseline; }
  .campaign-benefits-heading { font-size: 4.8vw; margin-bottom: 5.33vw; letter-spacing: 0.53vw; }
  .campaign-benefits-heading::before,
  .campaign-benefits-heading::after { width: 6.4vw; margin: 0 3.2vw; }
  .campaign-benefits-row { grid-template-columns: 1fr; }
  .campaign-benefit-item { padding: 8vw 5.33vw 6.4vw; }
  .campaign-benefit-badge { width: 8vw; height: 8vw; font-size: 4.27vw; top: -4vw; }
  .benefit-num-lg { font-size: 10.67vw; }
  .campaign-section .benefit-label { font-size: 3.73vw; }
  .campaign-section .benefit-detail { font-size: 3.2vw; }
  .campaign-section .benefit-label { font-size: 3.2vw; }
  .campaign-section .benefit-detail { font-size: 2.93vw; }
  .btn-campaign { width: 100%; white-space: nowrap; font-size: 3.73vw; padding: 4.27vw 5.33vw; }
  .campaign-notes { max-width: none; }
  .campaign-notes-details summary { font-size: 2.93vw; }
  .campaign-notes-body p { font-size: 2.4vw; }
  .campaign-notes-list { font-size: 2.4vw; }
  .campaign-highlight-num { font-size: 3.47vw; }

  /* Pricing */
  .pricing-card--hero { padding: 8.53vw 6.4vw; text-align: center; }
  .pricing-hero-inner { grid-template-columns: 1fr; gap: 6.4vw; }
  .pricing-hero-left { align-items: center; white-space: normal; }
  .pricing-hero-left .plan-service-name { font-size: 5.87vw; }
  .pricing-hero-left .price-initial { font-size: 3.73vw; }
  .pricing-hero-left .price-initial-num { font-size: 6.4vw; }
  .price-total-hero { font-size: 3.47vw; }
  .pricing-hero-left .price-includes { font-size: 3.47vw; }
  .pricing-hero-right { min-width: auto; }
  .price-label-hero { font-size: 3.73vw; }
  .price-value-hero { font-size: 12.8vw; }
  .price-unit-hero { font-size: 3.73vw; }
  .pricing-card--single { max-width: none; }
  .pricing-card--single.pricing-card--purchase { padding: 8.53vw 6.4vw; }
  .price-value { font-size: 9.6vw; }
  .price-unit { font-size: 4.27vw; }
  .price-includes { font-size: 3.2vw; }
  .purchase-badge { font-size: 3.2vw; }
  .campaign-badge-pill { font-size: 3.2vw; }
  .badge-start-circle { width: 17.07vw; height: 17.07vw; top: -8.53vw; left: -2.67vw; }
  .badge-start-date { font-size: 4.8vw; }
  .badge-start-label { font-size: 2.67vw; }
  .recommended-badge { font-size: 2.93vw; padding: 1.87vw 5.33vw; top: -5.5vw; line-height: 1.25em; }
  .pricing-points { margin-top: 10.67vw; }
  .pricing-points-heading { font-size: 5.87vw; }
  .pricing-points-num { font-size: 8vw; }
  .pricing-points-grid { grid-template-columns: 1fr; }
  .pricing-point { padding: 6.4vw 5.33vw; }
  .pricing-point-number { width: 16vw; height: 16vw; top: -4.27vw; right: -3.2vw; }
  .pricing-point-title { font-size: 4.8vw; }
  .pricing-point p { font-size: 3.73vw; }
  .pricing-start-date { font-size: 3.73vw; }
  .btn-lg { padding: 4.27vw 5.33vw; font-size: 3.73vw; white-space: nowrap; }

  /* FAQ */
  .faq-question { font-size: 4vw; }
  .faq-answer p { font-size: 3.73vw; }

  /* Final CTA */
  .final-plan { font-size: 3.73vw; gap: 2.67vw; }
  .final-plan strong { font-size: 4.8vw; }

  /* Whatisit */
  .whatisit-lead-text { font-size: 4.8vw; }
  .whatisit-detail-text { font-size: 3.73vw; }
  .accent-brand { font-size: 4.53vw; }
  .accent-keyword { font-size: 4.27vw; }
  .whatisit-bottom-catch { font-size: 6.4vw; }
  .section-heading-sub { font-size: 4vw; }
  .wavelength-compare { padding: 6.4vw 5.33vw; }
  .wavelength-charts { grid-template-columns: 1fr; gap: 6.4vw; }
  .wavelength-title { font-size: 5.33vw; }
  .whatisit-asmd-groups { grid-template-columns: 1fr; gap: 8.53vw; }
  .whatisit-asmd-group-images { grid-template-columns: 1fr; gap: 4.27vw; }
  .whatisit-block-heading { font-size: 4vw; margin-bottom: 3.2vw; padding-bottom: 2.13vw; }
  .whatisit-asmd-group-left img,
  .whatisit-asmd-group-right img { height: auto; }
  .whatisit-asmd-row { grid-template-columns: 1fr; gap: 6.4vw; }
  .whatisit-sub-images img { max-height: 26.67vw; }
  .highlight-lead { font-size: 3.73vw; }
  .highlight-tagline { font-size: 5.33vw; }
  .accent-num { font-size: 7.47vw; }
  .highlight-box p { font-size: 3.73vw; }

  /* Usage note */
  .usage-note { padding: 6.4vw 5.33vw; }
  .usage-note p { font-size: 3.73vw; }

  /* Footer */
  .footer-notes p { font-size: 2.4vw; }
  .footer-copy { font-size: 2.93vw; }
  .footer-links a { font-size: 2.67vw; white-space: nowrap; }
  .footer-links { gap: 3.2vw; }

  /* Caption */
  .caption { font-size: 3.2vw; }

  /* --- SP vw overrides (PC px fallthrough fix) --- */
  .btn-hero-main { font-size: 4.27vw; }
  .btn-sm { font-size: 3.73vw; }
  .ghost-link { font-size: 3.47vw; }
  .hero-campaign-period { font-size: 3.73vw; }
  .whatisit-sub-heading { font-size: 5.33vw; }
  .wavelength-chart-heading { font-size: 4.27vw; }
  .wavelength-iso { font-size: 3.47vw; }
  .tech-badge { font-size: 3.47vw; }
  .step-label { font-size: 3.47vw; }
  .voc-avatar { font-size: 4.8vw; }
  .campaign-x { font-size: 3.73vw; }
  .price-tax { font-size: 3.47vw; }
  .price-tax-below { font-size: 3.47vw; }
  .price-includes { font-size: 3.47vw; }
  .plan-service-name { font-size: 5.33vw; }
  .price-initial { font-size: 4vw; }
  .price-label { font-size: 4vw; }
  .price-total { font-size: 3.73vw; }
  .purchase-badge { font-size: 3.47vw; }
  .campaign-badge-pill { font-size: 3.47vw; }
  .pricing-point-label { font-size: 2.67vw; }
  .pricing-point-number .num { font-size: 6.4vw; }
  .badge-start-label { font-size: 2.93vw; }
  .recommended-badge { font-size: 3.2vw; }
  .btn-campaign { font-size: 4vw; }
}

/* ============================================
   PRINT STYLES — 紙印刷でPC表示を再現
   方式: SPメディアクエリを screen 限定にし、
         印刷時はPC用CSSのみ適用。余白なし・A4幅で自然に収まる。
   Chrome: Cmd+P → 余白なし → 背景のグラフィック ON
   ============================================ */
@media print {

  /* --- ページ設定 --- */
  @page {
    size: A4 portrait;
    margin: 0;
  }
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  /* --- 背景色・画像を強制表示 --- */
  *,
  *::before,
  *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* --- fixed要素をフローに戻す --- */
  .nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fff !important;
  }
  .campaign-banner {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  /* --- heroのpadding調整（fixedヘッダー分が不要に） --- */
  .hero-inner {
    padding-top: 60px !important;
    min-height: 400px !important;
  }
  .hero {
    min-height: 400px !important;
  }

  /* --- fade-in・アニメーション全て無効化 --- */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    transition: none !important;
    animation: none !important;
  }

  /* --- backdrop-filter代替（印刷非対応） --- */
  .campaign-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255,255,255,0.9) !important;
  }

  /* --- YouTube iframe対策 --- */
  .video-wrap iframe {
    display: none !important;
  }
  .video-wrap::after {
    content: "▶ 動画はWebサイトでご覧ください";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
  }

  /* --- 改ページ制御 --- */
  img, picture {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  h2, h3 {
    break-after: avoid;
    page-break-after: avoid;
  }
}
