:root{
  --bg:#f6f8f4;
  --text:#1f2a1f;
  --muted:#5a6b5a;
  --card:#ffffff;
  --border:#d7e6d0;
  --green:#7fbf7f;
  --green2:#a8d6a8;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;z-index:9999;
  background:#fff;padding:10px 12px;border-radius:10px;box-shadow:var(--shadow);
}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.site-header{background:#fff}
.header-top{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand-logo{
  width:160px;max-width:42vw;
}

.header-actions{
  display:flex;align-items:center;gap:12px;
}
.header-hours{display:none;text-align:right}
.header-hours__title{font-weight:700}
.header-hours__time{color:var(--muted);font-size:.92rem}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;
  border:1px solid var(--border);
  background:#fff;text-decoration:none;font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--green);
  border-color:var(--green);
  color:#0f2310;
}

.nav-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border-radius:12px;
  border:1px solid var(--border);
  background:#fff;font-weight:700;
}

.site-nav{
  display:none;
  border-top:1px solid #eef3ea;
  border-bottom:1px solid #eef3ea;
  padding:10px 0;
}
.site-nav a{
  display:block;
  padding:10px 18px;
  text-decoration:none;
  font-weight:800;
}
.site-nav a.is-active{
  color:#1a5c1a;
}
.site-nav.is-open{display:block}

/* ヒーロー（全ページ共通） */
.hero{
  position:relative;
  height:320px;
  background: url("/assets/img/top.png") center / cover no-repeat;
  overflow:hidden;
  border-bottom:1px solid #e9f1e4;
}
.hero::before{
  /* 上部をアーチ状 + ぼかし（参考：画像4の雰囲気） */
  content:"";
  position:absolute;
  top:-120px;
  left:-10%;
  width:120%;
  height:220px;
  background:rgba(255,255,255,.92);
  border-bottom-left-radius: 60% 100%;
  border-bottom-right-radius: 60% 100%;
  filter: blur(8px);
}
.hero::after{
  /* 下部の読みやすさ用の薄いグラデ */
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(255,255,255,0) 60%, rgba(255,255,255,.88) 100%);
}
.hero-inner{
  position:relative;
  height:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:18px;
  z-index:1;
}
.hero-catch{
  margin:0;
  font-weight:900;
  letter-spacing:.04em;
  background:rgba(255,255,255,.86);
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(215,230,208,.9);
  box-shadow:var(--shadow);
}

.main{padding:26px 0}

.section{margin:22px 0 34px}
.section-title{
  margin:0 0 8px;
  font-size:1.55rem;
  line-height:1.3;
}
.section-subtitle{
  margin:0 0 12px;
  font-size:1.2rem;
}
.lead{margin:0;color:var(--muted)}
.note{color:var(--muted);font-size:.92rem}

.cards{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:14px;
}
.card{
  display:block;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  text-decoration:none;
  box-shadow:var(--shadow);
}
.card-badge{
  display:inline-block;
  font-weight:900;
  font-size:.88rem;
  padding:6px 10px;
  border-radius:999px;
  background:#eef8ee;
  border:1px solid #d7edd7;
}
.card-title{
  margin:10px 0 6px;
  font-size:1.25rem;
  font-weight:900;
}
.card-text{color:var(--muted);margin:0}
.card-cta{margin-top:10px;font-weight:900;color:#1a5c1a}

/* パネル（画像2/3の枠っぽい感じ） */
.panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px 16px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  margin:14px 0;
}
.panel-title{
  margin:0 0 10px;
  padding:10px 12px;
  border-radius:14px;
  background:#eef7ea;
  border:1px solid #d9ead4;
  font-size:1.05rem;
  font-weight:900;
}
.bullets{margin:0;padding-left:1.2em}
.bullets li{margin:6px 0}

.schedule{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin:0;
}
.schedule > div{
  display:grid;
  grid-template-columns: 88px 1fr;
  gap:10px;
  padding:10px 12px;
  border:1px solid #eef3ea;
  border-radius:14px;
  background:#fff;
}
.schedule dt{font-weight:900}
.schedule dd{margin:0;color:var(--muted)}

.table{
  border:1px solid #eef3ea;
  border-radius:16px;
  overflow:hidden;
}
.table .row{
  display:grid;
  grid-template-columns: 120px 1fr;
  border-top:1px solid #eef3ea;
}
.table .row:first-child{border-top:none}
.table .th{
  background:#f3faf0;
  padding:12px;
  font-weight:900;
}
.table .td{padding:12px;color:var(--muted)}
.table .td a{color:#1a5c1a;font-weight:800}

.box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}

.cta{
  background:linear-gradient(180deg,#ffffff,#f0fbf0);
  border:1px solid #d7edd7;
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.cta-title{font-weight:900;font-size:1.1rem;margin:0 0 6px}
.cta-text{color:var(--muted);margin:0 0 12px}

.btn-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}

/* フォーム */
.form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.form-row{margin:12px 0}
label{display:block;font-weight:900;margin-bottom:6px}
input,textarea{
  width:100%;
  border:1px solid #dfe9d8;
  border-radius:14px;
  padding:12px;
  font-size:1rem;
  background:#fff;
}
textarea{resize:vertical}
.req{font-size:.85rem;color:#1a5c1a;margin-left:6px}

.alert{
  background:#fff0f0;
  border:1px solid #ffd1d1;
  border-radius:16px;
  padding:12px 14px;
  margin:14px 0;
}
.alert ul{margin:0;padding-left:1.2em}

.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}

/* フッター */
.site-footer{
  margin-top:34px;
  background:#fff;
  border-top:1px solid #eef3ea;
  padding:20px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding-bottom:18px;
}
.footer-title{font-weight:900;font-size:1.05rem}
.footer-text{margin:8px 0 0;color:var(--muted)}
.footer-card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  background:#fbfdfb;
}
.footer-card__label{font-weight:900;margin-bottom:10px}
.footer-dl{margin:0}
.footer-dl > div{display:grid;grid-template-columns:80px 1fr;gap:10px;margin:8px 0}
.footer-dl dt{font-weight:900}
.footer-dl dd{margin:0;color:var(--muted)}
.footer-bottom{
  border-top:1px solid #eef3ea;
  padding:12px 0;
  color:var(--muted);
}

/* レスポンシブ */
@media (min-width: 860px){
  .header-hours{display:block}
  .nav-toggle{display:none}
  .site-nav{
    display:flex;
    gap:18px;
    justify-content:center;
    padding:12px 0;
  }
  .site-nav a{
    padding:10px 12px;
    border-radius:12px;
  }
  .site-nav a:hover{background:#f2faf0}
  .cards{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1.2fr .8fr}
  .hero{height:360px}
}
