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

:root {
  --green:    #d4788a;
  --green-l:  #e8a0b0;
  --green-xl: #fdeef2;
  --warm:     #fdf8f9;
  --beige:    #f5e8eb;
  --dark:     #3a2028;
  --mid:      #6b4a52;
  --light:    #b88a94;
  --white:    #ffffff;
  --gold:     #c8a870;
}

html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--dark); background: var(--white); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ========== HEADER ========== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91,158,130,0.15);
  height: 70px;
}
.header-inner {
  max-width: 1100px; margin: 0 auto; height: 100%;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5em; letter-spacing: 0.2em; color: var(--green); font-weight: 600;
}
.logo-ja { font-size: 0.65em; letter-spacing: 0.2em; color: var(--light); }
nav { display: flex; align-items: center; gap: 32px; }
nav a {
  font-size: 0.78em; font-weight: 700; letter-spacing: 0.15em;
  color: var(--mid); position: relative; padding-bottom: 3px; transition: color 0.2s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width 0.3s;
}
nav a:hover { color: var(--green); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--green); }
.nav-reserve {
  background: var(--green); color: white !important;
  padding: 10px 22px; border-radius: 2px;
  font-size: 0.78em !important; letter-spacing: 0.15em;
  transition: background 0.2s;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover { background: var(--dark) !important; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding-top: 70px; height: 200px;
  background: var(--green-xl);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.page-hero-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75em; letter-spacing: 0.55em; color: var(--green); margin-bottom: 10px;
}
.page-hero h1 { font-size: 1.7em; font-weight: 900; letter-spacing: 0.08em; color: var(--dark); }

/* ========== SECTION ========== */
.section { padding: 90px 40px; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner-sm { max-width: 760px; margin: 0 auto; }
.sec-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.sec-label-line { width: 24px; height: 2px; background: var(--green); }
.sec-label span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8em; letter-spacing: 0.45em; color: var(--green);
}
.sec-title {
  font-size: clamp(1.5em, 2.5vw, 2em);
  font-weight: 900; letter-spacing: 0.06em; color: var(--dark);
  margin-bottom: 14px; line-height: 1.4;
}
.sec-divider { width: 32px; height: 2px; background: var(--green); margin-bottom: 32px; }
.sec-desc { font-size: 0.9em; line-height: 2.6; color: var(--mid); }

/* ========== BUTTON ========== */
.btn-green {
  display: inline-block;
  background: var(--green); color: white;
  padding: 15px 44px; font-size: 0.82em; font-weight: 700;
  letter-spacing: 0.2em; border-radius: 2px; transition: background 0.25s;
}
.btn-green:hover { background: var(--dark); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--green); color: var(--green);
  padding: 13px 40px; font-size: 0.82em; font-weight: 700;
  letter-spacing: 0.2em; border-radius: 2px; transition: all 0.25s;
}
.btn-outline:hover { background: var(--green); color: white; }

/* ========== NEWS ========== */
.news-list { list-style: none; }
.news-item {
  display: flex; align-items: baseline; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--beige);
}
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88em; color: var(--light); white-space: nowrap; min-width: 100px;
}
.news-cat {
  background: var(--green-xl); color: var(--green);
  font-size: 0.7em; font-weight: 700; letter-spacing: 0.1em;
  padding: 3px 10px; white-space: nowrap;
}
.news-title { font-size: 0.88em; color: var(--mid); line-height: 1.7; }

/* ========== FOOTER ========== */
footer {
  background: var(--dark); padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6em; letter-spacing: 0.2em; color: var(--green-l); display: block; margin-bottom: 4px;
}
.footer-logo-ja { font-size: 0.72em; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); }
.footer-desc { font-size: 0.8em; color: rgba(255,255,255,0.4); line-height: 2.2; margin-top: 16px; }
.footer-heading { font-size: 0.7em; letter-spacing: 0.3em; color: var(--green-l); font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.8em; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--green-l); }
.footer-info { font-size: 0.8em; color: rgba(255,255,255,0.4); line-height: 2.3; }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0;
  text-align: center; font-size: 0.72em; color: rgba(255,255,255,0.2); letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .header-inner { padding: 0 20px; }
  nav a:not(.nav-reserve) { display: none; }
  .section { padding: 60px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .page-hero { height: 150px; }
}
