/* =========================================
   野沢3丁目内科 — Renewal Design
   Concept: Trust & Warmth / 心身一如
   Palette: Sage Green × Warm Cream × Bronze
   ========================================= */

:root {
  /* Brand colors — matched to n3 logo palette (vivid lime + deep forest) */
  --green-900: #0A4D2A;       /* Deep forest — matches logo dark green */
  --green-800: #14633A;       /* Strong dark */
  --green-700: #1E7C4A;       /* Primary brand — vivid */
  --green-600: #2E9456;       /* Vivid medium */
  --green-500: #4DAA5F;       /* Fresh */
  --green-400: #75C282;       /* Bright fresh */
  --green-300: #A8D8B0;       /* Light fresh */
  --green-100: #DDF0E0;       /* Mist */
  --green-50:  #EFF8F1;       /* Pale wash */

  /* Wakaba (vivid lime) — matches logo bright green */
  --wakaba-700: #4F9826;      /* Deep wakaba */
  --wakaba-500: #6FBE3A;      /* BRAND LIME — main accent (logo color) */
  --wakaba-400: #8FD25B;      /* Bright lime */
  --wakaba-300: #B8E082;      /* Light wakaba */
  --wakaba-100: #E6F4D0;      /* Pale wakaba */

  --bronze-700: #8B6F3D;
  --bronze-500: #C9A560;
  --bronze-200: #ECDDB8;
  --bronze-50:  #FAF6EE;

  --ink-900: #1F2A22;         /* Stronger contrast body text */
  --ink-700: #3D4A40;
  --ink-500: #6D7770;
  --ink-300: #B5BDB7;
  --ink-100: #E0E5E1;

  --bg: #FFFFFF;              /* Pure white */
  --bg-soft: #FAFBF7;         /* Subtle warm white */
  --white: #FFFFFF;

  --shadow-sm: 0 2px 10px rgba(74, 130, 64, 0.06);
  --shadow-md: 0 12px 36px rgba(74, 130, 64, 0.1);
  --shadow-lg: 0 28px 70px rgba(74, 130, 64, 0.14);

  /* Adult-oriented typography: clean sans-serif body + elegant serif headlines */
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-mincho: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-en: "Cormorant Garamond", "Times New Roman", serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================
   SECTION HEAD (shared)
   ========================================= */
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-eyebrow {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--wakaba-700);
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.section-title em {
  font-style: normal;
  position: relative;
  color: var(--green-700);
  padding: 0 0.1em;
}
.section-title em {
  color: var(--wakaba-700);
}
.section-title em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 14px;
  background: var(--wakaba-400);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.6;
}
.section-lead {
  font-size: 16px;
  color: var(--ink-700);
  line-height: 2;
  font-weight: 400;
}

/* =========================================
   01 HEADER — Light cream
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-900);
}
.header-top {
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-mark, .logo-leaf { display: inline-flex; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 13px;
  font-weight: 700;
  color: var(--wakaba-500);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.logo-pre-sep {
  color: var(--green-300);
  font-weight: 400;
}
.logo-main {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo-sub {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  margin-top: 5px;
  font-weight: 500;
  white-space: nowrap;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.header-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-info::before {
  content: "";
  display: none;
}
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header-tel svg { color: var(--green-700); width: 20px; height: 20px; }
.header-address {
  font-size: 14px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
  font-weight: 500;
  white-space: nowrap;
  display: none;
}
.header-cta { display: flex; gap: 10px; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-reserve {
  background: var(--green-700);
  color: white;
  box-shadow: 0 6px 18px rgba(30, 124, 74, 0.4);
}
.btn-reserve:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30, 124, 74, 0.5); }
.btn-access {
  background: white;
  color: var(--green-700);
  border: 2px solid var(--green-300);
}
.btn-access:hover { background: var(--green-50); transform: translateY(-2px); border-color: var(--green-500); }

.header-nav {
  background: var(--green-50);
  border-bottom: 1px solid var(--ink-100);
  border-top: 1px solid var(--ink-100);
}
.nav-list {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav-list a {
  display: inline-block;
  padding: 18px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: 0.06em;
  position: relative;
  white-space: nowrap;
}
.nav-list a:hover { color: var(--green-700); }
.nav-list a.active { color: var(--green-700); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--wakaba-500);
  border-radius: 2px;
}

/* =========================================
   02 HERO — Large photographer style
   ========================================= */
.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--ink-900);
  isolation: isolate;
  background: var(--bg);
}
.hero-photo-large {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(255, 255, 252, 0.86) 0%, rgba(255, 255, 252, 0.6) 30%, rgba(255, 255, 252, 0.2) 55%, rgba(255, 255, 252, 0.02) 80%);
}
.hero-leaf-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-leaf-1 {
  top: 22%;
  right: 14%;
  transform: rotate(-15deg);
  animation: leafSway 7s ease-in-out infinite;
}
.hero-leaf-2 {
  bottom: 18%;
  right: 6%;
  transform: rotate(25deg);
  animation: leafSway 9s ease-in-out infinite reverse;
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-12px); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text { max-width: 720px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--green-500);
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1.5px;
  background: var(--green-500);
}
.hero-title {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--green-900);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(255, 255, 252, 0.8);
}
.hero-title .ja { display: block; white-space: nowrap; }
.hero-title .em {
  color: var(--wakaba-700);
  position: relative;
  display: inline-block;
  font-style: normal;
}
/* 「寄り添う」左上の黄緑の丸は削除 */
.hero-lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--ink-700);
  margin-bottom: 26px;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(255, 255, 252, 0.8);
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Minimal editorial badge */
.hero-welcome {
  position: relative;
  align-self: end;
  justify-self: end;
  padding: 0 0 4px 32px;
  text-align: left;
  max-width: 320px;
  border-left: 2px solid var(--wakaba-500);
}
.welcome-text {
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 500;
  color: var(--green-900);
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.6);
}
.welcome-line { display: block; }
.welcome-line em {
  font-style: normal;
  color: var(--green-700);
  font-weight: 600;
}
.welcome-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-en), var(--font-jp);
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.welcome-sub-icon {
  display: inline-flex;
  color: var(--wakaba-700);
}

/* Tags band — sits at the bottom of hero */
.hero-tags-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--green-100);
  padding: 22px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
}
.hero-tags-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  border: 2px solid var(--green-300);
  border-radius: var(--radius-pill);
  font-size: 18px;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.hero-tags .dot {
  width: 9px; height: 9px;
  background: var(--wakaba-500);
  border-radius: 50%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green-700);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 22px rgba(30, 124, 74, 0.25);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--green-900);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 124, 74, 0.5);
}
.btn-primary.btn-sm { padding: 18px 32px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  color: var(--green-700);
  border: 2px solid var(--green-300);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-3px);
}
.btn-outline-light {
  background: white;
  color: var(--green-700);
  border-color: var(--green-300);
}
.btn-outline-light:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  color: var(--green-900);
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-500);
  flex-shrink: 0;
}
.scroll-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--ink-300), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 12px;
  background: var(--bronze-500);
  animation: scrollRight 2s ease-in-out infinite;
}
@keyframes scrollRight {
  0% { left: -12px; }
  100% { left: 48px; }
}

/* =========================================
   03 CV BAR
   ========================================= */
.cv-bar {
  position: relative;
  padding: 64px 0 40px;
  z-index: 5;
  background: var(--bg);
}
.cv-heading {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 18px;
  color: var(--green-900);
  margin-bottom: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background: white;
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
}
.cv-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.cv-card:hover { transform: translateY(-4px); }
.cv-tel { background: linear-gradient(135deg, #E8F5E0, #C8E5B5); }
.cv-web { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: white; }

.cv-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}
.cv-web .cv-icon { color: var(--green-700); }

.cv-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cv-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.85;
}
.cv-value {
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.cv-tel .cv-value, .cv-line .cv-value { color: var(--green-900); }
.cv-note {
  font-size: 14px;
  opacity: 0.85;
  letter-spacing: 0.05em;
  margin-top: 6px;
  font-weight: 500;
}
.cv-arrow {
  font-size: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cv-card:hover .cv-arrow { transform: translateX(4px); opacity: 1; }

/* =========================================
   04 REASONS
   ========================================= */
.reasons {
  padding: 70px 0;
  position: relative;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason-card {
  position: relative;
  padding: 44px 28px 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  text-align: center;
  transition: all 0.4s ease;
}
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.reason-card.featured {
  background: linear-gradient(180deg, var(--green-50) 0%, white 60%);
  border-color: var(--green-300);
  transform: translateY(-12px);
}
.reason-card.featured:hover { transform: translateY(-20px); }

.reason-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-style: italic;
  font-size: 64px;
  font-weight: 500;
  color: var(--wakaba-700);
  background: var(--bg);
  padding: 0 18px;
  line-height: 1;
}
.reason-icon {
  display: inline-flex;
  padding: 18px;
  background: var(--green-50);
  border-radius: 50%;
  margin-bottom: 20px;
}
.reason-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 19px;
  color: var(--wakaba-700);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.reason-title {
  font-family: var(--font-mincho);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.6;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.reason-text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 2;
  text-align: left;
  font-weight: 400;
}

/* =========================================
   05 FEATURES
   ========================================= */
.features {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--green-50) 0%, white 100%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.feature-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.feature-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-card:hover .feature-image img { transform: scale(1.05); }
.feature-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--wakaba-500);
  color: white;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.15em;
  box-shadow: 0 4px 12px rgba(111, 190, 58, 0.4);
}
.feature-body {
  padding: 26px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.feature-en {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--wakaba-700);
  font-size: 19px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.feature-title {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.4;
  margin-bottom: 14px;
  padding-bottom: 12px;
  letter-spacing: 0;
  white-space: nowrap;
  border-bottom: 2px solid var(--wakaba-300);
}
.feature-title-sub {
  font-size: 14px;
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.feature-text {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 400;
}
.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.feature-points li {
  font-size: 17px;
  background: var(--green-50);
  color: var(--green-700);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-300);
  align-self: flex-start;
}
.feature-link:hover { color: var(--bronze-500); border-color: var(--bronze-500); }
.feature-link:hover span { transform: translateX(4px); }
.feature-link span { transition: transform 0.3s ease; display: inline-block; }

/* =========================================
   06 MEDICAL GUIDE
   ========================================= */
.medical {
  padding: 70px 0;
  position: relative;
}
.medical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.medical-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 22px;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
}
.medical-card::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--ink-300);
  font-size: 18px;
  transition: all 0.3s ease;
}
.medical-card:hover {
  background: var(--green-50);
  border-color: var(--green-300);
  transform: translateY(-4px);
}
.medical-card:hover::after { color: var(--green-700); transform: translateX(4px); }

.med-icon-wrap {
  width: 80px; height: 80px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.medical-card:hover .med-icon-wrap {
  background: white;
  transform: scale(1.05);
}
.medical-card h3 {
  font-family: var(--font-mincho);
  font-size: 19px;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.medical-card p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.8;
  font-weight: 400;
}

/* =========================================
   07 DOCTOR MESSAGE
   ========================================= */
.message {
  padding: 70px 0;
  background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
  position: relative;
  overflow: hidden;
}
.message-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.message-photo {
  position: relative;
  aspect-ratio: 4/5;
}
.photo-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* 顔が上部にあるため、トリミング基準を上寄せにして顔が切れないようにする */
  object-position: center 20%;
}
.photo-deco {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: var(--green-300);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.4;
}
.photo-leaf {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 3;
  animation: leafSway 6s ease-in-out infinite;
}

.message-eyebrow {
  font-family: var(--font-en);
  font-style: italic;
  color: var(--wakaba-700);
  font-size: 21px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  font-weight: 500;
}
.message-title {
  font-family: var(--font-mincho);
  font-size: 30px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.55;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
}
.message-title em {
  font-style: normal;
  color: var(--green-700);
  position: relative;
}
.message-title em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 10px;
  background: var(--bronze-200);
  z-index: -1;
}
.quote {
  font-family: var(--font-en);
  font-size: 80px;
  color: var(--bronze-500);
  line-height: 0;
  position: absolute;
  top: 28px;
  left: -36px;
  opacity: 0.6;
}
.message-body { margin-bottom: 32px; }
.message-body p {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-700);
  margin-bottom: 18px;
  font-weight: 400;
}
.message-sign {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-100);
}
.sign-label {
  font-family: var(--font-en);
  font-size: 18px;
  color: var(--wakaba-700);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.sign-name {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.1em;
}
.sign-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-500);
  font-weight: 500;
}
.message-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.cred-item .cred-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--wakaba-700);
  margin-bottom: 14px;
  font-weight: 700;
}
.cred-item ul li {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 2;
  padding-left: 16px;
  position: relative;
  font-weight: 400;
}
.cred-item ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--green-300);
}
.message-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border: 2px solid var(--green-700);
  background: var(--green-700);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(30, 124, 74, 0.28);
  transition: all 0.3s ease;
}
.message-link:hover {
  background: white;
  color: var(--green-700);
  box-shadow: 0 8px 24px rgba(30, 124, 74, 0.15);
  transform: translateY(-2px);
}
.message-link span { transition: transform 0.3s ease; }
.message-link:hover span { transform: translateX(4px); }

/* =========================================
   07.5 CLINIC ATMOSPHERE GALLERY
   ========================================= */
.atmosphere {
  padding: 70px 0;
  background: white;
}
.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 360px 280px;
  gap: 16px;
}
.atm-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.atm-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.atm-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.atm-tile:hover img { transform: scale(1.08); }
.atm-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(31,58,40,0.85) 100%);
  color: white;
}
.atm-tile .atm-cat {
  display: block;
  font-family: var(--font-en);
  font-style: italic;
  font-size: 16px;
  color: var(--wakaba-300);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  font-weight: 500;
}
.atm-tile .atm-title {
  display: block;
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Grid placement — 2 large tiles top, 3 equal tiles bottom */
.atm-1 { grid-column: 1 / span 3; grid-row: 1; }
.atm-2 { grid-column: 4 / span 3; grid-row: 1; }
.atm-3 { grid-column: 1 / span 2; grid-row: 2; }
.atm-4 { grid-column: 3 / span 2; grid-row: 2; }
.atm-5 { grid-column: 5 / span 2; grid-row: 2; }

.atmosphere-note {
  margin-top: 32px;
  text-align: center;
}
.atmosphere-note p {
  font-size: 17px;
  color: var(--ink-500);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* =========================================
   08 HOURS
   ========================================= */
.hours { padding: 70px 0; }

/* =========================================
   HOURS & ACCESS — Combined Section (3-col)
   ========================================= */
.hours-access { padding: 70px 0; background: var(--green-50); }
.ha-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.ha-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 26px 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
}
.ha-map-full {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  margin-bottom: 20px;
}
.ha-map-full iframe { width: 100%; height: 100%; display: block; }
.ha-subtitle {
  font-family: var(--font-mincho);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wakaba-300);
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ha-subtitle-en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--wakaba-700);
  font-weight: 500;
  letter-spacing: 0.12em;
}

/* Hours card */
.ha-hours .hours-table { font-size: 14px; margin-bottom: 18px; }
.ha-hours .hours-table th,
.ha-hours .hours-table td { padding: 10px 4px; }
.ha-hours-meta p {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.7;
  margin-bottom: 6px;
}
.ha-hours-meta strong { color: var(--green-900); font-weight: 700; }
.ha-hours-note {
  font-size: 12px !important;
  color: var(--ink-500) !important;
  margin-top: 10px;
}

/* Access card */
.ha-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.ha-info-list > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.ha-info-list dt {
  color: var(--wakaba-700);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.ha-info-list dd {
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.7;
  font-weight: 500;
}
.ha-info-list dd a {
  color: var(--green-900);
  font-family: var(--font-mincho);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ha-access-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: white;
  color: var(--green-700);
  border: 1.5px solid var(--green-300);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.ha-access-link:hover {
  background: var(--green-50);
  border-color: var(--green-500);
}

/* Bottom CTA */
.ha-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
}
.ha-cta-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 24px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  color: var(--green-900);
  transition: all 0.3s ease;
}
.ha-cta-tel:hover { background: var(--green-100); }
.ha-cta-label {
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.ha-cta-tel-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.04em;
}
.ha-cta-tel-num svg { color: var(--green-700); }
.ha-cta-web {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--wakaba-700);
  color: white;
  border-radius: var(--radius-md);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}
.ha-cta-web:hover {
  background: var(--wakaba-500);
  transform: translateY(-2px);
}
.hours-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: stretch;
}
.today-status {
  background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
  color: white;
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.today-status::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(184, 151, 92, 0.3), transparent);
  border-radius: 50%;
}
.today-label {
  font-family: var(--font-en);
  font-size: 17px;
  letter-spacing: 0.2em;
  color: var(--wakaba-300);
  margin-bottom: 12px;
  font-weight: 500;
}
.today-date {
  font-family: var(--font-mincho);
  font-size: 20px;
  margin-bottom: 28px;
  opacity: 0.95;
  font-weight: 600;
}
.today-state {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.state-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink-300);
}
.state-dot.open {
  background: #6FD37A;
  box-shadow: 0 0 0 4px rgba(111, 211, 122, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(111, 211, 122, 0.3); }
  50% { box-shadow: 0 0 0 10px rgba(111, 211, 122, 0); }
}
.state-text {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 600;
}
.today-note {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-weight: 400;
}
.btn-today-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--wakaba-700);
  color: white;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 22px rgba(79, 152, 38, 0.45);
  transition: all 0.3s ease;
}
.btn-today-reserve:hover {
  background: var(--wakaba-500);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 152, 38, 0.55);
  color: white;
}

.hours-table-wrap {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
}
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
}
.hours-table th, .hours-table td {
  padding: 14px 8px;
  text-align: center;
  border-bottom: 1px solid var(--ink-100);
}
.hours-table thead th {
  font-family: var(--font-mincho);
  font-size: 19px;
  color: var(--green-900);
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--green-50);
}
.hours-table thead th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}
.hours-table thead th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}
.hours-table thead th.off { color: #C57777; }

.hours-table tbody th {
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 19px;
  color: var(--green-900);
  font-weight: 600;
  background: var(--green-50);
  white-space: nowrap;
}
.hours-table .mark {
  font-size: 22px;
  color: var(--wakaba-700);
  font-weight: 700;
}
.hours-table .mark:not(.open) { color: var(--ink-300); }

.hours-notes { padding-left: 4px; }
.hours-notes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: var(--ink-700);
  margin-bottom: 12px;
  font-weight: 400;
}
.hours-notes .dot {
  width: 4px; height: 4px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================
   09 NEWS
   ========================================= */
.news {
  padding: 60px 0;
  background: var(--green-50);
}
.news.news-top {
  padding: 24px 0 36px;
  background: var(--bg);
}
.news.news-top .news-wrap {
  padding: 22px 32px;
  border: 2px solid var(--wakaba-500);
  background: linear-gradient(180deg, white 0%, var(--wakaba-100) 100%);
  box-shadow: 0 6px 20px rgba(111, 190, 58, 0.12);
}
.news.news-top .news-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wakaba-300);
}
.news.news-top .news-head .section-eyebrow { font-size: 16px; margin: 0; }
.news.news-top .news-head .section-title { font-size: 26px; margin: 0; }
.news.news-top .news-list li { border-bottom-color: var(--wakaba-300); }
.news.news-top .news-list a { padding: 10px 0; }
.news.news-top .cat-info { background: var(--wakaba-300); color: var(--green-900); }
.news-title { font-weight: 500; }
.news-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  box-shadow: var(--shadow-sm);
}
.news-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-100);
}
.news-head .section-eyebrow { margin: 0; font-size: 20px; }
.news-head .section-title { margin: 0; font-size: 34px; }
.news-all {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.news-all:hover { color: var(--wakaba-700); }

.news-list li { border-bottom: 1px solid var(--ink-100); }
.news-list li:last-child { border-bottom: none; }
.news-list a {
  display: grid;
  grid-template-columns: 100px 100px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.news-list a::after {
  content: "→";
  color: var(--ink-300);
  transition: all 0.3s ease;
}
.news-list a:hover { background: var(--green-50); padding-left: 16px; padding-right: 16px; }
.news-list a:hover::after { color: var(--green-700); transform: translateX(4px); }

.news-date {
  font-family: var(--font-en);
  font-size: 19px;
  color: var(--ink-700);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.news-cat {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 100px;
}
.cat-info { background: var(--wakaba-300); color: var(--green-900); }
.cat-vaccine { background: #FFE5B0; color: #8B5E1A; }
.cat-medical { background: #FFD6D6; color: #B33A3A; }

.news-title {
  font-size: 16px;
  color: var(--ink-900);
  font-weight: 500;
}

/* =========================================
   10 ACCESS
   ========================================= */
.access { padding: 70px 0 60px; }
.access-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid white;
}
.map-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--green-100);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; display: block; }

.access-info {
  display: flex;
  flex-direction: column;
}
.access-name {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green-100);
  letter-spacing: 0.05em;
}
.access-name-pre {
  display: block;
  font-size: 15px;
  color: var(--wakaba-700);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.access-list { margin-bottom: 32px; }
.access-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-100);
  align-items: start;
}
.access-list dt {
  font-family: var(--font-mincho);
  font-size: 15px;
  color: var(--green-700);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.access-list dd {
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.9;
  font-weight: 400;
}
.access-list dd a { color: var(--green-900); font-family: var(--font-mincho); font-size: 22px; font-weight: 600; }
.access-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}
.access-cta .btn-primary,
.access-cta .btn-outline {
  font-size: 15px;
  padding: 13px 20px;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.85); }

.footer-cta {
  background: linear-gradient(135deg, var(--green-900), #1F3A28);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(184, 151, 92, 0.25), transparent);
  border-radius: 50%;
}
.footer-cta .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
}
.footer-cta-text {
  font-family: var(--font-mincho);
  font-size: 26px;
  color: white;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.footer-cta-buttons { display: flex; gap: 14px; }
.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: white;
  color: var(--green-900);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}
.btn-cta-large:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-cta-large.btn-cta-web {
  background: var(--bronze-500);
  color: white;
}
.btn-cta-large .btn-label {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 4px;
  font-weight: 600;
}
.btn-cta-large .btn-value {
  display: block;
  font-family: var(--font-mincho);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-main {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--green-900) 0%, #073824 100%);
  border-top: 4px solid var(--wakaba-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--wakaba-400);
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-logo-pre-sep {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}
.footer-logo-main {
  display: block;
  font-family: var(--font-mincho);
  font-size: 26px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer-logo-sub {
  display: block;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--wakaba-300);
  letter-spacing: 0.15em;
  margin-top: 6px;
  font-weight: 500;
}
.footer-address {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--wakaba-700);
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 18px rgba(79, 152, 38, 0.4);
  transition: all 0.3s ease;
}
.footer-reserve-btn:hover {
  background: var(--wakaba-500);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(79, 152, 38, 0.5);
  color: white;
}
.footer-reserve-btn .reserve-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.85;
  font-weight: 600;
  margin-bottom: 1px;
}
.footer-reserve-btn .reserve-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-reserve-btn svg { flex-shrink: 0; width: 18px; height: 18px; }
.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-nav-col h4 {
  font-family: var(--font-mincho);
  font-size: 17px;
  color: var(--wakaba-300);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-nav-col ul li a {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  padding: 6px 0;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.footer-nav-col ul li a:hover { color: var(--bronze-200); padding-left: 4px; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-en);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* =========================================
   HAMBURGER MENU (mobile)
   ========================================= */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--green-300);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hamburger:hover { background: var(--green-50); border-color: var(--green-500); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-700);
  border-radius: 1px;
  transition: all 0.3s ease;
}
body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 77, 42, 0.45);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile tel button (icon only) */
.btn-cta-mobile-tel { display: none; }

/* =========================================
   RESPONSIVE
   ========================================= */

/* ---- Tablet: 1024px and below ---- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* Header */
  .header-inner { gap: 16px; }
  .logo-main { font-size: 22px; }
  .logo-sub { font-size: 11px; }
  .header-tel { font-size: 20px; }
  .header-tel svg { width: 18px; height: 18px; }
  .btn-cta { padding: 12px 18px; font-size: 14px; }
  .nav-list { flex-wrap: wrap; justify-content: center; gap: 0; }
  .nav-list a { padding: 14px 14px; font-size: 14px; }

  /* Hero */
  .hero { min-height: 460px; }
  .hero-inner { min-height: 460px; padding-top: 52px; padding-bottom: 52px; }
  .hero-title { font-size: 32px; }
  .hero-lead { font-size: 15px; line-height: 1.9; }

  /* Sections */
  .reasons, .features, .medical, .message, .hours, .hours-access, .atmosphere, .access { padding: 56px 0; }
  .news { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: 26px; }
  .section-eyebrow { font-size: 16px; }

  /* Grids → 2 columns */
  .reasons-grid, .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .medical-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .reason-card.featured { transform: none; }
  .reason-card.featured:hover { transform: translateY(-8px); }

  /* CV bar */
  .cv-grid { grid-template-columns: 1fr; max-width: 540px; }

  /* Message */
  .message-grid { grid-template-columns: 1fr; gap: 40px; }
  .message-title { font-size: 26px; }
  .message-creds { grid-template-columns: 1fr 1fr; gap: 24px; }

  /* Hours & Access */
  .ha-grid { grid-template-columns: 1fr; gap: 18px; }
  .ha-map-full { height: 320px; }

  /* Atmosphere gallery */
  .atmosphere-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px 220px; }
  .atm-1 { grid-column: span 4; grid-row: span 1; }
  .atm-2 { grid-column: span 2; grid-row: span 1; }
  .atm-3 { grid-column: span 2; grid-row: span 1; }
  .atm-4 { grid-column: span 2; grid-row: span 1; }
  .atm-5 { grid-column: span 2; grid-row: span 1; }

  /* News */
  .news-wrap { padding: 28px 32px; }
  .news.news-top .news-wrap { padding: 20px 28px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-wrap { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ---- Mobile: 768px and below ---- */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Header: compact horizontal */
  .header-top { padding: 10px 0; }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .logo { flex: 1; min-width: 0; }
  .logo-mark svg { width: 38px; height: 38px; }
  .logo-pre { font-size: 11px; letter-spacing: 0.04em; gap: 4px; margin-bottom: 0; }
  .logo-main { font-size: 17px; letter-spacing: 0.02em; }
  .logo-sub { display: none; }

  /* Hide full contact info on mobile, show only icon buttons + hamburger */
  .header-info { display: none; }
  .header-contact {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: auto;
    flex-shrink: 0;
  }
  .header-cta { gap: 8px; align-items: center; }

  /* Mobile: icon-only tel button */
  .btn-cta-mobile-tel {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: var(--green-700);
    color: white;
    border: none;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .btn-cta-mobile-tel:hover { background: var(--green-900); }

  /* Hide WEB予約 and アクセス labels on mobile (icon only) */
  .header-cta .btn-reserve,
  .header-cta .btn-access {
    display: none;
  }

  /* Show hamburger */
  .hamburger { display: inline-flex; }
  /* ハンバーガーをスライドメニューより前面に出し、×で閉じられるようにする */
  .header-cta { position: relative; z-index: 101; }

  /* backdrop-filter は position:fixed の基準枠を作り、スライドメニューを
     ヘッダー内に閉じ込めてしまう。スマホでは無効化して全画面で開くようにする */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
  }

  /* Slide-out nav */
  .nav-backdrop { display: block; }
  .header-nav {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: white;
    box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 80px 0 40px;
    border-top: none;
  }
  body.nav-open .header-nav { transform: translateX(0); }
  .header-nav .container { padding: 0; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list li { width: 100%; }
  .nav-list a {
    display: block;
    padding: 18px 28px;
    border-bottom: 1px solid var(--ink-100);
    font-size: 17px;
    white-space: normal;
  }
  .nav-list a.active::after {
    bottom: 14px;
    left: 28px;
    transform: none;
  }
  body.nav-open { overflow: hidden; }

  /* Mobile reservation/access buttons as full-width below header */
  .header-mobile-cta {
    display: flex;
    gap: 8px;
    padding: 8px 16px;
    background: var(--green-50);
    border-bottom: 1px solid var(--ink-100);
  }

  /* Hero */
  .hero { min-height: 0; }
  .hero-inner {
    padding: 36px 0 40px;
    min-height: 340px;
    width: 100%;
  }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: 24px; line-height: 1.5; white-space: normal; margin-bottom: 14px; }
  .hero-title .ja { white-space: normal; }
  .hero-lead { font-size: 13px; line-height: 1.85; margin-bottom: 18px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 12px; gap: 8px; }
  .hero-eyebrow .line { width: 24px; }
  .hero-buttons { display: none; }
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 252, 0.78) 0%, rgba(255, 255, 252, 0.55) 50%, rgba(255, 255, 252, 0.32) 100%);
  }
  /* Hide title decoration dot on mobile (overlap issue) */
  .hero-title .em::before { display: none; }
  /* Stronger text shadow for visibility on lighter overlay */
  .hero-title { text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95), 0 0 8px rgba(255, 255, 255, 0.7); }
  .hero-lead { text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95), 0 0 6px rgba(255, 255, 255, 0.7); font-weight: 600; }
  .hero-leaf-deco { display: none; }

  /* Sections: 1 column, compact */
  .reasons, .features, .medical, .message, .hours, .hours-access, .atmosphere, .access { padding: 36px 0; }
  .news { padding: 32px 0; }
  .section-head { margin-bottom: 20px; }
  .section-title { font-size: 20px; margin-bottom: 8px; }
  .section-eyebrow { font-size: 12px; margin-bottom: 6px; }
  .section-lead { font-size: 13px; line-height: 1.8; }

  /* CV Bar */
  .cv-bar { padding: 20px 0 24px; }
  .cv-heading { font-size: 16px; margin-bottom: 14px; }
  .cv-grid { padding: 12px; gap: 10px; }
  .cv-card { padding: 14px 16px; gap: 12px; border-radius: 14px; }
  .cv-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .cv-icon svg { width: 22px; height: 22px; }
  .cv-label { font-size: 11px; letter-spacing: 0.08em; }
  .cv-value { font-size: 19px; }
  .cv-note { font-size: 11px; margin-top: 2px; }
  .cv-arrow { font-size: 16px; }

  /* Grids → 1 column */
  .reasons-grid, .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .medical-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .reason-card { padding: 28px 18px 20px; }
  .reason-num { font-size: 48px; top: -18px; padding: 0 14px; }
  .reason-icon { padding: 12px; margin-bottom: 12px; }
  .reason-icon svg { width: 40px; height: 40px; }
  .reason-en { font-size: 16px; margin-bottom: 6px; }
  .reason-title { font-size: 17px; margin-bottom: 10px; }
  .reason-text { font-size: 13px; line-height: 1.85; }
  .feature-image { aspect-ratio: 16/9; }
  .feature-body { padding: 16px 18px 18px; }
  .feature-en { font-size: 14px; margin-bottom: 6px; letter-spacing: 0.1em; }
  .feature-title { font-size: 17px; padding-bottom: 8px; margin-bottom: 10px; }
  .feature-title-sub { font-size: 12px; }
  .feature-text { font-size: 13px; line-height: 1.85; margin-bottom: 12px; }
  .feature-points { gap: 4px; margin-bottom: 12px; }
  .feature-points li { font-size: 11px; padding: 3px 10px; }
  .feature-link { font-size: 13px; padding-bottom: 4px; }
  .medical-card { padding: 16px 12px; }
  .med-icon-wrap { width: 50px; height: 50px; margin-bottom: 10px; }
  .med-icon-wrap svg { width: 28px; height: 28px; }
  .medical-card h3 { font-size: 14px; margin-bottom: 4px; }
  .medical-card p { font-size: 11px; line-height: 1.5; }

  /* Message */
  .message-grid { gap: 24px; }
  /* スマホでは横長すぎると顔が切れるため、やや縦長に戻し顔を上寄せ表示 */
  .message-photo { aspect-ratio: 4/4; }
  .photo-main img { object-position: center 28%; }
  .message-eyebrow { font-size: 14px; margin-bottom: 8px; }
  .message-title { font-size: 22px; margin-bottom: 14px; }
  .message-body p { font-size: 13px; line-height: 1.85; margin-bottom: 10px; }
  .message-creds { grid-template-columns: 1fr; gap: 14px; margin-bottom: 18px; }
  .message-sign { gap: 10px; margin-bottom: 18px; padding-bottom: 14px; }
  .sign-name { font-size: 20px; }
  .sign-en, .sign-label { font-size: 12px; }
  .cred-item .cred-label { font-size: 13px; margin-bottom: 6px; }
  .cred-item ul li { font-size: 12px; line-height: 1.7; }
  .message-link { font-size: 14px; padding: 12px 24px; gap: 8px; }
  .quote { font-size: 40px; top: 14px; left: -8px; }

  /* Hours & Access */
  .ha-grid { gap: 12px; margin-bottom: 16px; }
  .ha-card { padding: 14px 16px; border-radius: 14px; }
  .ha-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    gap: 8px;
  }
  .ha-subtitle-en { font-size: 11px; }
  .hours-table { font-size: 12px; margin-bottom: 12px; }
  .hours-table th, .hours-table td { padding: 6px 2px; }
  .hours-table thead th { font-size: 12px; }
  .hours-table tbody th { font-size: 12px; }
  .hours-table .mark { font-size: 14px; }
  .ha-hours-meta p { font-size: 11px; line-height: 1.5; }
  .ha-hours-note { font-size: 10px !important; margin-top: 6px; }
  .ha-info-list { gap: 10px; margin-bottom: 12px; }
  .ha-info-list > div { grid-template-columns: 20px 1fr; gap: 8px; }
  .ha-info-list dd { font-size: 12px; line-height: 1.6; }
  .ha-info-list dd a { font-size: 15px; }
  .ha-access-link { font-size: 11px; padding: 6px 14px; }
  .ha-map-full { height: 200px; margin-bottom: 14px; border-radius: 14px; }
  .ha-cta { grid-template-columns: 1fr; padding: 12px; gap: 10px; border-radius: 14px; }
  .ha-cta-tel { padding: 10px; gap: 2px; }
  .ha-cta-label { font-size: 11px; }
  .ha-cta-tel-num { font-size: 18px; gap: 6px; }
  .ha-cta-web { font-size: 14px; padding: 12px; gap: 6px; }

  /* News — compact horizontal on mobile */
  .news { padding: 32px 0; }
  .news.news-top { padding: 16px 0 24px; }
  .news-wrap { padding: 16px 16px; border-radius: 16px; }
  .news.news-top .news-wrap { padding: 14px 16px; }
  .news-head {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 8px;
    align-items: center;
  }
  .news.news-top .news-head .section-eyebrow { font-size: 13px; }
  .news.news-top .news-head .section-title { font-size: 18px; }
  .news-all {
    justify-self: end;
    font-size: 13px;
  }
  .news-list li { border-bottom-color: var(--ink-100); }
  .news-list a {
    display: grid;
    grid-template-columns: 76px 70px 1fr;
    gap: 8px;
    padding: 8px 0;
    align-items: center;
  }
  .news-list a::after { display: none; }
  .news-date { font-size: 12px; }
  .news-cat {
    font-size: 10px;
    padding: 2px 8px;
    min-width: 60px;
    letter-spacing: 0.02em;
  }
  .news-title {
    font-size: 13px;
    line-height: 1.4;
    grid-column: auto;
  }

  /* Atmosphere */
  .atmosphere-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 160px); gap: 8px; }
  .atm-1, .atm-2, .atm-3, .atm-4, .atm-5 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .atm-tile figcaption { padding: 12px 16px; }
  .atm-tile .atm-title { font-size: 15px; }
  .atm-tile .atm-cat { font-size: 11px; margin-bottom: 2px; }

  /* Atmosphere note */
  .atmosphere-note { margin-top: 16px; }
  .atmosphere-note p { font-size: 11px; }

  /* Buttons */
  .btn-primary, .btn-outline {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  .ha-grid + .ha-map-full + .ha-cta { display: flex; flex-direction: column; }

  /* Footer — compact mobile */
  .footer-main { padding: 28px 0 18px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-brand { text-align: left; }
  .footer-logo { gap: 10px; margin-bottom: 10px; }
  .footer-logo svg { width: 36px; height: 36px; }
  .footer-logo-pre { font-size: 11px; gap: 4px; margin-bottom: 2px; }
  .footer-logo-main { font-size: 16px; letter-spacing: 0.03em; }
  .footer-logo-sub { font-size: 10px; letter-spacing: 0.1em; margin-top: 2px; }
  .footer-address {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  .footer-nav-wrap { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-nav-col h4 {
    font-size: 12px;
    margin-bottom: 6px;
    padding-bottom: 6px;
    letter-spacing: 0.08em;
  }
  .footer-nav-col ul li a {
    font-size: 12px;
    padding: 3px 0;
    letter-spacing: 0.03em;
  }
  .footer-bottom { padding: 14px 0; }
  .footer-bottom p { font-size: 10px; letter-spacing: 0.1em; }
}

/* ---- Small Mobile: 480px and below ---- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Header */
  .logo-mark svg { width: 34px; height: 34px; }
  .logo-main { font-size: 16px; }
  .logo-pre { font-size: 10px; gap: 4px; }
  .btn-cta-mobile-tel { width: 40px; height: 40px; }
  .hamburger { width: 40px; height: 40px; }
  .header-cta { gap: 6px; }

  /* Hero */
  .hero-title { font-size: 22px; }

  /* Medical → 1 column */
  .medical-grid { grid-template-columns: 1fr; }

  /* Footer nav stay 2 cols even on tiny */
  .footer-nav-wrap { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-nav-col h4 { font-size: 11px; }
  .footer-nav-col ul li a { font-size: 11px; padding: 2px 0; }
}
