/* ═══════════════════════════════════════════════════
   ウィル整骨院 – DESIGN_06 modern_organized 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=Inter:wght@400;500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --white: #ffffff;
  --bg-alt: #f5f5f5;
  --bg-light: #fafafa;
  --bg-dark: #333333;
  --text: #333333;
  --heading: #222222;
  --gray-mid: #666666;
  --gray-light: #999999;
  --border: #e0e0e0;
  --yellow: #f5c518;
  --yellow-dark: #f0b800;
  --yellow-hover: #fdd835;
  --header-h: 64px;
  --container: 1100px;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --trans: 0.25s ease;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;
}

/* ── 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(--white); color: var(--text); line-height: 1.75; }
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: 80px 0; }
.section--white { background: var(--white); }
.section--alt   { background: var(--bg-alt); }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--bg-dark); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; transition: var(--trans);
  white-space: nowrap;
}
.btn--yellow { background: var(--yellow); color: var(--heading); border: 2px solid var(--yellow); }
.btn--yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn--outline { background: transparent; color: var(--heading); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--yellow); background: var(--yellow); }
.btn--dark { background: var(--bg-dark); color: var(--white); border: 2px solid var(--bg-dark); }
.btn--dark:hover { background: #444; }
.btn--white { background: var(--white); color: var(--heading); border: 2px solid var(--white); }
.btn--white:hover { background: var(--bg-alt); }

/* Fade-in */
.fi { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fi.vis { opacity: 1; transform: none; }
.fi-d1 { transition-delay: 0.08s; }
.fi-d2 { transition-delay: 0.16s; }
.fi-d3 { transition-delay: 0.24s; }
.fi-d4 { transition-delay: 0.32s; }
.fi-d5 { transition-delay: 0.40s; }

/* Section title */
.sec-title { margin-bottom: 48px; }
.sec-title--center { text-align: center; }
.sec-title__en {
  font-family: var(--font-en); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-mid);
  display: block; margin-bottom: 8px;
}
.sec-title__jp {
  font-size: clamp(1.3rem, 2.8vw, 1.75rem); font-weight: 700;
  color: var(--heading); line-height: 1.4;
}
.sec-title__dots {
  display: flex; gap: 5px; margin-top: 12px;
}
.sec-title--center .sec-title__dots { justify-content: center; }
.sec-title__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}
.sec-title__dot:nth-child(2) { opacity: 0.5; }
.sec-title__dot:nth-child(3) { opacity: 0.25; }
.sec-title__sub {
  font-size: 0.88rem; color: var(--gray-mid); margin-top: 8px; line-height: 1.8;
}

/* Yellow accent circle */
.icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }
.icon-circle--sm { width: 36px; height: 36px; }
.icon-circle--sm svg { width: 18px; height: 18px; }
.icon-circle--lg { width: 64px; height: 64px; }
.icon-circle--lg svg { width: 32px; height: 32px; }

/* ══ FIXED SIDE BARS ════════════════════════════════ */
.side-appt {
  display: none;
  position: fixed; right: 0; top: 40%;
  transform: translateY(-50%); z-index: 80;
}
.side-appt__link {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; background: var(--yellow); padding: 20px 10px;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 0.78rem; font-weight: 700; color: var(--heading);
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow-md); transition: var(--trans);
}
.side-appt__link:hover { background: var(--yellow-dark); }
.side-appt__tel { font-size: 0.7rem; font-weight: 500; color: var(--heading); writing-mode: vertical-rl; }

.sns-sidebar {
  display: none;
  position: fixed; right: 0; bottom: 30%;
  z-index: 80;
  flex-direction: column; gap: 0;
}
.sns-sidebar__item {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--bg-dark); color: var(--white);
  font-size: 0.65rem; font-weight: 600; font-family: var(--font-en);
  writing-mode: vertical-rl; transition: var(--trans); border-bottom: 1px solid #444;
}
.sns-sidebar__item:hover { background: var(--yellow); color: var(--heading); }
.sns-sidebar__item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.sns-sidebar__item:last-child { border-radius: 0 0 var(--radius) var(--radius); border-bottom: none; }

@media (min-width: 1024px) {
  .side-appt { display: block; }
  .sns-sidebar { display: flex; }
}

/* ══ HEADER ══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.header-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  max-width: var(--container); margin: 0 auto; padding: 0 1rem;
}

.header-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.header-logo__circle {
  width: 36px; height: 36px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 0.75rem; color: var(--heading);
  letter-spacing: 0;
}
.header-logo__name { font-size: 1rem; font-weight: 700; color: var(--heading); }
.header-logo__sub { font-size: 0.65rem; color: var(--gray-mid); display: none; }
@media (min-width: 768px) { .header-logo__sub { display: block; } }

.header-nav {
  display: none; align-items: center; gap: 24px;
}
.header-nav a {
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: var(--trans);
}
.header-nav a:hover,
.header-nav a.active { color: var(--heading); border-bottom-color: var(--yellow); }
@media (min-width: 768px) { .header-nav { display: flex; } }

.header-cta {
  display: none; align-items: center; gap: 8px;
}
.header-cta__tel { font-family: var(--font-en); font-size: 0.9rem; font-weight: 700; color: var(--heading); }
@media (min-width: 768px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  width: 40px; height: 40px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--heading); transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--white); z-index: 99;
  transform: translateY(-110%); transition: transform 0.3s ease;
  border-bottom: 1px solid var(--border); padding: 0;
  overflow: hidden;
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer__list li { border-bottom: 1px solid var(--border); }
.mobile-drawer__list li a {
  display: block; padding: 16px 24px; font-size: 0.95rem; font-weight: 500;
  color: var(--text); transition: var(--trans);
}
.mobile-drawer__list li a:hover,
.mobile-drawer__list li a.active { background: var(--bg-alt); color: var(--heading); }
.mobile-drawer__contact {
  padding: 20px 24px; background: var(--bg-alt); text-align: center; display: flex; flex-direction: column; gap: 10px;
}
.mobile-drawer__tel { font-family: var(--font-en); font-size: 1.4rem; font-weight: 700; color: var(--heading); }
.mobile-drawer__hours { font-size: 0.78rem; color: var(--gray-mid); }

/* ══ BREADCRUMB ══════════════════════════════════════ */
.breadcrumb {
  margin-top: var(--header-h);
  border-bottom: 1px solid var(--border);
  padding: 10px 0; font-size: 0.78rem; color: var(--gray-light);
  background: var(--white);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; list-style: none; }
.breadcrumb li + li::before { content: '/'; margin-right: 4px; color: var(--border); }
.breadcrumb a { color: var(--gray-mid); transition: var(--trans); }
.breadcrumb a:hover { color: var(--heading); }

/* ══ PAGE HERO ══════════════════════════════════════ */
.page-hero {
  padding: 48px 0 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero__container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
.page-hero__en {
  font-family: var(--font-en); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-mid); display: block; margin-bottom: 6px;
}
.page-hero__title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: var(--heading); }

/* ══ FIRST VIEW ═════════════════════════════════════ */
.fv { margin-top: var(--header-h); background: var(--white); }

/* ── Photo Slider ── */
.fv__slider {
  position: relative; width: 100%; overflow: hidden;
  background: var(--bg-alt);
  height: 260px;
}
@media (min-width: 768px) { .fv__slider { height: 420px; } }
@media (min-width: 1024px) { .fv__slider { height: 520px; } }

.fv__slides { position: relative; width: 100%; height: 100%; }
.fv__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.fv__slide.active { opacity: 1; }
.fv__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fv__slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; background: rgba(255,255,255,0.85);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--heading); font-size: 1.1rem; transition: var(--trans);
}
.fv__slide-btn:hover { background: var(--yellow); border-color: var(--yellow); }
.fv__slide-btn--prev { left: 12px; }
.fv__slide-btn--next { right: 12px; }
@media (min-width: 768px) {
  .fv__slide-btn { width: 52px; height: 52px; font-size: 1.3rem; }
  .fv__slide-btn--prev { left: 24px; }
  .fv__slide-btn--next { right: 24px; }
}

.fv__slide-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.fv__slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8);
  cursor: pointer; transition: var(--trans);
}
.fv__slide-dot.active { background: var(--yellow); border-color: var(--yellow); }

/* ── Identity block below slider ── */
.fv__identity {
  padding: 32px 1rem 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fv__logo-circle {
  width: 80px; height: 80px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 1.1rem; color: var(--heading);
  letter-spacing: -0.02em;
}
.fv__name {
  font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 700; color: var(--heading);
  letter-spacing: 0.04em; line-height: 1.2;
}
.fv__tagline { font-size: 0.9rem; color: var(--gray-mid); }

/* ── Icon grid nav ── */
.fv__nav {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
  margin-top: 28px;
}
.fv__nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 8px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  color: var(--heading); transition: var(--trans); text-align: center;
}
.fv__nav-item:hover { background: var(--bg-alt); }
.fv__nav-item:hover .fv__nav-circle { background: var(--yellow-dark); }
.fv__nav-circle {
  width: 44px; height: 44px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.fv__nav-circle svg { width: 22px; height: 22px; }
.fv__nav-label { font-size: 0.78rem; font-weight: 500; color: var(--heading); line-height: 1.3; }

@media (min-width: 768px) {
  .fv__nav { grid-template-columns: repeat(6, 1fr); }
  .fv__nav-item { padding: 22px 12px; gap: 10px; }
  .fv__nav-circle { width: 52px; height: 52px; }
  .fv__nav-circle svg { width: 26px; height: 26px; }
  .fv__nav-label { font-size: 0.82rem; }
}
@media (min-width: 1024px) {
  .fv__identity { padding: 40px 1rem 0; }
  .fv__logo-circle { width: 88px; height: 88px; font-size: 1.2rem; }
  .fv__nav-item { padding: 24px 16px; }
}

/* ══ PROBLEMS ═══════════════════════════════════════ */
.problem-grid {
  display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-top: 32px;
}
.problem-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.problem-item__check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.problem-item__check svg { width: 13px; height: 13px; }
.problem-item__text { font-size: 0.88rem; font-weight: 500; color: var(--heading); line-height: 1.5; }
.problem-lead { font-size: 0.95rem; color: var(--gray-mid); margin-top: 24px; line-height: 1.8; }

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

/* ══ REASONS ════════════════════════════════════════ */
.reason-grid {
  display: grid; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.reason-card {
  padding: 32px 24px; background: var(--white);
}
.reason-card + .reason-card { border-top: 1px solid var(--border); }
.reason-card__icon { margin-bottom: 16px; }
.reason-card__num {
  font-family: var(--font-en); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--gray-mid); display: block; margin-bottom: 8px;
}
.reason-card__title { font-size: 1.05rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.reason-card__text { font-size: 0.88rem; color: var(--text); line-height: 1.8; }

@media (min-width: 768px) {
  .reason-grid { grid-template-columns: repeat(3, 1fr); }
  .reason-card + .reason-card { border-top: none; border-left: 1px solid var(--border); }
}

/* ══ MENU GRID ══════════════════════════════════════ */
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.menu-item {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 20px; transition: background var(--trans), color var(--trans);
  display: flex; flex-direction: column; gap: 10px; cursor: default;
}
.menu-item:hover { background: var(--yellow); }
.menu-item:hover .menu-item__icon-wrap { background: var(--heading); }
.menu-item:hover .menu-item__icon-wrap svg { stroke: var(--yellow); }
.menu-item:hover .menu-item__name { color: var(--heading); }
.menu-item:hover .menu-item__desc { color: var(--heading); }
.menu-item:hover .menu-item__price { color: var(--heading); }
.menu-item__icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.menu-item__icon-wrap svg { width: 22px; height: 22px; }
.menu-item__name { font-size: 0.95rem; font-weight: 700; color: var(--heading); }
.menu-item__desc { font-size: 0.8rem; color: var(--gray-mid); line-height: 1.7; flex: 1; }
.menu-item__price { font-family: var(--font-en); font-size: 0.85rem; font-weight: 600; color: var(--gray-mid); }

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

/* ── Treatment detail card ── */
.treatment-detail { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.treatment-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden;
}
.treatment-card__head {
  background: var(--bg-alt); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.treatment-card__icon { flex-shrink: 0; }
.treatment-card__name { font-size: 1.05rem; font-weight: 700; color: var(--heading); }
.treatment-card__meta { font-family: var(--font-en); font-size: 0.78rem; color: var(--gray-mid); margin-top: 2px; }
.treatment-card__body { padding: 20px 24px; }
.treatment-card__desc { font-size: 0.9rem; color: var(--text); line-height: 1.85; margin-bottom: 14px; }
.treatment-card__row { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; }
.treatment-card__tag {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 3px 10px; color: var(--gray-mid);
}
.treatment-card__for { font-size: 0.82rem; color: var(--gray-mid); margin-top: 12px; line-height: 1.7; }
.treatment-card__for strong { color: var(--heading); }

/* ══ FLOW ═══════════════════════════════════════════ */
.flow-steps {
  display: flex; flex-direction: column; gap: 12px;
}
.flow-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.flow-step__num {
  width: 36px; height: 36px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 1rem; color: var(--heading);
  flex-shrink: 0; border-radius: var(--radius);
}
.flow-step__content {}
.flow-step__title { font-size: 0.95rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.flow-step__desc { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; }

@media (min-width: 1024px) {
  .flow-steps {
    flex-direction: row; align-items: flex-start; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden;
  }
  .flow-step {
    flex: 1; flex-direction: column; align-items: center; text-align: center;
    border: none; border-radius: 0; padding: 28px 20px;
    position: relative; gap: 12px;
  }
  .flow-step + .flow-step { border-left: 1px solid var(--border); }
  .flow-step + .flow-step::before {
    content: '→'; position: absolute; left: -14px; top: 50%;
    transform: translateY(-50%); font-size: 1rem; color: var(--yellow);
    z-index: 1; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
  }
  .flow-step__num { width: 40px; height: 40px; font-size: 1.05rem; }
}

/* ══ VOICE ══════════════════════════════════════════ */
.voice-grid { display: grid; gap: 16px; }
.voice-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.voice-card__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 14px;
}
.voice-card__info {}
.voice-card__name { font-size: 0.9rem; font-weight: 700; color: var(--heading); }
.voice-card__meta { font-size: 0.78rem; color: var(--gray-mid); margin-top: 2px; }
.voice-card__badge {
  font-size: 0.72rem; background: var(--bg-alt); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: var(--radius-sm); color: var(--gray-mid); white-space: nowrap;
}
.voice-stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 10px; }
.voice-card__text { font-size: 0.88rem; color: var(--text); line-height: 1.85; }
.voice-disclaimer { margin-top: 24px; font-size: 0.75rem; color: var(--gray-light); }

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

/* ══ DIRECTOR ═══════════════════════════════════════ */
.director-block {
  display: flex; flex-direction: column; gap: 28px; align-items: center;
  max-width: 860px; margin: 0 auto;
}
.director-block__photo {
  width: 200px; height: 200px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border); flex-shrink: 0;
}
.director-block__photo img { width: 100%; height: 100%; object-fit: cover; }
.director-block__content {}
.director-block__name { font-size: 1.3rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.director-block__cred { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 16px; line-height: 1.7; }
.director-block__text { font-size: 0.9rem; color: var(--text); line-height: 1.9; }

@media (min-width: 768px) {
  .director-block { flex-direction: row; align-items: flex-start; }
  .director-block__photo { width: 240px; height: 240px; }
}

/* ══ GALLERY ════════════════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

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

/* ══ ACCESS ═════════════════════════════════════════ */
.access-layout {
  display: flex; flex-direction: column; gap: 24px;
}
.access-map {
  flex: 1 1 50%; height: 300px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
}
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.access-info { flex: 1 1 40%; }
.access-list { display: flex; flex-direction: column; gap: 14px; }
.access-list-item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; }
.access-list-item__icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.access-list-item__icon svg { width: 14px; height: 14px; }
.access-list-item__label { font-size: 0.72rem; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; font-family: var(--font-en); display: block; letter-spacing: 0.08em; }
.access-list-item__val { color: var(--text); line-height: 1.6; }

@media (min-width: 768px) {
  .access-layout { flex-direction: row; align-items: flex-start; gap: 32px; }
  .access-map { height: 360px; }
}

/* ── Hours table ── */
.hours-table {
  width: 100%; border-collapse: collapse; font-size: 0.88rem;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.hours-table th, .hours-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  text-align: left; vertical-align: top;
}
.hours-table th { background: var(--bg-alt); font-weight: 600; color: var(--heading); width: 100px; white-space: nowrap; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table .ok { color: #2e7d32; font-weight: 700; }
.hours-table .ng { color: var(--gray-light); }

/* ══ CTA SECTION ════════════════════════════════════ */
.cta-section {
  background: var(--white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 72px 0;
}
.cta-section .container { text-align: center; }
.cta-section__title { font-size: clamp(1.3rem, 3vw, 1.7rem); font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.cta-section__sub { font-size: 0.88rem; color: var(--gray-mid); margin-bottom: 28px; }
.cta-tel {
  display: block; font-family: var(--font-en); font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--heading); letter-spacing: 0.04em; margin-bottom: 6px;
  transition: var(--trans);
}
.cta-tel:hover { color: var(--gray-mid); }
.cta-hours { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══ CONTACT PAGE ═══════════════════════════════════ */
.contact-methods { display: grid; gap: 16px; margin-bottom: 40px; }
.contact-method {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.contact-method__icon { flex-shrink: 0; }
.contact-method__title { font-size: 1rem; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.contact-method__desc { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.7; }
@media (min-width: 768px) { .contact-methods { grid-template-columns: repeat(3, 1fr); } }

.tel-block {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; text-align: center; margin-bottom: 40px;
}
.tel-block__label { font-size: 0.82rem; color: var(--gray-mid); margin-bottom: 6px; }
.tel-block__num {
  display: block; font-family: var(--font-en); font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--heading); letter-spacing: 0.04em; margin-bottom: 6px;
}
.tel-block__hours { font-size: 0.82rem; color: var(--gray-mid); }

/* Form */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.form-group label .req {
  font-size: 0.7rem; background: #e53935; color: var(--white);
  border-radius: 2px; padding: 1px 6px; margin-left: 6px; vertical-align: middle;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.9rem; font-family: inherit;
  background: var(--white); 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(--yellow); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group .error { font-size: 0.75rem; color: #e53935; margin-top: 4px; display: none; }
.form-group.has-error input, .form-group.has-error textarea, .form-group.has-error select { border-color: #e53935; }
.form-group.has-error .error { display: block; }
.form-submit { text-align: center; margin-top: 24px; }
.success-panel { display: none; text-align: center; padding: 40px 24px; background: var(--bg-alt); border-radius: var(--radius); }
.success-panel.show { display: block; }
.success-panel__title { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.success-panel__text { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.8; }

/* ══ FOOTER ═════════════════════════════════════════ */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); padding: 48px 1rem 80px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo__circle {
  width: 36px; height: 36px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 0.75rem; color: var(--heading);
}
.footer-logo__name { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-info { font-size: 0.82rem; line-height: 1.9; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: var(--trans); }
.footer-nav a:hover { color: var(--yellow); }
@media (min-width: 768px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-align: center; }

/* ══ MOBILE BAR ═════════════════════════════════════ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: flex; height: 52px; border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-bar__tel {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--heading); font-size: 0.88rem; font-weight: 700;
  gap: 6px; border-right: 1px solid var(--border);
  transition: var(--trans);
}
.mobile-bar__tel:hover { background: var(--bg-alt); }
.mobile-bar__reserve {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: var(--yellow); color: var(--heading); font-size: 0.88rem; font-weight: 700; gap: 6px;
  transition: var(--trans);
}
.mobile-bar__reserve:hover { background: var(--yellow-dark); }
@media (min-width: 768px) {
  .mobile-bar { display: none; }
  .site-footer { padding-bottom: 48px; }
}
