/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2f5e;
  --navy-light: #243d7a;
  --gold: #b8960c;
  --gold-light: #d4aa30;
  --gold-pale: #f0d98a;
  --gold-shimmer: #fdf3c0;
  --white: #ffffff;
  --off-white: #faf8f2;
  --bg-cream: #f7f4ec;
  --text-dark: #1a1a2e;
  --text-body: #2d3748;
  --text-muted: #6b7280;
  --border-gold: rgba(184, 150, 12, 0.3);
  --shadow-gold: 0 4px 24px rgba(184, 150, 12, 0.15);
  --shadow-navy: 0 4px 24px rgba(26, 47, 94, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Noto Serif JP', serif; line-height: 1.4; }

.section-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.8;
}

.section-footer-note {
  text-align: center;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.9;
  margin-top: 48px;
  font-weight: 500;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-navy), 0 0 0 2px rgba(184,150,12,0.2);
  letter-spacing: 0.05em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 47, 94, 0.25), 0 0 0 2px rgba(184,150,12,0.4);
}
.btn-primary:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--navy);
  transition: all 0.25s ease;
  letter-spacing: 0.05em;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: var(--white);
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.35);
  letter-spacing: 0.05em;
}
.btn-line:hover {
  background: #05b34c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.45);
}
.btn-line:focus-visible { outline: 3px solid #06C755; outline-offset: 3px; }

.line-icon { width: 22px; height: 22px; flex-shrink: 0; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== DIVIDER ===== */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 20px 0;
}
.divider-line { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light)); }
.divider-line:last-child { background: linear-gradient(90deg, var(--gold-light), transparent); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== DECORATIONS ===== */
.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.leaf-deco {
  position: absolute;
  width: 120px; height: 120px;
  pointer-events: none;
  opacity: 0.55;
}

/* SVG leaf via background */
.leaf-tl {
  top: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg opacity='0.7'%3E%3Cellipse cx='20' cy='30' rx='8' ry='18' fill='%23c9a227' transform='rotate(-30 20 30)'/%3E%3Cellipse cx='45' cy='15' rx='6' ry='15' fill='%23b8960c' transform='rotate(-10 45 15)'/%3E%3Cellipse cx='70' cy='8' rx='5' ry='12' fill='%23d4aa30' transform='rotate(15 70 8)'/%3E%3Cellipse cx='8' cy='60' rx='5' ry='14' fill='%23c9a227' transform='rotate(-50 8 60)'/%3E%3Cpath d='M10 80 Q30 50 60 20' stroke='%23b8960c' stroke-width='1' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}
.leaf-tr {
  top: 0; right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg opacity='0.7'%3E%3Cellipse cx='100' cy='30' rx='8' ry='18' fill='%23c9a227' transform='rotate(30 100 30)'/%3E%3Cellipse cx='75' cy='15' rx='6' ry='15' fill='%23b8960c' transform='rotate(10 75 15)'/%3E%3Cellipse cx='50' cy='8' rx='5' ry='12' fill='%23d4aa30' transform='rotate(-15 50 8)'/%3E%3Cellipse cx='112' cy='60' rx='5' ry='14' fill='%23c9a227' transform='rotate(50 112 60)'/%3E%3Cpath d='M110 80 Q90 50 60 20' stroke='%23b8960c' stroke-width='1' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 248, 242, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-gold);
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--navy), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 8px rgba(255,248,200,0.6);
}
.logo-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--gold);
}
.header-cta {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, rgba(26,47,94,0.85), rgba(36,61,122,0.85));
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  border: 1px solid rgba(184,150,12,0.3);
}
.header-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===== HERO ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px; /* header offset */
  text-align: center;
  /* 画像の背景色と完全に一致させたグラデーション */
  background:
    radial-gradient(ellipse 90% 60% at 50% 10%, rgba(255,252,230,0.95) 0%, transparent 55%),
    radial-gradient(ellipse 120% 70% at 50% 50%, rgba(238,230,205,0.85) 0%, transparent 65%),
    radial-gradient(ellipse 55% 90% at  5% 55%, rgba(155,185,220,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 55% 90% at 95% 55%, rgba(155,185,220,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 100% 50% at 50% 100%, rgba(247,244,236,1) 0%, transparent 60%),
    linear-gradient(175deg, #8fa8c5 0%, #b8b09a 18%, #e0d9c5 42%, #d5cebe 68%, #8faac8 100%);
}

/* 背景発光レイヤー */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero-glow.g1 {
  width: 600px; height: 500px;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255,248,200,0.7) 0%, transparent 65%);
}
.hero-glow.g2 {
  width: 400px; height: 400px;
  top: 15%; left: -60px;
  background: radial-gradient(ellipse, rgba(130,170,215,0.45) 0%, transparent 60%);
}
.hero-glow.g3 {
  width: 400px; height: 400px;
  top: 15%; right: -60px;
  background: radial-gradient(ellipse, rgba(130,170,215,0.45) 0%, transparent 60%);
}
.hero-glow.g4 {
  width: 500px; height: 300px;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(247,244,236,0.9) 0%, transparent 65%);
}

/* 金の粒子（CSS pointsで表現） */
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.5px at 20% 25%, rgba(212,170,48,0.8) 0%, transparent 100%),
    radial-gradient(circle 1px at 75% 18%, rgba(212,170,48,0.7) 0%, transparent 100%),
    radial-gradient(circle 2px at 85% 40%, rgba(212,170,48,0.5) 0%, transparent 100%),
    radial-gradient(circle 1px at 10% 65%, rgba(212,170,48,0.6) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 55% 12%, rgba(255,240,160,0.9) 0%, transparent 100%),
    radial-gradient(circle 1px at 40% 80%, rgba(212,170,48,0.4) 0%, transparent 100%),
    radial-gradient(circle 2px at 90% 70%, rgba(212,170,48,0.5) 0%, transparent 100%),
    radial-gradient(circle 1px at 30% 45%, rgba(255,240,160,0.6) 0%, transparent 100%),
    radial-gradient(circle 1.5px at 65% 55%, rgba(212,170,48,0.4) 0%, transparent 100%),
    radial-gradient(circle 1px at 15% 85%, rgba(212,170,48,0.5) 0%, transparent 100%);
}

/* 葉の装飾（ヒーロー内） */
.hero .leaf-tl { top: 0; left: 0; width: 160px; height: 160px; opacity: 0.7; z-index: 2; }
.hero .leaf-tr { top: 0; right: 0; width: 160px; height: 160px; opacity: 0.7; z-index: 2; }

/* メインコンテンツラッパー */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* メインビジュアル（画像） */
.hero-visual {
  width: 100%;
  position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  /* 四方をフェードして背景と完全融合 */
  -webkit-mask-image: radial-gradient(
    ellipse 78% 88% at 50% 46%,
    black 30%,
    rgba(0,0,0,0.85) 50%,
    rgba(0,0,0,0.4) 68%,
    transparent 85%
  );
  mask-image: radial-gradient(
    ellipse 78% 88% at 50% 46%,
    black 30%,
    rgba(0,0,0,0.85) 50%,
    rgba(0,0,0,0.4) 68%,
    transparent 85%
  );
}

/* キャッチコピー＋CTA エリア */
.hero-catch-area {
  width: 100%;
  padding: 0 20px 50px;
  position: relative;
  z-index: 2;
  margin-top: -32px; /* 画像の下端にかぶせる */
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: 220px;
}
.divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-light)); }
.divider-line:last-child { background: linear-gradient(90deg, var(--gold-light), transparent); }
.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 2;
  margin-bottom: 28px;
  text-shadow: 0 1px 12px rgba(255,252,230,0.9);
}

.btn-hero {
  font-size: 16px;
  padding: 17px 40px;
  box-shadow: var(--shadow-navy), 0 0 0 2px rgba(184,150,12,0.25), 0 0 30px rgba(255,248,200,0.4);
}

.hero-sub-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* 次セクションへのフェード */
.hero-fade-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  z-index: 3;
}

/* SP: 縦長画像のみ表示 */
.hero-image-pc { display: none; }
.hero-image-sp { display: block; }

/* PC: 横長画像に切り替え */
@media (min-width: 768px) {
  .hero-image-pc { display: block; }
  .hero-image-sp { display: none; }

  /* PC用: ヒーロー背景をPC画像の暖かいゴールドに合わせる */
  .hero {
    background:
      radial-gradient(ellipse 80% 55% at 50% 15%, rgba(255,252,220,0.95) 0%, transparent 55%),
      radial-gradient(ellipse 100% 65% at 50% 55%, rgba(245,232,190,0.85) 0%, transparent 68%),
      radial-gradient(ellipse 50% 80% at  0% 50%, rgba(180,155,90,0.35) 0%, transparent 55%),
      radial-gradient(ellipse 50% 80% at 100% 50%, rgba(180,155,90,0.35) 0%, transparent 55%),
      radial-gradient(ellipse 100% 45% at 50% 100%, rgba(247,244,236,1) 0%, transparent 55%),
      linear-gradient(175deg, #9a8a5a 0%, #c8b87a 15%, #ede0b0 40%, #d8c890 65%, #9a8a5a 100%);
  }

  .hero-inner { max-width: 100%; padding: 0; }

  .hero-visual { width: 100%; }

  /* PC画像: 上下左右フェード */
  .hero-image-pc {
    width: 100%;
    height: auto;
    display: block;
    -webkit-mask-image: radial-gradient(
      ellipse 84% 82% at 50% 46%,
      black 30%,
      rgba(0,0,0,0.9) 52%,
      rgba(0,0,0,0.4) 68%,
      transparent 84%
    );
    mask-image: radial-gradient(
      ellipse 84% 82% at 50% 46%,
      black 30%,
      rgba(0,0,0,0.9) 52%,
      rgba(0,0,0,0.4) 68%,
      transparent 84%
    );
  }

  .hero-catch-area {
    max-width: 700px;
    margin: -60px auto 0;
    padding-bottom: 64px;
  }

  .hero .leaf-tl, .hero .leaf-tr { width: 240px; height: 240px; }
}

/* ===== CONCERNS ===== */
.concern-section { background: var(--white); }
.concern-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.section-badge {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-shimmer), rgba(212,170,48,0.15));
  border: 1px solid var(--border-gold);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.concern-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.concern-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fdfaf3 0%, #f7f0e0 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  transform: translateY(20px);
}
.concern-item.visible { opacity: 1; transform: translateY(0); }
.concern-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.concern-check {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.concern-check svg { width: 14px; height: 14px; stroke: var(--gold-pale); }
.concern-footer {
  text-align: center;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(160deg, #f7f4ec 0%, #eef2f8 100%);
  overflow: hidden;
}
.about-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.orb-about {
  width: 500px; height: 500px;
  top: 50%; right: -150px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(184,150,12,0.1) 0%, transparent 65%);
}
.about-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  background: linear-gradient(135deg, rgba(253,243,192,0.6), rgba(240,217,138,0.3));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  line-height: 2;
  position: relative;
  z-index: 1;
}
.about-body {
  position: relative;
  z-index: 1;
}
.about-body p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 2;
  margin-bottom: 16px;
}
.about-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  border-left: 3px solid var(--border-gold);
  padding-left: 14px;
  margin-top: 24px !important;
}

/* ===== VISUALIZE ===== */
.visualize-section { background: var(--white); }
.visualize-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.vis-card {
  background: linear-gradient(145deg, #fdfaf3 0%, #f5eed8 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
}
.vis-card.visible { opacity: 1; transform: translateY(0); }
.vis-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.vis-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.vis-icon svg { width: 20px; height: 20px; stroke: var(--gold-pale); }
.vis-num {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; height: 26px;
  background: var(--navy);
  color: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Noto Serif JP', serif;
}
.vis-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.vis-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ===== WAVE ===== */
.wave-section { background: linear-gradient(160deg, #e8eaf6 0%, #f7f4ec 100%); }
.wave-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.wave-box {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-gold);
}
.wave-box-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.wave-box p { font-size: 14px; color: var(--text-body); line-height: 2; margin-bottom: 12px; }
.wave-box p:last-child { margin-bottom: 0; }
.wave-merit-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-align: center;
}
.merit-list { display: flex; flex-direction: column; gap: 12px; }
.merit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}
.merit-check {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.merit-check svg { width: 12px; height: 12px; stroke: var(--white); }

.report-sample {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  margin-bottom: 32px;
}
.report-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 10px 20px;
  letter-spacing: 0.05em;
}
.report-table { padding: 8px 0; }
.report-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(184,150,12,0.1);
  gap: 12px;
}
.report-row:last-child { border-bottom: none; }
.report-key { font-size: 14px; color: var(--text-body); flex: 1; }
.report-val {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.report-val small { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.report-val.tag {
  font-size: 13px;
  background: linear-gradient(135deg, var(--gold-shimmer), rgba(212,170,48,0.2));
  border: 1px solid var(--border-gold);
  padding: 3px 12px;
  border-radius: 50px;
}
.wave-footer {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 2;
}

/* ===== FLOW ===== */
.flow-section { background: var(--off-white); }
.flow-list { display: flex; flex-direction: column; margin-bottom: 48px; }
.flow-item {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.flow-item.visible { opacity: 1; transform: translateY(0); }
.flow-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.flow-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(26,47,94,0.2);
}
.flow-connector {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: linear-gradient(to bottom, var(--border-gold), transparent);
  margin: 6px 0;
}
.flow-content {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px 20px 24px;
  margin-bottom: 8px;
  flex: 1;
}
.flow-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-desc { font-size: 14px; color: var(--text-body); line-height: 1.9; }

.session-count-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: var(--white);
}
.count-box-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-pale);
  text-align: center;
  margin-bottom: 8px;
}
.count-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.count-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,150,12,0.3);
  border-radius: var(--radius);
  padding: 16px 14px;
}
.count-range {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 4px;
}
.count-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.count-desc { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.count-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.8;
}

/* ===== PRICE ===== */
.price-section { background: var(--white); }
.price-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.price-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card-main {
  background: linear-gradient(145deg, var(--navy) 0%, #243d7a 100%);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(26,47,94,0.25);
}
.price-card-trial {
  background: linear-gradient(145deg, #fdfaf3 0%, #f5eed8 100%);
  border: 1px solid var(--border-gold);
}
.price-card-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.price-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.price-card-main .price-name { color: var(--gold-pale); }
.price-card-trial .price-name { color: var(--navy); }
.price-duration {
  font-size: 14px;
  margin-bottom: 12px;
}
.price-card-main .price-duration { color: rgba(255,255,255,0.7); }
.price-card-trial .price-duration { color: var(--text-muted); }
.price-amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1;
}
.price-card-main .price-amount { color: var(--white); }
.price-card-trial .price-amount { color: var(--navy); }
.price-amount small { font-size: 14px; font-weight: 400; }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.price-card-trial .price-features { border-bottom-color: var(--border-gold); }
.price-features li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.price-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 2px;
}
.price-card-main .price-features li { color: rgba(255,255,255,0.85); }
.price-card-main .price-features li::before { color: var(--gold-pale); }
.price-card-trial .price-features li { color: var(--text-body); }
.price-card-trial .price-features li::before { color: var(--gold); }
.price-card-main .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); width: 100%; justify-content: center; box-shadow: 0 4px 16px rgba(184,150,12,0.3); }
.price-card-trial .btn-secondary { width: 100%; justify-content: center; }

.discount-box {
  background: linear-gradient(135deg, var(--gold-shimmer), rgba(240,217,138,0.4));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.discount-box.visible { opacity: 1; transform: translateY(0); }
.discount-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.discount-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.discount-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.discount-item { text-align: center; }
.discount-count { display: block; font-size: 14px; color: var(--text-body); margin-bottom: 4px; }
.discount-rate {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.discount-divider {
  width: 1px; height: 50px;
  background: var(--border-gold);
}

/* ===== FAQ ===== */
.faq-section { background: var(--off-white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(184,150,12,0.05); }
.faq-question:focus-visible { outline: 3px solid var(--gold-light); outline-offset: -3px; }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--gold);
}
.faq-icon svg { width: 20px; height: 20px; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 2;
  border-top: 1px solid rgba(184,150,12,0.15);
  padding-top: 16px;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(160deg, #1a2f5e 0%, #243d7a 60%, #1a3a6e 100%);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.cta-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.orb-cta1 {
  width: 400px; height: 400px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(184,150,12,0.2) 0%, transparent 65%);
}
.orb-cta2 {
  width: 350px; height: 350px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(253,243,192,0.12) 0%, transparent 65%);
}
.leaf-cta-l {
  top: 0; left: 0; width: 130px; height: 130px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg opacity='0.4'%3E%3Cellipse cx='20' cy='30' rx='8' ry='18' fill='%23d4aa30' transform='rotate(-30 20 30)'/%3E%3Cellipse cx='45' cy='15' rx='6' ry='15' fill='%23c9a227' transform='rotate(-10 45 15)'/%3E%3Cellipse cx='70' cy='8' rx='5' ry='12' fill='%23d4aa30' transform='rotate(15 70 8)'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}
.leaf-cta-r {
  top: 0; right: 0; width: 130px; height: 130px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg opacity='0.4'%3E%3Cellipse cx='100' cy='30' rx='8' ry='18' fill='%23d4aa30' transform='rotate(30 100 30)'/%3E%3Cellipse cx='75' cy='15' rx='6' ry='15' fill='%23c9a227' transform='rotate(10 75 15)'/%3E%3Cellipse cx='50' cy='8' rx='5' ry='12' fill='%23d4aa30' transform='rotate(-15 50 8)'/%3E%3C/g%3E%3C/svg%3E") no-repeat center/contain;
}
.gold-ornament {
  font-size: 16px;
  color: var(--gold-light);
  letter-spacing: 10px;
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cta-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.9;
}
.cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-divider .divider-line {
  background: linear-gradient(90deg, transparent, var(--gold-light));
  opacity: 0.6;
}
.cta-divider .divider-line:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}
.cta-divider .divider-diamond { background: var(--gold-light); }
.cta-line-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  padding: 40px 20px;
  text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-logo { display: flex; align-items: baseline; gap: 2px; justify-content: center; margin-bottom: 8px; }
.footer-copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-copyright { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .site-header { padding: 0; }
  .header-inner { padding: 10px 16px; }
  .header-cta { font-size: 11px; padding: 7px 14px; }

  .hero { padding: 90px 16px 50px; }
  .hero-title { font-size: 2.2rem; }

  .container { padding: 0 16px; }

  .cards-grid { grid-template-columns: 1fr; }
  .count-grid { grid-template-columns: 1fr; }
  .discount-items { flex-direction: column; gap: 16px; }
  .discount-divider { width: 60px; height: 1px; }

  .flow-item { gap: 14px; }
  .flow-num { width: 38px; height: 38px; font-size: 16px; }

  .price-amount { font-size: 2rem; }

  .btn-primary, .btn-line { width: 100%; justify-content: center; }
  .btn-secondary { width: 100%; justify-content: center; }

  .sp-br { display: block; }
}

@media (min-width: 601px) {
  .price-cards { flex-direction: row; }
  .price-card { flex: 1; }
  .wave-content { flex-direction: row; }
  .wave-text-block, .wave-merit-block { flex: 1; }
}
