:root{
  --bg:#0e3b2e;
  --bg-2:#0a2c22;
  --fg:#0b1f18;
  --paper:#f7f3ea;
  --ink:#163b2f;
  --brand:#1f6e5a;
  --accent:#d2a86a;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height:1.65;
  color:var(--fg);
  background:linear-gradient(180deg, var(--paper), #fff);
}
.container{width:min(1100px, 92vw); margin-inline:auto; padding:24px}
.header{
  background: radial-gradient(ellipse at top, var(--bg), var(--bg-2));
  color:#fff;
  text-align:center;
  padding:36px 16px 18px;
  position:relative;
  overflow:hidden;
}
.header .title-wrap{
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.header img{
  width:min(420px, 75vw);
  height:auto;
  display:block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.3));
  border-radius:12px;
}
.header h1{
  font-size: clamp(28px, 4.5vw, 42px);
  letter-spacing:.06em;
  margin:12px 0 0;
  font-weight:800;
}
.header p{
  margin: 6px 0 0;
  opacity:.95;
}
.badge{
  display:inline-block;
  padding:6px 12px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:999px;
  font-size:.9rem;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.08);
}
.nav{
  display:flex; justify-content:center; gap:18px; flex-wrap:wrap;
  padding:14px 0 22px;
}
.nav a{
  color:#fff; text-decoration:none; font-weight:600; padding:8px 12px; border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
}
.nav a:hover{background:rgba(255,255,255,.12)}

.section{padding:56px 0; background:#fff}
.section.alt{background: #faf7f2}
.section h2{
  margin:0 0 18px; font-size: clamp(22px, 3.8vw, 30px);
  border-left:8px solid var(--brand);
  padding-left:12px;
}
.grid{
  display:grid; gap:18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card{
  background:#fff; border:1px solid #e8e2d6; border-radius:16px; padding:18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.card h3{margin:6px 0 8px; font-size:1.1rem}
.card p{margin:0; color:#2e4139}
.list{margin:0; padding-left:20px}
.kv{
  display:grid; grid-template-columns: 1fr; gap:18px; align-items:center;
}
.kv .lead{font-size:1.1rem}
@media(min-width:900px){
  .kv{grid-template-columns: 1.1fr .9fr}
}
.cta{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center; margin-top:12px
}
.cta a,.cta button{
  text-decoration:none; border:0; padding:12px 16px; border-radius:12px; font-weight:700;
  background: var(--brand); color:#fff; cursor:pointer;
}
.cta a.secondary{
  background:transparent; color:var(--brand); border:2px solid var(--brand);
}
.notice{
  border-left:6px solid var(--accent);
  background:#fff6e8; padding:12px 14px; border-radius:10px; margin:8px 0 0;
}
.table{
  width:100%; border-collapse: collapse;
}
.table th, .table td{ border:1px solid #e8e2d6; padding:10px; text-align:left}
.table th{background:#f3eee4}
.footer{
  background: var(--bg-2); color:#cfe7de; padding:28px 0; font-size:.95rem
}
.footer a{color:#e9f5f0}
.small{font-size:.92rem; color:#50665b}
.address{white-space:pre-line}
hr.sep{border:0; border-top:1px dashed #e4dccb; margin:24px 0}