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

:root {
  /* Colors - Aqua & Premium */
  --color-bg-base: #F2F8FA;
  --color-bg-beige: #E8F4F7;
  --color-bg-purple: #E5F0F4;
  --color-bg-pink: #DDF0F4;
  --color-bg-lavender: #E0EEF4;
  --color-bg-cream: #F0FAFC;
  --color-bg-white: #FFFFFF;

  --color-accent: #5BB5C5;
  --color-accent-dark: #2A7A8C;
  --color-gold: #7BBEC8;
  --color-gold-light: #9DD0D8;
  --color-text: #2C3E4A;
  --color-text-light: #506A78;
  --color-text-muted: #8299A5;
  --color-border: #CCE4EB;

  --color-cta-gradient-start: #5BB5C5;
  --color-cta-gradient-end: #2A7A8C;

  /* Typography */
  --font-main: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 64px 12px;
  --container-max: 480px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 62, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 62, 74, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 62, 74, 0.12);
  --shadow-glow: 0 4px 24px rgba(91, 181, 197, 0.3);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg-base);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
  /* sticky CTA space */
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== あしらい画像アニメーション ===== */
@keyframes ashirai-float1 {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(var(--r, 0deg));
  }
}

@keyframes ashirai-float2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(var(--r, 0deg));
  }

  33% {
    transform: translate(4px, -6px) rotate(var(--r, 0deg));
  }

  66% {
    transform: translate(-3px, -3px) rotate(var(--r, 0deg));
  }
}

@keyframes ashirai-float3 {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg)) scale(1);
  }

  50% {
    transform: translateY(-5px) rotate(var(--r, 0deg)) scale(1.05);
  }
}

.ashirai-deco {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  z-index: 0 !important;
}

/* ===== ハイライトマーカー装飾 ===== */
mark {
  background: transparent;
  color: inherit;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

mark::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.1em;
  height: 0.5em;
  background: rgba(255, 220, 100, 0.6);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: 2px;
}

/* 親要素が visible になったときにマーカーを引く */
.fade-in.visible mark::after {
  transform: scaleX(1);
  transition-delay: 0.3s;
  /* テキストがフェードインした少し後に引く */
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  width: 100%;
  height: 40px;
  margin-top: -1px;
  margin-bottom: -1px;
  z-index: 3;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-white svg path {
  fill: #ffffff;
}

.wave-base svg path {
  fill: #F2F8FA;
  /* var(--color-bg-base) */
}

.wave-lavender svg path {
  fill: #E5F0F4;
  /* var(--color-bg-purple) に変更 */
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* ===== 共通あしらいユーティリティ ===== */
/* セクションタイトル装飾ライン */
.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin: 12px auto 0;
}

/* マーカーアニメーション */
.section-title .text-accent {
  position: relative;
  display: inline;
}

.section-title .text-accent::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0;
  height: 40%;
  background: rgba(255, 220, 100, 0.8);
  /* 少し濃い黄色にして目立たせる */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section-title.marker-visible .text-accent::before {
  transform: scaleX(1);
}

/* ===== セクション別あしらい（強化版） ===== */

/* --- 共感セクション --- */
.section-empathy::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 20px;
  width: 70px;
  height: 70px;
  border-left: 1.5px solid rgba(123, 190, 200, 0.25);
  border-top: 1.5px solid rgba(123, 190, 200, 0.25);
}

.section-empathy::after {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-right: 1.5px solid rgba(123, 190, 200, 0.25);
  border-bottom: 1.5px solid rgba(123, 190, 200, 0.25);
}

/* --- 理由セクション --- */
.section-reasons::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 25px;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(91, 181, 197, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(91, 181, 197, 0.03);
}

.section-reasons::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 20px;
  width: 6px;
  height: 6px;
  background: rgba(123, 190, 200, 0.2);
  border-radius: 50%;
  box-shadow:
    12px 8px 0 rgba(91, 181, 197, 0.14),
    -4px 22px 0 rgba(123, 190, 200, 0.12),
    16px 30px 0 rgba(91, 181, 197, 0.1),
    6px 44px 0 rgba(123, 190, 200, 0.08);
}

/* --- 料金セクション --- */
.section-pricing::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(123, 190, 200, 0.2);
  transform: rotate(45deg);
  box-shadow: 22px 22px 0 0 rgba(123, 190, 200, 0.06);
}

.section-pricing::after {
  content: '';
  position: absolute;
  bottom: 50px;
  right: 20px;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 190, 200, 0.25), transparent);
}

/* --- ガイドセクション --- */
.section-guide::before {
  content: '';
  position: absolute;
  top: 35px;
  right: 25px;
  width: 8px;
  height: 8px;
  background: rgba(91, 181, 197, 0.2);
  border-radius: 50%;
  box-shadow:
    20px 12px 0 rgba(91, 181, 197, 0.14),
    -8px 28px 0 rgba(123, 190, 200, 0.16),
    30px 30px 0 rgba(91, 181, 197, 0.1),
    -16px 48px 0 rgba(123, 190, 200, 0.12),
    24px 55px 0 rgba(91, 181, 197, 0.08);
}

.section-guide::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 55px;
  height: 55px;
  border-left: 1px solid rgba(123, 190, 200, 0.2);
  border-bottom: 1px solid rgba(123, 190, 200, 0.2);
}

/* --- シミ肝斑セクション --- */
.section-difference::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15px;
  width: 55px;
  height: 55px;
  border-left: 1px solid rgba(123, 190, 200, 0.22);
  border-top: 1px solid rgba(123, 190, 200, 0.22);
}

.section-difference::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(91, 181, 197, 0.14);
  transform: rotate(45deg);
}

/* --- 症例セクション --- */
.section-cases::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 25px;
  width: 65px;
  height: 65px;
  border: 1px solid rgba(91, 181, 197, 0.14);
  border-radius: 50%;
}

.section-cases::after {
  content: '';
  position: absolute;
  bottom: 35px;
  left: 25px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 190, 200, 0.22), transparent);
}

/* --- フローセクション --- */
.section-flow::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 20px;
  width: 6px;
  height: 6px;
  background: none;
  border: 1.5px solid rgba(91, 181, 197, 0.25);
  border-radius: 50%;
  box-shadow:
    0 20px 0 rgba(91, 181, 197, 0.18),
    0 40px 0 rgba(91, 181, 197, 0.12),
    0 60px 0 rgba(91, 181, 197, 0.08);
}

.section-flow::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 15px;
  width: 65px;
  height: 65px;
  border-right: 1px solid rgba(123, 190, 200, 0.18);
  border-top: 1px solid rgba(123, 190, 200, 0.18);
}

/* --- FAQセクション --- */
.section-faq::before {
  content: '？';
  position: absolute;
  top: 40px;
  right: 25px;
  font-size: 5rem;
  color: rgba(91, 181, 197, 0.07);
  font-weight: 900;
  line-height: 1;
}

.section-faq::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 190, 200, 0.25), transparent);
}

/* --- 最終CTAセクション --- */
.section-final-cta::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 25px;
  width: 65px;
  height: 65px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.section-final-cta::after {
  content: '';
  position: absolute;
  bottom: 25px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
}

/* --- サブスクカード装飾 --- */
.subscrip-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-right: 1.5px solid rgba(123, 190, 200, 0.25);
  border-top: 1.5px solid rgba(123, 190, 200, 0.25);
}

.subscrip-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  border-left: 1.5px solid rgba(123, 190, 200, 0.25);
  border-bottom: 1.5px solid rgba(123, 190, 200, 0.25);
}

/* --- 理由カード装飾 --- */
.reason-card::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-left: 1px solid rgba(61, 46, 46, 0.1);
  border-bottom: 1px solid rgba(61, 46, 46, 0.1);
}

.reason-card::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-right: 1px solid rgba(61, 46, 46, 0.08);
  border-top: 1px solid rgba(61, 46, 46, 0.08);
}

/* --- 料金カード装飾 --- */
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  border-right: 1px solid rgba(123, 190, 200, 0.2);
  border-bottom: 1px solid rgba(123, 190, 200, 0.2);
}

/* --- ソリューションボックス装飾 --- */
.solution-box {
  position: relative;
}

.solution-box::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.5);
  border-top: 1.5px solid rgba(255, 255, 255, 0.5);
}

.solution-box::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
}

/* --- FVオファー装飾 --- */
.hero-price-box {
  position: relative;
}

.hero-price-box::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-price-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.text-accent {
  color: var(--color-accent);
}

.title-bracket {
  color: var(--color-gold);
  font-weight: 300;
}

/* ===== CTA BUTTON ===== */
/* CTA二分割グループ */
.cta-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.btn-cta-web {
  background: linear-gradient(135deg, var(--color-cta-gradient-start), var(--color-cta-gradient-end));
}

.btn-cta-line {
  background: linear-gradient(135deg, #06C755, #04a847);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-arrow {
  transform: translateX(4px);
}

/* Bounce animation for CTA */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
}

/* 背景画像 */
.hero-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 20%;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(242, 248, 250, 0.3) 0%,
      rgba(242, 248, 250, 0) 25%,
      rgba(242, 248, 250, 0) 40%,
      rgba(242, 248, 250, 0.6) 60%,
      rgba(242, 248, 250, 0.92) 75%,
      rgba(242, 248, 250, 1) 100%);
}

/* 装飾 */
.hero-deco {
  position: absolute;
  z-index: 1;
}

.hero-deco-circle-1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(123, 190, 200, 0.12);
  top: -60px;
  right: -60px;
}

.hero-deco-circle-2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(91, 181, 197, 0.08);
  bottom: 200px;
  left: -40px;
}

.hero-deco-line-1 {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123, 190, 200, 0.15), transparent);
  top: 30%;
  left: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 32px 20px 28px;
}

/* ===== 共通追従ヘッダー ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
}

.hero-clinic-name {
  display: flex;
  align-items: center;
}

.hero-logo-img {
  width: 70px;
  height: auto;
}

/* ヘッダーCTAボタン */
.header-cta-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-header-web {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}

.btn-header-line {
  background: #06C755;
  color: #fff;
  border: 1px solid #06C755;
}

.btn-header-cta:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* VISIAバッジ - 大きく目立たせる */
.hero-visia-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* FV内のVISIAバッジ絶対配置 */
.fv-visia-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.visia-gif-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(123, 190, 200, 0.3);
  background: #fff;
}

.visia-gif-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visia-label {
  font-size: 0.68rem;
  color: var(--color-text);
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
}

.visia-label strong {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 800;
}

/* スペーサー：顔部分を空ける */
.hero-spacer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 16px;
}

.hero-side-catch {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.8;
  /* 行間を少し開ける */
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.15);
  text-align: left;
  letter-spacing: 0.08em;
  display: inline-block;
  /* アニメーション基準用 */
}

/* FVテキストを下線マーカーアニメーションで強調（background方式） */
.hero-side-catch span.line-anim {
  display: inline;
  background-image: linear-gradient(rgba(255, 220, 100, 0.85), rgba(255, 220, 100, 0.85));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 40%;
  /* 高さ40%=下線マーカー */
  padding-bottom: 2px;
  animation: marker-draw 0.8s ease-out 0.3s forwards;
}

@keyframes marker-draw {
  to {
    background-size: 100% 40%;
  }
}

.hero-side-catch .catch-accent {
  color: var(--color-accent);
  font-size: 1.4rem;
  text-shadow: 0 2px 12px rgba(91, 181, 197, 0.5), 0 0 40px rgba(0, 0, 0, 0.15);
}

/* 下部コンテンツ */
.hero-bottom {
  position: relative;
}

/* 特徴タグ */
.hero-tags-area {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.hero-feature-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(123, 190, 200, 0.18);
  color: var(--color-text);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* メインタイトル */
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--color-text);
  text-align: left;
}

.hero-title-accent {
  color: var(--color-accent);
}

/* 情報カード：左右分割 + 価格大きく */
.hero-info-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 190, 200, 0.1);
  position: relative;
}

.hero-info-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-info-card::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-info-left {
  flex: 1;
  text-align: left;
}

.hero-info-plan {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.hero-info-detail {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-info-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  margin: 0 16px;
  flex-shrink: 0;
}

.hero-info-right {
  text-align: right;
}

.hero-price-tax-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2px;
  position: relative;
  /* 税込ラベルの絶対配置の基準 */
}

.hero-price-yen {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.hero-price-number {
  font-family: var(--font-accent);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-price-tax-label {
  /* 税込ラベルを数字の横にくっつける */
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: 2px;
}

/* 注記 */
.hero-note {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.hero-cta {
  animation: bounce 2s ease-in-out infinite;
}

/* ===== SECTION 2: EMPATHY ===== */
.section-empathy {
  background: var(--color-bg-white);
}

/* 悩みエリア */
.worry-area {
  position: relative;
  padding: 0 0 32px;
}

/* 背景「不安」テキスト - 大きく見やすく */
.worry-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 0;
  user-select: none;
  pointer-events: none;
  display: flex;
  gap: 40px;
  white-space: nowrap;
}

.worry-bg-text span {
  font-size: 12rem;
  font-weight: 900;
  color: rgba(91, 181, 197, 0.07);
  line-height: 1;
  letter-spacing: 0.05em;
}

/* 丸い女性画像 */
.worry-woman {
  position: relative;
  z-index: 2;
  width: 140px;
  height: 140px;
  min-width: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(123, 190, 200, 0.25);
  box-shadow: 0 8px 32px rgba(61, 46, 46, 0.1);
}

.worry-woman img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* 吹き出し共通 */
.worry-bubble {
  position: relative;
  z-index: 2;
  background: var(--color-bg-base);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}

.worry-bubble p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text);
}

/* 吹き出し三角 */
.worry-bubble::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--color-bg-base);
  border-radius: 3px;
  transform: rotate(45deg);
}

/* 吹き出し1: 上段 右寄せ、三角が下（画像に向かう） */
.worry-pos-1 {
  max-width: 80%;
  margin-left: auto;
  margin-right: 8px;
  margin-bottom: 8px;
}

.worry-pos-1::after {
  bottom: -6px;
  left: 40px;
}

/* 中段：女性画像 + 吹き出し2 横並び */
.worry-middle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

/* 吹き出し2: 画像の右隣、三角が左（画像に向かう） */
.worry-pos-2 {
  flex: 1;
}

.worry-pos-2::after {
  left: -6px;
  top: 50%;
  margin-top: -7px;
}

/* 吹き出し3: 下段 左寄せ、三角が上（画像に向かう） */
.worry-pos-3 {
  max-width: 55%;
  margin-left: 24px;
}

.worry-pos-3::after {
  top: -6px;
  left: 40px;
}

/* 悩みエリア あしらい */
.worry-area::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 15px;
  width: 6px;
  height: 6px;
  background: rgba(91, 181, 197, 0.12);
  border-radius: 50%;
  box-shadow:
    -20px 16px 0 rgba(91, 181, 197, 0.08),
    14px 32px 0 rgba(123, 190, 200, 0.1),
    -8px 50px 0 rgba(91, 181, 197, 0.06),
    28px 60px 0 rgba(123, 190, 200, 0.08);
}

.worry-area::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 10px;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123, 190, 200, 0.15), transparent);
}

.solution-box {
  text-align: center;
  padding: 28px 20px;
  background: linear-gradient(160deg, var(--color-bg-lavender), var(--color-bg-pink));
  border-radius: var(--radius-lg);
}

.solution-lead {
  display: inline-block;
  background: var(--color-bg-white);
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.solution-img {
  margin: 16px auto 20px;
  max-width: 100%;
}

.solution-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.solution-text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}

.solution-text strong {
  color: var(--color-accent);
}

.solution-text em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-gold);
}

/* ===== SECTION 3: REASONS ===== */
.section-reasons {
  background: var(--color-bg-base);
}

.reason-card {
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  /* 36px 24px から縮小 */
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.reason-card-purple {
  background: linear-gradient(160deg, #E5F0F4, #D5E5EB);
  /* 薄い水色系 */
}

.reason-card-pink {
  background: linear-gradient(160deg, #DDF0F4, #CFE8EC);
  /* 少し青みがかった水色系 */
}

.reason-card-beige {
  background: linear-gradient(160deg, #E8F4F7, #D8EAEF);
  /* とても淡い水色系 */
}

.reason-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(61, 46, 46, 0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.reason-img {
  width: 100%;
  margin: 0 0 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reason-img img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.5);
}

.reason-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.reason-icon svg {
  width: 100%;
  height: 100%;
}

.reason-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ===== SECTION 4: PRICING ===== */
.section-pricing {
  background: linear-gradient(160deg, var(--color-bg-lavender), var(--color-bg-cream));
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  /* 32px 24px から縮小 */
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.pricing-card-premium::before {
  background: linear-gradient(90deg, var(--color-gold), #D4B87A);
}

.pricing-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.pricing-badge-gold {
  background: linear-gradient(135deg, var(--color-gold), #D4B87A);
}

.pricing-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 16px;
}

.pricing-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-number {
  font-family: var(--font-accent);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.pricing-yen {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 700;
}

.pricing-tax {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing-cta {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===== SECTION 5: GUIDE ===== */
.section-guide {
  background: var(--color-bg-white);
}

.guide-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.guide-item {
  flex: 1;
  text-align: center;
}

.guide-face {
  width: 140px;
  /* SVGの時より少し大きくする */
  height: 140px;
  margin: 0 auto 12px;
  border-radius: 50%;
  /* 正円にくり抜く */
  overflow: hidden;
  /* はみ出した部分を隠す */
  border: 3px solid rgba(91, 181, 197, 0.2);
  /* アクセントとして枠線 */
  background: var(--color-bg-base);
  /* ベース背景 */
}

.guide-face img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* 内側も正円 */
  object-fit: cover;
  /* 画像を枠いっぱいに埋める */
  display: block;
}

.guide-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg-base);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.guide-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-time {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
}

.guide-text {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.guide-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== SECTION 6: DIFFERENCE ===== */
.section-difference {
  background: var(--color-bg-base);
}

.diff-comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.diff-item {
  text-align: center;
}

.diff-illust {
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(123, 190, 200, 0.2);
}

.diff-illust img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.diff-label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.diff-desc {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.diff-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0 auto;
}

.diff-warning {
  background: #FFF0F0;
  /* 薄い赤系背景 */
  border: 2px solid #E63946;
  /* はっきりとした赤色ボーダー */
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
  /* 赤い影で強調 */
}

/* 枠の上部にアクセントパターン（斜めストライプ）を追加 */
.diff-warning::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(-45deg,
      #E63946,
      #E63946 10px,
      #FFF0F0 10px,
      #FFF0F0 20px);
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 0 0;
}

.diff-warning-img {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.diff-warning-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.diff-warning-icon {
  font-size: 2.2rem;
  /* サイズアップ */
  line-height: 1;
  margin-bottom: 12px;
  animation: pulse-alert 2s infinite;
  /* 警告アイコンを明滅させるアニメーション */
}

@keyframes pulse-alert {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.diff-warning p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 600;
  /* 全体的に太字化 */
}

.diff-warning strong {
  display: block;
  /* 改行してより大きく */
  color: #E63946;
  /* 強い赤色 */
  font-size: 1.4rem;
  /* サイズアップ */
  font-weight: 900;
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(230, 57, 70, 0.2);
}

.diff-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.diff-solution {
  position: relative;
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 2px solid var(--color-gold);
  /* ティール色の枠 */
}

.diff-solution-img {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
}

.diff-solution-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* トリミングせずに全体表示 */
}

.diff-solution-text {
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(160deg, var(--color-bg-base), var(--color-bg-white));
}

.diff-solution-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--color-text);
}

.diff-solution-text em {
  font-style: normal;
  font-weight: 700;
  color: var(--color-gold);
}

/* Subscription plan */
.subscrip-section {
  margin-top: 16px;
}

.subscrip-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-light);
}

.subscrip-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-xl);
  padding: 20px 16px;
  /* 28px 20px から縮小 */
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid var(--color-gold);
  position: relative;
  overflow: hidden;
}

.subscrip-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.subscrip-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.subscrip-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 20px;
  text-align: left;
}

.subscrip-desc strong {
  color: var(--color-text);
}

.subscrip-img {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.subscrip-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.subscrip-price {
  margin-bottom: 20px;
}

.subscrip-plan-label {
  display: inline-block;
  background: var(--color-bg-base);
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.subscrip-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.subscrip-campaign {
  background: linear-gradient(135deg, #FFF5EE, #FFF0E6);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

.campaign-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.campaign-text {
  font-size: 0.88rem;
  line-height: 1.7;
}

.campaign-highlight {
  color: var(--color-accent);
  font-weight: 900;
  font-size: 1rem;
}

/* ===== SECTION 7: CASES ===== */
.section-cases {
  background: var(--color-bg-white);
}

.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}

.case-item {
  background: var(--color-bg-base);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.case-images {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.case-img {
  flex: 1;
  position: relative;
}

.case-placeholder {
  background: linear-gradient(160deg, #E8DCCC, #D4C8B8);
  border-radius: var(--radius-md);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.case-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(61, 46, 46, 0.7);
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.case-caption {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
}

.cases-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ===== SECTION 8: FLOW ===== */
.section-flow {
  background: linear-gradient(160deg, var(--color-bg-lavender), var(--color-bg-cream));
}

.flow-timeline {
  position: relative;
  padding-left: 24px;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-gold));
  border-radius: 1px;
}

.flow-step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}

.flow-step:last-child {
  margin-bottom: 0;
}

.flow-step-number {
  width: 40px;
  height: 40px;
  background: var(--color-bg-white);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-step-number span {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.flow-step-content {
  flex: 1;
  padding-top: 8px;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.flow-step-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== SECTION 9: FAQ ===== */
.section-faq {
  background: var(--color-bg-white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-base);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 16px;
  /* 18px 20px から縮小 */
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(91, 181, 197, 0.04);
}

.faq-question>span:first-child {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-question>span:nth-child(2) {
  flex: 1;
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer p {
  padding: 0 16px 16px;
  /* 0 20px 20px から縮小 */
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ===== FINAL CTA ===== */
.section-final-cta {
  background: linear-gradient(160deg, var(--color-bg-lavender), var(--color-bg-pink), var(--color-bg-cream));
  text-align: center;
}

.final-cta-content {
  padding: 20px 0;
}

.final-cta-copy {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.final-offer {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px;
  /* 20px から縮小 */
  margin-bottom: 24px;
  border: 1px solid rgba(123, 190, 200, 0.2);
}

.final-offer-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.final-offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.final-btn {
  animation: bounce 2s ease-in-out infinite;
}

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  color: var(--color-text);
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-clinic {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 100px;
  height: auto;
}

.footer-clinic-en {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-clinic-ja {
  font-size: 0.8rem;
  color: var(--color-text);
}

.footer-note {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

/* ===== RESPONSIVE (TABLET / DESKTOP) ===== */
@media (min-width: 768px) {
  :root {
    --container-max: 480px;
    /* PC版もスマホと同じ幅に統一 */
    --section-padding: 80px 12px;
  }

  body {
    font-size: 16px;
  }

  /* 削除（PC版特有の拡大設定を無効化） */
}

/* ===== PC用サイドナビ（スマホでは非表示） ===== */
.pc-side-nav {
  display: none;
}

/* ===== LP本体ラッパー ===== */
.lp-content {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 40px rgba(61, 46, 46, 0.08);
}

/* ===== PC表示（768px以上） ===== */
@media (min-width: 768px) {
  body {
    background: #f0ebe4;
  }

  /* PC版でのFVテキスト拡大設定 */
  .hero-side-catch {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .hero-side-catch .catch-accent {
    font-size: 1.8rem;
  }

  .lp-content {
    margin-left: 260px;
    margin-right: auto;
    margin-left: calc(50% - 240px + 130px);
  }

  /* サイドナビ表示 */
  .pc-side-nav {
    display: block;
    position: fixed;
    top: 0;
    left: calc(50% - 240px - 170px);
    width: 180px;
    height: 100vh;
    z-index: 100;
    padding: 40px 0;
  }

  .pc-side-nav-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-side-nav-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
    padding-left: 8px;
  }

  .pc-nav-logo-img {
    width: 120px;
    height: auto;
  }

  .pc-nav-clinic-en {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    line-height: 1.2;
  }

  .pc-nav-clinic-ja {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
  }

  .pc-side-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .pc-nav-link {
    display: block;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    position: relative;
    border-left: 2px solid transparent;
  }

  .pc-nav-link:hover {
    color: var(--color-accent);
    background: rgba(91, 181, 197, 0.06);
  }

  .pc-nav-link.active {
    color: var(--color-accent);
    font-weight: 700;
    border-left-color: var(--color-accent);
    background: rgba(91, 181, 197, 0.08);
  }

  /* sticky CTAもLP幅に合わせる */
  .sticky-cta {
    max-width: 480px;
    margin-left: calc(50% - 240px + 130px);
    left: 0;
    right: auto;
    width: 480px;
  }
}

/* ===== 大画面（1200px以上） ===== */
@media (min-width: 1200px) {
  .lp-content {
    margin-left: calc(50% - 240px + 140px);
  }

  .pc-side-nav {
    left: calc(50% - 240px - 200px);
    width: 200px;
  }

  .pc-nav-link {
    font-size: 0.82rem;
    padding: 11px 14px;
  }

  .sticky-cta {
    margin-left: calc(50% - 240px + 140px);
  }
}