/* ============================================================
   CSS Variables & Reset
============================================================ */
:root {
  --lavender: #e9def4;
  --lavender-light: #f8f3fc;
  --lavender-deep: #b9a0d9;
  --gold: #c9a961;
  --gold-light: #e8d9ae;
  --gold-dark: #a8863f;
  --white: #ffffff;
  --ivory: #fdfcfa;
  --ivory-warm: #f7f2fb;
  --purple-deep: #2f2147;
  --purple-mid: #4a3568;
  --purple-light: #8f77ab;
  --text-primary: #2b2140;
  --text-secondary: #5c4f75;
  --text-muted: #9186a8;

  --font-serif-en: 'Cormorant Garamond', 'Cinzel', serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font-serif-jp);
  background-color: var(--ivory);
  color: var(--text-primary);
  line-height: 1.9;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   Utilities
============================================================ */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--purple-deep);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-title.light {
  color: var(--white);
}

/* ============================================================
   Animations
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1.1s; }
.delay-4 { animation-delay: 1.5s; }
.delay-5 { animation-delay: 1.9s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   1. Hero / ファーストビュー
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      165deg,
      rgba(36, 26, 56, 0.88) 0%,
      rgba(58, 42, 92, 0.8) 22%,
      rgba(106, 79, 143, 0.68) 42%,
      rgba(169, 143, 201, 0.5) 62%,
      rgba(220, 205, 236, 0.32) 82%,
      rgba(248, 243, 252, 0.18) 100%
    ),
    url('images/1.jpg') center 35% / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(232, 217, 174, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(185, 160, 217, 0.18) 0%, transparent 55%);
}

/* 星屑のような装飾パターン */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8d9ae' fill-opacity='0.35'%3E%3Ccircle cx='12' cy='14' r='1.4'/%3E%3Ccircle cx='48' cy='6' r='1'/%3E%3Ccircle cx='70' cy='28' r='1.6'/%3E%3Ccircle cx='30' cy='45' r='1'/%3E%3Ccircle cx='58' cy='60' r='1.3'/%3E%3Ccircle cx='82' cy='75' r='1'/%3E%3Ccircle cx='16' cy='70' r='1.2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 12, 36, 0.30) 0%,
    rgba(60, 40, 90, 0.14) 50%,
    rgba(248, 243, 252, 0.06) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 700px;
}

.hero__subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

@media (max-width: 460px) {
  .hero__subtitle { letter-spacing: 0.15em; }
}

.hero__title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: clamp(2.8rem, 10vw, 4.8rem);
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(60, 30, 90, 0.5), 0 0 60px rgba(232, 217, 174, 0.25);
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  margin: 0 auto 24px;
}

.hero__tagline {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.hero__copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2.1;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__awakening {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

/* ============================================================
   ゴールドボタン（共通）
============================================================ */
.hero__cta-sub,
.cta-button {
  display: inline-block;
  padding: 20px 64px;
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  color: #3a2a10;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;

  background: linear-gradient(
    180deg,
    #fff8e6 0%,
    #f3e2ab 10%,
    #ddc078 30%,
    #c9a961 52%,
    #dcc086 72%,
    #b3924f 88%,
    #8f7038 96%,
    #6f5527 100%
  );

  box-shadow:
    0 20px 60px rgba(47, 33, 71, 0.4),
    0 10px 30px rgba(74, 53, 104, 0.3),
    0 6px 12px rgba(30, 20, 50, 0.35),
    0 3px 0 #a8863f,
    0 5px 0 #8a6a2d,
    0 7px 0 #6b4f1f,
    inset 0 1px 0 rgba(255, 250, 235, 0.85),
    inset 0 2px 4px rgba(255, 235, 190, 0.4),
    inset 0 -2px 3px rgba(0, 0, 0, 0.16);

  animation: goldFloat 4s ease-in-out infinite;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta-sub::before,
.cta-button::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -90%;
  width: 55%;
  height: 120%;
  background: linear-gradient(
    108deg,
    transparent 15%,
    rgba(255, 255, 255, 0.0) 30%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.0) 70%,
    transparent 85%
  );
  transform: skewX(-18deg);
  animation: goldKira 4s ease-in-out infinite;
  pointer-events: none;
}

.hero__cta-sub::after,
.cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 3px,
    rgba(255, 255, 255, 0.05) 3px,
    rgba(255, 255, 255, 0.05) 4px
  );
  pointer-events: none;
}

.hero__cta-sub:hover,
.cta-button:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 80px rgba(47, 33, 71, 0.45),
    0 16px 40px rgba(74, 53, 104, 0.35),
    0 8px 16px rgba(30, 20, 50, 0.35),
    0 3px 0 #a8863f,
    0 6px 0 #8a6a2d,
    0 9px 0 #6b4f1f,
    inset 0 1px 0 rgba(255, 250, 240, 0.9),
    inset 0 2px 6px rgba(255, 235, 190, 0.5),
    inset 0 -2px 3px rgba(0, 0, 0, 0.14);
  animation-play-state: paused;
}

.hero__cta-sub:active,
.cta-button:active {
  transform: translateY(5px);
  box-shadow:
    0 4px 16px rgba(47, 33, 71, 0.3),
    0 2px 6px rgba(30, 20, 50, 0.3),
    0 2px 0 #a8863f,
    inset 0 2px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 245, 220, 0.4);
}

@keyframes goldFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes goldKira {
  0%      { left: -90%; opacity: 0; }
  8%      { opacity: 1; }
  38%     { left: 120%; opacity: 1; }
  39%     { opacity: 0; left: 120%; }
  100%    { left: 120%; opacity: 0; }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   ヒーロー直下ボタンエリア
============================================================ */
.hero-sub-cta {
  background: var(--ivory-warm);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
}

.hero-sub-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-sub-cta__copy {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--purple-mid);
  margin-bottom: 36px;
}

.hero-sub-cta__note {
  margin-top: 28px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

/* ============================================================
   2. Awakening
============================================================ */
.awakening {
  padding: 100px 0;
  background: var(--ivory-warm);
  position: relative;
}

.awakening::before,
.awakening::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: var(--gold);
}

.awakening::before { top: 0; }
.awakening::after { bottom: 0; }

.awakening__content {
  text-align: center;
}

.awakening__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2.2;
  margin-bottom: 40px;
  font-weight: 500;
}

.awakening__message {
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding: 32px 40px;
  margin: 40px auto;
  max-width: 560px;
}

.awakening__message-text {
  font-size: clamp(1.2rem, 2.5vw, 1.35rem);
  color: var(--purple-mid);
  font-weight: 500;
  line-height: 1.9;
}

.awakening__message-text em {
  color: var(--gold-dark);
  font-style: normal;
}

.awakening__declaration {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 2.2;
  font-weight: 500;
}

.awakening__declaration strong {
  font-weight: 400;
  color: var(--purple-deep);
}

.declaration-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   目覚めビジュアル（awakening__photo）
============================================================ */
.awakening__photo {
  margin: 48px auto;
  max-width: 480px;
}

.awakening__photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  padding: 10px;
  background: var(--ivory);
  box-shadow:
    0 4px 24px rgba(74, 53, 104, 0.14),
    0 1px 4px rgba(74, 53, 104, 0.08);
}

.awakening__photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.9) brightness(0.95);
}

.awakening__photo-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
}

.awakening__photo-caption span {
  font-family: var(--font-serif-jp);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  background: rgba(74, 53, 104, 0.5);
  padding: 6px 20px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   3. Empathy
============================================================ */
.empathy {
  padding: 100px 0;
  background: var(--lavender-light);
}

.empathy__question {
  color: var(--purple-deep);
}

.empathy__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

@media (max-width: 640px) {
  .empathy__cards {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.empathy__card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.empathy__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(74, 53, 104, 0.12);
}

.empathy__icon {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.empathy__card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 500;
}

.empathy__card strong {
  color: var(--purple-deep);
  font-weight: 400;
}

.empathy__reason {
  background: var(--ivory-warm);
  border-left: 2px solid var(--gold);
  padding: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.empathy__reason-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 24px;
}

.empathy__reason-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2.2;
  font-weight: 500;
  margin-bottom: 24px;
}

.empathy__filters {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.empathy__filters span {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 6px 16px;
  border: 1px solid var(--gold-light);
  letter-spacing: 0.1em;
  font-style: italic;
}

.empathy__truth {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.truth-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 16px 24px;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  line-height: 1.8;
}

.truth-item--highlight {
  background: var(--purple-deep);
  color: var(--gold-light);
  border-color: var(--purple-deep);
}

.truth-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.5;
}

.truth-item--highlight .truth-arrow {
  color: var(--gold-light);
}

/* ============================================================
   共感ビジュアル（deco-panel）
============================================================ */
.deco-panel {
  margin: 0 auto 60px;
  max-width: 360px;
}

.deco-panel__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  padding: 10px;
  background: var(--ivory);
  box-shadow:
    0 4px 24px rgba(74, 53, 104, 0.14),
    0 1px 4px rgba(74, 53, 104, 0.08);
}

.deco-panel__mandala {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(233, 222, 244, 0.35) 0%, rgba(185, 160, 217, 0.45) 100%),
    url('images/4.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deco-panel__ring {
  position: absolute;
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 50%;
}

.deco-panel__ring--1 { inset: 8%; }
.deco-panel__ring--2 { inset: 22%; }
.deco-panel__ring--3 { inset: 36%; }

.deco-panel__core {
  position: relative;
  z-index: 1;
  font-size: 2.3rem;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(201, 169, 97, 0.6);
}

.deco-panel__caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
}

.deco-panel__caption span {
  font-family: var(--font-serif-jp);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  background: rgba(74, 53, 104, 0.5);
  padding: 6px 20px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   4. Essence
============================================================ */
.essence {
  padding: 100px 0;
  background: var(--ivory-warm);
}

.essence__content {
  text-align: center;
}

.essence__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2.2;
  margin-bottom: 40px;
  font-weight: 500;
}

.essence__highlight {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
  color: var(--white);
  padding: 48px 40px;
  margin: 40px auto;
  max-width: 500px;
  position: relative;
}

.essence__highlight::before,
.essence__highlight::after {
  content: '✦';
  position: absolute;
  color: var(--gold);
  font-size: 1rem;
}

.essence__highlight::before { top: 16px; left: 20px; }
.essence__highlight::after { bottom: 16px; right: 20px; }

.essence__highlight p {
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 2;
  color: var(--white);
}

.essence__highlight em {
  color: var(--gold-light);
  font-style: normal;
}

.essence__outcome {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 500px) {
  .essence__outcome { grid-template-columns: 1fr; }
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.6;
  transition: var(--transition);
}

.outcome-item:hover {
  background: var(--lavender);
  border-color: var(--gold);
}

.outcome-icon {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ============================================================
   Essence Split Layout
============================================================ */
.essence__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

@media (max-width: 680px) {
  .essence__split {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.essence__split-visual {
  position: relative;
}

.essence__split-visual::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--gold-light);
  z-index: 0;
  pointer-events: none;
}

.essence__lotus {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(180deg, rgba(233, 222, 244, 0.18) 0%, rgba(185, 160, 217, 0.3) 100%),
    url('images/5.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.essence__lotus-glow {
  position: absolute;
  width: 55%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 217, 174, 0.35) 0%, rgba(232, 217, 174, 0) 70%);
  filter: blur(2px);
}

.essence__lotus-symbol {
  display: none;
}

.essence__split-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   5. Path (旧 Steps)
============================================================ */
.path {
  padding: 100px 0;
  background: var(--purple-deep);
  position: relative;
  overflow: hidden;
}

.path::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(185, 160, 217, 0.12) 0%, transparent 50%);
}

.path .section-label {
  color: var(--gold);
}

.path .section-title {
  color: var(--white);
}

.path__subtitle {
  text-align: center;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-top: -36px;
  margin-bottom: 60px;
  font-weight: 400;
}

.path__list {
  position: relative;
  z-index: 1;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.25);
  padding: 40px;
  transition: var(--transition);
}

.step:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: rgba(201, 169, 97, 0.5);
}

@media (max-width: 500px) {
  .step {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.step__number {
  text-align: center;
}

.step__num-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 4px;
}

.step__num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  line-height: 1;
  font-weight: 400;
}

.step__title {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  color: var(--white);
  margin-bottom: 8px;
}

.step__subtitle-inner {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  font-weight: 400;
}

.step__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  font-weight: 400;
}

.step__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}

.connector-line {
  width: 1px;
  height: 20px;
  background: var(--gold);
  opacity: 0.4;
}

.connector-diamond {
  color: var(--gold);
  font-size: 0.68rem;
  opacity: 0.6;
}

/* ============================================================
   装飾帯（deco-band）
============================================================ */
.deco-band {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: url('images/8.jpg') center 30% / cover no-repeat;
}

.deco-band__pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(74, 53, 104, 0.55) 0%, rgba(143, 119, 171, 0.35) 45%, rgba(201, 169, 97, 0.35) 100%);
}

.deco-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 12, 30, 0.35) 0%, rgba(20, 12, 30, 0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.deco-band__text {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--white);
  letter-spacing: 0.25em;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   6. Offerings（旧 Experience）
============================================================ */
.offerings {
  padding: 100px 0;
  background: var(--lavender-light);
}

.offerings__tagline {
  text-align: center;
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  color: var(--purple-mid);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.offerings__description {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 56px;
  font-weight: 500;
}

.offerings__description em {
  color: var(--gold-dark);
  font-style: normal;
}

.offerings__photo {
  margin: 0 auto 56px;
  max-width: 360px;
}

.offerings__photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  padding: 10px;
  background: var(--ivory);
  box-shadow:
    0 4px 24px rgba(74, 53, 104, 0.14),
    0 1px 4px rgba(74, 53, 104, 0.08);
}

.offerings__photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: saturate(0.95);
}

.offerings__photo-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
}

.offerings__photo-caption span {
  font-family: var(--font-serif-jp);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--white);
  background: rgba(74, 53, 104, 0.5);
  padding: 6px 20px;
  backdrop-filter: blur(4px);
}

.offerings__group-title {
  text-align: center;
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--purple-deep);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-light);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.offerings__group-title:not(:first-of-type) {
  margin-top: 72px;
}

.offerings__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.offerings__cards--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 780px) {
  .offerings__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .offerings__cards,
  .offerings__cards--three {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

.offerings__card {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.offerings__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.offerings__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(74, 53, 104, 0.12);
}

.offerings__card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.offerings__card h4 {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--purple-deep);
  line-height: 1.5;
  margin-bottom: 14px;
}

.offerings__card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-weight: 400;
}

.offerings__promise {
  text-align: center;
  background: var(--ivory-warm);
  border: 1px solid var(--gold-light);
  padding: 36px 40px;
  max-width: 520px;
  margin: 56px auto 0;
}

.offerings__promise p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 500;
}

.offerings__promise strong {
  color: var(--purple-deep);
  font-weight: 400;
}

/* ============================================================
   7. Join Flow（旧 Venue）
============================================================ */
.join-flow {
  position: relative;
}

.join-flow__visual {
  min-height: 600px;
  background:
    linear-gradient(
      150deg,
      rgba(36, 26, 56, 0.82) 0%,
      rgba(74, 53, 104, 0.68) 30%,
      rgba(143, 119, 171, 0.5) 58%,
      rgba(201, 169, 97, 0.42) 100%
    ),
    url('images/7.jpg') center 40% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.join-flow__visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(232, 217, 174, 0.3);
  pointer-events: none;
  z-index: 2;
}

.join-flow__pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(232, 217, 174, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(232, 217, 174, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.join-flow__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 640px;
}

.join-flow__description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2.3;
  margin-bottom: 48px;
  font-weight: 400;
}

.join-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.join-flow__step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 217, 174, 0.32);
  text-align: left;
}

.join-flow__step-num {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  flex-shrink: 0;
}

.join-flow__step-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* ============================================================
   8. Details
============================================================ */
.details {
  padding: 100px 0;
  background: var(--ivory-warm);
}

.details__box {
  border: 1px solid var(--gold-light);
  overflow: hidden;
}

.details__info {
  padding: 48px 48px 32px;
  background: var(--ivory);
}

@media (max-width: 600px) {
  .details__info { padding: 32px 24px; }
}

.details__row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.details__row:last-child {
  border-bottom: none;
}

.details__label {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 88px;
}

.details__value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.6;
}

.details__row small {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.details__row--price {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-light);
}

.details__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--purple-deep);
  letter-spacing: 0.05em;
}

.tax {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-serif-jp);
  font-weight: 400;
  margin-left: 4px;
}

.details__includes {
  padding: 32px 48px;
  background: var(--lavender-light);
  border-top: 1px solid var(--gold-light);
}

@media (max-width: 600px) {
  .details__includes { padding: 24px; }
}

.details__includes-title,
.details__notes-title {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.details__includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 500px) {
  .details__includes-list { grid-template-columns: 1fr; }
}

.details__includes-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 10px 16px;
  background: var(--ivory);
  border-left: 2px solid var(--gold);
}

.details__notes {
  padding: 32px 48px;
  background: var(--ivory-warm);
  border-top: 1px solid var(--gold-light);
}

@media (max-width: 600px) {
  .details__notes { padding: 24px; }
}

.details__notes-list {
  list-style: none;
}

.details__notes-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 400;
  padding-left: 16px;
  position: relative;
}

.details__notes-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

/* ============================================================
   8.5 FAQ
============================================================ */
.faq {
  padding: 100px 0;
  background: var(--lavender-light);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  border-left: 2px solid var(--gold);
  padding: 28px 32px;
}

@media (max-width: 600px) {
  .faq__item { padding: 22px 20px; }
}

.faq__question {
  font-size: 1.1rem;
  color: var(--purple-deep);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq__answer {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 2;
}

/* ============================================================
   9. Final Message
============================================================ */
.final-message {
  padding: 120px 0;
  background: url('images/9.jpg') center 35% / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.final-message__pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20, 12, 30, 0.72) 0%, rgba(47, 33, 71, 0.8) 50%, rgba(20, 12, 30, 0.88) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 70%);
}

.final-message__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-message__opening {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.2;
  margin-bottom: 32px;
  font-weight: 400;
}

.final-message__ok {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: 48px;
}

.final-message__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.2;
  margin-bottom: 24px;
  font-weight: 400;
}

.final-message__body em {
  color: var(--gold-light);
  font-style: normal;
}

.final-message__discovery {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin: 48px 0;
}

.final-message__declaration {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.declaration-ornament {
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: 0.5em;
  font-size: 1rem;
}

.final-message__quote {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  line-height: 2;
}

/* ============================================================
   10. CTA Section
============================================================ */
.cta-section {
  padding: 100px 0;
  background: var(--ivory-warm);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.cta-section__inner {
  text-align: center;
}

.cta-section__headline {
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  letter-spacing: 0.1em;
  color: var(--purple-mid);
  margin-bottom: 48px;
}

.fear-release {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto 40px;
}

@media (max-width: 600px) {
  .fear-release { padding: 32px 24px; }
}

.fear-release__text {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 2.2;
  margin-bottom: 24px;
  font-weight: 500;
}

.fear-release__text strong {
  color: var(--purple-deep);
  font-weight: 400;
}

.fear-release__cue {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 2;
  font-weight: 500;
}

.fear-release__cue em {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 400;
}

.reassurance {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reassurance p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 64px;
}

.cta-button__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif-jp);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  white-space: nowrap;
}

.cta-button__sub {
  position: relative;
  z-index: 1;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #6b4f1f;
  opacity: 0.85;
  white-space: nowrap;
}

.cta-section__note {
  margin-top: 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
}

/* ============================================================
   Footer
============================================================ */
.footer {
  background: var(--purple-deep);
  padding: 48px 0 40px;
  text-align: center;
}

.footer__inner {
  padding: 0 24px;
}

.footer__title {
  font-family: var(--font-serif-jp);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.footer__copy-line {
  font-size: 0.85rem;
  color: rgba(232, 217, 174, 0.55);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer__links a {
  color: rgba(232, 217, 174, 0.75);
  border-bottom: 1px solid rgba(232, 217, 174, 0.3);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__copy {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(201, 169, 97, 0.35);
}

/* ============================================================
   Responsive tweaks — Mobile First
============================================================ */
@media (max-width: 768px) {
  .awakening__message { padding: 24px 20px; }
  .empathy__reason     { padding: 32px 20px; }
  .essence__highlight  { padding: 32px 20px; margin: 32px auto; }
  .path__list .step    { padding: 28px 20px; }
}

@media (max-width: 480px) {

  .awakening,
  .empathy,
  .essence,
  .path,
  .offerings,
  .details,
  .faq,
  .final-message,
  .cta-section { padding: 60px 0; }

  .hero__content { padding: 32px 20px; }
  .hero__title   { letter-spacing: 0.04em; }
  .hero__copy    { font-size: 1.1rem; }

  .hero-sub-cta { padding: 52px 20px 60px; }

  .hero__cta-sub,
  .cta-button {
    padding: 18px 32px;
    font-size: 1.25rem;
    letter-spacing: 0.14em;
    width: min(340px, 90%);
    text-align: center;
  }

  .awakening__message     { padding: 20px 16px; margin: 28px auto; }
  .awakening__declaration { font-size: 1rem; }

  .empathy__cards { gap: 12px; }
  .empathy__card  { padding: 24px 16px; }
  .empathy__filters { gap: 10px; }
  .empathy__filters span { font-size: 1rem; padding: 5px 12px; }

  .deco-panel { max-width: 100%; margin-bottom: 40px; }

  .essence__split { gap: 28px; margin-bottom: 40px; }
  .essence__split-visual::before { display: none; }
  .essence__highlight { padding: 28px 18px; }
  .essence__highlight p { font-size: 1.3rem; }
  .essence__outcome { grid-template-columns: 1fr; gap: 10px; }
  .outcome-item { padding: 14px 18px; font-size: 1rem; }

  .path { padding: 56px 0; }
  .step { grid-template-columns: 64px 1fr; gap: 20px; padding: 24px 16px; }
  .step__num { font-size: 2.2rem; }
  .step__title { font-size: 1.3rem; }
  .step__body { font-size: 1rem; }

  .deco-band { height: 200px; }
  .deco-band__text { font-size: 1.05rem; letter-spacing: 0.15em; }

  .offerings__cards,
  .offerings__cards--three { gap: 14px; max-width: 320px; }
  .offerings__card { padding: 28px 18px; }
  .offerings__card h4 { font-size: 1.1rem; }
  .offerings__promise { padding: 28px 20px; }
  .offerings__group-title:not(:first-of-type) { margin-top: 48px; }

  .join-flow__visual { min-height: 480px; }
  .join-flow__content { padding: 40px 20px; }
  .join-flow__step { padding: 12px 16px; gap: 14px; }
  .join-flow__step-text { font-size: 1rem; }

  .details__info     { padding: 28px 20px 20px; }
  .details__includes { padding: 20px; }
  .details__notes    { padding: 20px; }
  .details__includes-list { grid-template-columns: 1fr; gap: 8px; }
  .details__includes-list li { font-size: 1rem; padding: 8px 14px; }
  .details__row { gap: 16px; padding: 14px 0; }
  .details__label { width: 76px; font-size: 0.8rem; letter-spacing: 0.08em; }
  .details__value { font-size: 1rem; }
  .details__price { font-size: 1.9rem; }

  .faq__item { padding: 20px 16px; }
  .faq__question { font-size: 1.05rem; }
  .faq__answer { font-size: 1rem; }

  .final-message { padding: 80px 0; }
  .final-message__ok { font-size: 2.3rem; letter-spacing: 0.2em; }
  .final-message__discovery { font-size: 1.3rem; margin: 36px 0; }
  .final-message__quote { font-size: 1.2rem; }

  .cta-section { padding: 64px 0; }
  .fear-release { padding: 28px 20px; }
  .fear-release__text { font-size: 1.05rem; line-height: 2; }
  .reassurance p { font-size: 1rem; }

  .section-title { font-size: 1.5rem; margin-bottom: 36px; }
  .section-label { font-size: 0.8rem; letter-spacing: 0.2em; }
}
