:root {
  --paper: #fffaf1;
  --ink: #2f2924;
  --muted: #6e6359;
  --line: #e8dccb;
  --brand: #d34f2f;
  --brand-dark: #963a27;
  --sky: #d8eef4;
  --leaf: #4e7f60;
  --white: #fff;
  --shadow: 0 18px 50px rgba(72, 48, 31, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
img { max-width: 100%; height: auto; display: block; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--white); padding: 8px 12px; z-index: 99; }
.skip:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: .02em; }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: var(--white); display: grid; place-items: center; font-size: 13px; line-height: 1.1; }
.nav { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
.nav a:hover { color: var(--brand-dark); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); padding: 8px 10px; font-weight: 800; }

.hero {
  min-height: 690px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(40, 28, 22, .80), rgba(40, 28, 22, .34) 52%, rgba(40, 28, 22, .10)),
    url("hero-sora-no-eki.webp?v=2") center / cover no-repeat;
  display: grid;
  align-items: center;
}
.hero .wrap { width: min(1120px, calc(100% - 32px)); }
.hero-content { max-width: none; padding: 80px 0 110px; }
.eyebrow { color: var(--brand-dark); font-weight: 900; letter-spacing: .08em; font-size: 13px; }
.hero .eyebrow { color: #ffd6bf; }
h1, h2, h3 { line-height: 1.35; margin: 0 0 18px; letter-spacing: .02em; text-wrap: balance; }
h1 { font-size: clamp(38px, 7vw, 76px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 22px; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(17px, 2vw, 21px); }
.hero h1 {
  max-width: 960px;
  margin-bottom: 26px;
  line-height: 1.16;
  text-shadow: 0 4px 26px rgba(0,0,0,.52), 0 0 2px rgba(0,0,0,.55);
}
.hero h1 .line { white-space: nowrap; }
.hero-statement {
  display: grid;
  gap: 2px;
  margin: 16px 0 24px;
  color: #fff6ee;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: .04em;
  text-shadow: 0 3px 18px rgba(0,0,0,.58), 0 0 1px rgba(0,0,0,.7);
}
.hero .lead { max-width: 940px; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.line { display: block; }
.no-break { white-space: nowrap; }
.buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}
.button.secondary { background: var(--white); color: var(--brand-dark); border-color: var(--line); }
.button.ghost { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.45); }

main section { padding: 78px 0; }
.band { background: var(--white); border-block: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(72, 48, 31, .06);
}
.card h3 { color: var(--brand-dark); }
.note-list, .link-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.note-list li { padding-left: 22px; position: relative; }
.note-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); position: absolute; left: 0; top: .72em; }
.answer-box {
  background: #edf8f8;
  border: 1px solid #cae6e6;
  border-radius: var(--radius);
  padding: 24px;
}
.photo-panel {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: url("hero-sora-no-eki.webp?v=2") center / cover no-repeat;
  box-shadow: var(--shadow);
}
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  background: var(--sky);
}
.breadcrumb { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.page-hero { padding: 66px 0 56px; background: linear-gradient(180deg, #fff4e7, var(--paper)); }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.section-title { max-width: 780px; margin-bottom: 34px; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin-bottom: 8px; font-size: 20px; }
.cta-final {
  background: var(--ink);
  color: var(--white);
  padding: 82px 0;
}
.cta-final .button.secondary { color: var(--ink); }
.site-footer {
  background: #31251f;
  color: #f8efe2;
  padding: 54px 0 86px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; }
.site-footer a { color: #f8efe2; }
.footer-small { color: #d7c8b8; font-size: 13px; }
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: var(--white);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}
.mobile-cta a { padding: 9px 4px; text-align: center; text-decoration: none; font-weight: 800; font-size: 12px; color: var(--brand-dark); }

@media (max-width: 880px) {
  .menu-button { display: inline-flex; }
  .nav { position: absolute; inset: 72px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .hero { min-height: 620px; background-position: center; }
  .two-col, .grid, .grid.three, .footer-grid { grid-template-columns: 1fr; }
  .hero h1 .line { white-space: normal; }
  .line { display: inline; }
  .line::after { content: "\A"; white-space: pre; }
  main section { padding: 58px 0; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 54px; }
}
