:root{
  --sky:#41C7F4;
  --pink:#F48E92;
  --teal:#34BB9C;
  --green:#8AC65A;
  --yellow:#FFCE01;
  --orange:#F89D49;
  --ink:#14384B;
  --ink-soft:#5A7484;
  --paper:#FFFCF5;
  --accent:var(--sky);
  --img-festa:url("../images/festa.png");
  --img-hapimaru:url("../images/yamauchi.png");
  --img-hapimaru-brand:url("../images/hapimaru.png");
  --img-setonami:url("../images/setonami.png");
  --display:"Zen Maru Gothic","Hiragino Maru Gothic ProN","ヒラギノ丸ゴ ProN",sans-serif;
  --body:"Noto Sans JP","Hiragino Sans","ヒラギノ角ゴシック",sans-serif;
  /* 区切り線 (青い波線) */
  --wave:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='10' viewBox='0 0 24 10'%3E%3Cpath d='M0 5 Q 6 1.5 12 5 T 24 5' fill='none' stroke='%2341C7F4' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* 波線の区切り (wave-t=上辺 / wave-b=下辺) */
.wave-t,.wave-b{position:relative}
.wave-t::before,.wave-b::after{
  content:"";position:absolute;left:0;right:0;height:10px;
  background:var(--wave) repeat-x center;background-size:24px 10px;
  pointer-events:none;
}
.wave-t::before{top:0}
.wave-b::after{bottom:0}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:78px}
body{
  margin:0;font-family:var(--body);color:var(--ink);
  background:var(--paper);line-height:1.9;font-size:16px;
  -webkit-text-size-adjust:100%;overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
h1,h2,h3{font-family:var(--display);line-height:1.35;margin:0}

/* ロゴ (data URI/相対パスを1回だけ読み込む背景描画) */
.logo{display:block;background-repeat:no-repeat;background-position:center;background-size:contain;flex:none}
.logo-festa{background-image:var(--img-festa)}
.logo-hapimaru{background-image:var(--img-hapimaru)}
.logo-setonami{background-image:var(--img-setonami)}
.logo-hapimaru-brand{background-image:var(--img-hapimaru-brand)}
/* ハピマルロゴ(YAMAUCHI×セトナミの下・中央) */
.hero-hapimaru-wrap{display:flex;justify-content:center;margin:14px 0 0}
.hero-hapimaru{width:190px;height:53px}

/* ---------- header ---------- */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(255,252,245,.92);backdrop-filter:blur(8px);
  box-shadow:0 2px 12px rgba(20,56,75,.10);
}
.header-inner{max-width:1200px;margin:0 auto;padding:10px 18px;display:flex;align-items:center;gap:16px}
.header-logo{width:66px;height:34px}
.header-nav{margin-left:auto;display:flex;align-items:center;gap:20px}
.header-nav a{font-family:var(--display);font-weight:700;font-size:14px;text-decoration:none;padding:4px 0;border-bottom:3px solid transparent}
.header-nav a:hover,.header-nav a:focus-visible{border-bottom-color:var(--sky)}
.header-cta{font-family:var(--display);font-weight:700;font-size:13px;background:#E9EEF1;color:var(--ink-soft);border:2px solid var(--ink-soft);border-radius:999px;padding:7px 16px;white-space:nowrap}

/* ハンバーガーボタン (SP専用) */
.nav-toggle{
  display:none;
  -webkit-appearance:none;appearance:none;
  flex:0 0 auto;flex-shrink:0;
  width:44px;height:44px;min-width:44px;padding:0;margin:0;
  background:#fff;color:var(--ink);
  border:2px solid var(--ink);border-radius:12px;
  cursor:pointer;align-items:center;justify-content:center;
  -webkit-tap-highlight-color:transparent;
}
.nav-toggle svg{display:block;width:24px;height:24px;flex:none}
.nav-toggle .icon-close{display:none}
.site-header.is-open .nav-toggle .icon-menu{display:none}
.site-header.is-open .nav-toggle .icon-close{display:block}

@media(max-width:820px){
  .site-header{position:sticky}
  .header-inner{position:relative}
  .nav-toggle{display:flex}
  .header-cta{margin-left:auto;font-size:12px;padding:6px 12px}
  .header-nav{
    display:none;position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:#fff;border-top:2px solid var(--ink);border-bottom:3px solid var(--ink);
    padding:0 18px;box-shadow:0 10px 20px rgba(20,56,75,.14);
  }
  .site-header.is-open .header-nav{display:flex}
  .header-nav a{
    font-size:15.5px;padding:13px 12px;border-bottom:2px dashed #C9D6DD;
    border-radius:0;
  }
  .header-nav a:last-child{border-bottom:none}
  .header-nav a:hover,.header-nav a:focus-visible{border-bottom-color:#C9D6DD;background:#F4FAFD}
  .header-nav a:last-child:hover,.header-nav a:last-child:focus-visible{border-bottom-color:transparent}
}
@media(max-width:400px){
  .header-cta{font-size:11px;padding:5px 10px}
  .header-logo{width:56px;height:30px}
}

/* ---------- layout ---------- */
.section{padding:84px 18px}
.inner{max-width:1200px;margin:0 auto}
.narrow{max-width:760px;margin:0 auto}
.tag{display:inline-flex;align-items:center;gap:12px;background:#fff;border:3px solid var(--ink);border-radius:16px;padding:12px 26px 12px 20px;box-shadow:6px 6px 0 var(--accent);position:relative}
.tag::before{content:"";width:14px;height:14px;border-radius:50%;background:var(--accent);border:3px solid var(--ink);flex:none}
.tag h2{font-size:clamp(21px,3.4vw,28px);font-weight:900;letter-spacing:.02em}
.head-wrap{margin-bottom:38px}
.lead{margin:22px 0 0;color:var(--ink-soft);font-size:15px}
.lead-note{display:block;font-size:12.5px;margin-top:8px;opacity:.85}

/* ---------- hero ---------- */
.hero{
  position:relative;overflow:hidden;padding:52px 18px 72px;
  background:
    radial-gradient(52% 46% at 50% 38%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,0) 72%),
    radial-gradient(58% 52% at 12% 16%, rgba(65,199,244,.34) 0%, transparent 60%),
    radial-gradient(50% 46% at 88% 10%, rgba(255,206,1,.40) 0%, transparent 58%),
    radial-gradient(56% 50% at 84% 84%, rgba(52,187,156,.32) 0%, transparent 60%),
    radial-gradient(50% 46% at 8% 88%, rgba(244,142,146,.34) 0%, transparent 58%),
    radial-gradient(40% 40% at 50% 55%, rgba(138,198,90,.18) 0%, transparent 62%),
    var(--paper);
}
/* 装飾ドット・ダッシュ */

/* 散りばめイラスト (最大1200px幅の中央帯に収め、端に寄りすぎないよう内側へ) */
.hero-deco{position:absolute;top:0;bottom:0;left:50%;transform:translateX(-50%);width:100%;max-width:1200px;z-index:2;pointer-events:none}
.hero-deco img{position:absolute;filter:drop-shadow(0 6px 10px rgba(20,56,75,.10));animation-name:hop;animation-duration:2.8s;animation-timing-function:ease-in-out;animation-iteration-count:infinite}
.d-police   {width:clamp(78px,10vw,128px); top:6%;   left:5%;  animation-delay:0s}
.d-fire     {width:clamp(78px,10vw,130px); top:4%;   right:5%; animation-delay:.35s}
.d-florist  {width:clamp(42px,5vw,66px);   top:31%;  left:9%;  animation-delay:.7s}
.d-mechanic {width:clamp(48px,6vw,82px);   top:58%;  left:4%;  animation-delay:1.05s}
.d-builder  {width:clamp(58px,7vw,94px);   top:26%;  right:7%; animation-delay:1.4s}
.d-staff    {width:clamp(96px,13vw,168px); top:52%;  right:3%; animation-delay:.9s}
.d-policecar{width:clamp(90px,12vw,158px); bottom:6%;left:7%;  animation-delay:1.75s}
.d-kids     {width:clamp(80px,10vw,130px); bottom:1%;left:24%; animation-delay:2.1s}
.d-firetruck{width:clamp(94px,13vw,166px); bottom:6%;right:6%; animation-delay:.5s}
/* 中間幅: 側面の余白が狭くパネルに重なるため、上下コーナーの4体のみに */
@media(max-width:1160px){
  .d-mechanic,.d-builder,.d-florist,.d-kids,.d-staff{display:none}
  .d-police   {top:1.5%;   left:2%;  width:clamp(56px,9vw,96px)}
  .d-fire     {top:1.5%;   right:2%; width:clamp(56px,9vw,96px)}
  .d-policecar{bottom:1.5%; left:2%;  width:clamp(72px,11vw,122px)}
  .d-firetruck{bottom:1.5%; right:2%; width:clamp(72px,11vw,122px)}
}
@media(max-width:767px){
  /* SP: メインビジュアルのキャラを非表示 */
  .hero-deco{display:none}
}
@media(max-width:560px){
  .host-hapimaru{width:126px;height:30px}
  .host-setonami{width:106px;height:25px}
  .hero-hapimaru{width:158px;height:44px}
  .host-row{gap:10px}
}

/* ふんわり上下 / 控えめなぽよん */
@keyframes floaty{0%,100%{transform:translateY(0)}50%{transform:translateY(-11px)}}
@keyframes hop{0%,100%{transform:translateY(0)}22%{transform:translateY(-15px)}40%{transform:translateY(0)}52%{transform:translateY(-5px)}64%{transform:translateY(0)}}

.hero-inner{position:relative;z-index:3;max-width:760px;margin:0 auto;text-align:center}
.host-row{display:flex;align-items:center;justify-content:center;gap:14px;margin-bottom:22px;flex-wrap:wrap}
.host-hapimaru{width:146px;height:35px}
.host-setonami{width:126px;height:29px}
.host-x{font-family:var(--display);font-weight:900;font-size:17px;color:var(--ink)}

/* 中央パネルは撤廃。背景の白抜きにロゴを直接配置 */
.hero-stage{padding:14px 12px 6px}
.hero-logo{max-width:560px;margin:0 auto}
.hero-logo-img{width:100%;aspect-ratio:900/486}
.catch{font-family:var(--display);font-weight:900;font-size:clamp(22px,5vw,38px);margin:22px 0 0;letter-spacing:.01em}
.catch em{font-style:normal;color:#0FA8DE}
.hero-sub{margin:14px auto 0;max-width:560px;font-size:clamp(13.5px,2.4vw,15.5px);font-weight:500;color:var(--ink-soft)}

/* 開催概要を1枚のカードにまとめる */
.info-card{
  background:#fff;border:3px solid var(--ink);border-radius:24px;
  box-shadow:6px 6px 0 rgba(20,56,75,.14);
  padding:30px 34px;max-width:760px;margin:34px auto 0;
}
/* 日時・会場 横並び */
.key-facts{display:flex;gap:0;margin:0;justify-content:stretch}
.fact{flex:1;border:none;box-shadow:none;background:transparent;padding:6px 22px;min-width:0;text-align:center;position:relative}
.fact.date-card{padding-right:22px}
.fact-label{display:inline-block;background:var(--sky);color:#fff;font-family:var(--display);font-weight:700;font-size:13.5px;padding:4px 16px;border-radius:999px;letter-spacing:.04em;margin-bottom:8px}
.date-big{font-family:var(--display);font-weight:900;font-size:clamp(48px,10vw,66px);line-height:1;letter-spacing:-.01em;margin:6px 0 0;text-align:center}
.date-big .yr{display:block;font-size:.32em;line-height:1;margin:0 0 4px;color:var(--ink-soft);letter-spacing:.04em}
.date-big .md{display:block;line-height:1}
.date-big .dow{font-size:.32em;vertical-align:.55em;margin-left:.12em;color:#fff;background:var(--pink);border-radius:999px;padding:.14em .52em}
.fact-time{font-family:var(--display);font-weight:700;font-size:22px;margin:8px 0 0;color:var(--ink)}
.fact-place{font-family:var(--display);font-weight:700;font-size:22px;margin:0;line-height:1.5}
.fact-addr{font-size:15px;color:var(--ink-soft);margin:8px 0 0}

/* 対象バッジ 中央 */
.hero-meta{display:flex;justify-content:center;margin:24px 0}
.chip{font-family:var(--display);font-weight:700;font-size:15.5px;background:#fff;border:2px solid var(--ink);border-radius:999px;padding:9px 22px}
.chip.c1{background:var(--yellow)}

/* 参加費・申込 横並び */
.hero-facts{display:flex;max-width:none;margin:0;padding:0;gap:0}
.hero-facts > div{flex:1;border:none;background:transparent;padding:6px 22px;text-align:center}
.hero-facts dt{display:inline-block;background:var(--teal);color:#fff;font-family:var(--display);font-weight:700;font-size:13.5px;padding:4px 16px;border-radius:999px;letter-spacing:.04em;margin-bottom:8px}
.hero-facts dd{margin:0;font-family:var(--display);font-weight:700;font-size:22px;color:var(--ink)}
.facts-note{text-align:center;font-size:13px;color:var(--ink-soft);margin:18px 0 0;line-height:1.7}

@media(max-width:560px){
  .info-card{padding:26px 20px}
  .key-facts{flex-direction:column}
  .fact{padding:6px 4px}
  .fact.date-card{padding-right:4px}
  .fact.place-card{margin-top:18px}
  .hero-facts{flex-direction:column}
  .hero-facts > div{padding:6px 4px}
  .hero-facts > div + div{margin-top:18px}
  .hero-facts dd{font-size:21px;white-space:nowrap}
}
@media(max-width:340px){
  .hero-facts dd{font-size:19px}
}

.cta-wrap{margin:32px 0 0;text-align:center}
.cta{display:inline-flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:900;font-size:19px;background:#E4EAEE;color:#5E7A88;border:3px solid #9DB0BA;border-radius:999px;padding:16px 46px;cursor:not-allowed}
.cta.is-live{background:var(--orange);color:#fff;border-color:var(--ink);cursor:pointer;text-decoration:none;box-shadow:4px 4px 0 rgba(20,56,75,.15);transition:transform .12s ease,box-shadow .12s ease}
.cta.is-live:hover,.cta.is-live:focus-visible{background:#F58C33;transform:translateY(-2px);box-shadow:5px 6px 0 rgba(20,56,75,.18)}
.header-cta.is-live{background:var(--orange);color:#fff;border-color:var(--orange);text-decoration:none}
.header-cta.is-live:hover,.header-cta.is-live:focus-visible{background:#F58C33}
.cta-note{margin:14px 0 0;font-size:13px;color:var(--ink-soft)}

/* ---------- 概要 ---------- */
.overview{background:#fff}
.dl{margin:0;border-top:2px dashed #C9D6DD}
.dl-row{display:grid;grid-template-columns:170px 1fr;border-bottom:2px dashed #C9D6DD}
.dl dt{font-family:var(--display);font-weight:700;font-size:14.5px;padding:18px 16px;background:#F4FAFD;display:flex;align-items:center}
.dl dd{margin:0;padding:18px 16px;font-size:15px}
.dl dd strong{font-family:var(--display);font-weight:700}
.note{font-size:13px;color:var(--ink-soft);margin-top:6px}
@media(max-width:640px){
  .dl-row{grid-template-columns:1fr}
  .dl dt{padding:12px 14px 6px;background:transparent;font-size:13px;color:var(--ink-soft);letter-spacing:.08em}
  .dl dd{padding:0 14px 16px}
}

/* ---------- 準備中カード ---------- */
.coming{background:#fff;border:3px dashed var(--accent);border-radius:24px;padding:44px 26px;text-align:center}
.coming-badge{display:inline-block;font-family:var(--display);font-weight:900;font-size:14px;background:var(--accent);color:#fff;border-radius:999px;padding:5px 20px;letter-spacing:.06em}
.coming h3{font-size:clamp(19px,3.4vw,24px);font-weight:900;margin:18px 0 0}
.coming p{margin:12px auto 0;max-width:520px;font-size:14.5px;color:var(--ink-soft)}
.tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:12px;margin:30px auto 0;max-width:660px}
.tile{aspect-ratio:1/.72;border-radius:16px;border:2px solid rgba(20,56,75,.16);display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:900;font-size:26px;color:rgba(20,56,75,.28)}
.tile:nth-child(1){background:rgba(65,199,244,.16)}
.tile:nth-child(2){background:rgba(244,142,146,.16)}
.tile:nth-child(3){background:rgba(52,187,156,.16)}
.tile:nth-child(4){background:rgba(255,206,1,.20)}
.tile:nth-child(5){background:rgba(138,198,90,.18)}
.tile:nth-child(6){background:rgba(248,157,73,.18)}

/* ---------- 出展事業者カード ---------- */
.exhibitors{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}
.ex-card{background:#fff;border:3px solid var(--ink);border-radius:22px;overflow:hidden;box-shadow:6px 6px 0 rgba(20,56,75,.12);display:flex;flex-direction:column;transition:transform .18s ease,box-shadow .18s ease}
.ex-card:not(.is-empty):hover{transform:translateY(-4px);box-shadow:8px 10px 0 rgba(20,56,75,.14)}
.ex-link{display:flex;flex-direction:column;flex:1;text-decoration:none;color:inherit}
.ex-link:focus-visible{outline:3px solid var(--sky);outline-offset:3px}
.ex-photo{aspect-ratio:3/2;background:#EAF6FC;border-bottom:3px solid var(--ink);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}
/* 参加費・予約状況バッジ(本文下に並べる) */
.ex-badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.badge{font-family:var(--display);font-weight:900;font-size:12.5px;letter-spacing:.02em;border:2px solid var(--ink);border-radius:999px;padding:4px 14px;background:#fff;line-height:1.3;white-space:nowrap}
.badge-fee.is-free{background:var(--green);color:#173F1C}
.badge-fee.is-paid{background:var(--yellow);color:var(--ink)}
.badge-status.is-open{background:var(--sky);color:#0A4B66}
.badge-status.is-full{background:#E0E5E8;color:#7A8B94;border-color:#7A8B94}
.badge-status.is-none{background:var(--teal);color:#fff;border-color:var(--teal)}
.badge-status.is-before{background:#EFE3C5;color:#8A6D2F;border-color:#C9AE76}
.ex-photo img{width:100%;height:100%;object-fit:cover}
.ex-soon{font-family:var(--display);font-weight:900;font-size:17px;color:rgba(20,56,75,.34);letter-spacing:.08em}
.ex-body{padding:20px 22px 24px;flex:1;display:flex;flex-direction:column}
.ex-company{margin:0;font-size:13px;font-weight:700;color:var(--ink-soft)}
.ex-title{font-size:19px;font-weight:900;margin:6px 0 0}
.ex-desc{margin:10px 0 0;font-size:14.5px;color:var(--ink-soft);flex:1}
.ex-card.is-empty{background:#FBFDFE;border-style:dashed;border-color:var(--sky);box-shadow:none}
.ex-card.is-empty .ex-photo{background:repeating-linear-gradient(45deg,#F2FAFD,#F2FAFD 10px,#EAF6FC 10px,#EAF6FC 20px);border-bottom:3px dashed var(--sky)}
.ex-card.is-empty .ex-title{font-size:16px;color:var(--ink-soft)}

/* イメージ写真の注記 */
.ex-photo{position:relative}
.img-note{
  position:absolute;right:8px;bottom:8px;
  font-family:var(--body);font-weight:700;font-size:11px;letter-spacing:.04em;
  background:rgba(20,56,75,.78);color:#fff;border-radius:6px;padding:3px 9px;
}
.detail-photo{position:relative}
.detail-photo .img-wrap{position:relative;display:block}
.detail-photo .img-note{right:14px;bottom:14px;font-size:12px;padding:4px 11px}
.photo-caption{margin:10px 0 0;font-size:12.5px;color:var(--ink-soft);text-align:center}

/* ---------- 出展事業者 詳細ページ ---------- */
.crumb{font-size:13px;color:var(--ink-soft);margin:0 0 30px}
.crumb a{text-decoration:none;border-bottom:1px solid rgba(20,56,75,.25)}
.crumb a:hover,.crumb a:focus-visible{border-bottom-color:var(--sky);color:#0F7FA8}
.crumb span{margin:0 .5em;opacity:.5}

.detail-head{text-align:center;max-width:760px;margin:0 auto}
.detail-company{font-family:var(--display);font-weight:700;font-size:15px;color:var(--ink-soft);margin:0}
.detail-title{font-size:clamp(26px,5.4vw,40px);font-weight:900;margin:8px 0 0}
.detail-catch{font-family:var(--display);font-weight:700;font-size:clamp(16px,3vw,20px);color:#0F7FA8;margin:16px 0 0}

.detail-photo{margin:36px auto 0;max-width:900px}
.detail-photo img{width:100%;height:auto;display:block;border:3px solid var(--ink);border-radius:22px;box-shadow:6px 6px 0 rgba(20,56,75,.12)}

.detail-body{max-width:760px;margin:44px auto 0;font-size:16px;line-height:2.05}
.detail-body p{margin:0}
.detail-body.detail-card{background:#fff;border:3px solid var(--ink);border-radius:22px;box-shadow:6px 6px 0 rgba(20,56,75,.12);padding:28px 32px;margin-top:30px}
@media(max-width:560px){
  .detail-body.detail-card{padding:22px 20px;font-size:15px}
}

.gallery{max-width:900px;margin:34px auto 0;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.gallery img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3;display:block;border:3px solid var(--ink);border-radius:18px}

.spec{max-width:760px;margin:44px auto 0;background:#fff;border:3px solid var(--ink);border-radius:22px;padding:30px 30px 32px;box-shadow:6px 6px 0 rgba(20,56,75,.12)}
.spec h2{font-size:19px;font-weight:900;display:flex;align-items:center;gap:10px}
.spec h2::before{content:"";width:12px;height:12px;border-radius:50%;background:var(--accent);border:3px solid var(--ink);flex:none}
.spec ul.do-list{margin:18px 0 0;padding-left:1.3em;font-size:15.5px}
.spec ul.do-list li{margin-bottom:10px}
.spec ul.do-list li::marker{color:var(--sky)}
.spec + .spec{margin-top:22px}
.spec .dl{border-top:2px dashed #C9D6DD;margin-top:18px}
.spec .dl-row{grid-template-columns:130px 1fr}
.spec .dl dt{background:transparent;padding:15px 4px}
.spec .dl dd{padding:15px 4px}
.time-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:8px}
.time-list li{font-family:var(--display);font-weight:700;font-size:14.5px;background:#EAF6FC;border:2px solid var(--sky);color:#0F7FA8;border-radius:999px;padding:5px 14px}
/* グループ別の色(A=青 / B=緑 / 個別=ピンク) */
.time-list.is-a li{background:#EAF6FC;border-color:var(--sky);color:#0F7FA8}
.time-list.is-b li{background:#F0F8E9;border-color:var(--green);color:#4A8C1F}
.time-list.is-kobetsu li{background:#FDEFF1;border-color:var(--pink);color:#C2506A}
@media(max-width:560px){
  .spec{padding:24px 20px 26px}
  .spec .dl-row{grid-template-columns:1fr}
  .spec .dl dt{padding:12px 2px 4px;font-size:13px;color:var(--ink-soft)}
  .spec .dl dd{padding:0 2px 14px}
}

.back-link{text-align:center;margin:48px auto 0}
.back-link a{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--display);font-weight:700;font-size:15px;text-decoration:none;
  background:#fff;border:3px solid var(--ink);border-radius:999px;padding:12px 28px;
  box-shadow:4px 4px 0 rgba(20,56,75,.12);
}
.back-link a:hover,.back-link a:focus-visible{background:#F4FAFD}



.steps{list-style:none;padding:0;margin:0;display:grid;gap:16px}
.step{background:#fff;border:3px solid var(--ink);border-radius:20px;padding:22px 24px;display:grid;grid-template-columns:52px 1fr;gap:18px;align-items:start;box-shadow:5px 5px 0 rgba(20,56,75,.12)}
.step-no{width:52px;height:52px;border-radius:50%;border:3px solid var(--ink);display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:900;font-size:20px;background:var(--accent);color:#fff}
.step:nth-child(1) .step-no{background:var(--sky)}
.step:nth-child(2) .step-no{background:var(--pink)}
.step:nth-child(3) .step-no{background:var(--teal)}
.step h3{font-size:17px;font-weight:900}
.step p{margin:6px 0 0;font-size:14.5px;color:var(--ink-soft)}
.step-lead{font-family:var(--display);font-weight:700;color:var(--ink) !important;background:#FFF6E0;border:2px solid var(--yellow);border-radius:10px;padding:8px 14px;display:inline-block;font-size:14.5px !important}
.step-list{margin:12px 0 0;padding-left:1.2em;font-size:14px;color:var(--ink-soft)}
.step-list li{margin-bottom:6px}
.step-list li::marker{color:var(--orange)}
.step-sub{font-family:var(--display);font-weight:900;font-size:15px;color:var(--ink);margin:16px 0 4px;display:flex;align-items:center;gap:8px}
.step-sub::before{content:"";width:12px;height:12px;border-radius:50%;background:var(--orange);flex:none}
.step-sub.is-onsite::before{background:var(--teal)}
.step-block p{margin:0}
@media(max-width:520px){.step{grid-template-columns:1fr;gap:12px}}

.note-box{margin:28px 0 0;background:#FFF3F3;border:3px solid var(--pink);border-radius:18px;padding:22px 24px}
.note-box h3{font-size:16px;font-weight:900}
.note-box p{margin:8px 0 0;font-size:14.5px;color:var(--ink-soft)}

.notes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:18px}
.note-card{background:#fff;border:3px solid var(--ink);border-radius:20px;padding:24px 24px 26px;box-shadow:5px 5px 0 rgba(20,56,75,.12)}
.note-card h3{font-size:17px;font-weight:900;display:flex;align-items:center;gap:10px}
.note-card h3::before{content:"";width:11px;height:11px;border-radius:50%;background:var(--accent);border:3px solid var(--ink);flex:none}
.note-card h4{font-size:14.5px;font-weight:700;margin:14px 0 0;color:#C0392B}
.note-card p{margin:10px 0 0;font-size:14px;color:var(--ink-soft);line-height:1.95}
.note-card ul{margin:12px 0 0;padding-left:1.2em;font-size:14px;color:var(--ink-soft)}
.note-card ul li{margin-bottom:8px}
.note-card ul li::marker{color:var(--sky)}
.note-card strong{color:var(--ink)}

/* ---------- アクセス ---------- */
.access-card{
  background:#fff;border:3px solid var(--ink);border-radius:24px;padding:32px 30px;
  box-shadow:6px 6px 0 rgba(20,56,75,.12);
  display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:34px;align-items:start;
}
.access-info{min-width:0}
.access-card h3{font-size:19px;font-weight:900}
.access-card .addr{font-size:16px;margin:8px 0 0}
.map-link{display:inline-flex;align-items:center;gap:8px;margin-top:18px;font-family:var(--display);font-weight:700;font-size:14.5px;background:var(--teal);color:#fff;text-decoration:none;border:3px solid var(--ink);border-radius:999px;padding:10px 24px}
.map-link:hover,.map-link:focus-visible{background:#2AA98C}
.map-link-park{background:var(--sky);margin-top:14px}
.map-link-park:hover,.map-link-park:focus-visible{background:#20B5EC}
.map-fig{margin:0;min-width:0}
.map-fig img{display:block;width:100%;max-width:820px;height:auto;margin:0 auto;border:3px solid var(--ink);border-radius:16px;background:#fff}
@media(max-width:860px){
  .access-card{grid-template-columns:1fr;gap:26px}
}
@media(max-width:560px){
  .access-card{padding:26px 20px}
  .map-link{width:100%;justify-content:center}
}

/* スクロールトップボタン */
.to-top{
  position:fixed;right:20px;bottom:20px;z-index:70;
  -webkit-appearance:none;appearance:none;
  width:52px;height:52px;padding:0;margin:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--sky);color:#fff;
  border:3px solid var(--ink);border-radius:50%;
  box-shadow:0 4px 12px rgba(20,56,75,.22);
  cursor:pointer;-webkit-tap-highlight-color:transparent;
  opacity:0;visibility:hidden;transform:translateY(12px);
  transition:opacity .25s ease,transform .25s ease,visibility .25s;
}
.to-top.is-visible{opacity:1;visibility:visible;transform:none}
.to-top:hover,.to-top:focus-visible{background:#20B5EC}
.to-top svg{display:block;width:24px;height:24px}
@media(max-width:560px){
  .to-top{right:14px;bottom:14px;width:46px;height:46px}
  .to-top svg{width:21px;height:21px}
}
@media(prefers-reduced-motion:reduce){
  .to-top{transition:none}
}
.parking{margin-top:26px;border-top:2px dashed #C9D6DD;padding-top:22px}
.parking ul{margin:10px 0 0;padding-left:1.2em;font-size:14.5px}
.parking li{margin-bottom:6px}
.warn{margin-top:14px;background:#FFF3F3;border:2px solid var(--pink);border-radius:12px;padding:12px 16px;font-size:14px;font-weight:700}

/* ---------- FAQ ---------- */
.faq{display:grid;gap:12px}
.faq details{background:#fff;border:3px solid var(--ink);border-radius:16px;overflow:hidden}
.faq summary{cursor:pointer;list-style:none;padding:18px 52px 18px 22px;font-family:var(--display);font-weight:700;font-size:15.5px;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"＋";position:absolute;right:20px;top:50%;transform:translateY(-50%);font-family:var(--display);font-weight:900;color:var(--sky);font-size:20px}
.faq details[open] summary::after{content:"−"}
.faq .ans{padding:16px 22px 20px;font-size:14.5px;color:var(--ink-soft);border-top:2px dashed #C9D6DD}

/* ---------- 問い合わせ (シンプル・白背景) ---------- */
.contact{background:#fff;border:3px solid var(--ink);border-radius:28px;padding:44px 28px;text-align:center;box-shadow:6px 6px 0 rgba(20,56,75,.12)}
.contact h2{font-size:clamp(20px,3.4vw,26px);font-weight:900;color:var(--ink)}
.contact p{margin:12px auto 0;max-width:520px;font-size:14.5px;color:var(--ink-soft)}
.contact-actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:14px;margin-top:22px}
.tel{display:inline-flex;align-items:center;gap:10px;font-family:var(--display);font-weight:900;font-size:clamp(24px,5vw,32px);color:var(--ink);background:var(--yellow);text-decoration:none;border:3px solid var(--ink);border-radius:999px;padding:12px 30px}
.tel:hover,.tel:focus-visible{background:#FFD836}
.tel-icon{width:.85em;height:.85em;flex:none}
.contact-form-btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--display);font-weight:700;font-size:clamp(16px,3vw,19px);
  color:#fff;background:var(--sky);text-decoration:none;
  border:3px solid var(--ink);border-radius:999px;padding:15px 30px;
  box-shadow:4px 4px 0 rgba(20,56,75,.14);
}
.contact-form-btn:hover,.contact-form-btn:focus-visible{background:#20B5EC}
.contact .org{margin-top:16px;font-size:14px;font-family:var(--display);font-weight:700;color:var(--ink)}
@media(max-width:560px){
  .contact-actions{flex-direction:column}
  .tel,.contact-form-btn{width:100%;justify-content:center}
}

/* ---------- footer ---------- */
.site-footer{background:#fff;padding:48px 18px 36px;text-align:center}
.credit-block{margin-bottom:30px}
.credit-label{font-family:var(--display);font-weight:700;font-size:13px;letter-spacing:.1em;color:var(--ink-soft)}
.credit-logos{display:flex;align-items:center;justify-content:center;gap:34px;flex-wrap:wrap;margin-top:16px}
.foot-hapimaru{width:168px;height:40px}
.foot-setonami{width:138px;height:34px}
.credit-text{font-family:var(--display);font-weight:700;font-size:15px}
.copyright{margin-top:30px;font-size:12px;color:var(--ink-soft);padding-bottom:44px}
.update-note{max-width:640px;margin:0 auto 30px;font-size:13px;color:var(--ink-soft);background:#F4FAFD;border-radius:14px;padding:14px 18px}

/* ---------- reveal ---------- */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.reveal.on{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .hero-deco img{animation:none}
}
:focus-visible{outline:3px solid #0FA8DE;outline-offset:3px}

/* ===== スマホ画面の仕様 ===== */
/* sp用改行(デフォルト非表示、スマホで表示) */
.sp-br{display:none}
@media(max-width:767px){
  .sp-br{display:inline}

  /* アニメーション不要(スマホ) */
  .reveal{opacity:1 !important;transform:none !important;transition:none !important}
  .hero-deco img{animation:none !important}
  .ex-card{transition:none}

  /* キャッチを1行に(画面幅に応じて縮小) */
  .catch{white-space:nowrap;font-size:min(30px, calc((100vw - 60px) / 18))}

  /* 対象バッジを1行に(paddingも詰める) */
  .chip.c1{white-space:nowrap;padding:9px 14px;font-size:min(15.5px, calc((100vw - 76px) / 22))}
}

/* ---------- おしごと一覧を見るボタン ---------- */
.more-wrap{text-align:center;margin:38px 0 0}
.more-btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--display);font-weight:700;font-size:16px;text-decoration:none;
  color:var(--ink);background:var(--yellow);
  border:3px solid var(--ink);border-radius:999px;padding:14px 40px;
  box-shadow:4px 4px 0 rgba(20,56,75,.14);
  transition:background .15s ease;
}
.more-btn::after{content:"→"}
.more-btn:hover,.more-btn:focus-visible{background:#FFD836}

/* ---------- タイムスケジュール ---------- */
.schedule-wrap{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:6px 0 0}
.sched-group{background:#fff;border:3px solid var(--ink);border-radius:20px;overflow:hidden;box-shadow:5px 5px 0 rgba(20,56,75,.12)}
.sched-head{font-family:var(--display);font-weight:900;font-size:18px;color:#fff;text-align:center;padding:14px 10px;margin:0;display:flex;flex-direction:column;align-items:center;gap:2px}
.sched-a .sched-head{background:var(--sky)}
.sched-b .sched-head{background:var(--green)}
.sched-c .sched-head{background:var(--orange)}
.sched-min{font-size:12.5px;font-weight:700;opacity:.95}
.sched-list{list-style:none;margin:0;padding:14px 16px 18px}
.sched-list li{font-family:var(--display);font-weight:700;font-size:15.5px;color:var(--ink);padding:9px 0;border-bottom:1px dashed #D5E0E6;display:flex;align-items:center;gap:8px}
.sched-list li:last-child{border-bottom:none}
.sched-no{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;flex:none;border-radius:50%;font-family:var(--display);font-weight:900;font-size:15px;color:#fff;border:2.5px solid var(--ink);box-shadow:0 2px 3px rgba(20,56,75,.12)}
.sched-a .sched-no{background:var(--sky)}
.sched-b .sched-no{background:var(--green)}
.sched-c .sched-no{background:var(--orange)}
.sched-kobetsu .sched-head{background:var(--pink);color:#fff}
.sched-kobetsu .kobetsu-body{padding:20px 20px;font-family:var(--display);font-weight:700;font-size:15px;color:var(--ink);text-align:left;line-height:1.9}
@media(max-width:767px){
  .schedule-wrap{grid-template-columns:1fr;gap:14px}
}

/* ---------- グループバッジ(カード) ---------- */
.badge-group{font-family:var(--display);font-weight:900;background:#fff}
.badge-group.is-a{color:#0F7FA8;border-color:var(--sky)}
.badge-group.is-b{color:#4A8C1F;border-color:var(--green)}
.badge-group.is-c{color:#C56A1A;border-color:var(--orange)}
.badge-group.is-kobetsu{color:#C2506A;border-color:var(--pink)}
.badge-group.is-kobetsu60{color:#C2506A;border-color:var(--pink)}
.badge-group.is-kobetsu-anytime{color:#C2506A;border-color:var(--pink)}

/* ---------- お知らせ帯 ---------- */
.news-band{max-width:760px;margin:0 auto 22px;background:rgba(255,255,255,.92);border:2.5px solid var(--ink);border-radius:18px;padding:14px 20px;box-shadow:4px 4px 0 rgba(20,56,75,.10)}
.news-band-head{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.news-band-title{font-family:var(--display);font-weight:900;font-size:18px;color:var(--ink);display:inline-flex;align-items:center;gap:8px}
.news-band-title::before{content:"";width:12px;height:12px;border-radius:50%;background:var(--pink)}
.news-more{margin-left:auto;font-family:var(--display);font-weight:700;font-size:14px;color:#0A4B66;text-decoration:none;background:var(--yellow);border:2px solid var(--ink);border-radius:999px;padding:5px 18px;white-space:nowrap}
.news-more:hover{background:#FFD836}
.news-list{list-style:none;margin:0;padding:0}
.news-list li{display:flex;gap:14px;align-items:baseline;padding:9px 0;border-bottom:1px dashed #D5E0E6;font-size:16px}
.news-list li:last-child{border-bottom:none}
.news-date{font-family:var(--display);font-weight:700;color:var(--ink-soft);font-size:18px;flex:none;white-space:nowrap}
.news-ttl{color:var(--ink)}
@media(max-width:560px){
  .news-band{padding:12px 15px;border-radius:14px}
  .news-list li{flex-direction:column;gap:2px}
}

/* ---------- お知らせ一覧ページ ---------- */
.news-archive{padding:56px 0 70px}
.news-archive-list{list-style:none;margin:26px 0 0;padding:0;max-width:820px;margin-left:auto;margin-right:auto;display:flex;flex-direction:column;gap:14px}
.news-archive-list li{background:#fff;border:2.5px solid var(--ink);border-radius:16px;box-shadow:4px 4px 0 rgba(20,56,75,.10);padding:18px 22px;display:flex;gap:16px;align-items:baseline}
.news-archive-date{font-family:var(--display);font-weight:700;color:var(--sky);font-size:18px;flex:none;white-space:nowrap}
.news-archive-ttl{font-family:var(--display);font-weight:700;color:var(--ink);font-size:16px}
@media(max-width:560px){
  .news-archive-list li{flex-direction:column;gap:4px;padding:15px 17px}
}

/* ---------- お知らせ 詳細ページ ---------- */
.news-single{padding:40px 0 70px}
.news-single-head{max-width:760px;margin:22px auto 0;text-align:center}
.news-single-date{font-family:var(--display);font-weight:700;color:var(--sky);font-size:18px;margin:0 0 10px}
.news-single-title{font-family:var(--display);font-weight:900;color:var(--ink);font-size:clamp(22px,3.4vw,30px);line-height:1.5;margin:0}
.news-single-body{max-width:760px;margin:26px auto 0;font-size:16px;line-height:2.05;background:#fff;border:3px solid var(--ink);border-radius:22px;box-shadow:6px 6px 0 rgba(20,56,75,.12);padding:28px 32px}
@media(max-width:560px){
  .news-single-body{padding:22px 20px;font-size:15px;border-radius:18px}
}
.news-single-body p{margin:0 0 1.2em}
.news-single-body p:last-child{margin-bottom:0}
/* 見出し */
.news-single-body h2{font-family:var(--display);font-weight:900;color:var(--ink);font-size:20px;line-height:1.5;margin:1.8em 0 .7em;padding:2px 0 2px 14px;border-left:6px solid var(--sky);border-radius:3px}
.news-single-body h2:first-child{margin-top:0}
.news-single-body h3{font-family:var(--display);font-weight:900;color:var(--ink);font-size:17px;line-height:1.5;margin:1.5em 0 .5em;display:flex;align-items:center;gap:8px}
.news-single-body h3::before{content:"";width:11px;height:11px;border-radius:50%;background:var(--pink);flex:none}
.news-single-body h4{font-family:var(--display);font-weight:700;color:var(--ink);font-size:15.5px;margin:1.3em 0 .4em}

/* リスト */
.news-single-body ul,.news-single-body ol{padding-left:1.4em;margin:0 0 1.2em}
.news-single-body li{margin-bottom:.4em}
.news-single-body ul li::marker{color:var(--orange)}
.news-single-body ol li::marker{color:var(--sky);font-family:var(--display);font-weight:700}

/* 引用 */
.news-single-body blockquote{margin:1.2em 0;padding:14px 18px;background:#F4F9FB;border-left:5px solid var(--sky);border-radius:8px;color:var(--ink-soft);font-size:15px}
.news-single-body blockquote p:last-child{margin-bottom:0}

/* 区切り線(青い波線) */
.news-single-body hr{border:none;height:8px;margin:2em 0;background-repeat:repeat-x;background-size:20px 8px;background-image:radial-gradient(circle at 5px 8px,transparent 4px,var(--sky) 4px,var(--sky) 5.4px,transparent 5.6px),radial-gradient(circle at 15px 0,transparent 4px,var(--sky) 4px,var(--sky) 5.4px,transparent 5.6px);opacity:.75}

/* 表 */
.news-single-body table{width:100%;border-collapse:collapse;margin:0 0 1.2em;font-size:15px}
.news-single-body th,.news-single-body td{border:1.5px solid #D5E0E6;padding:9px 12px;text-align:left}
.news-single-body th{background:#F4F9FB;font-family:var(--display);font-weight:700;color:var(--ink)}

/* 強調 */
.news-single-body strong{font-weight:900;color:var(--ink)}
.news-single-body figcaption{font-size:13px;color:var(--ink-soft);margin-top:6px;text-align:center}
.news-single-body img{max-width:100%;height:auto;border-radius:12px}
.news-single-body a{color:#0A6E92}

/* リンクになったお知らせタイトル */
a.news-ttl{text-decoration:none}
a.news-ttl:hover,a.news-ttl:focus-visible{text-decoration:underline}
a.news-archive-ttl{text-decoration:none}
a.news-archive-ttl:hover,a.news-archive-ttl:focus-visible{text-decoration:underline}
.news-archive-list li:hover{box-shadow:5px 6px 0 rgba(20,56,75,.14)}
