@charset "UTF-8";

/* ============================================
   カラーパレット
============================================ */
:root {
  --green-dark:    #2D5A27;
  --green-main:    #3E7B35;
  --green-light:   #7CB87A;
  --green-pale:    #EAF4E8;
  --green-border:  #C8E6C9;
  --bg-page:       #F5F7F4;
  --bg-white:      #FFFFFF;
  --bg-section:    #F0F4EE;
  --text-black:    #1A1A1A;
  --text-dark:     #3A3A3A;
  --text-medium:   #5A5A5A;
  --text-light:    #888888;
  --accent:        #E8824A;
  --accent-dark:   #C9632C;
  --pink:          #E8A598;
  --line:          #06C755;
  --line-dark:     #00A300;
  --pink-dusty:    #FCEEEB;
  --pink-mid:      #F2C8C0;
  --pink-dark:     #C9907F;
  --pink-pale:     #FDF7F6;
  --shadow-sm:     0 2px 8px rgba(45, 90, 39, 0.08);
  --shadow-md:     0 4px 20px rgba(45, 90, 39, 0.12);
  --shadow-lg:     0 8px 32px rgba(45, 90, 39, 0.16);
}

/* ============================================
   リセット・基本設定
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  background-color: var(--bg-page);
  color: var(--text-black);
  line-height: 1.85;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.concept-title {
  font-family: 'Noto Serif JP', serif;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   AOSアニメーション
============================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos].aos-animate  { opacity: 1; transform: translate(0); }

/* ============================================
   共通ラベル・タイトル
============================================ */
.label-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
  margin-bottom: 10px;
}
.label-en.light { color: rgba(255,255,255,0.75); }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.9;
  text-align: center;
}

/* ============================================
   共通ボタン
============================================ */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 32px;
  background: var(--line);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-line:hover {
  background: var(--line-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.45);
}

.btn-line-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-line-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 28px;
  background: transparent;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--green-dark);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-outline-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
  padding: 8px 0;
}
.btn-card:hover { color: var(--green-dark); gap: 10px; }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
}
.btn-instagram:hover { opacity: 0.88; transform: translateY(-3px); }

/* ============================================
   ヘッダー：コンパクト1行化
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(245, 247, 244, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 12px rgba(45, 90, 39, 0.1);
  border-bottom: 2px solid var(--pink-mid);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: 56px;
}

@media (min-width: 992px) {
  .header-inner {
    padding: 0 32px;
    height: 64px;
  }
}

.header-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0;
  border-bottom: none;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--green-main);
  text-transform: uppercase;
}

.logo-ja {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .logo-ja { font-size: 1.1rem; }
}

.header-line-btn {
  display: none;
}

@media (min-width: 992px) {
  .header-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--line);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .header-line-btn:hover {
    background: var(--line-dark);
    transform: translateY(-2px);
  }
}

.header-nav {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.header-nav ul {
  display: flex;
  flex-direction: row;
  gap: 2px;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .header-nav ul {
    justify-content: center;
    gap: 4px;
  }
}

.header-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 36px;
}

.header-nav a:hover {
  color: var(--green-dark);
  background: var(--green-pale);
}

.header-nav a.nav-current {
  color: var(--pink-dark);
  background: var(--pink-dusty);
}

@media (min-width: 992px) {
  .header-nav a {
    font-size: 0.9rem;
    padding: 7px 14px;
  }
}

.hamburger   { display: none !important; }
.mobile-menu { display: none !important; }

/* ============================================
   固定フッターCTA
============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  height: 64px;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.14);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.sticky-btn:hover { opacity: 0.88; }
.sticky-btn-line { background: var(--line); }
.sticky-btn-menu { background: var(--green-dark); }
.sticky-btn i { font-size: 1.1rem; }

/* ============================================
   フッター
============================================ */
.site-footer {
  background: var(--green-dark);
  padding: 56px 24px 120px;
  text-align: center;
  border-top: 3px solid var(--pink-mid);
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.22em;
}

.footer-logo-ja {
  font-size: 0.85rem;
  color: var(--pink-mid);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}
.footer-nav a:hover { color: #fff; }

.footer-sns { display: flex; gap: 20px; }

.footer-sns a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.footer-sns a:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   HEROセクション：グラスモーフィズム完全版
============================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  filter: brightness(0.82) contrast(1.05) saturate(1.1);
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-bg {
    background-attachment: scroll;
    background-position: center center;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    150deg,
    rgba(10, 30, 10, 0.15) 0%,
    rgba(20, 50, 15, 0.25) 60%,
    rgba(10, 30, 10, 0.35) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 110px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .hero-inner {
    padding: 120px 60px 80px;
    justify-content: flex-start;
  }
}

.hero-content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 560px;
  width: 100%;
}


.hero-header {
  margin-bottom: 28px;
  text-align: center;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  margin: 0;
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 2.0;
  color: var(--text-dark);
  margin-bottom: 24px;
  text-align: center;
}

.hero-tagline strong {
  color: var(--green-dark);
  font-weight: 700;
  background: linear-gradient(
    transparent 65%,
    rgba(201, 144, 127, 0.3) 65%,
    rgba(201, 144, 127, 0.3) 85%,
    transparent 85%
  );
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--pink-mid), var(--green-light));
  border-radius: 2px;
  margin: 0 auto 28px;
}

.hero-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.target-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.target-tag i {
  color: var(--green-main);
  font-size: 0.8rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}

.btn-hero-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 32px;
  background: var(--line);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.4);
  font-family: 'Noto Sans JP', sans-serif;
  flex: 1;
  min-width: 220px;
}

.btn-hero-line:hover {
  background: var(--line-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.5);
}

.btn-hero-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
  padding: 16px 24px;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid rgba(60, 80, 60, 0.4);
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
}

.btn-hero-more:hover {
  border-color: var(--green-dark);
  background: rgba(45, 90, 39, 0.08);
  transform: translateY(-3px);
}

.hero-credential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-medium);
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
  text-align: center;
}

.hero-credential i {
  color: var(--pink-dark);
  font-size: 1rem;
}

/* ============================================
   木漏れ日レイヤー（最適化版）
============================================ */
.komorebi-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.komorebi-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 248, 200, 0.45) 0%,
    rgba(220, 255, 160, 0.20) 45%,
    transparent 70%
  );
  animation: komorebiFloat 12s ease-in-out infinite;
  filter: blur(3px);
}

.komorebi-spot.s1 {
  width: 280px; height: 280px;
  top: 8%; left: 12%;
  animation-delay: 0s;
  animation-duration: 13s;
}

.komorebi-spot.s3 {
  width: 240px; height: 240px;
  top: 6%; right: 8%;
  animation-delay: 3s;
  animation-duration: 10s;
}

.komorebi-spot.s5 {
  width: 200px; height: 200px;
  top: 60%; right: 15%;
  animation-delay: 6s;
  animation-duration: 15s;
}

@keyframes komorebiFloat {
  0%   { transform: translate(0, 0) scale(1);   opacity: 0.6; }
  25%  { transform: translate(8px, -6px) scale(1.04); opacity: 0.8; }
  50%  { transform: translate(-6px, 10px) scale(0.96); opacity: 0.5; }
  75%  { transform: translate(12px, 3px) scale(1.02); opacity: 0.75; }
  100% { transform: translate(0, 0) scale(1);   opacity: 0.6; }
}

.komorebi-concept .komorebi-spot { opacity: 0.5; }

/* ============================================
   木のシルエット
============================================ */
.tree-left,
.tree-right {
  position: absolute;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.tree-left {
  left: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(to top,
    rgba(8,20,8,0.85) 0%,
    rgba(8,20,8,0.5) 25%,
    transparent 55%
  );
  clip-path: polygon(0% 100%, 0% 0%, 8% 5%, 12% 15%, 6% 22%, 15% 28%, 10% 38%, 20% 42%, 14% 52%, 22% 58%, 18% 68%, 28% 72%, 20% 80%, 30% 85%, 25% 92%, 35% 96%, 30% 100%);
}

.tree-right {
  right: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to top,
    rgba(8,20,8,0.85) 0%,
    rgba(8,20,8,0.5) 25%,
    transparent 55%
  );
  clip-path: polygon(100% 100%, 100% 0%, 92% 8%, 88% 18%, 95% 25%, 85% 32%, 90% 42%, 80% 46%, 86% 56%, 78% 62%, 84% 70%, 74% 76%, 80% 84%, 70% 88%, 76% 94%, 65% 98%, 70% 100%);
}

/* ============================================
   スクロールインジケーター
============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--pink-mid));
  animation: scrollAnim 2.5s ease infinite;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.scroll-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ============================================
   葉っぱ装飾・forest-section
============================================ */
.leaf-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.leaf-tl {
  top: -40px; left: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse at 30% 30%, var(--green-main) 0%, var(--green-dark) 60%, transparent 100%);
  border-radius: 0 100% 0 100%;
  transform: rotate(-15deg);
}

.leaf-br {
  bottom: -40px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(ellipse at 70% 70%, var(--green-light) 0%, var(--green-main) 60%, transparent 100%);
  border-radius: 100% 0 100% 0;
  transform: rotate(20deg);
}

.leaf-tr {
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(ellipse at 70% 30%, var(--green-light) 0%, var(--green-main) 60%, transparent 100%);
  border-radius: 100% 0 100% 0;
  transform: rotate(-10deg);
}

.forest-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(180,230,140,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(140,200,100,0.06) 0%, transparent 50%),
    var(--bg-white);
}

.profile-komorebi {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(255,248,180,0.6) 0%, rgba(180,230,100,0.3) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  animation: komorebiFloat 7s ease-in-out infinite;
  pointer-events: none;
}

/* ============================================
   ページヘッダー（サブページ共通）
============================================ */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
  background: var(--green-dark);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 5, 0.55) 0%,
    rgba(5, 20, 5, 0.75) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 110px 24px 0;
}

@media (min-width: 992px) {
  .page-hero-inner {
    padding: 120px 24px 0;
  }
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ============================================
   HOME：お悩みセクション
============================================ */
.worries-section {
  padding: 100px 0;
  }

.worries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .worries-grid { grid-template-columns: repeat(2, 1fr); }
}

.worry-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border-top: 4px solid var(--pink-mid);
  box-shadow: 0 4px 16px rgba(201, 144, 127, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201, 144, 127, 0.18);
}

.worry-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--pink-dark);
  box-shadow: 0 4px 12px rgba(201, 144, 127, 0.25);
}

.worry-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  text-align: center;
}

.worry-list {
  list-style: none;
  padding: 0;
}

.worry-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.worry-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink-dark);
  font-weight: 700;
}

.worries-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.worries-message {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.9;
}

/* ============================================
   HOME：コンセプトセクション
============================================ */
.concept-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.concept-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  background-color: #0d2e0d;
  filter: brightness(0.75);
}

@media (max-width: 768px) {
  .concept-bg {
    background-attachment: scroll;
  }
}

.concept-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 28, 8, 0.55);
}

.concept-section .container {
  position: relative;
  z-index: 3;
}

.concept-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: rgba(10, 30, 10, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.concept-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #f0fce0;
  margin-bottom: 36px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.concept-text {
  margin-bottom: 36px;
}

.concept-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(230, 255, 200, 0.9);
  margin-bottom: 8px;
}

.concept-bridge {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid rgba(160, 230, 100, 0.7);
  padding: 24px 28px;
  border-radius: 0 10px 10px 0;
  text-align: left;
  margin-bottom: 40px;
  backdrop-filter: blur(4px);
}

.concept-bridge p {
  font-size: 1.05rem;
  color: rgba(230, 255, 200, 0.9);
  line-height: 2;
}

.concept-catch {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #f0fce0;
}

.concept-catch strong { color: #b8f070; }

/* ============================================
   HOME：事業内容
============================================ */
.business-section {
  padding: 100px 0;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .business-grid { grid-template-columns: repeat(2, 1fr); }
}

.business-card {
  background: var(--bg-white);
  border: 1px solid var(--green-border);
  border-top: 4px solid var(--green-light);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.business-card.accent { border-top-color: var(--green-main); }

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.business-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.business-icon i { font-size: 1.6rem; color: var(--green-main); }

.business-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.business-card p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 20px;
}

.business-list { margin-bottom: 24px; }

.business-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--green-pale);
  line-height: 1.7;
}

.business-list li:last-child { border-bottom: none; }
.business-list li i { color: var(--green-main); margin-top: 4px; flex-shrink: 0; }

.service-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 8px;
  font-weight: 700;
}

/* ============================================
   HOME：料金概要
============================================ */
.price-overview-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
  border: 1px solid var(--green-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: #fff;
  border: 2px solid var(--pink-dark);
  box-shadow: 0 8px 25px rgba(201, 144, 127, 0.15);
  transform: scale(1.05);
  position: relative;
}

.price-card.featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-menu {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.price-time {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--green-dark);
  margin: 14px 0;
  line-height: 1;
}

.price-suffix {
  font-size: 1.2rem;
}

.price-includes {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 16px;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.price-includes i {
  color: var(--green-main);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.price-card.featured .price-includes i {
  color: var(--pink-dark);
}

.price-notes {
  margin-top: 32px;
  text-align: center;
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.price-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   施術の流れ（index.html の Flow セクション）
   ※ .flow-step は index.html のカード要素
============================================ */
.flow-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(180,230,140,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(140,200,100,0.06) 0%, transparent 50%),
    var(--bg-white);
}

.flow-steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--pink-mid),
    var(--green-light),
    var(--pink-mid)
  );
  z-index: 0;
}

/* index.html のフローステップカード */
.flow-step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  padding: 28px 28px 28px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  border: 1px solid var(--green-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.flow-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--pink-mid);
  min-width: 44px;
  line-height: 1;
  flex-shrink: 0;
}

.flow-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-dark);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(201, 144, 127, 0.25);
  flex-shrink: 0;
}

.flow-content {
  flex: 1;
  border-left: 3px solid var(--green-border);
  padding-left: 20px;
  min-width: 0;
}

.flow-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

.flow-content p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin: 0;
}

.flow-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .flow-section { padding: 72px 0; }

  .flow-steps::before { left: 16px; }

  .flow-step-card {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .flow-number {
    font-size: 1.8rem;
    min-width: auto;
  }

  .flow-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 1.1rem;
  }

  .flow-content {
    border-left: none;
    border-top: 2px solid var(--green-border);
    padding-left: 0;
    padding-top: 12px;
  }
}

/* ============================================
   menu.html の施術フロー番号バッジ
   （.flow-step-card とは別クラスで管理）
============================================ */
.menu-flow-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-flow-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-section);
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 4px solid var(--green-main);
}

/* menu.html の番号バッジ */
.menu-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.menu-flow-list li .flow-content {
  flex: 1;
  border-left: none;
  padding-left: 0;
}

.menu-flow-list li .flow-content strong {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 4px;
}

.menu-flow-list li .flow-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.compact-flow li {
  padding: 10px 14px;
}

.compact-flow .menu-step-badge {
  width: 24px;
  height: 24px;
  min-width: 24px;
  font-size: 0.8rem;
}

/* ============================================
   FAQ：button版（menu.html・members.html）
============================================ */
.faq-section button.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-section);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  transition: background 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.faq-section button.faq-question:hover,
.faq-section button.faq-question[aria-expanded="true"] {
  background: var(--green-pale);
}

.faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
}

.faq-icon {
  margin-left: auto;
  color: var(--green-main);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-section button.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* button版のfaq-answer：hiddenで非表示、JS制御 */
.faq-section .faq-answer[hidden] {
  display: none !important;
}

.faq-section .faq-answer:not([hidden]) {
  display: flex;
}

/* ============================================
   FAQ：div版（first.html）
============================================ */
.faq-section div.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: var(--bg-section);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.faq-section div.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-main);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-section div.faq-question:hover,
.faq-section div.faq-question.is-open {
  background: var(--green-pale);
}

.faq-section div.faq-question.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* div版のfaq-answer：display:noneでJS制御 */
.faq-section div.faq-question + .faq-answer {
  display: none;
}

.faq-section div.faq-question.is-open + .faq-answer {
  display: flex;
  animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* faq-answer共通スタイル */
.faq-section .faq-answer {
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px 24px;
  background: #fff;
}

.faq-q-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--pink-dusty);
  color: var(--pink-dark);
  border: 2px solid var(--pink-mid);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin: 0;
  padding-top: 4px;
}

@media (max-width: 767px) {
  .faq-section button.faq-question,
  .faq-section div.faq-question { padding: 18px 20px; }
  .faq-section div.faq-question::after { right: 20px; }
  .faq-section .faq-answer { padding: 16px 20px 20px; }
}


/* ============================================
   HOME：お客様の声
============================================ */
.testimonial-section {
  padding: 100px 0;
  background: var(--pink-dusty);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--pink-mid);
  box-shadow: 0 4px 14px rgba(201, 144, 127, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--pink-mid);
  position: absolute;
  top: -8px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #e8a040;
  margin-bottom: 16px;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-profile {
  font-size: 0.85rem;
  color: var(--pink-dark);
  text-align: right;
  padding-top: 14px;
  border-top: 1px solid var(--pink-mid);
}

.testimonial-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 32px;
}

/* ============================================
   HOME：プロフィール
============================================ */
.profile-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.profile-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .profile-inner { grid-template-columns: 340px 1fr; gap: 72px; }
}

.profile-img-wrap {
  position: relative;
  width: 280px; height: 280px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .profile-img-wrap { width: 320px; height: 320px; }
}

.profile-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.profile-img-ring {
  position: absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  z-index: 0;
}

.profile-text {
  background: var(--bg-white);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}

.profile-role {
  font-size: 0.95rem;
  color: var(--green-main);
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-family {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.profile-credentials {
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--pink-dark);
  margin: 20px 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
}

.credential-item:last-child { margin-bottom: 0; }

.credential-item i {
  color: var(--pink-dark);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.profile-body p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.95;
  margin-bottom: 16px;
}

.profile-quote {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 20px 0;
  letter-spacing: 0.08em;
}

.profile-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================
   HOME：アクセス
============================================ */
.access-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .access-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}

.access-map iframe { display: block; }

.access-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.access-block h3 i { color: var(--green-main); }

.access-block p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.9;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 8px 14px;
  background: var(--green-pale);
  border-radius: 8px;
}

.area-list li i { color: var(--green-main); }

.access-note {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-top: 8px;
}

.access-details {
  list-style: none;
  padding: 0;
}

.access-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.access-details i {
  color: var(--green-main);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================
   HOME：Instagram
============================================ */
.instagram-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.instagram-widget {
  display: flex;
  justify-content: center;
}

.instagram-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 200px;
  background: var(--bg-white);
  border: 2px dashed var(--green-border);
  border-radius: 12px;
}

.insta-link-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dark);
  padding: 40px;
  transition: transform 0.25s;
}

.insta-link-large:hover { transform: scale(1.03); }

.insta-link-large i {
  font-size: 3rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.insta-link-large span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.insta-link-large small {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* ============================================
   特定商取引法に基づく表記
============================================ */
.law-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.law-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-section);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

.law-box::-webkit-scrollbar { width: 8px; }
.law-box::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.02);
  border-radius: 4px;
}
.law-box::-webkit-scrollbar-thumb {
  background: var(--green-border);
  border-radius: 4px;
}
.law-box::-webkit-scrollbar-thumb:hover {
  background: var(--green-light);
}

.law-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .law-list {
    grid-template-columns: 240px 1fr;
    gap: 0;
  }
}

.law-list dt {
  font-weight: 700;
  color: var(--green-dark);
  padding: 16px 0 4px;
  border-bottom: 1px dashed var(--green-border);
}

.law-list dd {
  color: var(--text-dark);
  padding: 0 0 16px;
  margin: 0;
  border-bottom: 1px dashed var(--green-border);
  line-height: 1.8;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .law-list dt,
  .law-list dd {
    padding: 20px 16px;
    border-bottom: 1px solid var(--green-border);
  }
  .law-list dt {
    background: rgba(255,255,255,0.4);
  }
  .law-list dt:nth-last-of-type(1),
  .law-list dd:last-child {
    border-bottom: none;
  }
}

/* ============================================
   レスポンシブ対応（スマホ共通）
============================================ */
@media (max-width: 767px) {
  html { font-size: 16px; }

  .header-inner {
    height: 52px;
    gap: 8px;
    padding: 0 12px;
  }

  .logo-ja { font-size: 0.88rem; }

  .header-nav a {
    font-size: 0.72rem;
    padding: 5px 8px;
    min-height: 32px;
  }

  .hero-inner {
    padding: 90px 16px 70px;
    justify-content: center;
  }

  .hero-content {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .hero-tagline {
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-targets { gap: 8px; }

  .target-tag {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-line {
    min-width: unset;
    width: 100%;
  }

  .btn-hero-more { width: 100%; }

  .hero-credential { font-size: 0.82rem; }

  .tree-left  { width: 80px; }
  .tree-right { width: 100px; }

  .komorebi-spot.s5 { display: none; }

  .concept-section { padding: 80px 0; }
  .concept-inner { padding: 28px 20px; border-radius: 16px; }
  .concept-bridge { padding: 18px 20px; }

  .business-section,
  .price-overview-section,
  .flow-section,
  .testimonial-section,
  .profile-section,
  .access-section,
  .instagram-section,
  .law-section { padding: 72px 0; }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .flow-steps::before { left: 25px; }

  .profile-text { padding: 28px 20px; }
  .profile-btns { flex-direction: column; }

  .access-inner { grid-template-columns: 1fr; }

  .sticky-btn span { font-size: 0.88rem; }
}

/* ============================================
   アクセシビリティ対応
============================================ */
@media (prefers-reduced-motion: reduce) {
  .komorebi-spot,
  .scroll-line,
  [data-aos] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .worry-card:hover,
  .price-card:hover,
  .btn-hero-line:hover,
  .btn-hero-more:hover {
    transform: none !important;
  }
}

@media (prefers-contrast: high) {
  .hero-content {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--green-dark);
  }

  .hero-title { color: #000; }
}

/* ============================================
   背景重ね型レイアウト：ハイブリッド実装
============================================ */

.hero-layout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-layout-wrapper {
    align-items: flex-start; /* PCでは左寄せ */
  }
}

/* ① 背景に直接重なるタイトルエリア */
.hero-title-area {
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-title-area {
    text-align: left;
    margin-bottom: 48px;
  }
}

/* 英語ラベル（背景重ね用） */
.hero-title-area .hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 400;
  /* 背景写真との視認性を確保 */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* サロン名（こもれ陽）- 背景重ね版 */
.hero-title-area .hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(3.8rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: 0.15em;
  margin: 0;
  /* 多重影で確実な視認性を確保 */
  text-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(0, 0, 0, 0.4);
}

/* ② すりガラスカードの調整（コンパクト版） */
.hero-content {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: 560px;
  width: 100%;
}


/* 既存のhero-contentスタイルを上書き */
.hero-content .hero-tagline {
  margin-bottom: 28px;
}

.hero-content .hero-targets {
  margin-bottom: 32px;
}

.hero-content .hero-btns {
  margin-bottom: 28px;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .hero-title-area .hero-title {
    font-size: clamp(3.2rem, 14vw, 4.2rem);
    letter-spacing: 0.12em;
  }
  
  .hero-content {
    padding: 28px 24px;
    border-radius: 18px;
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================
   新料金メニューセクション専用スタイル
============================================ */

/* カテゴリ共通スタイル */
.menu-category {
  margin-bottom: 80px;
  position: relative;
}

.menu-category-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 3px solid var(--green-pale);
  position: relative;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--pink-mid);
}

.menu-category-title i {
  color: var(--pink-dark);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.category-note {
  font-size: 0.95rem;
  color: var(--accent);
  margin: -20px 0 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-note i {
  color: var(--accent);
}

/* グリッドレイアウト */
.basic-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.option-menu-grid,
.course-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .basic-menu-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .option-menu-grid,
  .course-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* カード共通スタイル（既存を上書き） */
.price-overview-section .price-card {
  background: #fff;
  border: 2px solid var(--green-border);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.price-overview-section .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.price-overview-section .price-card.featured {
  border-color: var(--pink-mid);
  background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 100%);
  transform: scale(1.02);
  z-index: 2;
}

/* カードヘッダー */
.price-card-header {
  background: var(--green-dark);
  color: #fff;
  padding: 24px 28px;
  text-align: center;
}

.price-card.featured .price-card-header {
  background: linear-gradient(135deg, var(--pink-dark), #a67060);
}

.option-header {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
}

.price-menu {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.price-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 16px;
  font-weight: 400;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  margin: 0;
}

.price-per {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  margin-top: 8px;
  opacity: 0.85;
}

/* カードボディ */
.price-card-body {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* 施術の流れ */
.menu-flow-section {
  margin-bottom: 24px;
}

.flow-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}

.flow-title i {
  color: var(--green-main);
}

.menu-flow-list {
  list-style: none;
  padding: 0;
  counter-reset: flow-counter;
}

.menu-flow-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  margin-bottom: 8px;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-bottom: 1px dashed var(--green-border);
}

.menu-flow-list li:last-child {
  border-bottom: none;
}

.menu-flow-list li::before {
  counter-increment: flow-counter;
  content: counter(flow-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.price-card.featured .menu-flow-list li::before {
  background: var(--pink-dark);
}

.menu-flow-list li span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-top: 4px;
}

.menu-flow-list.compact li {
  padding: 8px 0 8px 36px;
  margin-bottom: 6px;
}

.menu-flow-list.compact li::before {
  width: 24px;
  height: 24px;
  top: 8px;
  font-size: 0.8rem;
}

/* プレゼントボックス */
.menu-present-box {
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  border: 2px solid var(--pink-mid);
  border-radius: 12px;
  padding: 20px;
  margin-top: auto;
}

.present-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.present-title i {
  color: var(--pink-dark);
  font-size: 1.2rem;
}

.present-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.present-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.present-list i {
  color: var(--pink-dark);
  width: 20px;
  text-align: center;
}

/* メニュー注記 */
.menu-note {
  background: var(--bg-section);
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: auto;
  border-left: 3px solid var(--green-light);
}

.menu-note p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.7;
}

/* オプションメニュー専用 */
.option-card {
  border-color: var(--green-border);
}

.option-set-discount {
  background: linear-gradient(135deg, var(--green-pale), #e8f4e8);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 12px 18px;
  margin: -8px 28px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.option-set-discount i {
  color: var(--green-main);
  font-size: 1.1rem;
}

.option-set-discount strong {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.option-desc {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.therapy-name {
  color: var(--pink-dark);
  font-size: 1.05rem;
}

.option-notes {
  list-style: none;
  padding: 16px 20px;
  background: var(--bg-section);
  border-radius: 8px;
  margin-top: auto;
}

.option-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.6;
}

.option-notes li:last-child {
  margin-bottom: 0;
}

.option-notes i {
  color: var(--green-main);
  width: 16px;
  text-align: center;
}

.point-option {
  background: #fffbf0;
  border: 1px solid #f0d080;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.point-option i {
  color: #e8a040;
  font-size: 1.1rem;
}

.point-option strong {
  color: var(--green-dark);
}

/* 継続ケアコース専用 */
.course-category {
  background: linear-gradient(135deg, var(--bg-section), var(--green-pale));
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid var(--green-border);
}

.course-catchphrase {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.course-catchphrase em {
  font-style: normal;
  color: var(--pink-dark);
}

.course-description {
  font-size: 1rem;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.9;
  margin-bottom: 40px;
}

.course-card {
  position: relative;
  border: 2px solid var(--green-main);
}

.featured-course {
  border-color: var(--pink-mid);
  background: linear-gradient(135deg, #fff 0%, var(--pink-pale) 100%);
}

.course-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(232, 130, 74, 0.3);
  z-index: 3;
}

.course-discount-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 2;
}

.course-discount-badge.premium {
  background: var(--pink-dark);
}

.course-desc {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.course-desc strong {
  color: var(--green-dark);
}

.course-benefits {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.course-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border-left: 3px solid var(--green-main);
}

.featured-course .course-benefits li {
  border-left-color: var(--pink-dark);
}

.course-benefits i {
  color: var(--green-main);
  flex-shrink: 0;
}

.featured-course .course-benefits i {
  color: var(--pink-dark);
}

.course-notes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-notes p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.course-notes i {
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
}

/* 出張費用について */
.travel-fee-note {
  background: linear-gradient(135deg, #fff8f0, #f8f4f0);
  border: 2px solid #e8d4b0;
  border-radius: 12px;
  margin: 40px 0;
  overflow: hidden;
}

.travel-fee-inner {
  padding: 24px 28px;
  text-align: center;
}

.travel-fee-inner h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.travel-fee-inner h4 i {
  color: var(--accent);
  font-size: 1.3rem;
}

.travel-fee-inner p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}

.travel-fee-inner p:last-child {
  margin-bottom: 0;
}

/* 最終CTA */
.price-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-message {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.9;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .menu-category {
    margin-bottom: 60px;
  }

  .course-category {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .price-card.featured {
    transform: none;
    order: -1;
  }

  .featured-course {
    order: -1;
  }

  .option-set-discount {
    margin: -8px 20px 0;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .price-card-body {
    padding: 20px;
  }

  .menu-flow-list li {
    padding-left: 36px;
  }

  .menu-flow-list li::before {
    width: 26px;
    height: 26px;
  }

  .course-ribbon {
    top: -10px;
    right: 16px;
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .course-discount-badge {
    top: 14px;
    left: 16px;
    font-size: 0.8rem;
    padding: 5px 14px;
  }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
  .price-card:hover,
  .price-card.featured {
    transform: none !important;
  }
}

/* ============================================
   視認性重視の料金メニューページ専用CSS
============================================ */

/* ページ内ナビゲーション */
.menu-page-nav {
  background: #fff;
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 56px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (min-width: 992px) {
  .menu-page-nav { top: 64px; }
}

.menu-nav-list {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav-list::-webkit-scrollbar { display: none; }

.menu-nav-list a {
  display: block;
  padding: 16px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-medium);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.menu-nav-list a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green-main);
}

/* メニューセクション共通 */
.clear-menu-section {
  padding: 100px 0;
  background: #fff;
}

.option-section {
  background: var(--pink-pale);
}

.course-section {
  background: var(--bg-section);
}

/* メニューグリッド */
.clear-menu-grid,
.course-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .clear-menu-grid { grid-template-columns: 1fr 1fr; }
  .course-menu-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   視認性重視のメニューカード
============================================ */

/* カード共通：完全な白背景 */
.clear-menu-card {
  background: #ffffff;
  border: 2px solid var(--green-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

.featured-menu,
.featured-course {
  border-color: var(--pink-mid);
  box-shadow: 0 8px 24px rgba(201,144,127,0.2);
}

/* バッジ類 */
.menu-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 999px;
  z-index: 2;
}

.course-recommend-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pink-dark);
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 0;
  z-index: 1;
}

.course-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 2;
}

.premium-discount {
  background: var(--pink-dark);
}

/* カードヘッダー：白背景で料金を明確に */
.clear-menu-header {
  background: #fff;
  padding: 32px 28px 24px;
  text-align: center;
  border-bottom: 2px solid var(--green-pale);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  padding: 24px 28px;
  background: var(--green-pale);
}

.option-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.option-icon {
  font-size: 2.2rem;
  color: var(--green-main);
}

.clear-menu-name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.clear-menu-sub,
.clear-menu-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 16px;
}

/* 料金ボックス：視認性最優先 */
.clear-price-box {
  background: #fff;
  border: 2px solid var(--green-border);
  border-radius: 12px;
  padding: 16px 24px;
  margin: 16px auto 0;
  max-width: 200px;
}

/* 料金数字：ゴシック体・大きめ・濃い色 */
.clear-price-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin: 0;
  letter-spacing: 0.02em;
}

.option-price {
  font-size: 1.8rem;
}

.point-price {
  font-size: 1.4rem;
}

.course-per-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--green-main);
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* カードボディ */
.clear-menu-body {
  padding: 28px;
  flex-grow: 1;
  background: #fff;
}

/* セクションタイトル */
.menu-section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}

.present-title {
  color: var(--pink-dark);
}

.menu-section-title i {
  color: var(--green-main);
}

.present-title i {
  color: var(--pink-dark);
}

/* 施術の流れ */
.menu-flow-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-flow-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-section);
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid var(--green-main);
}


.flow-content strong {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 4px;
}

.flow-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.compact-flow li {
  padding: 12px;
}

.compact-flow .flow-step {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
}

/* プレゼント特典 */
.menu-present-section {
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  border: 2px solid var(--pink-mid);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}

.present-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.present-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 6px rgba(201,144,127,0.1);
}

.present-item i {
  color: var(--pink-dark);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* メニュー注記 */
.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green-pale);
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.menu-note i {
  color: var(--green-main);
  margin-top: 2px;
  flex-shrink: 0;
}

.menu-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   オプションメニュー専用
============================================ */

.caution-text {
  color: var(--accent);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* オプション料金セクション：単体とセットを並列表示 */
.option-price-section {
  background: #fff;
  border-bottom: 2px solid var(--green-pale);
}

.option-price-row {
  display: flex;
  align-items: stretch;
}

.option-price-item {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  background: #fff;
}

.set-price-item {
  background: var(--green-pale);
}

.option-divider {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  background: #f5f5f5;
  border-left: 1px solid var(--green-border);
  border-right: 1px solid var(--green-border);
}

.option-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 4px;
}

.option-time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.set-price {
  color: var(--green-dark);
}

.set-discount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-main);
  margin-top: 6px;
}

/* ポイントメニュー */
.point-menu-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fffbf0;
  border-bottom: 2px solid #f0d888;
  font-family: 'Noto Sans JP', sans-serif;
}

.point-menu-section i {
  color: #d4a017;
  font-size: 1.2rem;
}

.point-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.point-time {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* オプション説明 */
.option-catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.option-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 16px;
}

.option-notes {
  list-style: none;
  padding: 16px 20px;
  background: var(--bg-section);
  border-radius: 10px;
}

.option-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.6;
}

.option-notes li:last-child { margin-bottom: 0; }

.option-notes i {
  color: var(--green-main);
  width: 16px;
  text-align: center;
}

/* ============================================
   継続ケアコース専用
============================================ */

.course-catch {
  font-style: normal;
  color: var(--pink-dark);
  font-weight: 700;
}

.course-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
}

.course-description strong {
  color: var(--green-dark);
}

.course-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 10px 16px;
  background: var(--green-pale);
  border-radius: 8px;
  border-left: 3px solid var(--green-main);
}

.featured-course .course-features li {
  background: var(--pink-dusty);
  border-left-color: var(--pink-dark);
}

.course-features i {
  color: var(--green-main);
  flex-shrink: 0;
}

.featured-course .course-features i {
  color: var(--pink-dark);
}

/* コース注意事項 */
.course-caution {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--green-border);
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.course-caution i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-caution p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 6px;
}

.course-caution p:last-child { margin-bottom: 0; }

/* 出張情報 */
.travel-info {
  background: #fff8f0;
  border: 2px solid #f0d8a8;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 32px;
}

.travel-info h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.travel-info h4 i {
  color: var(--accent);
  font-size: 1.3rem;
}

.travel-info p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}

.travel-area {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* カードフッター */
.clear-menu-footer {
  padding: 24px 28px;
  background: var(--bg-section);
  border-top: 1px solid var(--green-pale);
}

.menu-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   レスポンシブ対応
============================================ */

@media (max-width: 767px) {
  .clear-menu-section { padding: 72px 0; }

  .clear-menu-header { padding: 24px 20px; }
  .clear-menu-body { padding: 20px; }
  .clear-menu-footer { padding: 20px; }

  .option-price-row {
    flex-direction: column;
  }

  .option-divider {
    padding: 8px;
    justify-content: center;
    border: none;
    border-top: 1px solid var(--green-border);
    border-bottom: 1px solid var(--green-border);
  }

  .option-header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .course-recommend-ribbon + .course-card-inner {
    padding-top: 44px;
  }

  .course-caution { padding: 20px; }
  .travel-info { padding: 20px; }
}

/* ============================================
   index.html メニューリンクセクション
============================================ */

.menu-link-simple-section {
  padding: 100px 0;
  background: #fff;
}

.menu-link-simple-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.menu-preview-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px 0;
}

@media (min-width: 600px) {
  .menu-preview-cards { grid-template-columns: repeat(3, 1fr); }
}

.menu-preview-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-section);
  border: 1px solid var(--green-border);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.2s, box-shadow 0.2s;
}

.menu-preview-card:hover {
  background: var(--green-pale);
  box-shadow: var(--shadow-sm);
}

.menu-preview-card i {
  font-size: 2rem;
  color: var(--green-main);
  flex-shrink: 0;
}

.preview-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.preview-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.btn-menu-detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(45,90,39,0.25);
}

.btn-menu-detail:hover {
  background: var(--green-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,90,39,0.35);
}

@media (max-width: 767px) {
  .menu-preview-cards { grid-template-columns: 1fr; }
  .btn-menu-detail { font-size: 1rem; padding: 16px 32px; }
}

/* ============================================
   first.html 専用スタイル
============================================ */

/* ページヒーロー背景画像対応 */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.7);
}

@media (max-width: 768px) {
  .page-hero-bg { background-attachment: scroll; }
}

.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-top: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ============================================
   安心メッセージセクション
============================================ */
.welcome-section {
  padding: 100px 0;
  background: #fff;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 36px;
  text-align: center;
  letter-spacing: 0.05em;
}

.welcome-message p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 2;
  margin-bottom: 20px;
}

.welcome-message p:last-child { margin-bottom: 0; }

.welcome-message strong {
  color: var(--green-dark);
  font-weight: 700;
}

/* ============================================
   おすすめセクション
============================================ */
.recommend-section {
  padding: 100px 0;
}

.recommend-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .recommend-grid { grid-template-columns: repeat(3, 1fr); }
}

.recommend-card {
  background: #fff;
  border: 1px solid var(--green-border);
  border-top: 4px solid var(--green-light);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.recommend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.recommend-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--green-main);
}

.recommend-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  text-align: center;
}

.recommend-list {
  list-style: none;
  padding: 0;
}

.recommend-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.recommend-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}

/* ============================================
   準備・服装セクション
============================================ */
.preparation-section {
  padding: 100px 0;
  background: var(--bg-section);
}

/* タブ */
.prep-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.prep-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--green-border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-medium);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.prep-tab:hover {
  border-color: var(--green-main);
  color: var(--green-dark);
}

.prep-tab.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(45,90,39,0.25);
}

/* コンテンツ切り替え */
.prep-content {
  display: none;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .prep-content { grid-template-columns: 1fr 1fr; }
}

.prep-content.active { display: grid; }

/* 準備カード */
.prep-card {
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.prep-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
}

.prep-card h3 i { color: var(--green-main); }

.prep-main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--green-pale);
  border-radius: 8px;
  border-left: 3px solid var(--green-main);
}

.prep-list {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.prep-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--green-pale);
  line-height: 1.6;
}

.prep-list li:last-child { border-bottom: none; }

.prep-list.good i { color: var(--green-main); }

.prep-list.avoid i { color: #e05555; }
.prep-list.avoid { color: var(--text-medium); }

.prep-note {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-top: 12px;
  padding-left: 4px;
}

.prep-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  border: 1px solid var(--pink-mid);
  border-radius: 10px;
  padding: 18px 20px;
  margin: 16px 0;
}

.prep-highlight i {
  color: var(--pink-dark);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.prep-highlight p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin: 0;
}

.prep-highlight strong { color: var(--pink-dark); }

/* ============================================
   FAQセクション
============================================ */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* カテゴリ */
.faq-category {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-border);
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--green-dark);
  padding: 18px 28px;
  margin: 0;
}

.faq-category-title i {
  color: var(--green-light);
  font-size: 1.1rem;
}

/* 個別FAQ */
.faq-item {
  border-bottom: 1px solid var(--green-pale);
  padding: 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 28px;
  background: var(--bg-section);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--green-pale); }

.faq-q-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin: 0;
  padding-top: 4px;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px 24px;
  background: #fff;
}

.faq-a-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--pink-dusty);
  color: var(--pink-dark);
  border: 2px solid var(--pink-mid);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin: 0;
  padding-top: 4px;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-cta-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.9;
}

/* ============================================
   最終CTAセクション
============================================ */
.final-cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.65);
}

@media (max-width: 768px) {
  .final-cta-bg { background-attachment: scroll; }
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 28, 8, 0.5);
}

.final-cta-section .container {
  position: relative;
  z-index: 3;
}

.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background: rgba(10, 30, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 52px 44px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}

.final-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #f0fce0;
  line-height: 1.5;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.final-cta-desc {
  font-size: 1rem;
  color: rgba(230,255,200,0.92);
  line-height: 2;
  margin-bottom: 40px;
}

.final-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 600px) {
  .final-cta-btns { flex-direction: row; justify-content: center; }
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ============================================
   レスポンシブ（first.html）
============================================ */
@media (max-width: 767px) {
  .welcome-section,
  .recommend-section,
  .preparation-section,
  .faq-section { padding: 72px 0; }

  .final-cta-section { padding: 80px 0; }
  .final-cta-inner { padding: 36px 24px; border-radius: 16px; }

  .prep-tabs { flex-direction: column; align-items: center; }
  .prep-tab { width: 100%; max-width: 280px; justify-content: center; }

  .faq-question { padding: 18px 20px; }
  .faq-answer { padding: 16px 20px 20px; }
  .faq-category-title { padding: 16px 20px; font-size: 0.97rem; }
}

/* ============================================
   FAQ：開閉アイコン（button版・div版 両対応）
============================================ */

/* button版（menu.html）のアイコン回転 */
.faq-section .faq-question .faq-icon {
  margin-left: auto;
  color: var(--green-main);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-section .faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-section .faq-question[aria-expanded="true"] {
  background: var(--green-pale);
}

/* button のデフォルトスタイルリセット */
.faq-section button.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-section);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  transition: background 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.faq-section button.faq-question:hover {
  background: var(--green-pale);
}

.faq-q-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
}

/* div版（first.html）の ::after アイコン */
.faq-section div.faq-question {
  position: relative;
}

.faq-section div.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-main);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-section div.faq-question.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-section div.faq-question.is-open {
  background: var(--green-pale);
}

/* 回答表示アニメーション */
.faq-section .faq-answer {
  animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .faq-section button.faq-question { padding: 18px 20px; }
  .faq-section div.faq-question::after { right: 20px; }
}

/* ============================================
   menu.html 専用：施術フロー番号バッジ
   （index.htmlの .flow-step と区別）
============================================ */
.menu-flow-list .flow-step {
  /* index.htmlのflex-directionをリセット */
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  /* index.htmlのpadding等をリセット */
  padding: 0;
  border: none;
  box-shadow: none;
  position: static;
  z-index: auto;
  gap: 0;
}

/* menu.html の flow-list の li レイアウト修正 */
.menu-flow-list li {
  display: flex;
  flex-direction: row;   /* ← 横並びを明示 */
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-section);
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 4px solid var(--green-main);
  /* index.htmlの影響をリセット */
  position: static;
  z-index: auto;
  box-shadow: none;
  border-bottom: none;
}

.menu-flow-list li .flow-content {
  flex: 1;
  border-left: none;
  padding-left: 0;
}

.compact-flow li {
  padding: 10px 14px;
}

/* ============================================
   menu.html：予約CTAセクション
============================================ */
.reserve-cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--green-dark);
  overflow: hidden;
  text-align: center;
}

/* 背景の装飾サークル */
.reserve-cta-section::before,
.reserve-cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.reserve-cta-section::before {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -150px;
  background: rgba(255, 255, 255, 0.04);
}

.reserve-cta-section::after {
  width: 400px;
  height: 400px;
  bottom: -180px;
  right: -120px;
  background: rgba(255, 255, 255, 0.04);
}

.reserve-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reserve-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #f0fce0;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.reserve-cta-sub {
  font-size: 1rem;
  color: rgba(230, 255, 200, 0.88);
  line-height: 1.9;
}

/* 大きな予約ボタン */
.btn-reserve-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--line);
  color: #fff;
  padding: 20px 44px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
  margin-top: 8px;
}

.btn-reserve-big:hover {
  background: var(--line-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.5);
}

.btn-reserve-big i {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.btn-reserve-big span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.btn-reserve-big small {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.88;
}

.reserve-area-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.reserve-area-info i {
  color: var(--green-light);
}

@media (max-width: 767px) {
  .reserve-cta-section { padding: 72px 0; }

  .btn-reserve-big {
    padding: 16px 28px;
    width: 100%;
    max-width: 360px;
  }

  .btn-reserve-big span { align-items: center; }

  .reserve-area-info {
    font-size: 0.82rem;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   menu.html 専用（mp- プレフィックス統一）
   既存CSSとの競合ゼロ設計
============================================ */

/* ---- ページ内サブナビ ---- */
.mp-subnav {
  background: #fff;
  border-bottom: 2px solid var(--green-pale);
  position: sticky;
  top: 56px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (min-width: 992px) {
  .mp-subnav { top: 64px; }
}

.mp-subnav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.mp-subnav-list::-webkit-scrollbar { display: none; }

.mp-subnav-list li { flex-shrink: 0; }

.mp-subnav-list a {
  display: block;
  padding: 14px 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-medium);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.mp-subnav-list a:hover {
  color: var(--green-dark);
  border-bottom-color: var(--green-main);
}

/* ---- セクション共通 ---- */
.mp-section {
  padding: 96px 0;
}

.mp-section--white { background: #fff; }
.mp-section--pink  { background: var(--pink-pale); }
.mp-section--green { background: var(--bg-section); }

/* ---- カードグリッド ---- */
.mp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .mp-cards { grid-template-columns: 1fr 1fr; }
}

/* ---- カード基本 ---- */
.mp-card {
  background: #fff;
  border: 2px solid var(--green-border);
  border-radius: 20px;
  overflow: visible;          /* ← hidden から visible に変更 */
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}


.mp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* おすすめ・人気カード */
.mp-card--featured {
  border-color: var(--pink-mid);
  box-shadow: 0 6px 24px rgba(201,144,127,0.18);
}

/* ---- カードバッジ類 ---- */
.mp-card__badge {
  position: absolute;
  top: 10px; /* -14px → 10px に変更（カード内に収める） */
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 3;
}


.mp-card__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--pink-dark);
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 0;
  z-index: 2;
}

.mp-card__off-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  z-index: 3;
}

.mp-card__off-badge--pink { background: var(--pink-dark); }

/* おすすめ（リボン）がある場合はOFFバッジをリボンの下へずらす */
.mp-card--recommend .mp-card__off-badge {
  top: 42px;
}

/* 一番人気（上部中央バッジ）と併用した場合も重ならないよう下へずらす */
.mp-card--featured .mp-card__off-badge {
  top: 28px;
}
/* ---- カードヘッド ---- */
.mp-card__head {
  background: #fff;
  padding: 44px 24px 20px;
  text-align: center;
  border-bottom: 2px solid var(--green-pale);
}

/* おすすめリボンがある場合のヘッド上部余白 */
.mp-card--recommend .mp-card__head {
  padding-top: 60px;
}

/* バッジ付き（一番人気）の場合の上余白 */
.mp-card--featured .mp-card__head {
  padding-top: 52px;
}

.mp-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.mp-card__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.mp-card__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

/* 料金数字 - 最重要：ゴシック体・黒・大きく */
.mp-card__price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.02em;
}

.mp-card__per {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--green-main);
  font-weight: 600;
  margin-top: 6px;
}

/* ---- カードボディ ---- */
.mp-card__body {
  padding: 24px;
  flex-grow: 1;
  background: #fff;
}

.mp-card__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}

.mp-card__label i { color: var(--green-main); }

.mp-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 16px;
}

.mp-card__desc strong { color: var(--green-dark); }

.mp-card__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

/* ---- 施術フロー（mp- 完全独立） ---- */
.mp-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-flow__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-section);
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--green-main);
}

.mp-flow__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  /* 競合しうる継承をすべてリセット */
  line-height: 1;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}

.mp-flow__text {
  flex: 1;
  min-width: 0;
}

.mp-flow__text strong {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-black);
  margin-bottom: 3px;
  line-height: 1.5;
}

.mp-flow__text span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.55;
}

/* コンパクト版 */
.mp-flow--compact .mp-flow__item {
  padding: 10px 12px;
}

.mp-flow--compact .mp-flow__num {
  width: 24px;
  height: 24px;
  min-width: 24px;
  font-size: 0.78rem;
}

/* ---- 90分特典 ---- */
.mp-gift {
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  border: 2px solid var(--pink-mid);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
}

.mp-gift__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}

.mp-gift__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-gift__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mp-gift__item i { color: var(--pink-dark); width: 20px; text-align: center; }

/* ---- 注記ボックス ---- */
.mp-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-pale);
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: 16px;
}

.mp-note i { color: var(--green-main); margin-top: 2px; flex-shrink: 0; }

.mp-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* ---- カードフッター ---- */
.mp-card__foot {
  padding: 20px 24px;
  background: var(--bg-section);
  border-top: 1px solid var(--green-pale);
}

.mp-btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  background: var(--line);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(6,199,85,0.3);
}

.mp-btn-line:hover {
  background: var(--line-dark);
  transform: translateY(-2px);
}

/* ---- 注意テキスト ---- */
.mp-caution {
  color: var(--accent);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
}

/* ---- オプションカード専用 ---- */
.mp-card--option {
  border-color: var(--green-border);
}

.mp-card__opt-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 44px 22px 24px;
  background: var(--green-pale);
  border-bottom: 2px solid var(--green-border);
}

.mp-card__opt-icon {
  font-size: 2rem;
  color: var(--green-main);
  flex-shrink: 0;
}

/* オプション料金表示 */
.mp-price-row {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid var(--green-pale);
}

.mp-price-col {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  background: #fff;
}

.mp-price-col--set {
  background: var(--green-pale);
}

.mp-price-sep {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  background: #f0f0f0;
  border-left: 1px solid var(--green-border);
  border-right: 1px solid var(--green-border);
  flex-shrink: 0;
}

.mp-price-col__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 3px;
}

.mp-price-col__time {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.mp-price-col__num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin: 0;
}

.mp-price-col--set .mp-price-col__num { color: var(--green-dark); }

.mp-price-col__disc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-main);
  margin-top: 4px;
}

/* ポイントバー */
.mp-point-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fffbf0;
  border-bottom: 2px solid #f0d888;
  font-family: 'Noto Sans JP', sans-serif;
}

.mp-point-bar i { color: #d4a017; font-size: 1.1rem; }
.mp-point-bar span:first-of-type { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); }
.mp-point-bar__time { font-size: 0.85rem; color: var(--text-medium); }
.mp-point-bar__price { font-size: 1.2rem; font-weight: 700; color: #1a1a1a; margin-left: 4px; }

/* オプション注記リスト */
.mp-notes {
  list-style: none;
  padding: 14px 16px;
  background: var(--bg-section);
  border-radius: 10px;
  margin: 0;
}

.mp-notes li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 6px 0;
  line-height: 1.6;
}

.mp-notes li + li { border-top: 1px solid var(--green-pale); }
.mp-notes i { color: var(--green-main); width: 14px; text-align: center; flex-shrink: 0; }

/* ---- コースカード専用 ---- */
.mp-card--course {
  border-color: var(--green-main);
}

.mp-card--recommend {
  border-color: var(--pink-mid);
  background: linear-gradient(160deg, #fff 0%, var(--pink-pale) 100%);
}

/* コースカード → 追加 */
.mp-card--course .mp-card__head {
  padding-top: 52px;
}


/* コース特典リスト */
.mp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 9px 14px;
  background: var(--green-pale);
  border-radius: 8px;
  border-left: 3px solid var(--green-main);
}

.mp-features i { color: var(--green-main); flex-shrink: 0; }

.mp-features--pink li {
  background: var(--pink-dusty);
  border-left-color: var(--pink-dark);
}

.mp-features--pink i { color: var(--pink-dark); }

/* em強調 */
.mp-em {
  font-style: normal;
  color: var(--pink-dark);
  font-weight: 700;
}

/* ---- 注意・出張ボックス ---- */
.mp-info-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

@media (min-width: 768px) {
  .mp-info-boxes { flex-direction: row; }
}

.mp-info-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 12px;
}

.mp-info-box i {
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.mp-info-box p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 4px;
}

.mp-info-box p:last-child { margin-bottom: 0; }
.mp-info-box__area { font-size: 0.86rem; color: var(--text-medium); }

.mp-info-box--caution {
  background: #fff;
  border: 2px solid var(--green-border);
  border-left: 5px solid var(--accent);
}

.mp-info-box--caution i { color: var(--accent); }

.mp-info-box--travel {
  background: #fff8f0;
  border: 2px solid #f0d8a8;
}

.mp-info-box--travel i { color: var(--accent); }

/* ---- FAQセクション（mp- 独立） ---- */
.mp-faq-section { background: #fff; }

.mp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.mp-faq-item { border-bottom: 1px solid var(--green-pale); }
.mp-faq-item:last-child { border-bottom: none; }

/* FAQ ボタン（button要素・完全独立） */
.mp-faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 24px;
  background: var(--bg-section);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background 0.2s;
}

.mp-faq-q:hover,
.mp-faq-q[aria-expanded="true"] {
  background: var(--green-pale);
}

.mp-faq-q__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--green-main);
  color: #fff;
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mp-faq-q__text {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
}

.mp-faq-q__icon {
  color: var(--green-main);
  font-size: 0.82rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: auto;
}

.mp-faq-q[aria-expanded="true"] .mp-faq-q__icon {
  transform: rotate(180deg);
}

/* FAQ 回答 */
.mp-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px 22px;
  background: #fff;
  animation: mpFaqIn 0.22s ease;
}

.mp-faq-a[hidden] { display: none !important; }

@keyframes mpFaqIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mp-faq-a__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--pink-dusty);
  color: var(--pink-dark);
  border: 2px solid var(--pink-mid);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mp-faq-a p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin: 0;
  padding-top: 3px;
}

.mp-faq-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mp-faq-cta p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
}

/* ---- 予約CTAセクション ---- */
.mp-reserve {
  padding: 96px 0;
  background: var(--green-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mp-reserve::before,
.mp-reserve::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,255,255,0.04);
}

.mp-reserve::before {
  width: 480px; height: 480px;
  top: -200px; left: -160px;
}

.mp-reserve::after {
  width: 360px; height: 360px;
  bottom: -160px; right: -100px;
}

.mp-reserve__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.mp-reserve__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: #f0fce0;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.mp-reserve__sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: rgba(230,255,200,0.88);
  line-height: 1.9;
}

.mp-reserve__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--line);
  color: #fff;
  padding: 18px 40px;
  border-radius: 14px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 20px rgba(6,199,85,0.4);
}

.mp-reserve__btn:hover {
  background: var(--line-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(6,199,85,0.5);
}

.mp-reserve__btn i { font-size: 1.5rem; flex-shrink: 0; }

.mp-reserve__btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  font-size: 1rem;
  line-height: 1.4;
}

.mp-reserve__btn small {
  font-size: 0.78rem;
  font-weight: 400;
  opacity: 0.88;
}

.mp-reserve__area {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 7px;
}

.mp-reserve__area i { color: var(--green-light); }

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
  .mp-section { padding: 68px 0; }

.mp-card__head { padding: 44px 18px 18px; }
.mp-card--featured .mp-card__head { padding-top: 52px; }
.mp-card--recommend .mp-card__head { padding-top: 60px; }
  .mp-card__body { padding: 18px; }
  .mp-card__foot { padding: 16px 18px; }

  .mp-price-row { flex-direction: column; }

  .mp-price-sep {
    padding: 6px;
    justify-content: center;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--green-border);
    border-bottom: 1px solid var(--green-border);
  }

.mp-card__opt-head { padding: 44px 18px 18px; }

  .mp-reserve { padding: 68px 0; }

  .mp-reserve__btn {
    width: 100%;
    max-width: 340px;
    padding: 16px 24px;
  }

  .mp-reserve__btn span { align-items: center; }

  .mp-reserve__area {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

/* ============================================
   お知らせ・ブログ (news.html)
============================================ */
.news-section {
  padding: 80px 0 100px;
  background: var(--bg-white);
}

/* タブナビゲーション */
.news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.news-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--green-border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-medium);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}

.news-tab:hover {
  border-color: var(--green-main);
  color: var(--green-dark);
}

.news-tab.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(45,90,39,0.2);
}

/* 記事グリッド */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

@media (min-width: 1024px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 記事カード（JSで生成される要素用） */
.news-card {
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card-thumb {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: var(--bg-section);
}

.news-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP', sans-serif;
}

.news-cat {
  background: var(--pink-pale);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--pink-mid);
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.news-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

/* ローディング・エラー・空表示 */
.news-loading, .news-empty, .news-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-medium);
}

.news-empty i, .news-error i {
  font-size: 2.5rem;
  color: var(--green-border);
  margin-bottom: 16px;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  background-color: var(--green-main);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* もっと見るボタン */
.news-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-news-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--green-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: 2px solid var(--green-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-news-more:hover {
  background: var(--green-pale);
  border-color: var(--green-main);
}

/* CTAセクション */
.news-cta-section {
  padding: 80px 0;
  background: var(--bg-section);
  text-align: center;
}

.news-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--green-border);
  border-top: 4px solid var(--pink-mid);
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: var(--shadow-sm);
}

.news-cta-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}

.news-cta-text p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .news-cta-inner {
    padding: 32px 20px;
  }
}

/* ============================================
   会員サイト (members.html)
============================================ */

/* ---- ログイン誘導セクション ---- */
.members-login-section {
  padding: 100px 0;
  background: var(--pink-dusty);
}

.members-login-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.members-login-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.members-login-text p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-members-login {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--green-dark);
  color: #fff;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(45,90,39,0.25);
}

.btn-members-login:hover {
  background: var(--green-main);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,90,39,0.35);
}

.btn-members-login i:first-child {
  font-size: 1.5rem;
}

.btn-members-login span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.btn-members-login small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}

.btn-arrow {
  margin-left: auto;
}

.members-login-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.members-login-note i {
  color: var(--pink-dark);
}

/* ログインカード */
.members-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  border-top: 4px solid var(--green-main);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.members-login-card-icon {
  font-size: 2.5rem;
  color: var(--green-main);
  margin-bottom: 16px;
}

.members-login-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.members-login-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.members-login-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.members-login-list i {
  color: var(--green-main);
}

.btn-members-card-login {
  width: 100%;
}

/* ---- コンテンツ紹介セクション ---- */
.members-contents-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.members-contents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.members-content-card {
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.members-content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.members-content-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.8);
  background: var(--green-main);
}

/* サムネイルのカラーバリエーション */
.members-content-thumb.color-b { background: var(--pink-dark); }
.members-content-thumb.color-c { background: #e8a040; }
.members-content-thumb.color-d { background: #7A9B76; }
.members-content-thumb.color-e { background: #C58372; }
.members-content-thumb.color-f { background: #8EA4C8; }

.locked-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.members-content-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.members-content-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.tag-video { background: #e6f2eb; color: var(--green-main); }
.tag-text { background: #faebee; color: var(--pink-dark); }
.tag-event { background: #fff5e6; color: #d48a1c; }

.members-content-body h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.members-content-body p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.members-content-count {
  font-weight: 700;
  color: var(--green-main) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0 !important;
}

/* ---- 会員になるには (Step) ---- */
.members-join-section {
  padding: 100px 0;
  background: var(--bg-section);
}

.members-steps {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 48px;
}

.members-step {
  flex: 1;
  max-width: 280px;
  background: #fff;
  border: 2px solid var(--green-border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.members-step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-section);
}

.members-step-icon {
  font-size: 2.5rem;
  color: var(--green-main);
  margin: 16px 0;
}

.members-step h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.members-step p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.members-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.5rem;
}

.members-join-cta {
  text-align: center;
}

/* ---- 最終CTA ---- */
.members-final-section {
  position: relative;
  padding: 120px 0;
  background: var(--green-dark);
  text-align: center;
  overflow: hidden;
}

.members-final-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.members-final-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.members-final-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.members-final-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.members-final-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-final {
  background: var(--pink-dark);
}
.btn-final:hover {
  background: #b57a69;
}

/* ---- レスポンシブ (モバイル用) ---- */
@media (max-width: 767px) {
  .members-login-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .members-login-card {
    padding: 28px 24px;
  }

  .members-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .members-step-arrow {
    transform: rotate(90deg);
  }

  .members-final-btns {
    flex-direction: column;
  }
}


/* ============================================
   menu.html 追加スタイル（最終版・競合なし）
============================================ */

/* ---- 割引タグ ---- */
.mp-discount-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.mp-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8f0;
  border: 1px solid #f0d8a8;
  color: var(--accent-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}

.mp-discount-tag i { font-size: 0.78rem; }

/* ---- 割引セクション ---- */
.mp-discount-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mp-discount-grid { grid-template-columns: 1fr 1fr; }
}

.mp-discount-card {
  background: #fff;
  border: 2px solid var(--pink-mid);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(201,144,127,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mp-discount-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,144,127,0.18);
}

.mp-discount-card--green {
  border-color: var(--green-border);
  box-shadow: 0 4px 16px rgba(45,90,39,0.08);
}

.mp-discount-card--green:hover {
  box-shadow: 0 8px 28px rgba(45,90,39,0.14);
}

.mp-discount-card__icon {
  padding: 28px;
  text-align: center;
  font-size: 2.4rem;
  color: var(--pink-dark);
  background: linear-gradient(135deg, var(--pink-dusty), var(--pink-pale));
  border-bottom: 2px solid var(--pink-mid);
}

.mp-discount-card--green .mp-discount-card__icon {
  background: var(--green-pale);
  color: var(--green-main);
  border-bottom-color: var(--green-border);
}

.mp-discount-card__body {
  padding: 28px;
  background: #fff;
  flex-grow: 1;
}

.mp-discount-card__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mp-discount-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.mp-discount-card__amount {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 14px;
  line-height: 1.1;
}

.mp-discount-card--green .mp-discount-card__amount {
  color: var(--green-dark);
}

.mp-discount-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 14px;
}

.mp-discount-card__note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--accent-dark);
  font-weight: 600;
  background: #fff8f0;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #f0d8a8;
}

/* リピーター料金グリッド */
.mp-repeater-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.mp-repeater-price-item {
  background: var(--bg-section);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
}

.mp-repeater-price-item--featured {
  background: var(--green-pale);
  border-color: var(--green-main);
}

.mp-repeater-price-item__label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: var(--text-medium);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.mp-repeater-price-item__amount {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.mp-repeater-price-item__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

/* ---- 哲学メッセージ ---- */
.mp-philosophy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--green-border);
  border-left: 6px solid var(--green-main);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.mp-philosophy__icon {
  font-size: 2rem;
  color: var(--green-main);
  flex-shrink: 0;
  margin-top: 4px;
}

.mp-philosophy__title {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.mp-philosophy__text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 2;
  margin: 0;
}

/* ---- カスタムハイライト ---- */
.mp-custom-highlight {
  color: var(--pink-dark);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ---- プランカードグリッド ---- */
.mp-plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .mp-plan-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .mp-plan-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---- プランカード ---- */
.mp-plan-card {
  background: #fff;
  border: 2px solid var(--green-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mp-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}

@media (min-width: 600px) {
  .mp-plan-card--wide { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .mp-plan-card--wide { grid-column: span 3; }
}

.mp-plan-card__head {
  background: var(--green-pale);
  padding: 18px 20px 14px;
  border-bottom: 2px solid var(--green-border);
}

.mp-plan-tag {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.mp-plan-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
  margin: 0;
}

.mp-plan-card__title i {
  color: var(--green-main);
  font-size: 1rem;
  flex-shrink: 0;
}

.mp-plan-card__body {
  padding: 18px 20px;
  flex-grow: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* コンボ表示 */
.mp-plan-combo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: var(--bg-section);
  border-radius: 10px;
  padding: 12px 14px;
}

.mp-plan-combo__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid var(--green-border);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.mp-plan-combo__item small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-medium);
  margin-top: 2px;
}

.mp-plan-combo__plus {
  color: var(--pink-dark);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mp-plan-card__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin: 0;
}

.mp-plan-card__note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: var(--green-main);
  font-weight: 600;
  margin: 0;
  padding: 8px 12px;
  background: var(--green-pale);
  border-radius: 8px;
}

.mp-plan-card__note i { font-size: 0.8rem; flex-shrink: 0; }

/* カスタム注記 */
.mp-custom-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--green-border);
  border-left: 5px solid var(--green-main);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.mp-custom-note > i {
  color: var(--green-main);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.mp-custom-note p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin: 0;
}

.mp-custom-note strong { color: var(--green-dark); }

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
  .mp-philosophy {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .mp-discount-card__body { padding: 20px; }

  .mp-repeater-price-grid { gap: 8px; }

  .mp-plan-card--wide { grid-column: span 1 !important; }

  .mp-plan-combo { gap: 4px; padding: 10px; }

  .mp-plan-combo__item { font-size: 0.78rem; padding: 5px 8px; }

  .mp-custom-note { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .mp-discount-card:hover,
  .mp-plan-card:hover { transform: none !important; }
}

/* ============================================
   写真挿入用スタイル
============================================ */

/* index.html：お悩みセクション写真 */
.worries-photo {
  max-width: 800px;
  margin: 20px auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.worries-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* index.html：フローステップ写真 */
.flow-step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 14px;
  display: block;
}

/* index.html：サービスカード写真 */
.business-card-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

/* first.html：安心メッセージ写真 */
.welcome-photo {
  max-width: 700px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.welcome-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* first.html：準備セクション写真 */
.prep-salon-photo {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.prep-salon-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .worries-photo img { height: 220px; }
  .flow-step-img { height: 160px; }
  .business-card-photo { height: 160px; }
  .welcome-photo img { height: 220px; }
  .prep-salon-photo img { height: 180px; }
}

/* ============================================
   ヒーロー：エリア情報
============================================ */
.hero-area-info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-area-info__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.hero-area-info__label i {
  font-size: 0.8rem;
}

/* 女性専用アイコンをピンクに */
.hero-area-info__label .fa-venus {
  color: var(--pink-dark);
}

/* 場所アイコンをグリーンに */
.hero-area-info__label .fa-location-dot {
  color: var(--green-main);
}

.hero-area-info__divider {
  color: var(--green-border);
  margin: 0 4px;
}

.hero-area-info__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-area-info__list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .hero-area-info__label {
    font-size: 0.78rem;
  }

  .hero-area-info__list li {
    font-size: 0.72rem;
    padding: 3px 8px;
  }
}

/* ============================================
   HERO：カードなし・直接重ねデザイン（方向性A）
============================================ */

.hero-content .hero-tagline {
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-content .hero-tagline strong {
  color: #f0fce0;
  background: none;
}

.target-tag {
  background: rgba(45, 90, 39, 0.55);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.target-tag i {
  color: var(--green-light);
}

.hero-credential {
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-credential i {
  color: var(--pink-mid);
}

.hero-area-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-area-info__label {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-area-info__list li {
  background: rgba(45, 90, 39, 0.5);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* ============================================
   コースカード：OFFバッジをインライン表示に変更
============================================ */
.mp-card__off-inline {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  margin-top: 10px;
}

.mp-card__off-inline--pink {
  background: var(--pink-dark);
}

/* ============================================
   カードヘッド：バッジ削除後の余白修正
============================================ */

.mp-card__head {
  padding-top: 28px !important;
}

.mp-card--recommend .mp-card__head {
  padding-top: 48px !important;
}

.mp-card--course .mp-card__head {
  padding-top: 28px !important;
}

/* ============================================
   HEROスライダー
============================================ */

/* スライド背景コンテナ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 各スライド */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* ケン・バーンズ効果（ゆっくりズームイン） */
  transform: scale(1.08);
  transition:
    opacity 1.4s ease,
    transform 6s ease;
  will-change: opacity, transform;
}

/* アクティブスライド */
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
  filter: brightness(0.75) contrast(1.05) saturate(1.1);
}

/* 退場アニメーション（フェードアウト） */
.hero-slide.leaving {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.4s ease,
    transform 1.4s ease;
}

/* スマホではparallex固定解除 */
@media (max-width: 768px) {
  .hero-slide {
    background-attachment: scroll;
    background-position: center center;
  }
}

/* ============================================
   スライダー：ドットナビゲーション
============================================ */
.hero-slider-controls {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  outline: none;
}

.slider-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.3);
}

.slider-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   スライダー：前後ボタン
============================================ */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  outline: none;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.08);
}

/* PCでは少し大きく・余白を広げる */
@media (min-width: 992px) {
  .slider-prev { left: 40px; }
  .slider-next { right: 40px; }

  .slider-prev,
  .slider-next {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }
}

/* スマホでは小さく・常時表示 */
@media (max-width: 767px) {
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }

  .hero-slider-controls {
    bottom: 80px;
  }
}

/* ============================================
   アクセシビリティ：アニメーション軽減
============================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }

  .hero-slide.active {
    transform: none !important;
  }

  .hero-slide.leaving {
    transform: none !important;
  }
}

/* ============================================
   背景デザイン統一（全上書き）
   ※ このブロックをstyle.css末尾に追記
============================================ */

/* ---- ベース色統一 ---- */
body {
  background-color: #F2F5F0;
}

.worries-section {
  background: #F2F5F0 !important;
}

.business-section {
  background: #EBF0E7 !important;
}

.forest-section {
  background: #EBF0E7 !important;
}

.menu-link-simple-section {
  background: #F2F5F0 !important;
}

.flow-section {
  background: #F2F5F0 !important;
}

.testimonial-section {
  background: #EBF0E7 !important;
}

.profile-section {
  background: #F2F5F0 !important;
}

.access-section {
  background: #EBF0E7 !important;
}

.instagram-section {
  background: #F2F5F0 !important;
}

.law-section {
  background: #EBF0E7 !important;
}

/* ---- 既存の葉っぱ装飾（三角形）を非表示 ---- */
.leaf-deco {
  display: none !important;
}

/* ---- カードのピンク背景をオフホワイトに ---- */
.worry-card {
  background: #ffffff;
  border-top-color: var(--green-light);
  box-shadow: 0 4px 16px rgba(45, 90, 39, 0.08);
}

.testimonial-card {
  background: #ffffff;
}

/* ============================================
   葉シルエット装飾（SVGインライン・画像不要）
============================================ */

/* お悩みセクション：右上に大きな葉 */
.worries-section {
  position: relative;
  overflow: hidden;
}

.worries-section::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -40px;
  width: 320px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cg opacity='0.12' fill='%232D5A27'%3E%3Cpath d='M150 20 C150 20 240 80 250 160 C260 240 200 320 150 380 C100 320 40 240 50 160 C60 80 150 20 150 20Z'/%3E%3Cline x1='150' y1='20' x2='150' y2='380' stroke='%232D5A27' stroke-width='2' fill='none'/%3E%3Cpath d='M150 80 C175 105 195 135 188 165' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3Cpath d='M150 80 C125 105 105 135 112 165' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3Cpath d='M150 150 C180 168 205 195 200 225' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3Cpath d='M150 150 C120 168 95 195 100 225' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(12deg);
}

/* お悩みセクション：左下に小さな葉 */
.worries-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -50px;
  width: 260px;
  height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 280'%3E%3Cg opacity='0.09' fill='%233E7B35'%3E%3Cpath d='M110 15 C155 42 195 95 195 150 C195 215 158 262 110 280 C62 262 25 215 25 150 C25 95 65 42 110 15Z'/%3E%3Cline x1='110' y1='15' x2='110' y2='280' stroke='%233E7B35' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-18deg);
}

/* お悩みセクション内のコンテンツを前面に */
.worries-section > .container {
  position: relative;
  z-index: 1;
}

/* 事業内容セクション：左上に葉 */
.business-section {
  position: relative;
  overflow: hidden;
}

.business-section::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -60px;
  width: 340px;
  height: 440px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 400'%3E%3Cg opacity='0.11' fill='%232D5A27'%3E%3Cpath d='M150 10 C205 40 265 100 265 178 C265 268 208 335 150 368 C92 335 35 268 35 178 C35 100 95 40 150 10Z'/%3E%3Cline x1='150' y1='10' x2='150' y2='368' stroke='%232D5A27' stroke-width='2' fill='none' opacity='0.4'/%3E%3Cpath d='M150 75 C182 98 210 132 204 168' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M150 75 C118 98 90 132 96 168' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M150 168 C186 188 215 220 210 252' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M150 168 C114 188 85 220 90 252' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* 事業内容セクション：右下に葉 */
.business-section::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: -40px;
  width: 280px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 320'%3E%3Cg opacity='0.08' fill='%234a9940'%3E%3Cpath d='M120 10 C168 38 210 92 210 152 C210 225 168 278 120 305 C72 278 30 225 30 152 C30 92 72 38 120 10Z'/%3E%3Cline x1='120' y1='10' x2='120' y2='305' stroke='%234a9940' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(8deg) scaleX(-1);
}

/* 事業内容セクション内のコンテンツを前面に */
.business-section > .container {
  position: relative;
  z-index: 1;
}

/* メニューリンクセクション：右上に葉 */
.menu-link-simple-section {
  position: relative;
  overflow: hidden;
}

.menu-link-simple-section::before {
  content: '';
  position: absolute;
  top: 10px;
  right: -30px;
  width: 240px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 260'%3E%3Cg opacity='0.09' fill='%232D5A27'%3E%3Cpath d='M100 10 C145 35 182 85 182 138 C182 202 145 248 100 265 C55 248 18 202 18 138 C18 85 55 35 100 10Z'/%3E%3Cline x1='100' y1='10' x2='100' y2='265' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M100 65 C122 82 142 110 138 135' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3Cpath d='M100 65 C78 82 58 110 62 135' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-10deg);
}

.menu-link-simple-section > .container {
  position: relative;
  z-index: 1;
}

/* フローセクション：左上＋右下に葉 */
.flow-section {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse 200px 200px at 90% 12%,
      rgba(255, 252, 160, 0.13) 0%,
      transparent 70%),
    radial-gradient(ellipse 150px 150px at 10% 82%,
      rgba(200, 240, 120, 0.08) 0%,
      transparent 70%) !important;
  background-color: #F2F5F0 !important;
}

.flow-section::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -50px;
  width: 300px;
  height: 380px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 340'%3E%3Cg opacity='0.10' fill='%232D5A27'%3E%3Cpath d='M125 15 C175 45 218 105 218 165 C218 240 175 295 125 322 C75 295 32 240 32 165 C32 105 75 45 125 15Z'/%3E%3Cline x1='125' y1='15' x2='125' y2='322' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M125 80 C152 100 175 132 170 160' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3Cpath d='M125 80 C98 100 75 132 80 160' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3Cpath d='M125 160 C158 178 182 208 176 238' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3Cpath d='M125 160 C92 178 68 208 74 238' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.flow-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 260px;
  height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 280'%3E%3Cg opacity='0.08' fill='%233E7B35'%3E%3Cpath d='M110 12 C155 38 195 88 195 145 C195 212 158 262 110 270 C62 262 25 212 25 145 C25 88 65 38 110 12Z'/%3E%3Cline x1='110' y1='12' x2='110' y2='270' stroke='%233E7B35' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: scaleX(-1);
}

.flow-section > .container {
  position: relative;
  z-index: 1;
}

/* お客様の声セクション：右上＋左下に葉 */
.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -30px;
  width: 280px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 320'%3E%3Cg opacity='0.10' fill='%232D5A27'%3E%3Cpath d='M120 12 C168 40 208 95 208 155 C208 228 168 280 120 298 C72 280 32 228 32 155 C32 95 72 40 120 12Z'/%3E%3Cline x1='120' y1='12' x2='120' y2='298' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M120 72 C148 92 170 124 165 152' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3Cpath d='M120 72 C92 92 70 124 75 152' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.testimonial-section::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -50px;
  width: 280px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 320'%3E%3Cg opacity='0.07' fill='%234a9940'%3E%3Cpath d='M120 10 C170 38 215 95 215 158 C215 232 172 285 120 308 C68 285 25 232 25 158 C25 95 70 38 120 10Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-15deg);
}

.testimonial-section > .container {
  position: relative;
  z-index: 1;
}

/* プロフィールセクション：右上に葉 */
.profile-section {
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(ellipse 180px 180px at 95% 10%,
      rgba(255, 252, 160, 0.12) 0%,
      transparent 70%) !important;
  background-color: #F2F5F0 !important;
}

.profile-section::before {
  content: '';
  position: absolute;
  top: 20px;
  right: -40px;
  width: 320px;
  height: 420px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 380'%3E%3Cg opacity='0.09' fill='%232D5A27'%3E%3Cpath d='M140 12 C195 42 245 102 245 168 C245 248 198 308 140 342 C82 308 35 248 35 168 C35 102 85 42 140 12Z'/%3E%3Cline x1='140' y1='12' x2='140' y2='342' stroke='%232D5A27' stroke-width='2' fill='none' opacity='0.4'/%3E%3Cpath d='M140 80 C172 102 200 138 195 172' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M140 80 C108 102 80 138 85 172' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M140 172 C178 192 208 225 202 258' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3Cpath d='M140 172 C102 192 72 225 78 258' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.profile-section > .container,
.profile-section > .leaf-deco {
  position: relative;
  z-index: 1;
}

/* アクセスセクション：左下に葉 */
.access-section {
  position: relative;
  overflow: hidden;
}

.access-section::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: -40px;
  width: 280px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 320'%3E%3Cg opacity='0.08' fill='%232D5A27'%3E%3Cpath d='M120 12 C168 38 212 92 212 152 C212 225 168 278 120 305 C72 278 28 225 28 152 C28 92 72 38 120 12Z'/%3E%3Cline x1='120' y1='12' x2='120' y2='305' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M120 75 C148 95 170 126 165 154' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3Cpath d='M120 75 C92 95 70 126 75 154' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  transform: rotate(10deg);
}

.access-section > .container {
  position: relative;
  z-index: 1;
}

/* Instagramセクション：左上に葉 */
.instagram-section {
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -40px;
  width: 260px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 300'%3E%3Cg opacity='0.09' fill='%232D5A27'%3E%3Cpath d='M110 12 C155 38 192 88 192 145 C192 212 155 262 110 280 C65 262 28 212 28 145 C28 88 65 38 110 12Z'/%3E%3Cline x1='110' y1='12' x2='110' y2='280' stroke='%232D5A27' stroke-width='1.5' fill='none' opacity='0.5'/%3E%3Cpath d='M110 68 C134 86 155 115 150 142' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3Cpath d='M110 68 C86 86 65 115 70 142' stroke='%232D5A27' stroke-width='1.2' fill='none' opacity='0.4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.instagram-section > .container {
  position: relative;
  z-index: 1;
}

/* 特定商取引法セクション */
.law-section {
  position: relative;
  overflow: hidden;
}

.law-section > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   木漏れ日スポット：セクションに光を加える
============================================ */
.worries-section,
.flow-section {
  background-image:
    radial-gradient(ellipse 200px 200px at 92% 15%,
      rgba(255, 252, 160, 0.13) 0%,
      transparent 70%),
    radial-gradient(ellipse 150px 150px at 8% 78%,
      rgba(200, 240, 120, 0.08) 0%,
      transparent 70%) !important;
  background-color: #F2F5F0 !important;
}

.business-section,
.testimonial-section {
  background-image:
    radial-gradient(ellipse 220px 220px at 88% 18%,
      rgba(255, 252, 160, 0.10) 0%,
      transparent 70%),
    radial-gradient(ellipse 160px 160px at 12% 82%,
      rgba(200, 240, 120, 0.07) 0%,
      transparent 70%) !important;
  background-color: #EBF0E7 !important;
}

/* ============================================
   スマホ：装飾を小さく
============================================ */
@media (max-width: 767px) {
  .worries-section::before,
  .worries-section::after,
  .business-section::before,
  .business-section::after,
  .menu-link-simple-section::before,
  .flow-section::before,
  .flow-section::after,
  .testimonial-section::before,
  .testimonial-section::after,
  .profile-section::before,
  .access-section::before,
  .instagram-section::before {
    width: 150px;
    height: 190px;
  }

  .worries-section::before  { top: -10px; right: -20px; }
  .worries-section::after   { bottom: -15px; left: -25px; }
  .business-section::before { left: -30px; }
  .business-section::after  { right: -20px; }
  .flow-section::before     { left: -25px; }
  .flow-section::after      { right: -20px; }
  .testimonial-section::before { right: -15px; }
  .testimonial-section::after  { left: -25px; }
  .profile-section::before  { right: -20px; }
  .access-section::before   { left: -20px; }
  .instagram-section::before { left: -20px; }
}


/* ============================================
   worriesセクション：写真スライダー
============================================ */
.worries-photo-slider {
  position: relative;
  max-width: 800px;
  margin: 20px auto 40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 320px;
}

.wp-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 5s ease;
}

.wp-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.wp-slide.leaving {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* ドット */
.wp-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.wp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
  outline: none;
}

.wp-dot.active {
  background: #ffffff;
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .worries-photo-slider {
    height: 220px;
    margin: 16px auto 32px;
  }
}

/* ============================================
   スマホ：HEROタイトルと本文の空白を詰める
============================================ */
@media (max-width: 767px) {
  .hero-title-area {
    margin-bottom: 16px !important;
  }

  .hero-layout-wrapper {
    gap: 0;
  }
}
