:root {
  --green-deep: #2d4a2d;
  --green-mid: #4a7c4a;
  --green-light: #8ab88a;
  --green-pale: #e8f0e8;
  --green-mist: #f2f7f2;
  --cream: #faf8f4;
  --text-dark: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.8;
}

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74,124,74,0.15);
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.logo-ja { font-family: 'Noto Serif JP', serif; font-size: 17px; font-weight: 400; color: var(--green-deep); letter-spacing: 0.05em; }
.logo-en { font-family: 'Cormorant Garamond', serif; font-size: 12px; color: var(--green-light); letter-spacing: 0.15em; text-transform: uppercase; }
nav { display: flex; gap: 28px; align-items: center; }
nav a { text-decoration: none; font-size: 13px; font-weight: 400; color: var(--text-mid); letter-spacing: 0.08em; transition: color 0.2s; position: relative; }
nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--green-mid); transform: scaleX(0); transition: transform 0.2s; }
nav a:hover { color: var(--green-deep); }
nav a:hover::after { transform: scaleX(1); }
.nav-tel { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green-deep); text-decoration: none; border-left: 1px solid rgba(74,124,74,0.2); padding-left: 24px; margin-left: 8px; }

/* ── HERO ── */
#hero { padding-top: 64px; min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 80px 60px 80px 80px; }
.hero-tag { font-size: 11px; letter-spacing: 0.2em; color: var(--green-mid); font-family: 'Cormorant Garamond', serif; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--green-light); }
.hero-headline { font-family: 'Noto Serif JP', serif; font-size: 44px; font-weight: 300; line-height: 1.5; color: var(--green-deep); letter-spacing: 0.04em; margin-bottom: 32px; }
.hero-headline em { font-style: normal; color: var(--green-mid); }
.hero-body { font-size: 14px; color: var(--text-mid); line-height: 2; max-width: 380px; margin-bottom: 48px; }
.hero-cta { display: inline-flex; align-items: center; gap: 12px; background: var(--green-deep); color: var(--white); text-decoration: none; padding: 16px 32px; font-size: 13px; letter-spacing: 0.1em; transition: background 0.2s, gap 0.2s; width: fit-content; }
.hero-cta:hover { background: var(--green-mid); gap: 18px; }
.hero-right { position: relative; overflow: hidden; }
.hero-illustration { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.hero-info-strip { position: absolute; bottom: 0; left: 0; right: 0; background: var(--green-deep); color: var(--white); display: flex; }
.info-item { flex: 1; padding: 24px 32px; border-right: 1px solid rgba(255,255,255,0.1); }
.info-item:last-child { border-right: none; }
.info-label { font-family: 'Cormorant Garamond', serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-light); display: block; margin-bottom: 6px; }
.info-value { font-size: 13px; }

/* ── NEWS ── */
#news { background: var(--green-deep); }
.news-inner { display: flex; align-items: stretch; }
.news-label { background: var(--green-mid); color: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 40px; min-width: 160px; gap: 6px; flex-shrink: 0; }
.news-label-en { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 0.15em; }
.news-label-ja { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.news-list { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 48px; }
.news-item { display: flex; align-items: baseline; gap: 24px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); text-decoration: none; transition: padding-left 0.2s; }
.news-item:last-child { border-bottom: none; }
.news-item:hover { padding-left: 8px; }
.news-date { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--green-light); letter-spacing: 0.1em; min-width: 90px; flex-shrink: 0; }
.news-tag { font-size: 10px; letter-spacing: 0.1em; padding: 3px 10px; border: 1px solid var(--green-light); color: var(--green-light); border-radius: 2px; flex-shrink: 0; }
.news-title { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.news-more { padding: 28px 40px; display: flex; align-items: center; flex-shrink: 0; }
.news-more a { color: var(--green-light); text-decoration: none; font-size: 12px; letter-spacing: 0.12em; font-family: 'Cormorant Garamond', serif; border-bottom: 1px solid rgba(138,184,138,0.3); padding-bottom: 2px; transition: opacity 0.2s; }
.news-more a:hover { opacity: 0.7; }

/* ── CONCEPT ── */
#concept { padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--white); }
.concept-card { background: var(--green-mist); padding: 60px 50px; border-left: 3px solid var(--green-light); }
.concept-en { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-light); display: block; margin-bottom: 20px; }
.concept-title { font-family: 'Noto Serif JP', serif; font-size: 32px; font-weight: 300; color: var(--green-deep); line-height: 1.6; margin-bottom: 28px; }
.concept-text { font-size: 14px; color: var(--text-mid); line-height: 2.1; }
.concept-interior { width: 100%; max-height: 320px; object-fit: contain; background: #f5f0e8; margin-top: 2px; display: block; }
.concept-about-title { font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 300; color: var(--green-deep); margin-bottom: 28px; line-height: 1.6; }
.concept-about-text { font-size: 14px; color: var(--text-mid); line-height: 2.1; }

/* ── FEATURES ── */
#features { padding: 100px 80px; background: var(--green-mist); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-en { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--green-light); display: block; margin-bottom: 16px; }
.section-title { font-family: 'Noto Serif JP', serif; font-size: 28px; font-weight: 300; color: var(--green-deep); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card { background: var(--white); padding: 48px 36px; transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--green-pale); display: block; line-height: 1; margin-bottom: 20px; }
.feature-title { font-family: 'Noto Serif JP', serif; font-size: 18px; font-weight: 400; color: var(--green-deep); margin-bottom: 16px; }
.feature-text { font-size: 13px; color: var(--text-mid); line-height: 2; }

/* ── SCHEDULE ── */
#schedule { padding: 100px 80px; background: var(--white); }
.schedule-inner { max-width: 800px; margin: 0 auto; }
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 48px; font-size: 14px; }
.schedule-table th { background: var(--green-deep); color: var(--white); padding: 16px 20px; font-weight: 400; letter-spacing: 0.08em; font-size: 13px; text-align: center; }
.schedule-table td { padding: 18px 20px; border-bottom: 1px solid var(--green-pale); text-align: center; color: var(--text-mid); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table td.day-label { font-family: 'Noto Serif JP', serif; color: var(--green-deep); font-size: 15px; text-align: left; padding-left: 32px; }
.schedule-table td.closed { color: var(--text-light); font-size: 12px; }
.schedule-table tr:hover td { background: var(--green-mist); }
.schedule-note { margin-top: 24px; font-size: 12px; color: var(--text-light); line-height: 2; padding-left: 8px; border-left: 2px solid var(--green-pale); }

/* ── DOCTORS ── */
#doctors { padding: 100px 80px; background: var(--green-mist); }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.doctor-card { background: var(--white); padding: 40px 32px; border-top: 3px solid var(--green-light); }
.doctor-role { font-size: 11px; letter-spacing: 0.15em; color: var(--green-mid); display: block; margin-bottom: 10px; font-family: 'Cormorant Garamond', serif; text-transform: uppercase; }
.doctor-name { font-family: 'Noto Serif JP', serif; font-size: 22px; font-weight: 400; color: var(--green-deep); margin-bottom: 4px; }
.doctor-divider { height: 1px; background: var(--green-pale); margin: 20px 0; }
.doctor-spec { font-size: 12px; color: var(--text-mid); line-height: 2; }
.doctor-spec strong { color: var(--green-deep); font-weight: 500; }

/* ── FIRST VISIT ── */
#firstvisit { padding: 100px 80px; background: var(--green-deep); color: var(--white); }
.firstvisit-inner { max-width: 900px; margin: 0 auto; }
#firstvisit .section-en { color: rgba(138,184,138,0.6); }
#firstvisit .section-title { color: var(--white); margin-bottom: 60px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 1px; background: rgba(138,184,138,0.3); z-index: 0; }
.step { position: relative; z-index: 1; padding: 0 20px; text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--green-mid); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-title { font-family: 'Noto Serif JP', serif; font-size: 15px; color: var(--white); margin-bottom: 12px; }
.step-text { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.firstvisit-tel { text-align: center; margin-top: 60px; font-size: 13px; color: rgba(255,255,255,0.6); }
.firstvisit-tel a { color: var(--green-light); font-family: 'Cormorant Garamond', serif; font-size: 28px; letter-spacing: 0.1em; text-decoration: none; display: block; margin-top: 12px; }

/* ── ACCESS ── */
#access { padding: 100px 80px; background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.access-title { font-family: 'Noto Serif JP', serif; font-size: 28px; font-weight: 300; color: var(--green-deep); margin-bottom: 40px; }
.access-detail { display: flex; flex-direction: column; gap: 0; }
.access-row { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--green-pale); }
.access-row:last-child { border-bottom: none; }
.access-key { font-size: 11px; letter-spacing: 0.15em; color: var(--green-mid); font-family: 'Cormorant Garamond', serif; text-transform: uppercase; min-width: 80px; padding-top: 2px; }
.access-val { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.access-val a { color: var(--green-deep); text-decoration: none; border-bottom: 1px solid var(--green-light); }
.access-val small { font-size: 12px; color: var(--text-light); display: block; margin-top: 6px; }
.map-embed { width: 100%; height: 360px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }
.access-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 16px; }
.access-photos img { width: 100%; height: 160px; object-fit: cover; }
.access-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

/* ── FOOTER ── */
footer { background: #1a2e1a; color: rgba(255,255,255,0.5); padding: 48px 80px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.footer-logo { font-family: 'Noto Serif JP', serif; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 300; }
.footer-address { margin-top: 8px; font-size: 12px; }
.footer-copy { font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.1em; }

/* ── NEWS ARCHIVE PAGE ── */
.page-hero { padding-top: 64px; height: 240px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.page-hero-bg { position: absolute; inset: 0; background-image: url('../images/hero.jpg'); background-size: cover; background-position: center 30%; filter: brightness(0.5); }
.page-hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); }
.page-hero-en { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-light); display: block; margin-bottom: 12px; }
.page-hero-title { font-family: 'Noto Serif JP', serif; font-size: 32px; font-weight: 300; letter-spacing: 0.08em; }
.breadcrumb { padding: 16px 80px; font-size: 12px; color: var(--text-light); border-bottom: 1px solid var(--green-pale); background: var(--white); }
.breadcrumb a { color: var(--green-mid); text-decoration: none; }
.breadcrumb span { margin: 0 8px; }
.news-container { max-width: 860px; margin: 0 auto; padding: 72px 40px 100px; }
.news-year-group { margin-bottom: 56px; }
.news-year { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--green-pale); line-height: 1; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--green-pale); position: relative; }
.news-year::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 60px; height: 2px; background: var(--green-mid); }
.news-entry { display: flex; align-items: flex-start; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--green-pale); transition: padding-left 0.2s; }
.news-entry:last-child { border-bottom: none; }
.news-entry:hover { padding-left: 8px; }
.news-entry-date { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--text-light); letter-spacing: 0.1em; min-width: 100px; padding-top: 3px; flex-shrink: 0; }
.news-entry-tag { font-size: 10px; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.tag-closed { background: #fdf0f0; color: #c0605a; border: 1px solid #e8b0aa; }
.tag-info { background: var(--green-mist); color: var(--green-mid); border: 1px solid var(--green-light); }
.news-entry-body { flex: 1; }
.news-entry-title { font-family: 'Noto Serif JP', serif; font-size: 16px; font-weight: 400; color: var(--green-deep); margin-bottom: 8px; line-height: 1.6; }
.news-entry-text { font-size: 13px; color: var(--text-mid); line-height: 1.9; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-mid); text-decoration: none; font-size: 13px; letter-spacing: 0.08em; margin-top: 48px; border-bottom: 1px solid var(--green-light); padding-bottom: 2px; transition: gap 0.2s; }
.back-link:hover { gap: 14px; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .fade-up { opacity: 0; transform: translateY(24px); }
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  #site-header { padding: 0 20px; }
  nav { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px; }
  .hero-right { height: 300px; }
  .hero-headline { font-size: 32px; }
  .news-inner { flex-direction: column; }
  .news-label { flex-direction: row; padding: 16px 24px; min-width: auto; }
  .news-list { padding: 0 24px; }
  .news-more { padding: 16px 24px; }
  #concept, #access { grid-template-columns: 1fr; padding: 60px 32px; }
  #features, #schedule, #doctors, #firstvisit { padding: 60px 32px; }
  .features-grid, .doctors-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .breadcrumb { padding: 16px 24px; }
  .news-entry { flex-wrap: wrap; gap: 12px; }
  footer { flex-direction: column; gap: 16px; padding: 32px; }
}
