/* =========================================================
   犬山こどもテラス 公式サイト 共通スタイル
   Canva たたき台のポップなキッズ向けデザインを踏襲
   - 温かいクリーム背景／丸ゴシック／ピンク・水色・黄・朱のアクセント
   - ピル見出し／ハードシャドウボタン／ブロブ・星の装飾／袋文字／レインボー文字
   ========================================================= */

/* ---------- カラー・トークン ---------- */
:root {
  --cream:        #f2ede3; /* 背景 */
  --cream-deep:   #eae2d3;
  --paper:        #ffffff; /* 白カード */
  --ink:          #2c2a28; /* 本文の黒 */
  --ink-soft:     #4a4742;

  --pink:         #ef5e9b; /* メインのショッキングピンク */
  --pink-deep:    #e2497f; /* ピンクの影 */
  --pink-soft:    #fbd7e1; /* 薄ピンクの重要ボックス */

  --blue:         #3d8bd4; /* 強調の青 */
  --blue-deep:    #2c6cad;
  --blue-soft:    #a9d9f2; /* 水色ボタン */
  --blue-soft-deep:#7cbde6;

  --yellow:       #f5c53f; /* 黄ボタン・袋文字の縁 */
  --yellow-deep:  #e3ad22;

  --orange:       #ec6e33; /* 朱の強調 */
  --green:        #5bb97f;
  --purple:       #c6b2e6;
  --red:          #e5573a;

  --maxw: 960px;
  --radius: 28px;

  --font: "M PLUS Rounded 1c", "Zen Maru Gothic", system-ui, sans-serif;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  letter-spacing: .02em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- レイアウト ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}
.section {
  position: relative;
  padding-block: clamp(48px, 8vw, 88px);
  overflow: hidden;
}
.section--tint { background: var(--cream-deep); }
.stack > * + * { margin-top: 1em; }
.center { text-align: center; }

/* 装飾レイヤーの上に本文を載せる */
.section > .container { position: relative; z-index: 2; }
.hero > .container { position: relative; z-index: 2; }

/* =========================================================
   ヘッダー（上部固定ナビ）
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 237, 227, .9);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid rgba(0,0,0,.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 18px;
  color: var(--pink);
  text-decoration: none;
  white-space: nowrap;
}
.brand .brand__mark { font-size: 22px; }
.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 4px;
  white-space: nowrap;
  transition: color .15s;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--pink); }

/* =========================================================
   見出しパーツ
   ========================================================= */
/* ピンクのピル見出し */
.pill {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 4vw, 30px);
  letter-spacing: .08em;
  padding: .35em 1.1em;
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--pink-deep);
  transform: rotate(-1deg);
}

/* 袋文字（黒文字＋黄色の縁取り） */
.outline-heading {
  font-weight: 900;
  font-size: clamp(26px, 6vw, 46px);
  color: var(--ink);
  -webkit-text-stroke: 4px var(--yellow);
  paint-order: stroke fill;
  text-stroke: 4px var(--yellow);
  line-height: 1.4;
}
.outline-heading .accent { color: var(--orange); -webkit-text-stroke-color: var(--yellow); }

/* レインボー文字（各文字を色分け） */
.rainbow {
  font-weight: 900;
  line-height: 1.15;
  display: inline-block;
}
.rainbow span { display: inline-block; }
.rainbow span:nth-child(7n+1) { color: var(--red); }
.rainbow span:nth-child(7n+2) { color: var(--blue); }
.rainbow span:nth-child(7n+3) { color: var(--yellow-deep); }
.rainbow span:nth-child(7n+4) { color: var(--pink); }
.rainbow span:nth-child(7n+5) { color: var(--green); }
.rainbow span:nth-child(7n+6) { color: var(--orange); }
.rainbow span:nth-child(7n+7) { color: var(--blue-deep); }

/* セクション見出しの汎用 */
.heading {
  font-weight: 900;
  font-size: clamp(24px, 5vw, 38px);
  line-height: 1.35;
}
.heading--pink { color: var(--pink); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }

/* キャッチコピー（読みやすく目立つ・明るめ） */
.lead-catch {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  color: #f57a32;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 0 0 .8em;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
}
.lead-catch::before { content: "✨ "; }
.lead-catch::after  { content: " ✨"; }

/* 施設紹介カード（写真を主役に、白背景なし） */
.facility-card {
  padding: 0;
  gap: 10px;
}
.facility-card p {
  text-align: center;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.5;
}
.facility-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.text-pink   { color: var(--pink); }
.underline-pink {
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* =========================================================
   ボタン（ハードシャドウ・3色）
   ========================================================= */
.btn {
  --btn-bg: var(--pink);
  --btn-shadow: var(--pink-deep);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--ink);
  background: var(--btn-bg);
  border: none;
  border-radius: 18px;
  padding: 20px 28px;
  min-width: 200px;
  cursor: pointer;
  box-shadow: 7px 7px 0 var(--btn-shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--btn-shadow); }
.btn:active { transform: translate(7px, 7px); box-shadow: 0 0 0 var(--btn-shadow); }
.btn--pink   { --btn-bg: var(--pink-soft);  --btn-shadow: var(--pink); }
.btn--blue   { --btn-bg: var(--blue-soft);  --btn-shadow: var(--blue-soft-deep); }
.btn--yellow { --btn-bg: var(--yellow);     --btn-shadow: var(--yellow-deep); }
.btn--green  { --btn-bg: #06C755;           --btn-shadow: #048a3a; color: #fff; }
.btn--green::before { content: "LINE"; display: inline-block; background: #fff; color: #06C755; font-weight: 900; font-size: 11px; padding: 1px 6px; border-radius: 4px; margin-right: .4em; vertical-align: middle; }

/* 大きな単色CTAボタン（トップページ用） */
.btn-cta {
  --btn-bg: var(--pink);
  --btn-shadow: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(17px, 2.6vw, 22px);
  color: #fff;
  background: var(--btn-bg);
  border-radius: 999px;
  padding: 16px 34px;
  box-shadow: 0 7px 0 var(--btn-shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-cta:hover { transform: translateY(3px); box-shadow: 0 4px 0 var(--btn-shadow); }
.btn-cta--blue { --btn-bg: var(--blue); --btn-shadow: var(--blue-deep); }
.btn-cta--ghost { background:#fff; color: var(--pink); box-shadow: 0 7px 0 var(--pink-soft); }
.btn-cta__arrow { font-size: 1.1em; }

/* テキストリンク（→ 詳細はこちら 風） */
.link-arrow {
  display: inline-block;
  font-weight: 900;
  font-size: clamp(18px, 3.2vw, 26px);
  color: var(--pink);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

/* =========================================================
   カード・ボックス
   ========================================================= */
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.card h3 { word-break: keep-all; overflow-wrap: anywhere; line-break: strict; }
.card--lg { font-size: clamp(17px, 2.4vw, 21px); }

/* 薄ピンクの重要ボックス */
.notice {
  background: var(--pink-soft);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
  font-size: clamp(16px, 2.3vw, 20px);
}
.notice__label {
  display: block;
  text-align: center;
  font-weight: 900;
  font-size: clamp(20px, 3.2vw, 26px);
  margin-bottom: .4em;
}

/* チェックリスト */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1.1em;
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.65;
}
.checklist li::before {
  content: "☑";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  font-size: 1.15em;
}

/* 情報テーブル（日時・場所などの定義リスト） */
.deflist { display: grid; gap: 14px; }
.deflist__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px 18px;
  align-items: start;
}
.deflist__row dt {
  font-weight: 900;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 8px 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
  align-self: start;
  justify-self: start;
  min-width: 100px;
}
.deflist__row dd { margin: 0; font-size: clamp(16px, 2.3vw, 19px); }

/* 大きな日付表示 */
.bigdate {
  font-weight: 900;
  font-size: clamp(26px, 5.2vw, 46px);
  letter-spacing: .01em;
  line-height: 1.25;
}
.bigdate .wday { font-size: .6em; vertical-align: .1em; }
.bigdate .time { color: var(--ink-soft); }

/* =========================================================
   ステップ（申込〜開催の流れ）
   ========================================================= */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px 24px 22px 84px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.step::before {
  counter-increment: step;
  content: "STEP " counter(step);
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-content: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 4px 0 var(--pink-deep);
}
.step h3 { margin: 0 0 .2em; font-size: clamp(17px, 2.6vw, 21px); }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(40px, 8vw, 80px);
  overflow: hidden;
}
.hero__lead {
  font-weight: 900;
  font-size: clamp(20px, 4.4vw, 38px);
  line-height: 1.4;
  margin: 0 0 .5em;
}
.hero__cloud {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 50% / 16%;
  padding: clamp(28px, 6vw, 60px) clamp(20px, 5vw, 56px);
  display: inline-block;
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
}

/* =========================================================
   ヒーロー（画像差し込み版）
   ========================================================= */
.hero--with-images {
  padding-block: clamp(50px, 9vw, 100px);
  overflow: hidden;
}

.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(560px, 72vw, 780px);
  padding-block: clamp(30px, 5vw, 60px);
  max-width: 980px;
  margin-inline: auto;
  overflow: visible;
}

/* 雲（PNG画像差し替え）— stage 内に通常配置 */
.hero__cloud-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  height: 92%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.10));
  pointer-events: none;
  display: block;
}

/* 雲の中身（テキスト＋タイトル画像）— 雲よりやや大きく */
.hero__cloud-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  width: 92%;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 40px);
  text-align: center;
}

.hero__lead {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 2.3vw, 22px);
  line-height: 1.6;
  margin: 0 0 .6em;
  color: #2c2a28;
}
.hero__lead-pop {
  color: var(--pink);
  font-weight: 900;
  font-size: 1.1em;
}

.hero__title-img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: clamp(6px, 1.5vw, 14px) auto;
}

/* 出店者募集中 — Canva風 明朝体太字（黒） */
.hero__sub {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  font-size: clamp(32px, 7vw, 60px);
  letter-spacing: .22em;
  margin: .15em 0 .3em;
  font-weight: 900;
  line-height: 1.25;
  color: #2c2a28;
}

/* ブランド名＋地図ピン */
.hero__brand {
  color: var(--pink);
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(20px, 3.6vw, 32px);
  font-weight: 900;
  letter-spacing: .08em;
  margin: .3em 0 0;
  display: inline-flex;
  align-items: center;
  gap: .1em;
}
.hero__brand-pin {
  display: inline-block;
  width: clamp(22px, 2.6vw, 30px);
  height: clamp(22px, 2.6vw, 30px);
}
.hero__brand-pin svg { width: 100%; height: 100%; display: block; }

/* 装飾写真（雲のまわりに散らす） */
.hero__photo {
  position: absolute;
  z-index: 4;
  width: clamp(170px, 24vw, 260px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.15));
}
.hero__photo--girl {
  left: -2%;
  bottom: 2%;
  transform: rotate(-10deg);
}
.hero__photo--amigurumi {
  right: -3%;
  bottom: -2%;
  transform: rotate(10deg);
}

/* 出店料無料バッジ — 雲のすぐ右上に寄せる */
.hero__badge {
  position: absolute;
  z-index: 5;
  top: 6%;
  right: 6%;
  width: clamp(120px, 14vw, 175px);
  height: auto;
  transform: rotate(12deg);
  filter: drop-shadow(0 8px 10px rgba(0,0,0,.18));
}

/* テキストバッジ（入場無料・参加無料など、画像でなく HTML テキストで作る円バッジ） */
.hero__badge--text {
  display: grid;
  place-content: center;
  height: clamp(110px, 14vw, 165px);
  border-radius: 50%;
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: .04em;
  text-align: center;
  color: #fff;
  text-decoration: none;
  filter: none;
}
.hero__badge--blue { background: var(--blue, #3d8bd4); box-shadow: 0 8px 0 var(--blue-soft-deep, #2a6fb5); }
.hero__badge--pink { background: var(--pink, #ef5e9b); box-shadow: 0 8px 0 var(--pink-deep, #e2497f); }

/* index.html 用のレインボータイトル */
.hero__rainbow-title {
  font-family: "Zen Maru Gothic", "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 7vw, 64px);
  line-height: 1.2;
  letter-spacing: .02em;
  margin: clamp(6px, 1.5vw, 14px) auto;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 760px) {
  /* ヒーロー全体の上下余白を最小化、雲をメインに */
  .hero--with-images { padding-block: 20px 30px; }
  .hero__stage { min-height: 480px; max-width: 100%; }
  .hero__cloud-bg { width: 92%; height: 90%; }
  .hero__cloud-content { padding: 18px 14px; max-width: 92%; }
  .hero__sub { letter-spacing: .1em; }
  /* 写真：中央寄せで2枚をぴったり並べる */
  .hero__photo--girl    { left: auto; right: calc(50% + 5px); bottom: 0; width: 130px; transform: rotate(-10deg); z-index: 6; }
  .hero__photo--amigurumi { right: auto; left: calc(50% + 5px); bottom: 0; width: 130px; transform: rotate(10deg); z-index: 6; }
  /* バッジ：雲の右上、テキストに被らないよう更に上＆右に */
  .hero__badge { width: 96px; top: 16px; right: 8px; z-index: 7; }
}
@media (max-width: 480px) {
  .hero__photo { width: 100px !important; }
  .hero__badge { width: 80px; top: 17px; right: 2px; }
  .hero__sub { letter-spacing: .06em; }
}

/* =========================================================
   ヒーロー装飾（PNG差し替え版・大型ブロブ・中サイズ装飾）
   ========================================================= */
.hero--with-images { position: relative; }

/* 大型ブロブ（4隅を大胆に占有・雲の後ろに） */
.deco-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: block;
  height: auto;
}
/* 大型ブロブは画面端（hero--with-images 相対）寄りに */
.deco-blob--tl {
  top: 2%; left: 3%;
  width: clamp(170px, 18vw, 320px);
}
.deco-blob--tr {
  top: 1%; right: 3%;
  width: clamp(160px, 17vw, 300px);
}
.deco-blob--bl {
  bottom: 4%; left: 4%;
  width: clamp(140px, 15vw, 260px);
}
.deco-blob--br {
  bottom: 3%; right: 4%;
  width: clamp(150px, 16vw, 280px);
}

/* 中サイズ装飾（星・ハート・アスタリスク・ドット） */
.deco-mid {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  display: block;
  height: auto;
}

/* 中サイズ装飾（雲の上下に集中・左右側面は控えめ） */
.deco-mid--ast1   { top: 10%;   left: 22%;  width: clamp(46px, 4.4vw, 70px); }
.deco-mid--ast2   { bottom: 16%; right: 22%; width: clamp(42px, 4vw, 64px); }
.deco-mid--star1  { top: 24%;   left: 14%;  width: clamp(46px, 4.4vw, 70px); }
.deco-mid--star2  { top: 16%;   right: 18%; width: clamp(44px, 4.2vw, 68px); }
.deco-mid--dot1   { top: 10%;   left: 44%;  width: clamp(18px, 1.6vw, 26px); }
/* 青ブロブ上の白い星 */
.deco-mid--starw1 { top: 8%;    left: 6%;   width: clamp(34px, 3.4vw, 54px); z-index: 3; }
.deco-mid--starw2 { top: 18%;   left: 14%;  width: clamp(22px, 2.2vw, 34px); z-index: 3; }

/* 予備の追加装飾（中サイズ・雲の後ろに） */
.deco-extra {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  display: block;
  height: auto;
}
/* 紫笑顔キャラ（雲の上中央 - 主役級アクセント） */
.deco-extra--face-purple  { top: -2%;    left: 50%;  transform: translateX(-50%); width: clamp(120px, 13vw, 200px); z-index: 1; }
/* サブブロブ */
.deco-extra--blob-yellow2 { bottom: 16%; right: 16%; width: clamp(70px, 7vw, 120px); }
.deco-extra--blob-red     { top: 12%;    right: 26%; width: clamp(50px, 5vw, 80px); }

@media (max-width: 760px) {
  /* 青ブロブ：雲の左上、画面外に大きくはみ出し（黄色の丸） */
  .deco-blob--tl { width: 220px; top: -30px; left: -50px; }
  /* 紫ブロブ：雲の右上、バッジの背景になる位置 */
  .deco-blob--tr { width: 170px; top: -20px; right: -40px; }
  /* 下のブロブ：画面の左下・右下隅に切れて配置（写真と分離） */
  .deco-blob--bl { display: block; width: 160px; bottom: -30px; left: -40px; }
  .deco-blob--br { display: block; width: 170px; bottom: -30px; right: -40px; }

  /* 紫笑顔キャラ：雲の上端中央、画面外に頭が出る（緑の丸） */
  .deco-extra--face-purple { width: 140px; top: -10px; }

  /* 中サイズ装飾：雲の周囲に分散配置（まばらに） */
  .deco-mid--ast1 { display: block; width: 32px; top: 50%; right: 6%; }       /* オレンジアスタリスク：雲の右中段 */
  .deco-mid--ast2 { display: block; width: 28px; top: 70%; left: 2%; }        /* ピンクアスタリスク：写真の少し上、画面左端 */
  .deco-mid--star1 { display: block; width: 36px; top: 38%; left: 4%; }       /* 黄色星：雲の左中段 */
  .deco-mid--star2 { display: block; width: 32px; top: 28%; right: 4%; }      /* ピンク星：雲の右上 */
  .deco-mid--starw1 { width: 24px; top: 50%; left: 1%; right: auto; }        /* 白星大：雲の左側ベージュ、黄色星の下 */
  .deco-mid--starw2 { width: 18px; top: 38%; left: auto; right: 1%; }        /* 白星小：雲の右側ベージュ、ピンク星の下 */
  .deco-mid--dot1 { display: block; width: 14px; top: 38%; right: 24%; }     /* 青ドット：雲の右上 */

  /* 中央サブブロブは非表示（画面外） */
  .deco-extra--blob-yellow2 { display: none; }
  .deco-extra--blob-red { display: none; }
}

@media (max-width: 480px) {
  .deco-blob--tl { width: 190px; top: -25px; left: -45px; }
  .deco-blob--tr { width: 150px; top: -20px; right: -35px; }
  .deco-blob--bl { width: 140px; bottom: -25px; left: -35px; }
  .deco-blob--br { width: 150px; bottom: -25px; right: -35px; }
  .hero__photo--girl    { bottom: 0; width: 110px; right: calc(50% + 4px); }
  .hero__photo--amigurumi { bottom: 0; width: 110px; left: calc(50% + 4px); }
  .deco-extra--face-purple { width: 116px; top: -8px; }
  .deco-mid--ast1 { width: 26px; }
  .deco-mid--ast2 { width: 24px; }
  .deco-mid--star1, .deco-mid--star2 { width: 28px; }
  .deco-mid--starw1 { width: 30px; }
  .deco-mid--starw2 { width: 18px; }
  .deco-mid--dot1 { width: 12px; }
  .deco-extra--blob-yellow2 { width: 56px; }
  .deco-extra--blob-red { width: 64px; }
}

/* ふきだしバッジ（出店料 無料 など） */
.badge-burst {
  display: inline-grid;
  place-content: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 8px 0 var(--pink-deep);
  transform: rotate(8deg);
  z-index: 5;
}

/* =========================================================
   装飾（ブロブ・星）
   ========================================================= */
.deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.deco--tl { top: 2%;  left: 2%; }
.deco--tr { top: 4%;  right: 3%; }
.deco--bl { bottom: 4%; left: 3%; }
.deco--br { bottom: 5%; right: 3%; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.floaty { animation: floaty 5s ease-in-out infinite; }
.floaty--slow { animation-duration: 7s; }

/* 中央寄せ要素用のフロート（transform: translateX(-50%) を保持） */
@keyframes floaty-center { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -12px); } }
.floaty-center { animation: floaty-center 5s ease-in-out infinite; }

/* 花形（クローバー）マスクの写真枠 */
.photo-blob {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 46% 54% 50% 50% / 50% 46% 54% 50%;
}
.photo-ph {
  display: grid;
  place-content: center;
  background: repeating-linear-gradient(45deg, #fff 0 14px, #f6f1e8 14px 28px);
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
  border: 3px dashed var(--pink-soft);
}

/* =========================================================
   グリッド・ユーティリティ
   ========================================================= */
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.btn-row { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.mt-s { margin-top: .5em; }
.mt-m { margin-top: 1.5em; }
.mt-l { margin-top: 2.5em; }
.note { font-size: 14px; color: var(--ink-soft); }

/* 地図埋め込み */
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding-block: 40px;
  text-align: center;
}
.site-footer a { color: #fff; }
.site-footer .footer-brand {
  font-weight: 900;
  font-size: 20px;
  color: var(--pink);
  margin-bottom: .4em;
}
.site-footer .footer-links {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; margin-top: 12px;
}
.site-footer .footer-links a { text-decoration: none; opacity: .85; }
.site-footer .footer-links a:hover { opacity: 1; }
.site-footer small { display: block; margin-top: 16px; opacity: .6; font-size: 12px; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 760px) {
  .nav { gap: 10px; }
  .nav a { font-size: 12px; }
  .brand { font-size: 15px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .deflist__row { grid-template-columns: 1fr; gap: 6px; }
  .deflist__row dt { justify-self: start; }
  .deco { transform: scale(.7); }
  .badge-burst { width: 96px; height: 96px; font-size: 18px; }
}
@media (max-width: 480px) {
  .nav { display: none; } /* 狭幅ではブランドのみ表示（各ページ内リンクで回遊） */
  .btn { min-width: 0; width: 100%; }
}

/* アクセシビリティ：動きを減らす設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .floaty { animation: none; }
  html { scroll-behavior: auto; }
}
