/* ============================================
   ネオキャップビムラー矯正 LP - がもう四丁目歯科
   Pastel watercolor theme
   ============================================ */

:root {
  /* ---- Color palette (pastel rainbow) ---- */
  --pink: #ffcadb;
  --pink-mid: #f8a3c1;
  --pink-neon: #ff4d8f;
  --purple: #d9c6ef;
  --purple-mid: #b598de;
  --blue: #bfe0f1;
  --blue-mid: #7cbedd;
  --yellow: #ffe89a;
  --yellow-mid: #ffcd5c;
  --green: #cfe7ce;
  --green-mid: #94c996;
  --peach: #ffd3b6;

  --text: #3a2f4f;
  --text-soft: #6b5a7a;
  --text-mute: #9a89a8;
  --bg: #fffafc;
  --bg-soft: #fff5f9;
  --bg-card: #ffffff;
  --border: #f2e0eb;

  --navy: #3a2f4f;
  --navy-dark: #24193a;
  --accent: #ff6b95;
  --accent-soft: #f8a3c1;

  --radius: 20px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  --shadow-sm: 0 4px 14px rgba(184, 130, 172, 0.10);
  --shadow: 0 10px 30px rgba(184, 130, 172, 0.14);
  --shadow-lg: 0 20px 60px rgba(184, 130, 172, 0.24);

  --font-jp: 'Kosugi Maru', 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-display: 'Zen Maru Gothic', 'Kosugi Maru', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
sup { font-size: 0.55em; vertical-align: super; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.sp-only { display: none; }

/* ============ Watercolor bg helpers ============ */
.watercolor-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 202, 219, 0.55), transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(217, 198, 239, 0.5), transparent 45%),
    radial-gradient(ellipse at 90% 85%, rgba(191, 224, 241, 0.5), transparent 45%),
    radial-gradient(ellipse at 10% 90%, rgba(255, 232, 154, 0.4), transparent 50%);
  pointer-events: none;
}

/* ============ Section heading ============ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 18px;
  background: #fff;
  border: 2px solid var(--pink);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 149, 0.15);
}
.section-tag.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.section-title em {
  background: linear-gradient(120deg, var(--pink-neon) 0%, var(--purple-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title.white { color: #fff; }
.section-title.white em {
  background: linear-gradient(120deg, #ffe89a 0%, #ffcadb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead { color: var(--text-soft); font-size: 16px; margin: 0; }
.section-lead.white-soft { color: rgba(255, 255, 255, 0.85); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 250, 252, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(184, 130, 172, 0.12); }
.header-inner {
  max-width: 1280px; margin: 0 auto; height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex-shrink: 0;
}
.logo-img { height: 32px; width: auto; }
.logo-en {
  font-family: var(--font-en);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy);
  padding-left: 2px;
}
.nav { display: flex; gap: 20px; margin-left: auto; }
.nav a {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.nav a::after {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-neon), var(--purple-mid));
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav a:hover { color: var(--pink-neon); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--pink-neon) 0%, #ff8fb5 100%);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(255, 77, 143, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(255, 77, 143, 0.45); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text); transition: 0.25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  z-index: 99;
  padding: 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s;
	height: 100vh;
}
.nav-drawer:not([hidden]) { transform: translateX(0); }
.nav-drawer a { padding: 16px; border-bottom: 1px solid var(--border); font-weight: 700; color: var(--text); }
.nav-drawer .drawer-cta {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-mid));
  color: #fff;
  text-align: center;
  border-radius: 12px;
  border: none;
	display: block;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 60px) 0 100px;
  background: linear-gradient(135deg, #ffe8f0 0%, #f2e6ff 30%, #e6f4ff 60%, #fff4d9 100%);
  overflow: hidden;
  min-height: 640px;
}
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('images/hero-family.png');
  background-size: cover;
  background-position: 38% center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.08);
  transform-origin: 30% center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg,
      rgba(255, 245, 249, 0.94) 0%,
      rgba(255, 232, 240, 0.90) 22%,
      rgba(242, 230, 255, 0.55) 42%,
      rgba(230, 244, 255, 0.15) 60%,
      rgba(230, 244, 255, 0)    78%,
      rgba(255, 232, 240, 0.55) 94%,
      rgba(255, 232, 240, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(340px, 580px) 1fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-mid));
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 6px 16px rgba(255, 77, 143, 0.3);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #ffe89a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 232, 154, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 232, 154, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 232, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 232, 154, 0); }
}

.hero-title { font-family: var(--font-display); font-weight: 900; line-height: 1.3; margin: 0 0 28px; }
.hero-title-line1 {
  display: block;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}
.hero-title-line1 em {
  color: var(--pink-neon);
  padding: 2px 8px;
  background: rgba(255, 232, 240, 0.6);
  border-radius: 8px;
}
.hero-title-neon {
  display: block;
  font-size: clamp(30px, 5.2vw, 52px);
  color: var(--pink-neon);
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-shadow:
    0 0 8px rgba(255, 77, 143, 0.25),
    0 0 20px rgba(255, 77, 143, 0.15),
    0 2px 4px rgba(255, 255, 255, 0.9);
}
.hero-lead { font-size: 16px; color: var(--text); margin: 0 0 32px; line-height: 2; }
.hero-lead strong { color: var(--pink-neon); font-weight: 900; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--text);
}
.hero-points strong { color: var(--pink-neon); font-weight: 900; }
.hero-star { color: var(--yellow-mid); margin-right: 6px; font-size: 16px; }

.hero-wave { position: absolute; inset: auto 0 -1px 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ============ Buttons ============ */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-neon) 0%, #ff8fb5 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 77, 143, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(255, 77, 143, 0.45); }
.btn-secondary {
  background: #fff;
  color: var(--pink-neon);
  border: 2px solid var(--pink-neon);
}
.btn-secondary:hover { background: var(--pink-neon); color: #fff; }
.btn-small { padding: 14px 24px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============ Tagline band ============ */
.tagline-band {
  position: relative;
  padding: 60px 24px;
  background: linear-gradient(135deg, #fff6fa 0%, #f6ecff 50%, #ecf7ff 100%);
  overflow: hidden;
}
.tagline-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 202, 219, 0.5), transparent 40%),
    radial-gradient(ellipse at 80% 90%, rgba(191, 224, 241, 0.5), transparent 40%),
    radial-gradient(ellipse at 100% 30%, rgba(255, 232, 154, 0.4), transparent 40%);
  pointer-events: none;
}
.tagline-inner {
  max-width: 1120px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.tagline-headline { font-family: var(--font-display); margin: 0 0 24px; line-height: 1.35; }
.tag-neon {
  display: inline-block;
  font-size: clamp(28px, 5.5vw, 56px);
  font-weight: 900;
  color: var(--pink-neon);
  letter-spacing: 0.04em;
  text-shadow:
    0 0 12px rgba(255, 77, 143, 0.3),
    0 0 30px rgba(255, 77, 143, 0.15),
    2px 2px 0 #fff;
}
.tagline-sub { font-size: 17px; color: var(--text); margin: 0; line-height: 2; }
.tagline-sub strong { color: var(--pink-neon); font-weight: 900; }

/* ============ About Bimler ============ */
.section-about {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(255, 232, 240, 0.6), transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(217, 198, 239, 0.4), transparent 40%),
    var(--bg-soft);
}
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.about-card {
  background: #fff;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.about-card-icon { display: flex; justify-content: center; margin-bottom: 20px; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.5;
}
.about-card p {
  color: var(--text-soft);
  font-size: 14px;
  margin: 0;
  line-height: 1.9;
}
.about-card strong { color: var(--pink-neon); font-weight: 900; }
.about-card .about-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fff8e6, #fff5f9);
  border-left: 3px solid var(--pink-mid);
  border-radius: 10px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.7;
  text-align: left;
}

/* ============ Neocap section (dark accent) ============ */
.section-neocap {
  padding: 100px 0;
  background: linear-gradient(135deg, #4b3a6c 0%, #6b4d8f 50%, #8f6bb3 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-neocap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 10%, rgba(255, 202, 219, 0.15), transparent 40%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 232, 154, 0.15), transparent 40%);
  pointer-events: none;
}
.section-neocap > * { position: relative; }
.neocap-body {
  max-width: 780px; margin: 0 auto 60px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
}
.neocap-desc p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 2;
  font-size: 16px;
}
.neocap-desc strong { color: #ffe89a; font-weight: 900; }

.cases-head { text-align: center; margin-bottom: 40px; }
.cases-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffe89a;
  padding: 4px 14px;
  border: 1.5px solid rgba(255, 232, 154, 0.6);
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cases-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); margin: 0; color: #fff; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.case-icon { font-size: 34px; color: var(--yellow-mid); margin-bottom: 10px; }
.case-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--purple-mid);
  margin: 0 0 12px;
}
.case-card h4 span { display: block; font-size: 12px; color: var(--text-soft); font-weight: 500; margin-top: 4px; }
.case-card p { font-size: 13px; color: var(--text-soft); margin: 0 0 16px; line-height: 1.8; }
.case-card p strong { color: var(--text); }
.case-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.case-photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.case-badge {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  padding: 0 12px;
}
.case-badge span {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--purple-mid);
}
.case-badge span:last-child { color: var(--pink-neon); }

/* ============ Benefits (7 bubbles) ============ */
.section-benefits {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 202, 219, 0.4), transparent 45%),
    radial-gradient(ellipse at 80% 70%, rgba(191, 224, 241, 0.4), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 232, 154, 0.35), transparent 50%),
    #fffafc;
}
.bubble-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1080px; margin: 0 auto 60px;
}
.bubble {
  position: relative;
  padding: 28px 20px 24px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.bubble:hover { transform: translateY(-4px) rotate(-1deg); }
.bubble span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--pink-neon);
  font-size: 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bubble strong { color: var(--pink-neon); font-weight: 900; font-size: 1.1em; }
.bubble-pink   { background: linear-gradient(135deg, #ffdae7, #ffcadb); }
.bubble-purple { background: linear-gradient(135deg, #ebe0fa, #d9c6ef); }
.bubble-blue   { background: linear-gradient(135deg, #d5edf9, #bfe0f1); }
.bubble-yellow { background: linear-gradient(135deg, #fff2b8, #ffe89a); }
.bubble-green  { background: linear-gradient(135deg, #dcf0dc, #cfe7ce); }

.problems {
  max-width: 820px; margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  border: 2px dashed var(--pink);
}
.problems-head { text-align: center; margin-bottom: 24px; }
.problems-head h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--text);
  margin: 0;
}
.problems-head span { display: block; font-size: 14px; color: var(--text-soft); font-weight: 500; margin-bottom: 6px; }
.problem-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.problem-list li {
  padding: 14px 16px 14px 40px;
  background: linear-gradient(135deg, #fff5f9, #fff);
  border-radius: 12px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  border-left: 3px solid var(--pink-mid);
}
.problem-list li::before {
  content: '?';
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--pink-neon);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}
.problem-list strong { color: var(--pink-neon); font-weight: 900; }

/* ============ Reasons ============ */
.section-reasons {
  padding: 100px 0;
  background: linear-gradient(180deg, #fffafc 0%, #fff5f9 100%);
  position: relative;
}
.reasons-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  max-width: 900px; margin: 0 auto 40px;
}
.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-template-rows: auto auto;
  gap: 8px 28px;
  align-items: start;
  transition: transform 0.3s, box-shadow 0.3s;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-card .reason-num-wrap { grid-row: 1 / span 2; }
.reason-card h3 { grid-column: 2; }
.reason-card p { grid-column: 2; }
.reason-num-wrap {
  position: relative;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
}
.reason-star {
  position: absolute;
  font-size: 90px;
  line-height: 1;
  color: var(--yellow-mid);
  filter: drop-shadow(0 6px 12px rgba(255, 205, 92, 0.4));
}
.reason-num {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.reason-card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.5;
}
.reason-card p {
  color: var(--text-soft);
  font-size: 15px;
  margin: 0 0 8px;
  line-height: 1.95;
}
.reason-card p strong { color: var(--pink-neon); font-weight: 900; }
.reason-card p.reason-note {
  font-size: 12px;
  color: var(--text-mute);
  padding: 10px 14px;
  background: #fff5f9;
  border-radius: 10px;
  margin-top: 12px;
}
.reasons-brand { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; }
.brand-badge {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-mid));
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 16px rgba(255, 77, 143, 0.3);
}

/* ============ Flow ============ */
.section-flow {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(217, 198, 239, 0.35), transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(255, 202, 219, 0.35), transparent 45%),
    #fff9fc;
}
.flow-list {
  list-style: none; padding: 0; margin: 0 0 40px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  counter-reset: flow;
}
.flow-item {
  position: relative;
  background: #fff;
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--pink-mid);
}
.flow-item:not(:last-child)::after {
  content: '?';
  position: absolute;
  right: -18px; top: 50%; transform: translateY(-50%);
  color: var(--pink-mid);
  font-size: 16px;
  z-index: 2;
}
.flow-star {
  position: relative;
  width: 70px; height: 70px;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.flow-star::before {
  content: '★';
  position: absolute;
  font-size: 70px;
  line-height: 1;
  color: var(--yellow-mid);
  filter: drop-shadow(0 4px 10px rgba(255, 205, 92, 0.4));
}
.flow-star span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.flow-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.4;
}
.flow-item p {
  color: var(--text-soft);
  font-size: 12px;
  margin: 0;
  line-height: 1.7;
}
.flow-note {
  max-width: 900px; margin: 0 auto;
  padding: 24px 32px;
  background: linear-gradient(135deg, #fff5f9, #f6ecff);
  border-radius: var(--radius);
  border: 1px dashed var(--purple);
}
.flow-note p {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.9;
}
.flow-note strong { color: var(--pink-neon); font-weight: 900; }

/* ============ Price ============ */
.section-price {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff5f9 0%, #f6ecff 100%);
}
.price-block {
  max-width: 780px; margin: 0 auto 32px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}
.price-heading {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--pink-neon);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
  display: flex; align-items: center; gap: 10px;
}
.price-heading::before {
  content: '??';
  font-size: 20px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  padding: 14px 8px;
  text-align: left;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.price-table tr:last-child th, .price-table tr:last-child td { border-bottom: none; }
.price-table th {
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-jp);
}
.price-table th small { display: block; font-size: 11px; color: var(--text-mute); font-weight: 400; margin-top: 3px; }
.price-table td {
  text-align: right;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
}
.price-table td span { font-size: 13px; font-weight: 700; margin-left: 3px; }
.price-table td strong { color: var(--pink-neon); font-weight: 900; }
.price-table tr.highlight {
  background: linear-gradient(90deg, #fff5f9 0%, #fff 100%);
  border-radius: 12px;
}
.price-table tr.highlight td { color: var(--pink-neon); font-size: 24px; }
.price-table-split thead th {
  text-align: center; font-size: 13px;
  color: var(--purple-mid);
  font-weight: 900;
  padding-bottom: 10px;
}
.price-table-split tbody th { width: 30%; }
.price-table-split tbody td { text-align: center; font-size: 17px; }
.price-note-band {
  max-width: 780px; margin: 24px auto 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--pink) 100%);
  border-radius: var(--radius-pill);
  text-align: center;
}
.price-note-band p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* ============ Reservation ============ */
.section-reservation {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 202, 219, 0.5), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 198, 239, 0.4), transparent 45%),
    #fff;
}
.reservation-card {
  max-width: 780px; margin: 0 auto;
  background: linear-gradient(135deg, #4b3a6c 0%, #7c5da3 50%, #b598de 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.reservation-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 232, 154, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 202, 219, 0.15), transparent 50%);
  pointer-events: none;
}
.reservation-card > * { position: relative; }
.reservation-badge {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #ffe89a;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 232, 154, 0.5);
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.reservation-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 16px;
  color: #fff;
}
.reservation-head h2 em {
  background: linear-gradient(120deg, #ffe89a 0%, #ffcadb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reservation-head p { color: rgba(255, 255, 255, 0.92); margin: 0 0 32px; line-height: 1.9; }
.reservation-iframe-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.reservation-iframe-wrap iframe {
  width: 100%; max-width: 580px; height: 210px; border: 0; display: block; margin: 0 auto;
}
.reservation-alt {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.reservation-alt p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin: 0 0 14px;
}
.btn-tel-large {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff;
  color: var(--text);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.btn-tel-large:hover { transform: translateY(-3px); color: var(--pink-neon); }
.btn-tel-large span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; text-align: left; }
.btn-tel-large small { font-size: 10px; color: var(--text-mute); font-weight: 500; margin-bottom: 2px; }
.btn-tel-large strong { font-family: var(--font-en); font-size: 22px; font-weight: 900; }

/* ============ Access ============ */
.section-access { padding: 100px 0; background: #fffafc; }
.access-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: stretch;
}
.access-info h3 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 24px;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--pink);
}
.access-dl { margin: 0; }
.access-dl dt {
  font-weight: 900;
  color: var(--pink-neon);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.access-dl dd { margin: 0 0 22px; color: var(--text); line-height: 1.9; font-size: 15px; }
.access-dl dd strong { color: var(--text); font-weight: 900; }
.access-dl dd a { color: var(--pink-neon); font-weight: 900; }
.hours-table { border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 4px 12px 4px 0; text-align: left; font-size: 14px; }
.hours-table th { color: var(--pink-neon); font-weight: 900; }
.access-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}
.access-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-en { color: #c8956d; font-size: 11px; font-weight: 700; }
.footer-brand .logo-img { height: 38px; }
.footer-addr { margin: 20px 0 0; font-size: 14px; line-height: 1.9; }
.footer-links h4 {
  color: #fff; font-size: 15px; margin: 0 0 16px;
  font-family: var(--font-display);
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: #ffcadb; }
.copyright {
  text-align: center; font-size: 12px; margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* ============ Fixed CTA (mobile) ============ */
.fixed-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}
.fixed-cta > a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px;
  font-weight: 900; font-size: 14px;
}
.fixed-tel { background: var(--text); color: #fff; }
.fixed-web { background: linear-gradient(135deg, var(--pink-neon), var(--purple-mid)); color: #fff; }

/* ============ Animations ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .hero { padding: calc(var(--header-h) + 32px) 0 320px; min-height: auto; }
  .hero-photo { 
	  background-position: center bottom; background-size: 140% auto; background-position-y: 100%; 
	  background-image: url("images/hero-family_sp.png");
	}
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(255, 245, 249, 0.96) 0%,
        rgba(242, 230, 255, 0.92) 35%,
        rgba(230, 244, 255, 0.55) 55%,
        rgba(255, 244, 217, 0.10) 70%,
        rgba(255, 244, 217, 0)    85%);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }

  .tagline-inner { text-align: center; }

  .about-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }
  .bubble-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-list { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .flow-item::after { display: none; }
  .access-grid { grid-template-columns: 1fr; }
  .access-map { min-height: 320px; }
  .access-map iframe { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .fixed-cta { display: flex; }
  body { padding-bottom: 60px; }
  .reason-card { grid-template-columns: 70px 1fr; padding: 32px 28px; gap: 20px; }
  .reason-star { font-size: 70px; }
  .reason-num { font-size: 26px; }
  .reason-num-wrap { width: 70px; height: 70px; }
}

@media (max-width: 640px) {
  .sp-only { display: inline; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .container { padding: 0 16px; }
  .logo-img { height: 28px; }

  .hero { padding: calc(var(--header-h) + 20px) 0 280px; }
  .hero-photo { background-size: 180% auto; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; }

  .section-about, .section-neocap, .section-benefits, .section-reasons, .section-flow, .section-price, .section-reservation, .section-access { padding: 60px 0; }
  .tagline-band { padding: 40px 24px; }
  .section-head { margin-bottom: 36px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-card { padding: 32px 24px; }
  .neocap-body { padding: 28px 24px; }
  .bubble-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bubble { padding: 22px 14px; font-size: 12px; }
  .problems { padding: 28px 24px; }
  .flow-list { grid-template-columns: 1fr; }

  .price-block { padding: 20px 20px; }
  .price-table th, .price-table td { padding: 12px 4px; font-size: 14px; }
  .price-table td { font-size: 18px; }
  .price-table tr.highlight td { font-size: 20px; }

  .reservation-card { padding: 40px 24px; }
  .reservation-iframe-wrap { padding: 12px; }
  .reservation-iframe-wrap iframe { height: 230px; }

  .reason-card {
    grid-template-columns: 1fr; padding: 28px 24px; gap: 16px; text-align: center;
  }
  .reason-num-wrap { margin: 0 auto; }
  .brand-badge { font-size: 11px; padding: 8px 16px; }
}
