/* ═══════════════════════════════════════════
   えがお整骨院 – DESIGN_05 pop_icon style
   Mobile-first | breakpoints: 768px / 1024px
═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Yomogi&family=Klee+One:wght@400;600&family=Poppins:wght@400;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --bg: #faf8f3;
  --bg-section: #ede8de;
  --bg-green: #f0f5e8;
  --bg-dark: #3d3028;
  --text: #5a5040;
  --text-light: #8a7d6e;
  --green: #8cb369;
  --green-dark: #7aa356;
  --green-heading: #6b8e4e;
  --green-light: #c5d5a5;
  --orange: #e8a87c;
  --orange-dark: #d4915f;
  --white: #ffffff;
  --border: #d8d0c0;
  --header-h: 80px;
  --container: 1100px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(90,80,64,0.10);
  --shadow-md: 0 8px 32px rgba(90,80,64,0.16);
  --font-main: 'Noto Sans JP', sans-serif;
  --font-hand: 'Yomogi', cursive;
  --font-hand2: 'Klee One', cursive;
  --font-en: 'Poppins', sans-serif;
  --trans: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); background: var(--bg); color: var(--text); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ── */
.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }
.section { padding: 72px 0; }
.section--cream { background: var(--bg); }
.section--section { background: var(--bg); }
.section--green { background: var(--bg-green); }
.section--dark { background: var(--bg-dark); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; transition: var(--trans);
  white-space: nowrap;
}
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--orange { background: var(--orange); color: var(--white); }
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--white { background: var(--white); color: var(--green-heading); }
.btn--white:hover { background: #f5f5f5; transform: translateY(-2px); }

/* Fade-in animation */
.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fi.vis { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.1s; }
.fi-d2 { transition-delay: 0.2s; }
.fi-d3 { transition-delay: 0.3s; }
.fi-d4 { transition-delay: 0.4s; }
.fi-d5 { transition-delay: 0.5s; }

/* Section title */
.sec-title { text-align: center; margin-bottom: 48px; }
.sec-title__wavy { font-family: var(--font-hand); color: var(--green); font-size: 1.1rem; display: block; letter-spacing: 0.1em; }
.sec-title__jp { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 900; color: var(--green-heading); line-height: 1.4; margin: 6px 0; }
.sec-title__sub { font-size: 0.9rem; color: var(--text-light); margin-top: 4px; }

/* ══ HEADER ══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg); border-bottom: 2px solid var(--green-light);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(90,80,64,0.12); }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 1rem;
  display: grid; grid-template-rows: auto auto; justify-items: center;
  position: relative;
}
.header-logo {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 0 4px; gap: 2px; text-decoration: none;
}
.header-logo__mark {
  width: 40px; height: 40px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.header-logo__mark svg { width: 24px; height: 24px; }
.header-logo__name {
  font-family: var(--font-hand2); font-weight: 600;
  font-size: 1.1rem; color: var(--green-heading); line-height: 1.2;
}
.header-logo__catch { font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.05em; }

.header-badge {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  background: var(--orange); color: var(--white);
  font-family: var(--font-hand); font-size: 0.75rem;
  padding: 4px 12px; border-radius: 50px;
  display: none;
}
.header-nav {
  display: none; width: 100%; background: var(--bg-section);
  border-top: 1px solid var(--border);
}
.header-nav a {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  padding: 8px 14px; display: inline-flex; align-items: center; gap: 4px;
  transition: color var(--trans);
}
.header-nav a::before { content: '●'; color: var(--green-light); font-size: 0.6em; }
.header-nav a:hover,
.header-nav a.active { color: var(--green-dark); }
.header-nav a.active::before { color: var(--green); }

.hamburger {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  background: var(--green); border-radius: 8px; z-index: 110;
}
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  background: var(--bg); z-index: 99;
  transform: translateX(110%); transition: transform 0.35s ease;
  padding: 100px 24px 32px; overflow-y: auto;
  border-left: 3px solid var(--green-light);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__list li a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-bottom: 1px dashed var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text);
  transition: color var(--trans);
}
.mobile-drawer__list li a:hover { color: var(--green-dark); }
.mobile-drawer__list li a.active { color: var(--green-dark); font-weight: 700; }
.mobile-drawer__contact { margin-top: 28px; text-align: center; }
.mobile-drawer__tel {
  display: block; font-size: 1.35rem; font-weight: 700;
  color: var(--green-heading); letter-spacing: 0.06em; margin-bottom: 6px;
}
.mobile-drawer__hours { font-size: 0.78rem; color: var(--text-light); margin-bottom: 14px; }
.mobile-drawer__btn { width: 100%; }

.drawer-overlay {
  position: fixed; inset: 0; background: rgba(61,48,40,0.45);
  z-index: 98; opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

@media (min-width: 768px) {
  :root { --header-h: 88px; }
  .header-inner { grid-template-rows: auto auto; }
  .header-logo { padding: 12px 0 6px; }
  .header-logo__mark { width: 44px; height: 44px; }
  .header-logo__name { font-size: 1.25rem; }
  .header-nav { display: flex; justify-content: center; flex-wrap: wrap; }
  .header-badge { display: block; }
  .hamburger { display: none; }
}

/* ══ BREADCRUMB ══════════════════════════════════════ */
.breadcrumb {
  margin-top: var(--header-h);
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 8px 0; font-size: 0.78rem; color: var(--text-light);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; list-style: none; }
.breadcrumb li + li::before { content: '›'; margin-right: 4px; }
.breadcrumb a { color: var(--green-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ══ PAGE HERO ══════════════════════════════════════ */
.page-hero {
  padding: 48px 0 40px;
  background: var(--bg-section);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-light) 2px, transparent 2px) 0 0 / 18px 18px;
  opacity: 0.5;
}
.page-hero__hand { font-family: var(--font-hand); color: var(--green); font-size: 1rem; display: block; }
.page-hero__title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--green-heading); margin-top: 4px; }

/* ══ WAVE SVG DIVIDER ════════════════════════════════ */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; display: block; }
.wave-divider svg { display: block; width: 100%; }

/* ══ FIRST VIEW ═════════════════════════════════════ */
.fv {
  margin-top: var(--header-h);
  min-height: 80vh;
  background: var(--bg);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 1rem 0;
}
.fv__dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.fv__dot {
  position: absolute; border-radius: 50%; background: var(--green-light);
}
.fv__dot:nth-child(1)  { width: 12px; height: 12px; top: 12%; left: 8%; }
.fv__dot:nth-child(2)  { width: 8px;  height: 8px;  top: 20%; left: 20%; opacity: 0.6; }
.fv__dot:nth-child(3)  { width: 16px; height: 16px; top: 35%; left: 5%; }
.fv__dot:nth-child(4)  { width: 10px; height: 10px; top: 60%; left: 12%; opacity: 0.7; }
.fv__dot:nth-child(5)  { width: 6px;  height: 6px;  top: 75%; left: 25%; }
.fv__dot:nth-child(6)  { width: 14px; height: 14px; top: 10%; right: 10%; }
.fv__dot:nth-child(7)  { width: 8px;  height: 8px;  top: 30%; right: 6%; opacity: 0.6; }
.fv__dot:nth-child(8)  { width: 12px; height: 12px; top: 50%; right: 15%; }
.fv__dot:nth-child(9)  { width: 18px; height: 18px; top: 70%; right: 8%; opacity: 0.5; }
.fv__dot:nth-child(10) { width: 7px;  height: 7px;  top: 85%; right: 22%; }
.fv__dot:nth-child(11) { width: 10px; height: 10px; top: 45%; left: 50%; opacity: 0.4; }
.fv__dot:nth-child(12) { width: 5px;  height: 5px;  top: 22%; left: 55%; opacity: 0.6; }

.fv__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  width: 100%; max-width: 900px;
}
.fv__photos {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 16px; flex-wrap: wrap;
}
.fv__photo-wrap {
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--green-light);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.fv__photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fv__photo-wrap--main { width: 180px; height: 180px; border-color: var(--green); border-width: 5px; }
.fv__photo-wrap--sub  { width: 130px; height: 130px; }

.fv__copy {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fv__badge {
  background: var(--orange); color: var(--white);
  font-family: var(--font-hand); font-size: 0.9rem;
  padding: 6px 20px; border-radius: 50px; display: inline-block;
}
.fv__catch {
  font-family: var(--font-hand2); font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: var(--green-heading); line-height: 1.5;
}
.fv__catch em { font-style: normal; color: var(--orange); }
.fv__subcopy {
  font-size: 0.95rem; color: var(--text-light); max-width: 500px; line-height: 1.8;
}
.fv__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.fv__tel {
  font-size: 1.4rem; font-weight: 700; color: var(--green-heading);
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 6px;
}
.fv__tel-icon { width: 20px; height: 20px; }
.fv__wave { margin-top: 40px; }

@media (min-width: 768px) {
  .fv { padding: 56px 2rem 0; min-height: 85vh; }
  .fv__inner { flex-direction: row; justify-content: center; gap: 48px; align-items: center; }
  .fv__photos {
    order: 1; flex-direction: column; align-items: center; gap: 20px;
    flex-wrap: nowrap;
  }
  .fv__photo-wrap--main { width: 200px; height: 200px; }
  .fv__photo-wrap--sub  { width: 150px; height: 150px; }
  .fv__copy { order: 2; text-align: left; align-items: flex-start; max-width: 420px; }
  .fv__actions { justify-content: flex-start; }
  .fv__wave { margin-top: 56px; }
}
@media (min-width: 1024px) {
  .fv__inner { gap: 60px; max-width: 1100px; }
  .fv__photos { flex-direction: row; align-items: flex-end; flex-shrink: 0; }
  .fv__photo-wrap--main { width: 220px; height: 220px; }
  .fv__photo-wrap--sub  { width: 155px; height: 155px; }
  .fv__copy { flex: 1; max-width: none; }
  .fv__catch { font-size: 2.2rem; }
}

/* ══ PROBLEMS ═══════════════════════════════════════ */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 32px;
}
.problem-item {
  background: var(--white); border-radius: var(--radius);
  padding: 18px 16px; border: 2px solid var(--green-light);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
}
.problem-item__icon { font-size: 1.8rem; flex-shrink: 0; }
.problem-item__text { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.problem-lead {
  text-align: center; margin-top: 28px; margin-bottom: 0;
  font-family: var(--font-hand); font-size: 1.05rem; color: var(--green-heading);
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ══ REASONS ════════════════════════════════════════ */
.reason-grid {
  display: grid; gap: 20px;
}
.reason-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--green);
}
.reason-card__icon-wrap {
  width: 80px; height: 80px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.reason-card__icon-wrap svg { width: 40px; height: 40px; }
.reason-card__num {
  font-family: var(--font-en); font-weight: 700;
  font-size: 0.75rem; color: var(--green); letter-spacing: 0.1em;
  display: block; margin-bottom: 8px;
}
.reason-card__title { font-size: 1.1rem; font-weight: 700; color: var(--green-heading); margin-bottom: 10px; }
.reason-card__text { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; }

@media (min-width: 768px) {
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══ MENU (large icon button grid) ═════════════════ */
.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-btn {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--green-light);
  padding: 24px 16px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: default;
}
.menu-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.menu-btn__circle {
  width: 72px; height: 72px; background: var(--bg-green);
  border-radius: 50%; border: 3px solid var(--green-light);
  display: flex; align-items: center; justify-content: center;
}
.menu-btn__circle svg { width: 36px; height: 36px; }
.menu-btn__name { font-size: 0.95rem; font-weight: 700; color: var(--green-heading); line-height: 1.4; }
.menu-btn__price {
  font-family: var(--font-en); font-weight: 700;
  font-size: 0.85rem; color: var(--orange);
  background: #fff5ee; border-radius: 50px;
  padding: 3px 14px; display: inline-block;
}
.menu-btn__time { font-size: 0.75rem; color: var(--text-light); }

@media (min-width: 768px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .menu-btn { padding: 32px 20px; }
  .menu-btn__circle { width: 88px; height: 88px; }
  .menu-btn__circle svg { width: 44px; height: 44px; }
  .menu-btn__name { font-size: 1.05rem; }
}

/* ── Treatment page detail cards ── */
.treatment-detail-list { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.treatment-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  border-left: 6px solid var(--green);
}
.treatment-card__head {
  background: var(--bg-green); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.treatment-card__icon {
  width: 60px; height: 60px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.treatment-card__icon svg { width: 30px; height: 30px; }
.treatment-card__name { font-size: 1.15rem; font-weight: 700; color: var(--green-heading); }
.treatment-card__meta { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }
.treatment-card__body { padding: 20px 24px; }
.treatment-card__desc { font-size: 0.9rem; color: var(--text); line-height: 1.8; }
.treatment-card__tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.treatment-card__tag {
  font-size: 0.75rem; background: var(--bg-section);
  border: 1px solid var(--border); border-radius: 50px;
  padding: 3px 12px; color: var(--text-light);
}

/* ══ VOICE ══════════════════════════════════════════ */
.voice-list { display: flex; flex-direction: column; gap: 40px; }

/* Speech bubble card */
.voice-bubble {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.voice-bubble__card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow);
  border: 2px solid var(--green-light);
  width: 100%; position: relative;
}
.voice-bubble__card::after {
  content: '';
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  border: 10px solid transparent;
  border-top-color: var(--green-light);
}
.voice-bubble__card::before {
  content: '';
  position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: var(--white);
  z-index: 1;
}
.voice-bubble__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.voice-badge {
  font-size: 0.75rem; padding: 3px 12px; border-radius: 50px;
  background: var(--bg-section); color: var(--text); font-weight: 500;
}
.voice-badge--green { background: var(--green); color: var(--white); }
.voice-stars { color: var(--orange); font-size: 1rem; margin-bottom: 8px; letter-spacing: 2px; }
.voice-bubble__text { font-size: 0.9rem; color: var(--text); line-height: 1.9; }
.voice-bubble__author {
  margin-top: 20px; display: flex; align-items: center; gap: 14px;
  flex-direction: column;
}
.voice-bubble__photo {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--green-light); overflow: hidden; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(90,80,64,0.15);
}
.voice-bubble__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice-bubble__name { font-size: 0.95rem; font-weight: 700; color: var(--green-heading); text-align: center; }
.voice-bubble__meta { font-size: 0.78rem; color: var(--text-light); text-align: center; }

.voice-disclaimer { margin-top: 40px; text-align: center; font-size: 0.78rem; color: var(--text-light); }

@media (min-width: 768px) {
  .voice-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .voice-bubble__author { flex-direction: column; }
}
@media (min-width: 1024px) {
  .voice-list { grid-template-columns: repeat(3, 1fr); }
}

/* ══ GALLERY (circular) ═════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  position: relative;
}
.gallery-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.gallery-item__photo {
  width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--green-light);
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.gallery-item__photo:hover { transform: scale(1.06); box-shadow: var(--shadow-md); }
.gallery-item__photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__cap { font-size: 0.8rem; color: var(--text-light); text-align: center; }

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item__photo { width: 180px; height: 180px; }
}

/* ══ ABOUT / DIRECTOR ═══════════════════════════════ */
.director-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; max-width: 760px; margin: 0 auto;
}
.director-block__photo-wrap {
  width: 200px; height: 200px; border-radius: 50%;
  overflow: hidden; border: 6px solid var(--green);
  box-shadow: var(--shadow-md); flex-shrink: 0;
}
.director-block__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.director-block__content { text-align: center; }
.director-block__name { font-size: 1.5rem; font-weight: 900; color: var(--green-heading); margin-bottom: 8px; }
.director-block__badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.director-badge {
  font-size: 0.75rem; background: var(--bg-green); border: 1px solid var(--green-light);
  border-radius: 50px; padding: 4px 14px; color: var(--green-dark);
}
.director-block__greeting {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 24px; font-size: 0.9rem; line-height: 1.9; color: var(--text);
  border: 2px solid var(--green-light); text-align: left;
}

@media (min-width: 768px) {
  .director-block { flex-direction: row; align-items: flex-start; }
  .director-block__content { text-align: left; }
  .director-block__badges { justify-content: flex-start; }
  .director-block__photo-wrap { width: 220px; height: 220px; }
}

/* ── Clinic info table ── */
.info-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem; background: var(--white);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.info-table th, .info-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.info-table th { background: var(--bg-green); color: var(--green-heading); font-weight: 700; width: 110px; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table .circle { color: var(--green); font-weight: 700; }
.info-table .cross { color: var(--text-light); }

/* ── Map + access ── */
.access-map { border-radius: var(--radius); overflow: hidden; height: 300px; background: var(--bg-section); margin-bottom: 24px; }
.access-map iframe { width: 100%; height: 100%; border: none; }
.access-info { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.access-info p { font-size: 0.9rem; line-height: 1.8; color: var(--text); }
.access-info p + p { margin-top: 8px; }
.access-info__tel { font-size: 1.4rem; font-weight: 700; color: var(--green-heading); margin: 12px 0 4px; }

/* ══ CTA ════════════════════════════════════════════ */
.cta-section {
  background: var(--green); padding: 72px 1rem;
  position: relative; overflow: hidden;
}
.cta-section__dots {
  position: absolute; inset: 0; pointer-events: none;
}
.cta-section__dot {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.cta-section__dot:nth-child(1) { width: 60px; height: 60px; top: 10%; left: 5%; }
.cta-section__dot:nth-child(2) { width: 40px; height: 40px; top: 60%; left: 12%; }
.cta-section__dot:nth-child(3) { width: 80px; height: 80px; top: 20%; right: 8%; }
.cta-section__dot:nth-child(4) { width: 30px; height: 30px; bottom: 15%; right: 20%; }
.cta-section .container { position: relative; z-index: 1; text-align: center; }
.cta-section__title { font-family: var(--font-hand2); font-size: clamp(1.4rem, 3.5vw, 2rem); color: var(--white); font-weight: 600; margin-bottom: 12px; }
.cta-section__sub { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-tel {
  display: inline-block; font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--white); letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.cta-hours { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ CONTACT FORM ═══════════════════════════════════ */
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-method {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 22px; border: 2px solid var(--green-light);
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow);
}
.contact-method__icon { font-size: 2rem; width: 48px; text-align: center; flex-shrink: 0; }
.contact-method__title { font-size: 1rem; font-weight: 700; color: var(--green-heading); margin-bottom: 2px; }
.contact-method__desc { font-size: 0.82rem; color: var(--text-light); }
@media (min-width: 768px) {
  .contact-methods { flex-direction: row; }
  .contact-method { flex: 1; flex-direction: column; text-align: center; }
  .contact-method__icon { width: auto; }
}

.tel-card {
  background: var(--bg-green); border-radius: var(--radius);
  padding: 28px; text-align: center; margin-bottom: 40px;
  border: 2px solid var(--green-light);
}
.tel-card__label { font-family: var(--font-hand); color: var(--green-heading); font-size: 1rem; margin-bottom: 4px; }
.tel-card__num {
  font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700;
  color: var(--green-heading); letter-spacing: 0.08em; display: block; margin-bottom: 6px;
}
.tel-card__hours { font-size: 0.82rem; color: var(--text-light); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); border: 2px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group label .req {
  font-size: 0.7rem; background: var(--orange); color: var(--white);
  border-radius: 4px; padding: 2px 6px; margin-left: 6px; vertical-align: middle;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.95rem; font-family: inherit;
  background: var(--bg); color: var(--text); outline: none;
  transition: border-color var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); background: var(--white); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238cb369' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.radio-group, .check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-group label, .check-group label { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; font-weight: 400; cursor: pointer; }
.form-group .error { font-size: 0.78rem; color: #e74c3c; margin-top: 4px; display: none; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #e74c3c; }
.form-group.has-error .error { display: block; }
.form-submit { text-align: center; margin-top: 24px; }
.form-submit .btn { min-width: 240px; font-size: 1.05rem; padding: 16px 40px; }

.success-panel {
  display: none; text-align: center; padding: 48px 24px;
  background: var(--bg-green); border-radius: var(--radius);
  border: 2px solid var(--green-light);
}
.success-panel.show { display: block; }
.success-panel__icon { font-size: 3rem; margin-bottom: 16px; }
.success-panel__title { font-size: 1.3rem; font-weight: 700; color: var(--green-heading); margin-bottom: 8px; }
.success-panel__text { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }

/* ══ FOOTER ═════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.8);
  padding: 48px 1rem 80px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; justify-content: center; }
.footer-logo__mark { width: 40px; height: 40px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-logo__mark svg { width: 24px; height: 24px; }
.footer-logo__name { font-family: var(--font-hand2); font-weight: 600; font-size: 1.1rem; color: var(--white); display: block; }
.footer-logo__catch { font-size: 0.65rem; color: rgba(255,255,255,0.55); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 20px; margin-bottom: 20px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color var(--trans); }
.footer-nav a:hover { color: var(--green-light); }
.footer-info { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 20px; }
.footer-copy { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* ══ MOBILE BAR ═════════════════════════════════════ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; height: 56px;
}
.mobile-bar__tel {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-size: 0.95rem; font-weight: 700; gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.mobile-bar__reserve {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--white);
  font-size: 0.95rem; font-weight: 700; gap: 6px;
}
@media (min-width: 768px) {
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 48px; }
}
