/* ============================================================
   みどりの丘クリニック — Shared Stylesheet
   ============================================================ */

/* ===================== VARIABLES ===================== */
:root {
  --green-900: #1a3c2a;
  --green-800: #1e5c3a;
  --green-700: #27724a;
  --green-600: #2d8a5e;
  --green-500: #3a9d6e;
  --green-400: #5cb888;
  --green-300: #8ed4ab;
  --green-200: #bce8cc;
  --green-100: #e3f5eb;
  --green-50: #f0faf4;
  --warm-50: #fefcf8;
  --warm-100: #fdf6ec;
  --warm-200: #f5e6cb;
  --brown-600: #6b5343;
  --brown-700: #5a4236;
  --brown-800: #3d2e25;
  --navy: #1e293b;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --white: #ffffff;
  --coral: #e85d4a;
  --coral-light: #fff1ef;
  --blue-medical: #2563eb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* ===================== UTILITY ===================== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--green-500); text-transform: uppercase; margin-bottom: 8px;
}
.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700;
  color: var(--green-900); margin-bottom: 12px; line-height: 1.5;
}
.section-desc { font-size: 0.92rem; color: var(--gray-500); max-width: 560px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===================== HEADER ===================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.logo-text { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 700; font-size: 1rem; color: var(--green-900); }
.logo-sub { font-size: 0.6rem; color: var(--gray-400); letter-spacing: 0.05em; }

.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a {
  font-size: 0.82rem; color: var(--gray-600); text-decoration: none;
  font-weight: 500; transition: color 0.2s; position: relative;
  padding: 4px 0;
}
.header-nav a:hover, .header-nav a.current { color: var(--green-600); }
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--green-500); transform: scaleX(0);
  transition: transform 0.2s;
}
.header-nav a:hover::after, .header-nav a.current::after { transform: scaleX(1); }

.header-reserve {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-600); color: white; text-decoration: none;
  padding: 9px 20px; border-radius: 50px; font-weight: 600; font-size: 0.82rem;
  transition: all 0.25s; box-shadow: 0 3px 12px rgba(45,138,94,0.25);
}
.header-reserve:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 5px 20px rgba(45,138,94,0.3); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-600); padding: 4px; }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4); z-index: 200; opacity: 0; transition: opacity 0.3s;
}
.mobile-menu-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100%;
  background: white; z-index: 201; transition: right 0.3s;
  padding: 80px 24px 24px; overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px; background: none;
  border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-500);
}
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 0.95rem; color: var(--gray-700);
  text-decoration: none; border-bottom: 1px solid var(--gray-100); font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a.current { color: var(--green-600); }
.mobile-menu .mobile-reserve {
  display: block; margin-top: 20px; background: var(--green-600); color: white;
  text-align: center; padding: 14px; border-radius: 50px; font-weight: 700;
  text-decoration: none; border-bottom: none;
}

/* ===================== PAGE HEADER (sub pages) ===================== */
.page-header {
  padding: 120px 0 48px;
  background: linear-gradient(170deg, var(--green-50) 0%, var(--warm-50) 60%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -100px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,184,136,0.06) 0%, transparent 70%);
}
.page-header .breadcrumb {
  font-size: 0.75rem; color: var(--gray-400); margin-bottom: 12px;
}
.page-header .breadcrumb a { color: var(--gray-400); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--green-600); }
.page-header h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700;
  color: var(--green-900); line-height: 1.5;
}
.page-header .page-desc {
  font-size: 0.92rem; color: var(--gray-500); margin-top: 8px; max-width: 560px;
}

/* ===================== HERO (index only) ===================== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(170deg, var(--green-50) 0%, var(--warm-50) 40%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,184,136,0.08) 0%, transparent 70%);
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,230,203,0.4) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 2;
}
.hero-catch {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.78rem; font-weight: 500; color: var(--green-600);
  margin-bottom: 12px; letter-spacing: 0.08em;
}
.hero h1 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700;
  color: var(--green-900); line-height: 1.6; margin-bottom: 16px;
}
.hero h1 .accent { color: var(--green-600); }
.hero-desc {
  font-size: 0.92rem; color: var(--gray-500); line-height: 2; margin-bottom: 28px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===================== BUTTONS ===================== */
.btn-reserve {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-600); color: white; text-decoration: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.25s; box-shadow: 0 6px 24px rgba(45,138,94,0.25);
}
.btn-reserve:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(45,138,94,0.3); }
.btn-tel {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); text-decoration: none;
  padding: 14px 24px; border-radius: 50px; font-weight: 500; font-size: 0.9rem;
  transition: all 0.25s;
}
.btn-tel:hover { border-color: var(--green-400); color: var(--green-700); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--green-400); color: var(--green-700); text-decoration: none;
  padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--green-50); border-color: var(--green-600); }

/* ===================== HERO IMAGE ===================== */
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-placeholder {
  width: 100%; height: 360px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-100) 0%, var(--green-200) 50%, var(--warm-100) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; position: relative; overflow: hidden;
}
.hero-image-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d8a5e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-image-icon { font-size: 3rem; opacity: 0.6; position: relative; z-index: 1; }
.hero-image-text { font-size: 0.82rem; color: var(--green-700); opacity: 0.5; position: relative; z-index: 1; }

.hero-badges { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--gray-100);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; color: var(--gray-600);
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

/* ===================== INFO BAR ===================== */
.info-bar { background: var(--green-900); color: white; }
.info-bar-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.info-bar-item {
  padding: 20px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.info-bar-item:last-child { border-right: none; }
.info-bar-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; margin-bottom: 4px; }
.info-bar-value { font-size: 0.92rem; font-weight: 600; }
.info-bar-value a { color: white; text-decoration: none; }
.info-bar-value .open { color: var(--green-300); }

/* ===================== ABOUT ===================== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.image-placeholder {
  width: 100%; height: 320px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--warm-100) 0%, var(--green-100) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; box-shadow: var(--shadow);
}
.image-placeholder .icon { font-size: 2.5rem; opacity: 0.5; }
.image-placeholder .text { font-size: 0.78rem; color: var(--gray-400); }
.about-text h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--green-900); margin-bottom: 16px; line-height: 1.6;
}
.about-text p { font-size: 0.9rem; color: var(--gray-600); line-height: 2; margin-bottom: 12px; }
.about-name { margin-top: 20px; font-size: 0.85rem; color: var(--green-800); }
.about-name strong { font-size: 1.1rem; display: block; margin-top: 2px; }

/* ===================== DEPARTMENTS ===================== */
.departments { background: var(--green-50); }
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.dept-card {
  background: white; border-radius: var(--radius); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100); transition: all 0.3s;
  text-decoration: none; display: block;
}
.dept-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dept-icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.dept-icon.green { background: var(--green-100); }
.dept-icon.warm { background: var(--warm-100); }
.dept-icon.coral { background: var(--coral-light); }
.dept-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-900); margin-bottom: 6px; }
.dept-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.7; }

/* ===================== FEATURES ===================== */
.clinic-features { background: var(--white); }
.cf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.cf-item {
  display: flex; gap: 14px; padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--gray-100); transition: all 0.2s;
}
.cf-item:hover { background: var(--green-50); border-color: var(--green-200); }
.cf-num {
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.cf-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-900); margin-bottom: 2px; }
.cf-item p { font-size: 0.8rem; color: var(--gray-500); line-height: 1.6; }

/* ===================== HOURS TABLE ===================== */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.hours-table-wrap {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 10px 8px; text-align: center; font-size: 0.85rem; }
.hours-table thead th {
  font-weight: 600; color: var(--green-800); border-bottom: 2px solid var(--green-200); font-size: 0.78rem;
}
.hours-table thead th.sat { color: #2563eb; }
.hours-table thead th.sun { color: var(--coral); }
.hours-table tbody td { border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.hours-table tbody td.time-label { font-weight: 600; color: var(--green-900); text-align: left; }
.hours-table .open { color: var(--green-600); font-weight: 600; }
.hours-table .closed { color: var(--gray-300); }
.hours-note { margin-top: 14px; font-size: 0.78rem; color: var(--gray-400); line-height: 1.8; }

/* ===================== ACCESS ===================== */
.access-info {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.access-map {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
  display: flex; align-items: center; justify-content: center;
}
.access-map-pin { font-size: 2.5rem; }
.access-details { padding: 24px; }
.access-details h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--green-900); margin-bottom: 12px;
}
.access-row {
  display: flex; gap: 10px; font-size: 0.85rem; color: var(--gray-600);
  padding: 6px 0; align-items: flex-start;
}
.access-row .icon { min-width: 20px; text-align: center; }

/* ===================== RESERVATION CTA ===================== */
.reservation-cta {
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  color: white; text-align: center; position: relative; overflow: hidden;
}
.reservation-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(90,184,136,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(245,230,203,0.08) 0%, transparent 50%);
}
.reservation-cta-inner { position: relative; z-index: 2; }
.reservation-cta h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; margin-bottom: 12px;
}
.reservation-cta p { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.reservation-cta .btn-reserve {
  background: white; color: var(--green-800); font-size: 1rem; padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.reservation-cta .btn-reserve:hover { background: var(--green-50); transform: translateY(-2px); }
.reservation-cta-sub {
  margin-top: 16px; display: flex; gap: 24px; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
}
.reservation-cta-sub span::before { content: '✓ '; color: var(--green-400); }

/* ===================== RESERVATION EMBED ===================== */
.reservation-section { background: var(--warm-50); }
.reservation-embed {
  max-width: 800px; margin: 32px auto 0;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 2px solid var(--green-200);
}
.reservation-embed iframe { width: 100%; height: 620px; border: none; }
.reservation-embed-note {
  text-align: center; margin-top: 16px;
  font-size: 0.78rem; color: var(--gray-400);
}

/* ===================== NEWS / お知らせ ===================== */
.news-list { margin-top: 32px; }
.news-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--gray-100); align-items: flex-start;
}
.news-item:first-child { border-top: 1px solid var(--gray-100); }
.news-date { font-size: 0.78rem; color: var(--gray-400); min-width: 90px; padding-top: 2px; }
.news-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  padding: 2px 10px; border-radius: 50px; min-width: 60px; text-align: center;
}
.news-tag.info { background: var(--green-100); color: var(--green-700); }
.news-tag.important { background: var(--coral-light); color: var(--coral); }
.news-tag.holiday { background: var(--warm-100); color: var(--brown-600); }
.news-content { flex: 1; }
.news-content a { color: var(--gray-700); text-decoration: none; font-size: 0.88rem; }
.news-content a:hover { color: var(--green-600); }

/* ===================== DETAIL CONTENT (sub pages) ===================== */
.detail-content { background: var(--white); }
.detail-content .prose { max-width: 720px; margin: 0 auto; }
.detail-content .prose h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green-900);
  margin: 40px 0 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--green-200);
}
.detail-content .prose h2:first-child { margin-top: 0; }
.detail-content .prose p {
  font-size: 0.9rem; color: var(--gray-600); line-height: 2; margin-bottom: 16px;
}
.detail-content .prose ul {
  margin: 12px 0 20px 20px; font-size: 0.9rem; color: var(--gray-600);
}
.detail-content .prose ul li { margin-bottom: 6px; line-height: 1.8; }

/* Profile card */
.profile-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 40px;
  background: white; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  margin-top: 40px;
}
.profile-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--warm-100) 0%, var(--green-100) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.profile-photo .icon { font-size: 3rem; opacity: 0.5; }
.profile-photo .text { font-size: 0.8rem; color: var(--gray-400); }
.profile-info h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.78rem; color: var(--green-500); font-weight: 600;
  letter-spacing: 0.1em; margin-bottom: 4px;
}
.profile-info h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: var(--green-900); margin-bottom: 20px;
}
.profile-info p { font-size: 0.9rem; color: var(--gray-600); line-height: 2; margin-bottom: 12px; }
.career-list { margin-top: 20px; }
.career-list h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--green-800); margin-bottom: 10px;
}
.career-list dl { display: grid; grid-template-columns: 80px 1fr; gap: 4px 16px; font-size: 0.85rem; }
.career-list dt { color: var(--gray-400); }
.career-list dd { color: var(--gray-600); }

/* ===================== DEPT DETAIL ===================== */
.dept-detail-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.dept-detail-card h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.15rem; font-weight: 700; color: var(--green-900);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.dept-detail-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.9; margin-bottom: 10px; }
.dept-symptoms {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.dept-symptom-tag {
  font-size: 0.78rem; background: var(--green-50); color: var(--green-700);
  padding: 4px 14px; border-radius: 50px; border: 1px solid var(--green-200);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--green-900); color: rgba(255,255,255,0.6); padding: 48px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.footer-logo-text { font-family: 'Zen Maru Gothic', sans-serif; font-weight: 700; color: white; font-size: 0.95rem; }
.footer p { font-size: 0.8rem; line-height: 1.8; }
.footer h4 { color: white; font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-300); }
.footer-bottom {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ===================== FLOATING RESERVE ===================== */
.floating-reserve {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.floating-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-600); color: white; text-decoration: none;
  padding: 14px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(45,138,94,0.35);
  transition: all 0.25s; animation: floatPulse 3s ease-in-out infinite;
}
.floating-btn:hover { background: var(--green-700); transform: scale(1.05); }
.floating-tel {
  display: flex; align-items: center; gap: 6px;
  background: white; color: var(--gray-700); text-decoration: none;
  padding: 10px 18px; border-radius: 50px; font-weight: 600; font-size: 0.8rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(45,138,94,0.35); }
  50% { box-shadow: 0 8px 32px rgba(45,138,94,0.55); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 110px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image-placeholder { height: 240px; }
  section { padding: 56px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .image-placeholder { height: 220px; }
  .dept-grid { grid-template-columns: 1fr; }
  .cf-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .info-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .reservation-embed iframe { height: 500px; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-photo { aspect-ratio: 4/3; max-height: 240px; }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }
