:root {
  /* テキストカラー */
  --ink: #1a2540;            /* 本文（インディゴ寄りの墨色） */
  --ink-soft: #4a5670;       /* 中間テキスト */
  --muted: #7c8499;          /* 補助テキスト */

  /* 背景・ペーパー（クール寄り） */
  --paper: #eef2f7;          /* メイン背景（クール） */
  --paper-deep: #d8e1ed;     /* 深めクール */
  --paper-pure: #fafcfe;     /* 最も明るい背景（純白寄り） */
  --mist: #eef2f7;           /* インディゴミスト */

  /* インディゴファミリー（拡張） */
  --indigo-deep: #0f1d36;    /* 最暗 */
  --indigo: #1f3357;         /* メインインディゴ（基準） */
  --indigo-mid: #3a4d72;     /* 中間 */
  --indigo-soft: #6c7c9c;    /* 柔らかインディゴ */
  --indigo-light: #c9d2e2;   /* 淡インディゴ */
  --indigo-mist: #edf0f6;    /* 最淡インディゴミスト */

  /* ウォームアクセント（コントラスト用に保持） */
  --sand: #d6c3a4;
  --sage: #9aa89f;
  --clay: #a77863;
  --clay-deep: #6e4538;

  /* ライン・シャドウ */
  --line: rgba(31, 51, 87, 0.14);
  --line-soft: rgba(31, 51, 87, 0.08);
  --shadow: 0 22px 60px rgba(15, 29, 54, 0.14);
  --shadow-soft: 0 12px 34px rgba(15, 29, 54, 0.08);

  /* CTA */
  --cta: var(--indigo-deep);
  --cta-hover: #050d1c;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper-pure);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px 5vw;
  background: rgba(250, 252, 254, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper-pure);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(15, 29, 54, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.25;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

.header-nav a {
  position: relative;
  padding: 8px 2px;
  transition: color 180ms ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta,
.button,
.sticky-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

/* LINEアイコン（ボタン内） */
.button-line-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  border-radius: 6px;
  background: var(--paper-pure);
  padding: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.sticky-line-icon {
  width: 26px;
  height: 26px;
}

.header-cta,
.button.primary,
.sticky-reserve {
  color: var(--paper-pure);
  background: var(--cta);
  box-shadow: 0 18px 42px rgba(32, 43, 37, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: rgba(250, 252, 254, 0.78);
  border: 1px solid var(--line);
}

.header-cta {
  min-height: 42px;
  font-size: 0.84rem;
}

.header-cta:hover,
.button.primary:hover,
.sticky-reserve:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(32, 43, 37, 0.3);
}

.button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.section-inner {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 74px;
  background: var(--indigo-deep);
  overflow: hidden;
  aspect-ratio: 1916 / 681;
  min-height: 580px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  animation:
    heroEntrance 1800ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    heroKenBurns 24s ease-in-out 1800ms infinite alternate;
  opacity: 0;
  transform: scale(1.04);
  filter: blur(2px);
  will-change: transform, opacity, filter;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translateX(0) translateY(0);
  }
  50% {
    transform: scale(1.08) translateX(-2%) translateY(-1%);
  }
  100% {
    transform: scale(1.16) translateX(-4%) translateY(0.8%);
  }
}

/* ヒーロー光彩エフェクト（左側を暗くしてテキスト可読性UP） */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    /* 左サイドを暗くしてテキストを読みやすく */
    linear-gradient(90deg, rgba(15, 29, 54, 0.78) 0%, rgba(15, 29, 54, 0.45) 35%, rgba(15, 29, 54, 0.05) 60%, transparent 75%),
    /* 下部にもうっすら暗いベール */
    linear-gradient(180deg, transparent 60%, rgba(15, 29, 54, 0.25) 100%);
}

/* スクロールヒント */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 248, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms ease;
}

.hero-scroll-hint:hover {
  color: var(--sand);
  transform: translateX(-50%) translateY(2px);
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.7) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sand) 0%, transparent 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* CTAボタン内のアロー */
.button-arrow {
  display: inline-block;
  margin-left: 6px;
  font-weight: 400;
  transition: transform 220ms ease;
}

.button.primary:hover .button-arrow {
  transform: translateX(3px);
}

/* ヒーロー内のテキストリンク（Secondary用 - 軽量化） */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 14px 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 253, 248, 0.3);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.hero-text-link:hover {
  color: var(--sand);
  border-color: var(--sand);
  transform: translateY(1px);
}

.hero-text-link span {
  transition: transform 200ms ease;
}

.hero-text-link:hover span {
  transform: translateY(2px);
}

/* モバイル最適化 */
@media (max-width: 680px) {
  .hero {
    aspect-ratio: auto;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: 88px;
    padding-bottom: 60px;
  }

  .hero-bg img {
    object-fit: cover;
    /* 女性をやや右寄せ（左側のバッジエリアと首タトゥーを分ける） */
    object-position: 65% 22%;
  }

  .hero-glow {
    background:
      linear-gradient(180deg, rgba(15, 29, 54, 0.4) 0%, rgba(15, 29, 54, 0.65) 100%);
  }

  .hero-scroll-hint {
    bottom: 18px;
    font-size: 0.68rem;
  }

  .hero-scroll-line {
    height: 36px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin: 0 auto;
  display: block;
  padding: 58px 0 70px;
}

/* ヒーロー内のテキスト：ダーク背景用に白系で統一（高い優先度で確実に上書き） */
.hero h1 {
  color: var(--paper-pure);
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero .eyebrow {
  color: var(--sand);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero .hero-lead {
  color: #ffffff;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.7),
    0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.hero .hero-lead strong {
  color: var(--sand);
  font-weight: 700;
}

.hero .hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero .hero-facts span {
  width: 100%;
  justify-content: center;
  color: rgba(255, 253, 248, 0.95);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(214, 195, 164, 0.4);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.hero .hero-facts b {
  color: var(--sand);
  font-size: 0.96rem;
  margin-right: 4px;
}

@media (max-width: 480px) {
  .hero .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

/* ヒーロー内のボタン：ダーク背景で映えるように */
.hero .button.primary {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(214, 195, 164, 0.35);
}

.hero .button.secondary {
  color: var(--paper-pure);
  background: rgba(255, 253, 248, 0.12);
  border: 1px solid rgba(255, 253, 248, 0.4);
  backdrop-filter: blur(8px);
}

.hero .button.secondary:hover {
  background: rgba(255, 253, 248, 0.18);
}

.hero-copy {
  max-width: 660px;
}

/* ヒーローコピーの順次フェードイン */
.hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroCopyIn 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-copy > .eyebrow         { animation-delay: 320ms; }
.hero-copy > h1               { animation-delay: 480ms; }
.hero-copy > .hero-lead       { animation-delay: 720ms; }
.hero-copy > .hero-facts      { animation-delay: 920ms; }
.hero-copy > .hero-actions    { animation-delay: 1120ms; }

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

/* スクロールヒントは少し遅れて表示（centeringのtransformを壊さないよう opacity のみ） */
.hero-scroll-hint {
  opacity: 0;
  animation: heroHintIn 800ms cubic-bezier(0.22, 1, 0.36, 1) 1400ms forwards;
}

@keyframes heroHintIn {
  to { opacity: 1; }
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.mobile-break {
  display: none;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 4.4vw, 4.25rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-lead,
.lead {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 2;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.lead.narrow {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-facts span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 42px;
  padding: 8px 15px;
  background: rgba(250, 252, 254, 0.82);
  border: 1px solid rgba(31, 51, 87, 0.08);
  border-radius: 999px;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

.hero-facts b {
  color: var(--indigo);
  font-weight: 700;
}

.hero-lead strong {
  color: var(--indigo-deep);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--paper-pure);
  border: 1px solid rgba(250, 252, 254, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo img,
.gallery-item img,
.scene-photo img,
.timing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo {
  top: 38px;
  right: 24px;
  width: min(380px, 72%);
  aspect-ratio: 1 / 1;
}

.top-photo {
  top: 0;
  left: 0;
  width: 46%;
  aspect-ratio: 3 / 4;
}

.bottom-photo {
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4 / 5;
}

.sub-photo {
  filter: saturate(0.92) contrast(0.96);
}

.intro-band {
  background: var(--ink);
  color: var(--paper-pure);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  border-left: 1px solid rgba(255, 253, 248, 0.16);
}

.intro-grid p {
  min-height: 116px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.92);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.06rem;
  line-height: 1.65;
}

.intro-grid p:last-child {
  border-right: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  max-width: none;
  margin: 0;
  text-align: left;
}

.about-layout,
.price-layout,
.timing-layout,
.access-layout,
.caution-layout,
.scene-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.point-card,
.price-row,
.flow-list li,
details {
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.point-card {
  padding: 28px;
}

.point-card span,
.flow-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.point-card p,
.flow-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.85;
}

.dark-section {
  color: var(--paper-pure);
  background:
    linear-gradient(120deg, rgba(22, 34, 55, 0.96) 0%, rgba(32, 31, 29, 0.9) 56%, rgba(32, 31, 29, 0.72) 100%),
    url("assets/jagua-catalog-overview.jpg") center / cover;
}

.scene-copy p {
  color: rgba(255, 253, 248, 0.82);
}

.scene-copy h2 {
  color: var(--paper-pure);
}

.dark-section .section-kicker {
  color: var(--sand);
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.scene-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 15px;
  color: rgba(255, 253, 248, 0.92);
  background: rgba(255, 253, 248, 0.1);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.scene-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-pure);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(15, 29, 54, 0.1);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 29, 54, 0.16);
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* カタログ画像は全体が見えるように contain で表示 */
.gallery-item--catalog {
  background: var(--paper-pure);
  padding: 8px;
}

.gallery-item--catalog img {
  object-fit: contain;
}

@media (max-width: 780px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.price-section {
  background: linear-gradient(180deg, #d8e0ec 0%, var(--indigo-light) 100%);
}

.price-table {
  display: grid;
  gap: 12px;
}

/* 料金セクション：上揃え + カラム幅を均等寄りに */
.price-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
}

/* 左カラム：タイトル下の余白を広めに */
.price-layout .section-heading.left h2 {
  margin-bottom: 28px;
}

/* 左カラム：リード文の行間とサイズを広げて読みやすく */
.price-layout .section-heading.left .lead {
  margin-bottom: 32px;
  line-height: 2.1;
  font-size: 1rem;
}

/* 左カラム CTAボタン下のスペース */
.price-layout .section-heading.left .button {
  margin-bottom: 4px;
}

/* 左カラムに移動した注意事項：余白広めの洗練デザイン */
.price-note-block--left {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.1);
  border-left: 3px solid var(--indigo);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(15, 29, 54, 0.05);
}

.price-note-block--left .price-note-title {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--indigo-deep);
}

.price-note-block--left .price-note-list {
  margin: 0;
  padding-left: 20px;
}

.price-note-block--left .price-note-list li {
  margin-bottom: 6px;
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.price-note-block--left .price-note-list li:last-child {
  margin-bottom: 0;
}

.price-note--left {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

@media (max-width: 980px) {
  /* 携帯：1カラムに変更し、表示順を入れ替え可能にする */
  .price-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  /* section-heading をフラット化（子要素がprice-layout直下扱いに） */
  .price-layout .section-heading.left {
    display: contents;
  }

  /* 表示順を指定：見出し → 料金表 → 注意 → ボタン */
  /* kicker は inline-block なので align-self で中央配置 */
  .price-layout .section-heading.left .section-kicker {
    order: 1;
    align-self: center;
  }
  /* h2 はブロック要素として全幅、テキストを中央寄せ */
  .price-layout .section-heading.left h2 {
    order: 2;
    text-align: center;
  }
  .price-layout .section-heading.left .lead {
    order: 3;
    text-align: left;
  }
  .price-layout .price-table { order: 4; }
  .price-layout .section-heading.left .price-note-block--left {
    order: 5;
    text-align: left;
  }
  .price-layout .section-heading.left .price-note--left {
    order: 6;
    text-align: left;
  }
  .price-layout .section-heading.left .button {
    order: 7;
    align-self: stretch;
  }

  /* 携帯用の各要素のスペーシング */
  .price-layout .section-heading.left h2 {
    margin-bottom: 22px;
  }

  .price-layout .section-heading.left .lead {
    margin-bottom: 28px;
    text-align: left;
  }

  .price-layout .price-table {
    margin-bottom: 28px;
  }

  /* 注意ブロックは料金表の直下に */
  .price-note-block--left {
    margin-top: 0;
    padding: 20px 22px;
  }

  /* ボタンは最下部 */
  .price-layout .section-heading.left .button {
    margin-top: 28px;
    margin-bottom: 0;
  }
}

/* ============================================
   料金プランカード（デザインから選択 ¥3,000〜）
   ============================================ */
.price-plan-card {
  position: relative;
  padding: 22px 24px 20px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--paper-pure);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(15, 29, 54, 0.18);
  margin-bottom: 8px;
}

.price-plan-card__label {
  margin: 0 0 8px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sand);
}

.price-plan-card__price {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.price-plan-card__desc {
  margin: 0 0 6px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 253, 248, 0.92);
}

.price-plan-card__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.65);
}

/* セクション区切り見出し（料金表の中の小見出し） */
.price-section-divider {
  margin: 18px 0 4px;
  padding-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--indigo);
  border-bottom: 1px solid rgba(31, 51, 87, 0.15);
}

@media (max-width: 680px) {
  .price-plan-card {
    padding: 18px 18px 16px;
  }

  .price-plan-card__price {
    font-size: 1.55rem;
  }

  .price-plan-card__desc {
    font-size: 0.88rem;
  }

  .price-section-divider {
    margin: 14px 0 2px;
    font-size: 0.78rem;
  }
}

.price-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  grid-template-rows: auto;
  column-gap: 18px;
  row-gap: 2px;
  align-items: center;
  padding: 14px 20px;
}

.price-row.featured {
  color: var(--paper-pure);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border-color: transparent;
}

.price-row.featured strong {
  color: var(--paper-pure);
}

.price-row span {
  grid-column: 1;
  grid-row: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--indigo);
}

.price-row.featured span {
  color: var(--sand);
}

.price-row small {
  grid-column: 2;
  grid-row: 1;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.price-row.featured small {
  color: rgba(255, 253, 248, 0.78);
}

.price-row strong {
  grid-column: 3;
  grid-row: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1;
  color: var(--indigo);
  text-align: right;
  white-space: nowrap;
}

/* 人気サイズ用：ボーダーを少し強調＋小さい人気バッジ */
.price-row--popular {
  border: 1px solid rgba(31, 51, 87, 0.3);
  box-shadow: 0 8px 24px rgba(15, 29, 54, 0.1);
}

.price-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--indigo);
  color: var(--paper-pure);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  vertical-align: middle;
}

/* SS追加施術用：白背景＋破線ボーダーで「補助オプション」を明示 */
.price-row--option {
  grid-template-columns: 140px minmax(0, 1fr) auto;
  background: var(--paper-pure);
  border: 1.5px dashed rgba(31, 51, 87, 0.35);
  box-shadow: 0 4px 14px rgba(15, 29, 54, 0.06);
}

.price-row--option span em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  background: var(--indigo);
  color: var(--paper-pure);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

.price-row--option strong {
  color: var(--indigo);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* 追加料金条件の注意書きブロック */
.price-note-block {
  margin-top: 16px;
  padding: 20px 22px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.12);
  border-radius: 8px;
  border-left: 3px solid var(--indigo);
}

.price-note-title {
  margin: 0 0 10px;
  color: var(--indigo);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-note-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.85;
}

.price-note-list li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 4px;
}

.price-note-list li::marker {
  color: var(--indigo);
}

.price-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.timing-photo {
  margin: 0;
  overflow: hidden;
  max-width: 420px;
  aspect-ratio: 9 / 14;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* タイムライン風デザイン */
.timing-list {
  position: relative;
  margin: 32px 0 0;
  padding: 0 0 0 8px;
  list-style: none;
}

/* 縦の連結線 */
.timing-list::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(31, 51, 87, 0.2) 0%,
    rgba(31, 51, 87, 0.45) 35%,
    var(--indigo) 50%,
    rgba(31, 51, 87, 0.45) 65%,
    rgba(31, 51, 87, 0.15) 100%);
}

.timing-list li {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 8px 0 24px 38px;
}

.timing-list li:last-child {
  padding-bottom: 0;
}

/* タイムラインの丸マーカー */
.timing-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--paper-pure);
  border: 2px solid var(--indigo);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31, 51, 87, 0.06);
  z-index: 1;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timing-list li:hover::before {
  transform: scale(1.15);
}

/* 48時間後（BEST）の特別マーカー */
.timing-list__peak::before {
  width: 22px;
  height: 22px;
  left: 5px;
  top: 11px;
  background: var(--indigo);
  border-color: var(--sand);
  border-width: 2px;
  box-shadow:
    0 0 0 6px rgba(31, 51, 87, 0.12),
    0 0 20px rgba(31, 51, 87, 0.3);
  animation: peakPulse 2.4s ease-in-out infinite;
}

@keyframes peakPulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(31, 51, 87, 0.12),
      0 0 18px rgba(31, 51, 87, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(31, 51, 87, 0.08),
      0 0 26px rgba(31, 51, 87, 0.4);
  }
}

/* 時刻ラベル */
.timing-list__time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.timing-list__peak .timing-list__time {
  color: var(--indigo-deep);
  font-size: 1.15rem;
}

/* BESTバッジ */
.timing-list__badge {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--sand);
  border-radius: 999px;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-family: Georgia, "Times New Roman", serif;
  vertical-align: middle;
}

/* 説明文 */
.timing-list__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.85;
}

.timing-list__peak .timing-list__desc {
  color: var(--ink);
  font-weight: 500;
}

.timing-copy .button {
  margin-top: 28px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 230px;
  padding: 36px 24px 28px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.08);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(15, 29, 54, 0.12);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms ease;
}

/* 上部アクセント：インディゴライン（Aftercareと差別化） */
.flow-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  z-index: 1;
}

.flow-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 29, 54, 0.2);
}

/* 番号バッジをインディゴ円形に */
.flow-list span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--paper-pure);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(15, 29, 54, 0.2);
}

/* カード間の「›」アロー */
.flow-list li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-52%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.2);
  border-radius: 50%;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(15, 29, 54, 0.1);
}

.caution-section {
  padding: 64px 0;
}

.caution-list {
  display: grid;
  gap: 12px;
}

.caution-list p {
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  color: rgba(255, 253, 248, 0.86);
}

/* Access セクション（インディゴ寄りの上品なグラデーション） */
.access-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 51, 87, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(31, 51, 87, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper-pure) 0%, var(--indigo-mist) 100%);
  border-top: 1px solid var(--line-soft);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.access-info dl {
  margin: 0;
  display: grid;
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.access-info dt {
  margin: 24px 0 8px;
  padding: 0;
  border-bottom: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-info dt:first-child {
  margin-top: 0;
}

.access-info dd {
  margin: 0;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.85;
}

.access-info dd:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.access-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-soft);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(0.95);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

details {
  box-shadow: none;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

details[open] {
  border-color: rgba(31, 51, 87, 0.32);
  box-shadow: var(--shadow-soft);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 18px 48px 18px 22px;
  font-weight: 700;
  line-height: 1.55;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--indigo);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

.final-cta {
  padding: 104px 0 118px;
  text-align: center;
  color: var(--paper-pure);
  background:
    linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 60%, var(--indigo-deep) 100%);
}

.final-inner {
  max-width: 760px;
}

.final-cta .section-kicker {
  color: var(--sand);
}

.final-cta h2 {
  color: var(--paper-pure);
}

.final-cta p {
  color: rgba(255, 253, 248, 0.88);
}

.final-cta .button {
  margin-top: 18px;
}

.instagram-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--sand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 220ms ease;
}

.instagram-link:hover {
  color: var(--paper-pure);
}

.site-footer {
  padding: 34px 0;
  color: var(--ink-soft);
  background: var(--paper-pure);
  border-top: 1px solid rgba(31, 51, 87, 0.1);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-foot {
  margin: 0;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
}

.brand-foot span {
  margin-left: 10px;
  color: var(--clay);
  font-size: 0.78rem;
}

.footer-inner p,
.footer-inner small {
  margin: 0;
}

.sticky-reserve {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  min-width: 180px;
  min-height: 54px;
  padding: 0 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s 200ms, background 160ms ease;
}

.sticky-reserve.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 200ms ease, transform 200ms ease, visibility 0s 0s, background 160ms ease;
}

/* ============================================
   スクロール演出（リッチ）
   ============================================ */

/* デフォルト：ふわっと下から */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* スケール＋フェード（カード向き） */
.reveal--scale {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 800ms cubic-bezier(0.34, 1.4, 0.64, 1),
              transform 800ms cubic-bezier(0.34, 1.4, 0.64, 1);
}

.reveal--scale.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 左から滑り込み */
.reveal--slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--slide-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* 右から滑り込み */
.reveal--slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--slide-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ぼかし→クリア */
.reveal--blur {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.02);
  transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 1000ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--blur.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* スタガー（子要素を順番に表示） */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 60ms; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 160ms; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 260ms; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 360ms; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 460ms; }
.reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 560ms; }
.reveal-stagger.is-revealed > *:nth-child(7) { transition-delay: 660ms; }
.reveal-stagger.is-revealed > *:nth-child(8) { transition-delay: 760ms; }

/* ============================================
   モバイル限定：デザインギャラリーの遊び心アニメ
   左右交互にスライド＋傾き＋拡大、表示後はゆっくりズーム
   ============================================ */
@media (max-width: 680px) {
  /* 左から斜めにスライドイン */
  .gallery-item--enter-left {
    opacity: 0;
    transform: translateX(-50px) translateY(20px) rotate(-3deg) scale(0.92);
    transition:
      opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  /* 右から斜めにスライドイン */
  .gallery-item--enter-right {
    opacity: 0;
    transform: translateX(50px) translateY(20px) rotate(3deg) scale(0.92);
    transition:
      opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .gallery-item--enter-left.is-revealed,
  .gallery-item--enter-right.is-revealed {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0) scale(1);
  }

  /* 表示後：画像が継続的にスローズーム（ケンバーンズ風） */
  .gallery-item--enter-left.is-revealed img,
  .gallery-item--enter-right.is-revealed img {
    animation: galleryKenBurns 14s ease-in-out infinite alternate;
  }

  @keyframes galleryKenBurns {
    0% {
      transform: scale(1) translateX(0);
    }
    100% {
      transform: scale(1.08) translateX(-2%);
    }
  }

  /* モバイルでは tall クラスのアスペクト比をリセット（既存の box-shape を尊重） */
  .gallery-item {
    transform-origin: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal--scale,
  .reveal--slide-left,
  .reveal--slide-right,
  .reveal--blur,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-copy > *,
  .hero-scroll-hint {
    opacity: 1 !important;
    transform: none;
  }

  .hero-scroll-hint {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .header-nav {
    display: none;
  }

  .hero-inner,
  .about-layout,
  .price-layout,
  .timing-layout,
  .access-layout,
  .caution-layout,
  .scene-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .flow-list,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* タブレット：2列の場合、2番目（行末）のアローを下向きに */
  .flow-list li:not(:last-child)::after {
    font-size: 1.3rem;
  }

  .flow-list li:nth-child(2n):not(:last-child)::after {
    content: "›";
    top: auto;
    right: 50%;
    bottom: -22px;
    transform: translateX(50%) rotate(90deg);
  }

  .scene-photo,
  .timing-photo {
    max-width: none;
  }
}

/* モバイル：ヒーロー画像は contain だと縦長画面で小さくなりすぎるため cover に */
/* ============================================
   クイックナビ：モバイル限定（ヒーロー直下）
   ============================================ */
.quick-nav {
  display: none;
}

@media (max-width: 768px) {
  .quick-nav {
    display: block;
    background: var(--paper-pure);
    border-bottom: 1px solid rgba(31, 51, 87, 0.08);
    box-shadow: 0 2px 12px rgba(15, 29, 54, 0.04);
  }

  .quick-nav__inner {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .quick-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .quick-nav a {
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(31, 51, 87, 0.05);
    color: var(--indigo-deep);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .quick-nav a:active,
  .quick-nav a:hover {
    background: var(--indigo);
    color: var(--paper-pure);
  }
}

@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    min-height: 620px;
  }

  .hero-bg img {
    object-fit: cover;
    /* 女性をやや右寄せ（左側のバッジエリアと首タトゥーを分ける） */
    object-position: 65% 22%;
  }

  /* 左サイドの暗いベールを強めて文字を読みやすく */
  .hero-glow {
    background:
      linear-gradient(180deg, rgba(15, 29, 54, 0.55) 0%, rgba(15, 29, 54, 0.35) 35%, rgba(15, 29, 54, 0.55) 100%),
      linear-gradient(90deg, rgba(15, 29, 54, 0.4) 0%, transparent 60%);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 80px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-inner {
    width: calc(100% - 48px);
    max-width: calc(100vw - 48px);
    margin-right: auto;
    margin-left: auto;
    padding: 48px 0 58px;
    min-width: 0;
    overflow: hidden;
  }

  .section-inner {
    width: calc(100vw - 48px);
  }

  .hero-copy,
  .hero-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.6vw, 2.75rem);
    line-height: 1.42;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .mobile-break {
    display: block;
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  p,
  .lead {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  /* バッジは左半分のみに配置：右側（首・タトゥー）を完全に空ける */
  .hero .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    max-width: 48%;
  }

  .hero .hero-facts span {
    justify-content: flex-start;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 6px 12px;
    font-size: 0.72rem;
    line-height: 1.3;
    color: var(--paper-pure);
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 253, 248, 0.45);
    box-shadow: none;
    text-shadow:
      0 1px 3px rgba(15, 29, 54, 0.9),
      0 0 8px rgba(15, 29, 54, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero .hero-facts b {
    color: var(--sand);
    font-size: 0.8rem;
    text-shadow:
      0 1px 3px rgba(15, 29, 54, 0.9),
      0 0 10px rgba(15, 29, 54, 0.5);
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
  }

  .hero-photo,
  .main-photo,
  .top-photo,
  .bottom-photo {
    position: static;
    width: 100%;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-soft);
  }

  .intro-grid,
  .point-grid,
  .flow-list,
  .faq-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* モバイル：1列の場合、全てのアローを下向きに（ギャップも広げる） */
  /* ============================================
     携帯：フローを step-by-step 縦タイムラインに
     ============================================ */
  .flow-list {
    position: relative;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 0;
    margin-top: 8px;
  }

  /* 番号バッジの中心を貫く縦線（最初のバッジ中心から最後のバッジ中心まで） */
  .flow-list::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg,
      var(--indigo) 0%,
      var(--indigo-deep) 100%);
    opacity: 0.25;
    z-index: 0;
  }

  /* カード装飾を排除、横並び（番号 / テキスト）レイアウトに */
  .flow-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  /* 既存の上端カラーラインを非表示 */
  .flow-list li::before {
    display: none;
  }

  /* 番号バッジ：縦線上に乗る円形 */
  .flow-list span {
    position: relative;
    z-index: 2;
    grid-row: 1 / span 2;
    margin: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--indigo);
    color: var(--paper-pure);
    font-size: 0.84rem;
    box-shadow: 0 4px 14px rgba(15, 29, 54, 0.25);
  }

  /* タイトル */
  .flow-list li h3 {
    grid-column: 2;
    margin: 6px 0 4px;
    font-size: 1.02rem;
    line-height: 1.4;
  }

  /* 本文 */
  .flow-list li p {
    grid-column: 2;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  /* 既存の下向き矢印は不要（縦線で繋がるため） */
  .flow-list li:not(:last-child)::after,
  .flow-list li:nth-child(2n):not(:last-child)::after {
    display: none;
  }

  /* ホバーリフトは無効化（縦線上で動くと不自然） */
  .flow-list li:hover {
    transform: none;
    box-shadow: none;
  }

  .intro-grid p {
    min-height: 76px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }

  .price-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    column-gap: 12px;
    padding: 12px 16px;
  }

  .price-row span {
    font-size: 1.2rem;
  }

  .price-row small {
    font-size: 0.78rem;
  }

  .price-row strong {
    font-size: 1.15rem;
  }

  .price-row--option {
    grid-template-columns: 110px minmax(0, 1fr) auto;
  }

  .price-row--option span em {
    font-size: 0.6rem;
    padding: 1px 6px;
    margin-left: 4px;
  }

  .timing-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 6px 0 22px 36px;
  }

  .timing-list__time {
    font-size: 0.98rem;
  }

  .timing-list__peak .timing-list__time {
    font-size: 1.05rem;
  }

  .timing-list__desc {
    font-size: 0.88rem;
  }

  .access-info dl {
    grid-template-columns: 1fr;
  }

  .access-info dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .access-info dd {
    padding-top: 0;
  }

  .footer-inner {
    display: grid;
    gap: 8px;
  }

  .sticky-reserve {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  /* 料金行：「人気」バッジが詰まる問題対応 */
  .price-row {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    padding: 14px 16px;
  }

  .price-row span {
    grid-row: 1 / span 2;
    align-self: center;
  }

  .price-row strong {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .price-row small {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .price-badge {
    margin-left: 6px;
  }

  /* SS（追加施術） は名前列を広めに */
  .price-row--option {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  /* 価格テーブル全体のセクション余白調整 */
  .price-layout {
    gap: 28px;
  }

  /* ヒーローのスクロールヒント：小さい画面では場所が窮屈 */
  .hero-scroll-hint {
    bottom: 14px;
    font-size: 0.65rem;
    gap: 8px;
  }

  .hero-scroll-line {
    height: 36px;
  }

  /* 注意事項：アレルゲン箇条書きを2列にしてコンパクトに */
  .caution-allergens {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
  }

  /* パッチテストバッジ：モバイルでは角丸を緩めて読みやすく */
  .caution-test--standalone {
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 0.9rem !important;
    line-height: 1.7;
  }

  .caution-test--standalone strong {
    display: block;
    margin: 0 0 4px;
  }

  /* 最終CTA：余白とテキスト調整 */
  .final-cta {
    padding: 64px 0 56px;
  }

  .final-inner h2 {
    font-size: clamp(1.55rem, 6.6vw, 2rem);
  }

  /* セクション見出しの中央ライン：左寄せのときは左端から */
  .section-heading.left .section-kicker::after {
    left: 0;
    transform: none;
  }

  /* 料金セクションは中央寄せなので、下線も中央に戻す */
  .price-layout .section-heading.left .section-kicker::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* アクセス情報の dt/dd 余白詰め */
  .access-info dt {
    margin-top: 14px;
    font-size: 0.78rem;
  }

  .access-info dt:first-child {
    margin-top: 0;
  }

  .access-info dd {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  /* 地図の高さ確保 */
  .access-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 10px;
  }

  /* タイミングセクションのCTA上の余白 */
  .timing-section .center-action {
    margin-top: 28px;
  }

  /* ギャラリーのキャッチコピー間隔 */
  .gallery-grid {
    gap: 10px;
  }

  /* セクションヘディングの余白タイト化 */
  .section-heading {
    margin-bottom: 28px;
  }

  /* ヒーローバッジの行間を詰めて見やすく */
  .hero-facts span {
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .hero-facts b {
    font-size: 0.98rem;
  }

  /* 改行ヒント：モバイルブレイク後の行間を整える */
  h1 .mobile-break + br,
  .hero-lead .mobile-break {
    display: block;
  }
}

/* 超小型画面（iPhone SE等 〜375px） */
@media (max-width: 380px) {
  .hero-facts span {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero-facts b {
    font-size: 0.82rem;
  }

  .section {
    padding: 42px 0;
  }

  .hero-inner {
    padding: 40px 0 50px;
  }

  h1 {
    font-size: clamp(1.75rem, 9vw, 2.3rem);
  }

  h2 {
    font-size: clamp(1.4rem, 6.6vw, 1.85rem);
  }

  .caution-allergens {
    grid-template-columns: 1fr;
  }

  .button {
    font-size: 0.92rem;
    padding: 14px 18px;
  }

  .sticky-reserve {
    font-size: 0.92rem;
    padding: 12px 16px;
  }
}

/* ============================================
   セクション背景リズム
   ============================================ */

/* About セクション - 薄インディゴミスト（クールな導入） */
.about-section {
  background: linear-gradient(180deg, var(--paper-pure) 0%, #eef2f7 100%);
}

/* Timing セクション - ダークインディゴ */
.timing-section {
  color: var(--paper-pure);
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 60%, var(--indigo-deep) 100%);
}

.timing-section .section-kicker {
  color: var(--sand);
}

.timing-section h2 {
  color: var(--paper-pure);
}

.timing-section .lead {
  color: rgba(255, 253, 248, 0.85);
}

.timing-section .lead strong {
  color: var(--sand);
}

/* タイムライン画像カード：ダーク背景で映えるよう調整 */
.timing-section .timing-timeline {
  background: var(--paper-pure);
  border-color: rgba(255, 253, 248, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.timing-section .timing-timeline figcaption {
  color: var(--ink-soft);
}

/* タイムラインリスト（縦の線・マーカー・テキスト） */
.timing-section .timing-list::before {
  background: linear-gradient(180deg,
    rgba(255, 253, 248, 0.2) 0%,
    rgba(255, 253, 248, 0.55) 35%,
    var(--sand) 50%,
    rgba(255, 253, 248, 0.55) 65%,
    rgba(255, 253, 248, 0.18) 100%);
}

.timing-section .timing-list li::before {
  background: var(--indigo-deep);
  border-color: var(--paper-pure);
  box-shadow: 0 0 0 4px rgba(255, 253, 248, 0.08);
}

.timing-section .timing-list__peak::before {
  background: var(--sand);
  border-color: var(--paper-pure);
  box-shadow:
    0 0 0 6px rgba(214, 195, 164, 0.2),
    0 0 22px rgba(214, 195, 164, 0.4);
}

@keyframes peakPulseDark {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(214, 195, 164, 0.2),
      0 0 18px rgba(214, 195, 164, 0.3);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(214, 195, 164, 0.12),
      0 0 28px rgba(214, 195, 164, 0.5);
  }
}

.timing-section .timing-list__peak::before {
  animation: peakPulseDark 2.4s ease-in-out infinite;
}

.timing-section .timing-list__time {
  color: var(--sand);
}

.timing-section .timing-list__peak .timing-list__time {
  color: var(--paper-pure);
}

.timing-section .timing-list__desc {
  color: rgba(255, 253, 248, 0.85);
}

.timing-section .timing-list__peak .timing-list__desc {
  color: var(--paper-pure);
}

.timing-section .timing-list__badge {
  background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 100%);
  color: var(--indigo-deep);
}

/* アラートボックス */
.timing-section .timing-alert {
  background: rgba(255, 253, 248, 0.08);
  border-left-color: var(--sand);
}

.timing-section .timing-alert strong {
  color: var(--sand);
}

.timing-section .timing-alert span {
  color: rgba(255, 253, 248, 0.85);
}

/* 個人差ノート */
.timing-section .timing-note {
  background: rgba(255, 253, 248, 0.06);
  color: rgba(255, 253, 248, 0.78);
}

/* Flow セクション - Caution セクションと同じ背景 */
#flow {
  background: linear-gradient(180deg, #d8e0ec 0%, var(--indigo-light) 100%);
  position: relative;
}

/* FAQ セクション - インディゴミスト（深め） */
#faq {
  background:
    linear-gradient(180deg, var(--indigo-mist) 0%, #d8e0ed 100%);
  position: relative;
}

/* FAQ内のdetails背景を白系に保つ */
#faq details {
  background: var(--paper-pure);
}

/* セクション間の繊細な仕切り線（オプション） */
.section + .section,
.section + .caution-section,
.section + .access-section,
.caution-section + .section,
.aftercare-section + .section {
  position: relative;
}

/* ============================================
   追加セクション：About / Recommend / Timing-alert
   / Caution / Aftercare 用スタイル
   ============================================ */

/* About: 4カードのpoint-grid 2x2 → 4x1 デスクトップで横並び調整 */
.about-section .point-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.point-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Recommend (For You) - 3カードのダークセクション */
.recommend-section {
  background:
    linear-gradient(135deg, rgba(22, 34, 55, 0.96) 0%, rgba(37, 56, 88, 0.92) 50%, rgba(22, 34, 55, 0.96) 100%);
  color: var(--paper-pure);
}

.recommend-section .section-heading h2,
.recommend-section .lead {
  color: var(--paper-pure);
}

.recommend-section .section-kicker {
  color: var(--sand);
}

.recommend-section .lead {
  color: rgba(255, 253, 248, 0.85);
}

.recommend-section .lead.narrow {
  text-align: center;
}

/* モバイルでは左寄せ */
@media (max-width: 680px) {
  .recommend-section .lead.narrow {
    text-align: left;
  }
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.recommend-card {
  padding: 32px 26px 30px;
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
              background 240ms ease, border-color 240ms ease;
}

.recommend-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(214, 195, 164, 0.45);
}

.recommend-num {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--sand);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.recommend-card h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(214, 195, 164, 0.3);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--paper-pure);
}

.recommend-card p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* 発色変化のビジュアルタイムライン */
.timing-timeline {
  margin: 0 auto 48px;
  max-width: 900px;
  padding: 24px;
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.timing-timeline img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.timing-timeline figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-family: Georgia, "Times New Roman", serif;
}

/* Timing コンテンツエリア（タイムライン下のテキスト） */
.timing-content {
  max-width: 720px;
  margin: 0 auto;
}

.timing-content .center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 620px) {
  .timing-timeline {
    padding: 16px;
    margin-bottom: 32px;
  }

  .timing-timeline figcaption {
    font-size: 0.75rem;
  }
}

/* Timing alert（驚かないでください） */
.timing-alert {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 20px 0 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(167, 120, 99, 0.12) 0%, rgba(214, 195, 164, 0.18) 100%);
  border-left: 3px solid var(--clay);
  border-radius: 6px;
}

.timing-alert strong {
  color: var(--clay-deep);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.timing-alert span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.timing-note {
  margin: 16px 0 24px;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.85;
}

/* Caution Section（施術前の注意） - Priceセクションと同じ背景 */
.caution-section {
  padding: 96px 0;
  color: var(--ink);
  background: linear-gradient(180deg, #d8e0ec 0%, var(--indigo-light) 100%);
}

.caution-section .section-heading {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 760px;
}

.caution-section .section-kicker {
  color: var(--indigo);
}

.caution-section h2,
.caution-section h3 {
  color: var(--ink);
}

.caution-section .lead {
  color: var(--ink-soft);
}

.caution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.caution-card {
  padding: 32px 28px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.1);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(15, 29, 54, 0.08);
}

.caution-card h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 51, 87, 0.12);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.caution-card p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.caution-allergens,
.caution-conditions {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.caution-conditions {
  flex-direction: column;
  gap: 6px;
}

.caution-allergens li {
  padding: 6px 14px;
  background: rgba(31, 51, 87, 0.08);
  border: 1px solid rgba(31, 51, 87, 0.25);
  border-radius: 999px;
  color: var(--indigo);
  font-size: 0.88rem;
  font-weight: 700;
}

.caution-conditions li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.caution-conditions li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--indigo);
}

.caution-small {
  font-size: 0.82rem !important;
  color: var(--muted) !important;
}

.caution-test {
  margin: 18px 0 0 !important;
  padding: 14px 16px;
  background: rgba(31, 51, 87, 0.06);
  border: 1px solid rgba(31, 51, 87, 0.2);
  border-radius: 6px;
  font-size: 0.9rem !important;
}

.caution-test strong {
  color: var(--indigo);
}

/* カードの外に独立配置されたパッチテスト案内 */
.caution-test--standalone {
  margin: 32px auto 0 !important;
  max-width: 720px;
  padding: 20px 28px;
  text-align: center;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.18);
  border-radius: 999px;
  font-size: 0.94rem !important;
  color: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(15, 29, 54, 0.08);
}

.caution-test--standalone strong {
  color: var(--indigo);
  margin-right: 6px;
}

.caution-finish {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--paper-pure);
  border: 1px dashed rgba(31, 51, 87, 0.25);
  border-radius: 10px;
}

.caution-finish h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--indigo);
}

.caution-finish p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.85;
}

.caution-finish strong {
  color: var(--indigo);
}

/* Aftercare Section - 薄インディゴミスト（Timingの暖からクールへ切替） */
.aftercare-section {
  background:
    linear-gradient(180deg, var(--paper-pure) 0%, #eaf0f7 100%);
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 8px;
}

.aftercare-card {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--paper-pure);
  border: 1px solid rgba(31, 51, 87, 0.08);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(15, 29, 54, 0.1);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms ease;
  overflow: hidden;
}

/* 上部アクセント：サンドゴールドのライン */
.aftercare-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sand) 0%, var(--clay) 100%);
}

.aftercare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 29, 54, 0.16);
}

.aftercare-num {
  margin: 0 0 16px;
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.aftercare-card h3 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(31, 51, 87, 0.18);
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--indigo);
  letter-spacing: 0.02em;
}

.aftercare-card p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.85;
}

.aftercare-card p:last-child {
  margin-bottom: 0;
}

.aftercare-time-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.aftercare-label {
  min-width: 48px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.aftercare-value {
  color: var(--indigo);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.aftercare-note {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--muted) !important;
  font-size: 0.82rem !important;
  line-height: 1.75 !important;
}

.aftercare-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.aftercare-checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.aftercare-checklist li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--indigo);
}

/* レスポンシブ：モバイル対応 */
@media (max-width: 900px) {
  .about-section .point-grid,
  .recommend-grid,
  .caution-grid,
  .aftercare-grid {
    grid-template-columns: 1fr;
  }

  .caution-section {
    padding: 64px 0;
  }
}

@media (max-width: 620px) {
  .timing-alert {
    padding: 14px 16px;
  }

  .timing-alert strong {
    font-size: 0.94rem;
  }

  .caution-card,
  .aftercare-card,
  .recommend-card {
    padding: 26px 22px;
  }

  .caution-finish {
    padding: 20px 22px;
  }
}

/* ============================================
   おしゃれ＆遊び心のあるアニメーション
   ============================================ */

/* ---------- セクションキッカーの装飾線アニメーション ---------- */
.section-kicker {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-kicker::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  opacity: 0.5;
  transform: translateX(-50%);
  transition: width 1200ms cubic-bezier(0.16, 1, 0.3, 1) 300ms;
}

.is-revealed .section-kicker::after,
.section-heading.is-revealed .section-kicker::after {
  width: 100%;
}

/* セクション見出しが視界内にあれば線を表示 */
.section-heading:not(.is-revealed) .section-kicker::after {
  width: 100%;
}

/* ---------- ブランドマーク（73）の呼吸アニメ ---------- */
@keyframes brandBreath {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(15, 29, 54, 0.18);
  }
  50% {
    box-shadow:
      0 4px 12px rgba(15, 29, 54, 0.18),
      0 0 24px rgba(31, 51, 87, 0.25);
  }
}

.brand-mark {
  animation: brandBreath 3.5s ease-in-out infinite;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.08);
}

/* ---------- ナビゲーション下線アニメ ---------- */
.header-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color 280ms ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ---------- CTAボタンに上品な輝き（既存ありなら追加） ---------- */
@keyframes ctaJaguaShine {
  0% {
    transform: translateX(-150%) skewX(-20deg);
  }
  35%, 100% {
    transform: translateX(250%) skewX(-20deg);
  }
}

.button.primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(214, 195, 164, 0.3) 50%,
    transparent 100%
  );
  transform: translateX(-150%) skewX(-20deg);
  animation: ctaJaguaShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.button.primary > * {
  position: relative;
  z-index: 1;
}

.sticky-reserve {
  overflow: hidden;
  isolation: isolate;
}

.sticky-reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(214, 195, 164, 0.35) 50%,
    transparent 100%
  );
  transform: translateX(-150%) skewX(-20deg);
  animation: ctaJaguaShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.sticky-reserve > * {
  position: relative;
  z-index: 1;
}

/* ---------- ペルソナ／推薦カードの登場演出 ---------- */
.recommend-card {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              background 350ms ease,
              border-color 350ms ease,
              box-shadow 350ms ease !important;
}

.recommend-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.recommend-num {
  display: inline-block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms ease;
}

.recommend-card:hover .recommend-num {
  transform: scale(1.12) rotate(-3deg);
  color: var(--paper-pure);
}

/* ---------- ギャラリー画像のおしゃれホバー ---------- */
.gallery-item {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 500ms ease !important;
}

.gallery-item:hover {
  transform: translateY(-4px) rotate(-0.5deg);
}

.gallery-item img {
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 800ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

/* ---------- 価格行のホバー ---------- */
.price-row {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}

.price-row:not(.featured):not(.price-row--option):hover {
  transform: translateY(-2px);
  border-color: rgba(31, 51, 87, 0.25);
  box-shadow: 0 12px 30px rgba(15, 29, 54, 0.12);
}

.price-row.featured:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 50px rgba(15, 29, 54, 0.35);
}

/* ---------- アレルゲン・タグのホバー ---------- */
.caution-allergens li,
.scene-tags span {
  cursor: default;
  transition: transform 250ms cubic-bezier(0.34, 1.4, 0.64, 1),
              background 250ms ease,
              border-color 250ms ease;
}

.caution-allergens li:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(31, 51, 87, 0.15);
}

.scene-tags span:hover {
  transform: translateY(-2px);
}

/* ---------- ステップカード（受講までの流れ）数字のホバー ---------- */
.flow-list span {
  transition: transform 500ms cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 400ms ease;
}

.flow-list li:hover span {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 8px 22px rgba(15, 29, 54, 0.35);
}

/* ---------- FAQ折りたたみ展開時のリッチアニメ ---------- */
details summary {
  cursor: pointer;
  transition: color 250ms ease;
}

summary:hover {
  color: var(--indigo);
}

details summary::after {
  transition: transform 400ms cubic-bezier(0.34, 1.4, 0.64, 1);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

details[open] summary ~ p {
  animation: faqContentReveal 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes faqContentReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 縦タイムライン（Timing）マーカーの拡大ホバー ---------- */
.timing-list li {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.timing-list li:hover .timing-list__time {
  color: var(--paper-pure);
  transition: color 300ms ease;
}

/* ---------- アクセスマップのホバー ---------- */
.access-map {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 600ms ease;
}

.access-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(15, 29, 54, 0.2);
}

.access-map iframe {
  transition: filter 500ms ease;
}

.access-map:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* ---------- カードの汎用ふわっと登場 ---------- */
.point-card,
.caution-card,
.aftercare-card {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 350ms ease,
              border-color 350ms ease;
}

.point-card:hover,
.caution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 29, 54, 0.12);
  border-color: rgba(31, 51, 87, 0.18);
}

/* ---------- ヒーロー内バッジのホバー ---------- */
.hero .hero-facts span {
  transition: transform 300ms cubic-bezier(0.34, 1.4, 0.64, 1),
              background 300ms ease,
              border-color 300ms ease;
}

.hero .hero-facts span:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.18);
}

/* ---------- スクロールヒント（既存heroスクロール案内）の微調整 ---------- */
.hero-scroll-hint:hover .hero-scroll-line {
  background: linear-gradient(180deg, var(--sand) 0%, transparent 100%);
}

/* ---------- アクセシビリティ：動きを減らすユーザー対応 ---------- */
@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .button.primary::before,
  .sticky-reserve::before,
  .timing-list__peak::before {
    animation: none !important;
  }

  .section-kicker::after {
    transition: none;
    width: 100%;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 200ms !important;
  }
}
