@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Montserrat:wght@400;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --bg-cream: #fff5e6;
  --bg-cream-alt: #fef0e0;
  --text: #333333;
  --text-sub: #555555;
  --text-light: #999999;
  --orange: #e67e22;
  --orange-dark: #d4692a;
  --orange-heading: #c85522;
  --teal: #2e86ab;
  --teal-dark: #1d6e8a;
  --gold: #f2c94c;
  --gray-dark: #2d2d2d;
  --white: #ffffff;
  --header-h: 72px;
  --container: 1100px;
  --radius: 8px;
  --font-zh: 'Zen Maru Gothic', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
}

/* ─── Base ──────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  padding-bottom: 60px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Utilities ─────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--cream { background: var(--bg-cream); }
.section--cream-alt { background: var(--bg-cream-alt); }

/* ─── Fade-in ────────────────────────────────────────── */
.fi { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fi.vis { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.12s; }
.fi-d2 { transition-delay: 0.24s; }
.fi-d3 { transition-delay: 0.36s; }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.97); }
.btn--orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn--orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.btn--outline-orange { background: transparent; color: var(--orange-dark); border-color: var(--orange); }
.btn--outline-orange:hover { background: var(--orange); color: var(--white); }

/* ─── Section Title ──────────────────────────────────── */
.sec-title { text-align: center; margin-bottom: 56px; }
.sec-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sec-title__jp {
  font-family: var(--font-zh);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange-heading);
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid var(--orange);
  margin-bottom: 0;
}

/* ─── Diagonal Section Cut ───────────────────────────── */
.section--skewed-top {
  position: relative;
  margin-top: -40px;
  padding-top: 120px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
.section--skewed-bottom {
  position: relative;
  padding-bottom: 120px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  z-index: 200;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 3px 20px rgba(0,0,0,0.1); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  gap: 12px;
}

/* Logo block */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo__mark {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.header-logo__mark svg { width: 26px; height: 26px; }
.header-logo__text { line-height: 1.2; }
.header-logo__name {
  display: block;
  font-family: var(--font-zh);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange-heading);
}
.header-logo__catch {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Desktop nav */
.header-nav { display: none; }
.header-cta { display: none; }

/* Hamburger */
.hamburger {
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--orange-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-h); right: 0;
  width: 280px;
  height: calc(100vh - var(--header-h));
  background: var(--white);
  z-index: 190;
  padding: 0;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__list { padding: 12px 0; }
.mobile-drawer__list li { border-bottom: 1px solid #f0e8e0; }
.mobile-drawer__list a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-zh);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange-heading);
  transition: background 0.2s;
}
.mobile-drawer__list a:hover,
.mobile-drawer__list a.active { background: var(--bg-cream); color: var(--orange); }
.mobile-drawer__contact {
  padding: 20px 24px;
  background: var(--bg-cream);
  margin-top: auto;
}
.mobile-drawer__tel {
  display: block;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 4px;
}
.mobile-drawer__hours { font-size: 11px; color: var(--text-light); margin-bottom: 14px; }
.mobile-drawer__btn { display: block; text-align: center; font-size: 14px; padding: 11px; }

/* Overlay when drawer open */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 180;
}
.drawer-overlay.show { display: block; }

/* ─── Breadcrumb ─────────────────────────────────────── */
.breadcrumb { background: var(--bg-cream); padding: 10px 0; border-bottom: 1px solid #f0e0c8; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0 6px; font-size: 12px; color: var(--text-light); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 6px; }
.breadcrumb a { color: var(--orange-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Page Hero ──────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
  padding: 48px 0 40px;
  text-align: center;
  border-bottom: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230,126,34,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero__title {
  font-family: var(--font-zh);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange-heading);
}

/* ─── FV ─────────────────────────────────────────────── */
.fv {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

/* Left col: vertical catch copy */
.fv__left {
  order: 2;
  padding: 36px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fv__catch-area {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.fv__needle-svg {
  flex-shrink: 0;
  width: 22px;
  opacity: 0.9;
}
.fv__catch {
  font-family: var(--font-zh);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 44px);
  color: var(--orange-heading);
  line-height: 1.4;
}
.fv__catch em { color: var(--teal); font-style: normal; }
.fv__subcopy {
  font-size: 14px;
  color: var(--text-sub);
  padding: 8px 14px;
  border-left: 3px solid var(--orange);
  background: var(--bg-cream);
  border-radius: 0 6px 6px 0;
}
.fv__copyright-text { font-size: 10px; color: #bbb; }

/* Right col: photo + info box */
.fv__right {
  order: 1;
  position: relative;
}
.fv__photo-wrap { width: 100%; height: 280px; overflow: hidden; }
.fv__photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Info box: flows below photo on mobile */
.fv__info-box {
  background: var(--white);
  border-top: 4px solid var(--orange);
  border-radius: 0 0 12px 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.fv__info-catch {
  font-family: var(--font-zh);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fv__info-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.fv__schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 12px;
}
.fv__schedule-table th,
.fv__schedule-table td { padding: 5px 4px; text-align: center; white-space: nowrap; }
.fv__schedule-table th {
  background: var(--bg-cream);
  color: var(--text-sub);
  font-weight: 700;
  font-size: 12px;
}
.fv__schedule-table td { color: var(--text); font-weight: 500; }
.fv__schedule-table .mark-closed { color: #ccc; }
.fv__info-address {
  font-size: 12px;
  color: var(--text-sub);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.fv__tel-link {
  display: block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
  margin-bottom: 10px;
}
.fv__web-btn { display: block; width: 100%; text-align: center; font-size: 14px; padding: 11px; }

/* ─── Problems ───────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.problem-item__icon { font-size: 24px; flex-shrink: 0; }
.problem-item__text { font-size: 14px; font-weight: 500; }
.problems-lead {
  margin-top: 36px;
  text-align: center;
  padding: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-zh);
  font-size: 17px;
}

/* ─── Reasons ────────────────────────────────────────── */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.reason-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  border-left: 5px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.reason-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, var(--bg-cream) 0%, transparent 70%);
}
.reason-card__icon { font-size: 36px; margin-bottom: 14px; }
.reason-card__num {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.reason-card__title {
  font-family: var(--font-zh);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 10px;
}
.reason-card__text { font-size: 14px; color: var(--text-sub); line-height: 1.85; }

/* ─── Menu Cards ─────────────────────────────────────── */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
.menu-card {
  background: var(--white);
  border-radius: 12px;
  border: 2px solid #f0e0c8;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.menu-card__head {
  background: var(--bg-cream);
  padding: 16px 20px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-card__badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}
.menu-card__icon { font-size: 26px; }
.menu-card__name {
  font-family: var(--font-zh);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-heading);
  flex: 1;
}
.menu-card__body { padding: 14px 20px 18px; }
.menu-card__price {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.menu-card__price span { font-size: 14px; font-family: var(--font-body); font-weight: 400; color: var(--text-sub); }
.menu-card__time { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.menu-card__desc { font-size: 13px; color: var(--text-sub); line-height: 1.75; }
.menu-more { text-align: center; }
.menu-more a { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-dark); font-family: var(--font-zh); font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

/* ─── Voice Cards ────────────────────────────────────── */
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.voice-card, .voice-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  border-top: 4px solid var(--teal);
  position: relative;
}
.voice-card__quote, .voice-item__quote {
  font-family: 'Georgia', serif;
  font-size: 72px;
  color: var(--orange);
  opacity: 0.2;
  line-height: 0.8;
  position: absolute;
  top: 14px; left: 16px;
}
.voice-card__body, .voice-item__body { position: relative; }
.voice-card__badges, .voice-item__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.voice-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.voice-badge--teal { background: var(--teal); }
.voice-card__stars, .voice-item__stars { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.voice-card__text, .voice-item__text { font-size: 14px; line-height: 1.9; color: var(--text); margin-bottom: 16px; }
.voice-card__author, .voice-item__author { display: flex; align-items: center; gap: 12px; }
.voice-card__avatar, .voice-item__avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.voice-card__avatar img, .voice-item__avatar img { width: 100%; height: 100%; object-fit: cover; }
.voice-card__name, .voice-item__name { font-size: 13px; font-weight: 700; color: var(--orange-heading); }
.voice-card__meta, .voice-item__meta { font-size: 12px; color: var(--text-light); }

.voice-more { text-align: center; }
.voice-more a { display: inline-flex; align-items: center; gap: 6px; color: var(--orange-dark); font-family: var(--font-zh); font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

.voice-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
.voice-disclaimer {
  margin-top: 32px;
  padding: 16px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-sub);
}

/* ─── Flow Steps (zigzag) ────────────────────────────── */
.flow-wrap { position: relative; padding: 0; }
.flow-wrap::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 3px;
  background: repeating-linear-gradient(to bottom, var(--orange) 0, var(--orange) 8px, transparent 8px, transparent 14px);
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px;
  padding: 0;
  position: relative;
}
.flow-step__num-circle {
  width: 56px; height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  position: relative; z-index: 1;
  box-shadow: 0 3px 12px rgba(230,126,34,0.35);
}
.flow-step__card {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-top: 6px;
}
.flow-step__title {
  font-family: var(--font-zh);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 6px;
}
.flow-step__text { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* ─── Access ─────────────────────────────────────────── */
.access-map-full {
  width: 100%;
  height: 280px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f5e8d8;
}
.access-map-full iframe { width: 100%; height: 100%; border: none; display: block; }
.access-info-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.access-info-row {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e0c8;
  font-size: 14px;
  line-height: 1.7;
}
.access-info-label { font-weight: 700; color: var(--orange-heading); flex-shrink: 0; min-width: 72px; }

/* ─── Director (about page) ──────────────────────────── */
.director-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 48px;
}
.director-photo-wrap {
  width: 220px; height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(230,126,34,0.2);
  border: 4px solid var(--orange);
}
.director-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.director-info { text-align: center; }
.director-name {
  font-family: var(--font-zh);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 6px;
}
.director-name span { font-size: 14px; font-weight: 400; color: var(--text-sub); margin-left: 8px; }
.director-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.director-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.director-badge--teal { background: var(--teal); }
.director-text { font-size: 15px; line-height: 1.9; color: var(--text); text-align: left; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { height: 100%; aspect-ratio: auto; object-fit: cover; }

/* Clinic philosophy */
.clinic-philosophy {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 5px solid var(--orange);
  margin: 40px 0;
}
.clinic-philosophy__title {
  font-family: var(--font-zh);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 12px;
}
.clinic-philosophy__text { font-size: 15px; line-height: 1.9; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 12px; overflow-x: auto; display: block; }
.hours-table th,
.hours-table td { padding: 9px 10px; border: 1px solid #f0e0c8; text-align: center; white-space: nowrap; }
.hours-table th { background: var(--orange); color: var(--white); font-weight: 700; }
.hours-table td { background: var(--white); }
.mark-ok { color: var(--teal-dark); font-weight: 700; }
.mark-off { color: #ccc; }

/* ─── Treatment page specifics ────────────────────────── */
.philosophy-card {
  background: var(--bg-cream);
  border-radius: 12px;
  padding: 28px;
  border-left: 5px solid var(--orange);
  margin-bottom: 48px;
}
.philosophy-card__title {
  font-family: var(--font-zh);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 12px;
}
.philosophy-card__text { font-size: 15px; line-height: 1.9; }

.treatment-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }

/* ─── Contact page ───────────────────────────────────── */
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
.contact-method-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 2px solid #f0e0c8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.contact-method-card__icon { font-size: 38px; margin-bottom: 10px; }
.contact-method-card__title {
  font-family: var(--font-zh);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 8px;
}
.contact-method-card__text { font-size: 13px; color: var(--text-sub); line-height: 1.7; margin-bottom: 14px; }

.contact-tel-card {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--orange);
  margin-bottom: 40px;
}
.contact-tel-num {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 6px;
}
.contact-tel-hours { font-size: 13px; color: var(--text-sub); }

.form-section-title {
  font-family: var(--font-zh);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
}
.form-row { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 700; color: var(--orange-heading); margin-bottom: 6px; }
.form-label .required { color: #e53e3e; font-size: 11px; margin-left: 4px; background: #fff0f0; padding: 1px 5px; border-radius: 3px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #f0e0c8;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-radio-group { display: flex; flex-direction: column; gap: 8px; }
.form-radio-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.form-radio-label input { accent-color: var(--orange); }
.form-error { display: none; font-size: 12px; color: #e53e3e; margin-top: 4px; }
.form-error.show { display: block; }
.form-submit {
  display: block; width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--font-zh);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--orange-dark); }
.success-panel {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-cream);
  border-radius: 12px;
}
.success-panel.show { display: block; }
.success-panel__icon { font-size: 52px; margin-bottom: 16px; }
.success-panel__title {
  font-family: var(--font-zh);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-heading);
  margin-bottom: 10px;
}
.success-panel__text { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* ─── Simple access (index) ──────────────────────────── */
.access-simple { display: grid; grid-template-columns: 1fr; gap: 24px; }
.access-info-rows { }
.access-info-row {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0e0c8;
  font-size: 14px; line-height: 1.7;
}
.access-info-row-label { font-weight: 700; color: var(--orange-heading); flex-shrink: 0; min-width: 68px; }

/* ─── CTA Section ────────────────────────────────────── */
.cta-section {
  background: var(--orange);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section__title {
  font-family: var(--font-zh);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-section__sub { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-tel {
  display: block;
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-tel::before { content: '☎ '; font-size: 28px; vertical-align: middle; }
.cta-hours { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-btns .btn { min-width: 200px; font-size: 15px; padding: 14px 32px; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.8);
  border-top: 4px solid var(--orange);
  padding: 48px 0 24px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.footer-logo__mark {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo__mark svg { width: 22px; height: 22px; }
.footer-logo__name { font-family: var(--font-zh); font-size: 16px; font-weight: 700; color: var(--white); }
.footer-logo__catch { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 20px; }
.footer-nav a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-info { font-size: 13px; line-height: 1.9; margin-bottom: 20px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ─── Mobile Bar ─────────────────────────────────────── */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  border-top: 1px solid #f0e0c8;
  display: flex;
  z-index: 200;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}
.mobile-bar__tel {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700; font-size: 14px; gap: 5px;
}
.mobile-bar__reserve {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 700; font-size: 14px; gap: 5px;
}

/* ─── Responsive: 768px ──────────────────────────────── */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mobile-bar { display: none; }

  /* FV: 2-col layout */
  .fv {
    flex-direction: row;
    height: 90vh;
    min-height: 600px;
  }
  .fv__left {
    order: 1;
    width: 38%;
    padding: 60px 32px 40px;
  }
  .fv__right {
    order: 2;
    width: 62%;
    position: relative;
  }
  .fv__photo-wrap {
    height: 100%;
  }
  .fv__catch {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: clamp(28px, 3.5vw, 50px);
    display: inline-block;
  }
  .fv__catch-area {
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .fv__subcopy {
    writing-mode: horizontal-tb;
    padding: 8px 14px;
    border-left: 3px solid var(--orange);
    border-bottom: none;
    border-radius: 0 6px 6px 0;
    background: var(--bg-cream);
    font-size: 13px;
    align-self: flex-start;
  }
  /* Info box: absolute overlay on right side */
  .fv__info-box {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 264px;
    border-radius: 12px;
    border-top: 4px solid var(--orange);
    /* 768〜1023px帯のはみ出し対策: paddingを縮小 */
    padding: 14px;
    overflow: visible;
  }
  /* 768〜1023px帯: テーブルを詰めてinfo-box幅(264-28=236px)に収める */
  .fv__schedule-table { font-size: 11px; }
  .fv__schedule-table th,
  .fv__schedule-table td { padding: 4px 3px; }

  /* Grids */
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .access-simple { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: row; justify-content: center; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-list { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: repeat(3, 1fr); }

  /* Gallery with 1 large + smaller */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--tall img { height: 100%; aspect-ratio: auto; }

  /* Director centered */
  .director-section { flex-direction: row; text-align: left; align-items: flex-start; }
  .director-info { text-align: left; }
  .director-badges { justify-content: flex-start; }

  /* Flow zigzag */
  .flow-wrap::before { left: 50%; transform: translateX(-50%); }
  .flow-step {
    width: 46%;
    align-items: flex-start;
    position: relative;
  }
  .flow-step:nth-child(odd) {
    flex-direction: row;
    margin-right: auto;
  }
  .flow-step:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
  }
  .flow-step:nth-child(even) .flow-step__card { border-left: none; border-right: 4px solid var(--orange); }
  .flow-step__num-circle { flex-shrink: 0; }

  .access-map-full { height: 380px; border-radius: 12px; }
}

/* ─── Responsive: 1024px ─────────────────────────────── */
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .header-nav a {
    padding: 6px 12px;
    font-family: var(--font-zh);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    border-radius: 5px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
  }
  .header-nav a:hover,
  .header-nav a.active { color: var(--orange); background: var(--bg-cream); }
  .header-cta {
    display: inline-block;
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .hamburger { display: none; }

  .fv__left { width: 34%; }
  .fv__right { width: 66%; }
  .fv__catch { font-size: clamp(32px, 3.8vw, 54px); }
  .fv__info-box { width: 280px; bottom: 32px; right: 32px; padding: 20px; }
  /* 1024px以上: テーブルを元サイズに戻す (280-40=240px に余裕あり) */
  .fv__schedule-table { font-size: 13px; }
  .fv__schedule-table th,
  .fv__schedule-table td { padding: 5px 4px; }

  .voice-list { grid-template-columns: repeat(3, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-title__jp { font-size: 28px; }
}
