/* =====================================================
   ひだまり整体院 — Warm Illustration Design
   style.css
===================================================== */

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

/* ── Custom Properties ─────────────────────────────── */
:root {
  /* Colors */
  --bg:           #faf6f0;
  --bg-alt:       #ede6d8;
  --bg-light:     #fff9f0;
  --bg-green:     #f0f7f2;
  --brown:        #3d2e1e;
  --text:         #5a4a3a;
  --text-light:   #8a7a6a;
  --orange:       #e8a35c;
  --orange-dark:  #d4884a;
  --orange-light: #fef3e8;
  --green:        #7cb68e;
  --green-light:  #e8f5ed;
  --white:        #ffffff;

  /* Shadows */
  --shadow:       4px 6px 20px rgba(90,74,58,0.10);
  --shadow-hover: 6px 10px 28px rgba(90,74,58,0.18);

  /* Layout */
  --container:    1100px;
  --header-h:     60px;
  --rounded:      14px;
  --rounded-sm:   8px;
  --rounded-lg:   22px;
  --rounded-xl:   50px;

  /* Fonts */
  --font-h:       'Zen Maru Gothic', sans-serif;
  --font-body:    'Noto Sans JP', sans-serif;
  --font-accent:  'Caveat', cursive;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.9;
  padding-top: var(--header-h);
  padding-bottom: 60px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section ───────────────────────────────────────── */
.section       { padding: 72px 0; }
.section--bg   { background: var(--bg); }
.section--alt  { background: var(--bg-alt); }
.section--light{ background: var(--bg-light); }

/* ── Fade-in ───────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-delay-1 { transition-delay: 0.10s; }
.fi-delay-2 { transition-delay: 0.20s; }
.fi-delay-3 { transition-delay: 0.30s; }
.fi-delay-4 { transition-delay: 0.40s; }

/* ── Section Title ─────────────────────────────────── */
.sec-title { text-align: center; margin-bottom: 52px; }
.sec-title__en {
  display: block;
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 2px;
}
.sec-title__jp {
  display: block;
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.sec-title__wave {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 10px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rounded-xl);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
  letter-spacing: 0.04em;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,163,92,0.4);
}
.btn--orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,163,92,0.5);
}
.btn--outline {
  background: transparent;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
}
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(124,182,142,0.35);
}
.btn--green:hover {
  background: #68a87c;
  transform: translateY(-2px);
}
.btn--line {
  background: #06C755;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6,199,85,0.35);
}
.btn--line:hover { background: #05a848; transform: translateY(-2px); }

/* ── Wave Divider ──────────────────────────────────── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ──────────────────────────────────────────────────── */
/*  HEADER                                              */
/* ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--bg);
  box-shadow: 0 2px 14px rgba(90,74,58,0.08);
}

/* top bar — hidden on mobile */
.header-topbar { display: none; }

/* main row */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 18px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo__mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__mark svg {
  width: 20px; height: 20px;
  fill: var(--white);
}
.logo__text { line-height: 1; }
.logo__jp {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  display: block;
}
.logo__en {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--orange);
  display: block;
}

/* desktop nav — hidden on mobile */
.header-nav { display: none; }
.header-reserve-btn { display: none; }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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: var(--header-h);
  left: 0; right: 0;
  background: var(--bg);
  z-index: 800;
  padding: 20px 18px 24px;
  transform: translateY(-105%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 10px 28px rgba(90,74,58,0.13);
  border-bottom: 3px solid var(--orange);
}
.mobile-drawer.open { transform: translateY(0); }

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.mobile-drawer__list a {
  display: block;
  padding: 11px 14px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  border-radius: var(--rounded-sm);
  border-bottom: 1px dashed var(--bg-alt);
  transition: background 0.2s;
}
.mobile-drawer__list a:hover,
.mobile-drawer__list a.active { background: var(--orange-light); color: var(--orange-dark); }

.mobile-drawer__contact {
  padding-top: 14px;
  border-top: 1px dashed var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-drawer__tel {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-dark);
  display: block;
  text-align: center;
}
.mobile-drawer__hours {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: -6px;
  margin-bottom: 4px;
}
.mobile-drawer__btns { display: flex; gap: 10px; }
.mobile-drawer__btns .btn { flex: 1; padding: 11px 12px; font-size: 13px; }

/* ──────────────────────────────────────────────────── */
/*  HERO / FIRST VIEW                                   */
/* ──────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, #fff9f0 0%, #faf6f0 100%);
  padding: 40px 20px 0;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* decorative bg dots */
.hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,163,92,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124,182,142,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; }

.hero__catch {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1.4;
}
.hero__name {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.hero__sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.9;
}

.hero__illust-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
}
.hero__illust {
  width: 280px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__illust img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__illust-deco {
  position: absolute;
  inset: -10px;
  border: 2.5px dashed rgba(232,163,92,0.55);
  border-radius: 28px;
  pointer-events: none;
}
.hero__illust-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.7;
}
.hero__illust-dot:nth-child(1) { top: -6px;   left: -6px; }
.hero__illust-dot:nth-child(2) { top: -6px;   right: -6px; }
.hero__illust-dot:nth-child(3) { bottom: -6px; left: -6px; }
.hero__illust-dot:nth-child(4) { bottom: -6px; right: -6px; }

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
}

/* ──────────────────────────────────────────────────── */
/*  ICON NAVIGATION (below FV)                          */
/* ──────────────────────────────────────────────────── */
.icon-nav {
  background: var(--white);
  border-top: 2px solid var(--bg-alt);
  border-bottom: 2px solid var(--bg-alt);
  padding: 18px 0;
}
.icon-nav__list {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.icon-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--rounded-sm);
  transition: background 0.2s;
  min-width: 56px;
  text-decoration: none;
}
.icon-nav__item:hover { background: var(--orange-light); }
.icon-nav__circle {
  width: 44px; height: 44px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  transition: background 0.2s, border-color 0.2s;
}
.icon-nav__item:hover .icon-nav__circle { background: var(--orange); }
.icon-nav__circle svg {
  width: 22px; height: 22px;
  stroke: var(--orange-dark);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.2s;
}
.icon-nav__item:hover .icon-nav__circle svg { stroke: var(--white); }
.icon-nav__label {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  text-align: center;
}

/* ──────────────────────────────────────────────────── */
/*  PROBLEMS SECTION                                    */
/* ──────────────────────────────────────────────────── */
.problems-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.problem-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--rounded);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.problem-item__emoji {
  font-size: 22px;
  min-width: 30px;
  text-align: center;
}
.problem-item__text {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
}

.problems-cta {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px dashed var(--orange);
}
.problems-cta p {
  font-size: 15px;
  color: var(--text);
  line-height: 2.0;
  margin-bottom: 16px;
}
.problems-cta strong { color: var(--orange-dark); }

/* ──────────────────────────────────────────────────── */
/*  REASONS                                             */
/* ──────────────────────────────────────────────────── */
.reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.reason-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.reason-card__icon {
  width: 72px; height: 72px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid rgba(232,163,92,0.4);
  font-size: 32px;
}
.reason-card__num {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 6px;
}
.reason-card__title {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.5;
}
.reason-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}

/* ──────────────────────────────────────────────────── */
/*  MENU CARDS                                          */
/* ──────────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.menu-card__head {
  background: linear-gradient(135deg, var(--orange-light) 0%, #fde8cc 100%);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-card__icon-wrap {
  width: 54px; height: 54px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232,163,92,0.2);
  flex-shrink: 0;
  font-size: 26px;
}
.menu-card__head-text { flex: 1; }
.menu-card__title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.4;
  margin-bottom: 4px;
}
.menu-card__price {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange-dark);
}
.menu-card__body {
  padding: 18px 24px 22px;
  flex: 1;
}
.menu-card__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 10px;
}
.menu-card__detail {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.menu-card__tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-h);
}

/* ──────────────────────────────────────────────────── */
/*  FLOW STEPS                                          */
/* ──────────────────────────────────────────────────── */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.flow-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-width: 52px;
}
.flow-step-circle {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-h);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(232,163,92,0.4);
}
.flow-step-circle__label {
  font-size: 9px;
  opacity: 0.8;
  letter-spacing: 0.1em;
}
.flow-step-circle__num {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.flow-step-line {
  width: 2px;
  min-height: 28px;
  flex: 1;
  background: repeating-linear-gradient(
    to bottom,
    var(--orange) 0, var(--orange) 5px,
    transparent 5px, transparent 10px
  );
  margin: 4px 0;
}
.flow-step-content {
  padding: 6px 0 28px;
  flex: 1;
}
.flow-step-row:last-child .flow-step-content { padding-bottom: 0; }
.flow-step-row:last-child .flow-step-line { display: none; }
.flow-step-icon { font-size: 24px; margin-bottom: 4px; }
.flow-step-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.flow-step-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}

/* ──────────────────────────────────────────────────── */
/*  VOICE BUBBLES                                       */
/* ──────────────────────────────────────────────────── */
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.voice-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-bubble {
  position: relative;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.voice-bubble--orange { background: var(--orange-light); }
.voice-bubble--green  { background: var(--green-light); }
.voice-bubble--beige  { background: var(--bg-alt); }

/* triangle tail */
.voice-bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 36px;
  width: 24px;
  height: 14px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.voice-bubble--orange::after { background: var(--orange-light); }
.voice-bubble--green::after  { background: var(--green-light); }
.voice-bubble--beige::after  { background: var(--bg-alt); }

.voice-bubble__stars {
  display: block;
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.voice-bubble__text {
  font-size: 15px;
  color: var(--text);
  line-height: 2.0;
}

.voice-item__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 8px;
  padding-top: 4px;
}
.voice-item__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}
.voice-item__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.voice-item__name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}
.voice-item__meta {
  font-size: 12px;
  color: var(--text-light);
}

/* disclaimer */
.voice-disclaimer {
  margin-top: 32px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-radius: var(--rounded);
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────── */
/*  DIRECTOR                                            */
/* ──────────────────────────────────────────────────── */
.director-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.director-photo-wrap {
  position: relative;
  width: 200px; height: 200px;
  flex-shrink: 0;
}
.director-photo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.director-frame-svg {
  position: absolute;
  inset: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  z-index: 0;
}
.director-text { text-align: center; }
.director-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.director-role {
  font-family: var(--font-accent);
  font-size: 15px;
  color: var(--orange);
  margin-bottom: 16px;
}
.director-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}
.director-qual {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(232,163,92,0.4);
}
.director-bio {
  font-size: 14px;
  color: var(--text);
  line-height: 2.0;
  text-align: left;
}

/* ──────────────────────────────────────────────────── */
/*  GALLERY (marquee)                                   */
/* ──────────────────────────────────────────────────── */
.gallery-marquee { overflow: hidden; width: 100%; }
.gallery-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.gallery-marquee__track:hover { animation-play-state: paused; }
.gallery-marquee__item {
  flex-shrink: 0;
  height: 230px;
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-marquee__item img { height: 100%; width: auto; object-fit: cover; display: block; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────── */
/*  ACCESS                                              */
/* ──────────────────────────────────────────────────── */
.access-map {
  width: 100%;
  height: 260px;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.access-map iframe { width: 100%; height: 100%; border: none; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table tr { border-bottom: 1px solid var(--bg-alt); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  padding: 14px 16px;
  background: var(--orange-light);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-dark);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  width: 80px;
}
.info-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 13px;
  text-align: center;
}
.hours-table th {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-family: var(--font-h);
  font-weight: 700;
  padding: 10px 6px;
  border-bottom: 2px solid var(--bg-alt);
}
.hours-table td {
  padding: 10px 6px;
  color: var(--text);
  border-bottom: 1px solid var(--bg-alt);
}
.hours-table .circle { color: var(--green); font-weight: 700; }
.hours-table .cross { color: var(--text-light); }

/* ──────────────────────────────────────────────────── */
/*  CTA SECTION                                         */
/* ──────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg-light);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '☀';
  position: absolute;
  top: 20px; right: 5%;
  font-size: 60px;
  opacity: 0.06;
  pointer-events: none;
}
.cta-section__title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}
.cta-section__text {
  font-size: 15px;
  color: var(--text);
  line-height: 2.0;
  margin-bottom: 32px;
}
.cta-tel { margin-bottom: 24px; }
.cta-tel__label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.cta-tel__number {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 700;
  color: var(--orange-dark);
  display: block;
  margin-bottom: 4px;
}
.cta-tel__hours {
  font-size: 12px;
  color: var(--text-light);
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ──────────────────────────────────────────────────── */
/*  CONTACT METHODS                                     */
/* ──────────────────────────────────────────────────── */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-method-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-method-card__icon--phone { background: var(--orange-light); }
.contact-method-card__icon--web   { background: var(--bg-alt); }
.contact-method-card__icon--line  { background: #e6faf0; }
.contact-method-card__label {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}
.contact-method-card__title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.contact-method-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
}

/* tel display card */
.tel-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--orange-light);
  margin-bottom: 32px;
}
.tel-card__label {
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 6px;
}
.tel-card__number {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 700;
  color: var(--orange-dark);
  display: block;
  margin-bottom: 6px;
}
.tel-card__hours {
  font-size: 13px;
  color: var(--text-light);
}

/* ──────────────────────────────────────────────────── */
/*  FORM                                                */
/* ──────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow);
}
.form-card__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--bg-alt);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-label .req {
  background: var(--orange);
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 2px solid var(--bg-alt);
  border-radius: var(--rounded);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,163,92,0.15);
  background: var(--white);
}
.form-textarea { height: 140px; resize: vertical; }
.form-radio-group,
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.form-radio-label,
.form-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.form-radio-label input,
.form-check-label input { accent-color: var(--orange); }
.form-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--rounded-sm);
}
.form-submit { text-align: center; margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  background: var(--green-light);
  border-radius: var(--rounded-lg);
}
.form-success.active { display: block; }
.form-success__emoji { font-size: 48px; display: block; margin-bottom: 14px; }
.form-success__title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.form-success__text { font-size: 14px; color: var(--text); line-height: 2.0; }

/* ──────────────────────────────────────────────────── */
/*  BREADCRUMB                                          */
/* ──────────────────────────────────────────────────── */
.breadcrumb {
  padding: 10px 0;
  background: var(--bg-alt);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; list-style: none; gap: 2px; }
.breadcrumb li { font-size: 13px; color: var(--text-light); white-space: nowrap; }
.breadcrumb li + li::before { content: '›'; margin: 0 8px; color: var(--orange); }
.breadcrumb li a { color: var(--orange-dark); }
.breadcrumb li a:hover { text-decoration: underline; }

/* ──────────────────────────────────────────────────── */
/*  PAGE HERO                                           */
/* ──────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--bg-alt) 100%);
  padding: 44px 0 36px;
  text-align: center;
}
.page-hero__en {
  display: block;
  font-family: var(--font-accent);
  font-size: 16px;
  color: var(--orange);
  margin-bottom: 4px;
}
.page-hero__title {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
}

/* ──────────────────────────────────────────────────── */
/*  PHILOSOPHY                                          */
/* ──────────────────────────────────────────────────── */
.philosophy-card {
  background: var(--white);
  border-radius: var(--rounded-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}
.philosophy-card__text {
  font-size: 15px;
  color: var(--text);
  line-height: 2.1;
}

/* ──────────────────────────────────────────────────── */
/*  FOOTER                                              */
/* ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo__jp { color: var(--white); }
.footer-logo .logo__en { color: var(--orange); }
.footer-logo .logo__mark { background: var(--orange); }
.footer-illust {
  width: 72px;
  border-radius: 12px;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 20px;
}
.footer-nav a {
  font-family: var(--font-h);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-info {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 20px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

/* ──────────────────────────────────────────────────── */
/*  MOBILE FIXED BAR                                    */
/* ──────────────────────────────────────────────────── */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  display: flex;
  z-index: 800;
}
.mobile-bar__tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange-dark);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.mobile-bar__tel:hover { background: #b8733c; }
.mobile-bar__reserve {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-bar__reserve:hover { background: var(--orange-dark); }

/* ──────────────────────────────────────────────────── */
/*  TABLET 768px                                        */
/* ──────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root { --header-h: 110px; }

  body { padding-bottom: 0; }
  .mobile-bar { display: none; }

  /* header top bar */
  .header-topbar {
    display: block;
    background: var(--bg-alt);
    height: 40px;
  }
  .header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
  }
  .header-topbar__hours {
    font-size: 12px;
    color: var(--text-light);
  }
  .header-topbar__tel {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    color: var(--brown);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .header-topbar__tel span {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400;
  }
  .header-topbar__line-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #06C755;
    color: white;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .header-topbar__line-btn:hover { background: #05a848; }

  /* header main */
  .header-main {
    height: 70px;
    padding: 0 24px;
    justify-content: center;
  }
  .logo { position: static; }
  .hamburger { display: none; }

  /* section */
  .section { padding: 96px 0; }

  /* hero */
  .hero { min-height: 70vh; }
  .hero__illust { width: 380px; }
  .hero__buttons { flex-direction: row; justify-content: center; }

  /* icon nav */
  .icon-nav__list { justify-content: center; gap: 4px 8px; }
  .icon-nav__label { font-size: 11px; }

  /* problems - 2 col */
  .problems-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* reasons - row */
  .reasons-grid { flex-direction: row; gap: 20px; }

  /* menu - 2 col */
  .menu-grid { grid-template-columns: 1fr 1fr; }

  /* director */
  .director-layout { flex-direction: row; align-items: flex-start; gap: 44px; }
  .director-text { text-align: left; }
  .director-quals { justify-content: flex-start; }

  /* cta buttons */
  .cta-buttons { flex-direction: row; justify-content: center; }

  /* access */
  .access-map { height: 340px; }
}

/* ──────────────────────────────────────────────────── */
/*  DESKTOP 1024px                                      */
/* ──────────────────────────────────────────────────── */
@media (min-width: 1024px) {

  /* header — show nav */
  .header-main { justify-content: space-between; }
  .hamburger { display: none; }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header-nav a {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
  }
  .header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s;
    border-radius: 2px;
  }
  .header-nav a:hover { color: var(--orange-dark); }
  .header-nav a:hover::after,
  .header-nav a.active::after { transform: scaleX(1); }
  .header-nav a.active { color: var(--orange-dark); }

  .header-reserve-btn {
    display: inline-block;
  }

  /* hero — 2-column */
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 60px;
    padding: 48px 40px 0;
  }
  .hero__content { flex: 1; max-width: 500px; order: 1; }
  .hero__illust-wrap { flex-shrink: 0; order: 2; }
  .hero__illust { width: 440px; }
  .hero__buttons { justify-content: flex-start; }
  .hero__catch { font-size: 26px; }
  .hero__name { font-size: 36px; }

  /* voice - 2 col */
  .voice-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* section */
  .section { padding: 120px 0; }

  /* contact methods - 3 col */
  .contact-methods { flex-direction: row; }
  .contact-method-card {
    flex-direction: column;
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
}
