/* =============================================================
   はどあばんち 〜春に誘われ満員御礼！〜  デザイン試作
   コンセプト：春の入居案内パンフレット
   ベース＝温かいクリーム地／インク＝深い緑～チャコール
   アクセント＝彩度を抑えた上品な桜ピンク（＋ほんの少しの若葉）
   ============================================================= */

:root {
  /* ---- 色（ベース＋アクセント1〜2色に絞る） ---- */
  --cream:      #fbf5e8;   /* ページ地色（温かいクリーム） */
  --cream-2:    #f5ecda;   /* 一段沈めた地色・帯 */
  --paper:      #fffdf7;   /* カード・紙面 */
  --ink:        #2b3a30;   /* 主役の文字（深い緑～チャコール） */
  --ink-soft:   #5c6a5f;   /* 補助テキスト */
  --line:       #e6dbc4;   /* 罫線・枠 */
  --line-soft:  #efe6d3;

  --sakura:      #c67d90;  /* アクセント：上品な桜ピンク */
  --sakura-deep: #a85d72;  /* 濃い桜（CTA・ホバー） */
  --sakura-tint: #f4e3e6;  /* 淡い桜（チップ地） */
  --leaf:        #6f8a74;  /* 副アクセント：くすんだ若葉 */
  --leaf-tint:   #e7eee2;

  --night-1:  #2c3a33;     /* 夜のセクション（シークレット） */
  --night-2:  #1d2823;
  --gold:     #e7c98a;     /* 夜の灯り */

  /* ---- 角丸 ---- */
  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --r-pill: 999px;

  /* ---- 余白スケール ---- */
  --sp-1: 8px;
  --sp-2: 14px;
  --sp-3: 22px;
  --sp-4: 34px;
  --sp-5: 52px;
  --sp-section: clamp(56px, 8vw, 96px);

  --maxw: 1040px;
  --shadow-s: 0 4px 14px rgba(43, 58, 48, 0.08);
  --shadow-m: 0 12px 30px rgba(43, 58, 48, 0.12);

  --font-round: "M PLUS Rounded 1c", system-ui, "Hiragino Maru Gothic ProN",
                "Hiragino Kaku Gothic ProN", sans-serif;
  --font-body:  system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
                "Yu Gothic", "Hiragino Sans", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  /* ごく淡い春の光と桜のにじみ（画像不使用・CSSのみ） */
  background-image:
    radial-gradient(1100px 520px at 78% -8%, rgba(198,125,144,0.10), transparent 60%),
    radial-gradient(900px 480px at 8% 6%,   rgba(111,138,116,0.10), transparent 60%);
  background-attachment: fixed;
  font-size: 17px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sakura-deep); }

h1, h2, h3, h4, .brand, .btn, .chip, .eyebrow, .stamp {
  font-family: var(--font-round);
}

/* ---- コンテナ ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }

/* ---- スクロールで“ふわっと”（JS有効時のみ隠す） ---- */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* =============================================================
   ヘッダー / ナビ（CSSチェックボックスで開閉＝JS無効でも動作）
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 245, 232, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 10px 20px;
}
.header-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-brand img { height: 40px; width: auto; }
.header-brand .brand-txt {
  font-family: var(--font-round); font-weight: 800;
  color: var(--ink); font-size: 15px; letter-spacing: .02em;
}

.nav-toggle-cb { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle {
  display: none; /* PCでは非表示 */
  width: 48px; height: 48px; flex: 0 0 auto;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--r-s); cursor: pointer;
  background: var(--leaf-tint);
}
.nav-toggle span {
  width: 22px; height: 3px; border-radius: 2px; background: var(--leaf);
  transition: transform .25s ease, opacity .2s ease;
}

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 2px; justify-content: center;
}
.site-nav a {
  display: flex; align-items: center; min-height: 44px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-round); font-weight: 700; font-size: 14px;
  padding: 6px 12px; border-radius: var(--r-pill);
  transition: background .18s ease, color .18s ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  background: var(--sakura); color: #fff;
}

/* =============================================================
   ボタン
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-pill);
  font-weight: 800; font-size: 16px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn-primary {
  background: var(--sakura-deep); color: #fff;
  box-shadow: 0 8px 18px rgba(168, 93, 114, 0.28);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px); box-shadow: 0 12px 24px rgba(168, 93, 114, 0.36);
}
.btn-ghost {
  background: var(--paper); color: var(--ink); border-color: var(--line);
  box-shadow: var(--shadow-s);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--sakura); color: var(--sakura-deep); }
.btn-leaf {
  background: var(--leaf); color: #fff;
  box-shadow: 0 8px 18px rgba(111, 138, 116, 0.26);
}
.btn-leaf:hover, .btn-leaf:focus-visible { transform: translateY(-2px); background: #5f7a65; }

/* =============================================================
   セクション共通
   ============================================================= */
section { padding: var(--sp-section) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: .12em;
  color: var(--leaf); text-transform: none; margin: 0 0 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--leaf); border-radius: 2px;
}
.section-head { text-align: center; margin-bottom: var(--sp-5); }
.section-head .eyebrow { justify-content: center; }
h2.title {
  font-size: clamp(23px, 3.4vw, 33px); font-weight: 800; margin: 0 0 12px;
  color: var(--ink); line-height: 1.35;
}
.section-head p.sub {
  max-width: 640px; margin: 0 auto; color: var(--ink-soft); font-size: 16px;
}
.subtle { color: var(--ink-soft); }
.mini { font-size: 14px; }
.center { text-align: center; }

/* 世界観の“見立て”に必ず現実の意味を添えるための小注記 */
.gloss { color: var(--ink-soft); font-weight: 500; font-size: .82em; }

/* 帯（セクションの切り替え） */
.band { background: var(--cream-2); }

/* =============================================================
   ファーストビュー（入口の情景）
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(48px, 7vw, 84px);
  text-align: center;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-logo { width: min(430px, 82%); margin: 0 auto clamp(16px, 3vw, 26px); }
.hero h1 {
  font-size: clamp(24px, 4.8vw, 40px); font-weight: 800; line-height: 1.4;
  margin: 0 0 8px; color: var(--ink);
}
.hero h1 .accent { color: var(--sakura-deep); }
.hero .tagline { font-size: clamp(15px, 2.4vw, 18px); color: var(--leaf); font-weight: 700; margin: 0 0 22px; }
.hero .lead {
  max-width: 660px; margin: 0 auto 26px; font-size: 16px; color: var(--ink);
}

.hero-house {
  position: relative; width: min(360px, 74%); margin: 0 auto clamp(18px, 3vw, 28px);
  filter: drop-shadow(0 18px 26px rgba(43, 58, 48, 0.18));
}
.hero-house-cap { font-size: 14px; color: var(--ink-soft); max-width: 460px; margin: 0 auto 26px; }

/* 日時・会場チップ */
.fact-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 auto 26px; max-width: 720px;
}
.fact-chip {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 8px 16px; font-size: 14px; font-weight: 700;
  color: var(--ink); box-shadow: var(--shadow-s);
}
.fact-chip b { color: var(--sakura-deep); }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* 桜の花びら（JSで生成／reduced-motionでは出さない） */
.petal-layer { position: fixed; inset: 0; pointer-events: none; z-index: 60; overflow: hidden; }
.petal {
  position: absolute; top: -6vh; width: 12px; height: 12px;
  background: radial-gradient(circle at 32% 30%, #fff 0%, #eec4cd 55%, #c67d90 120%);
  border-radius: 100% 0 100% 0; opacity: .7;
  animation: fall linear infinite; will-change: transform;
}
@keyframes fall {
  0%   { transform: translateY(-6vh) translateX(0) rotate(0); }
  100% { transform: translateY(112vh) translateX(40px) rotate(520deg); }
}

/* ワンポイントの黒猫（装飾） */
.cat-spot { position: absolute; width: 78px; z-index: 1; pointer-events: none; opacity: .95; }

/* =============================================================
   管理人室からのお知らせ（重要なお知らせ）
   ============================================================= */
.notice {
  max-width: 780px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line);
  border-left: 6px solid var(--sakura); border-radius: var(--r-m);
  padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow-s);
  display: flex; gap: 18px; align-items: flex-start;
}
.notice .notice-ico { flex: 0 0 auto; width: 58px; }
.notice h2 { margin: 0 0 6px; font-size: 18px; color: var(--ink); line-height: 1.4; }
.notice p { margin: 0; color: var(--ink); font-size: 16px; }
.notice a { font-weight: 800; color: var(--sakura-deep); }
.tag-room {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--leaf);
  background: var(--leaf-tint); border-radius: var(--r-pill); padding: 3px 12px; margin-bottom: 8px;
}

/* =============================================================
   世界観
   ============================================================= */
.world-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.world-img {
  border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m);
  border: 1px solid var(--line-soft); background: var(--paper);
}
.world-copy p { font-size: 16px; }
.world-copy p + p { margin-top: 14px; }

/* 参加のカタチ */
.forms-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(28px, 4vw, 44px);
}
.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px 22px 24px; box-shadow: var(--shadow-s); text-align: center;
}
.form-card .ico { width: 54px; height: 54px; margin: 0 auto 12px; }
.form-card h4 { margin: 0 0 4px; font-size: 17px; color: var(--ink); }
.form-card h4 .gloss { display: block; margin-top: 2px; }
.form-card p { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-soft); }

/* =============================================================
   開催概要（掲示板風）
   ============================================================= */
.overview-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 36px); align-items: start;
}
.board {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: var(--shadow-s); overflow: hidden;
}
.board-top {
  background: var(--leaf); color: #fff; font-family: var(--font-round);
  font-weight: 800; font-size: 15px; padding: 12px 22px; letter-spacing: .04em;
  display: flex; align-items: center; gap: 8px;
}
.board dl { margin: 0; padding: 8px 22px 22px; }
.board dt {
  font-family: var(--font-round); font-weight: 800; color: var(--leaf);
  font-size: 13.5px; margin-top: 16px;
}
.board dd { margin: 2px 0 0; font-size: 16px; color: var(--ink); }
.board dd a { font-weight: 700; word-break: break-all; }
.board .row + .row { border-top: 1px dashed var(--line); }

.overview-figure {
  border-radius: var(--r-m); overflow: hidden; box-shadow: var(--shadow-s);
  border: 1px solid var(--line-soft); background: var(--paper);
}
figure.doc { margin: 0; }
figure.doc img { width: 100%; }
figure.doc figcaption { padding: 12px 18px; font-size: 13.5px; color: var(--ink-soft); }

/* =============================================================
   入居申込
   ============================================================= */
.entry {
  background: var(--sakura-tint);
  border-radius: var(--r-l); padding: clamp(30px, 5vw, 54px) clamp(20px, 4vw, 40px);
  text-align: center;
}
.entry .assure {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 700px; margin: 0 auto 26px;
}
.chip {
  background: var(--paper); border-radius: var(--r-pill);
  padding: 9px 16px; font-size: 13.5px; font-weight: 700; color: var(--sakura-deep);
  box-shadow: var(--shadow-s);
}
.entry .btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.entry .note { margin-top: 18px; font-size: 16px; color: var(--ink); }
.entry .note a { font-weight: 800; }
.entry .soon-tag {
  display: inline-block; background: var(--leaf); color: #fff; font-weight: 700;
  font-size: 12px; padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
}

/* 詳しい掲示（<details>：JS無効でも開閉できる） */
.docs { max-width: 860px; margin: 28px auto 0; display: grid; gap: 14px; }
details.doc-fold {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  overflow: hidden; text-align: left;
}
details.doc-fold > summary {
  cursor: pointer; list-style: none; padding: 16px 20px; min-height: 44px;
  font-family: var(--font-round); font-weight: 800; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 15px;
}
details.doc-fold > summary::-webkit-details-marker { display: none; }
details.doc-fold > summary .mark {
  flex: 0 0 auto; width: 22px; height: 22px; position: relative; color: var(--sakura-deep);
}
details.doc-fold > summary .mark::before,
details.doc-fold > summary .mark::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
details.doc-fold > summary .mark::before { width: 14px; height: 2.5px; }
details.doc-fold > summary .mark::after { width: 2.5px; height: 14px; transition: transform .2s ease; }
details.doc-fold[open] > summary .mark::after { transform: translate(-50%, -50%) scaleY(0); }
.doc-body { padding: 0 20px 20px; }
.doc-body img { width: 100%; border-radius: var(--r-s); border: 1px solid var(--line-soft); }
.doc-body p { font-size: 14.5px; color: var(--ink-soft); margin: 12px 0 0; }

/* =============================================================
   企画（寄せ描き・寄せ書き）
   ============================================================= */
.plan-lead {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px;
}
.pill-note {
  background: var(--leaf-tint); color: var(--leaf); font-weight: 700; font-size: 13.5px;
  border-radius: var(--r-pill); padding: 8px 16px;
}
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px; margin-bottom: 30px;
}
.info-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  overflow: hidden; box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.info-card > img { width: 100%; border-bottom: 1px solid var(--line-soft); }
.info-card .cap { padding: 16px 18px 20px; }
.info-card .cap h3, .info-card .cap h4 { margin: 0 0 6px; font-size: 16px; color: var(--ink); line-height: 1.4; }
.info-card .cap p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* レベルアップの見立て（お家→お城）CSSのみの小図 */
.growth-note {
  max-width: 760px; margin: 0 auto 30px; background: var(--leaf-tint);
  border-radius: var(--r-m); padding: 18px 22px; text-align: center;
  color: var(--ink); font-weight: 700; font-size: 15px;
}

/* =============================================================
   近日詳細公開（ペーパーアンソロ）
   ============================================================= */
.coming {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--paper); border: 2px dashed var(--leaf); border-radius: var(--r-l);
  padding: clamp(30px, 5vw, 48px) clamp(22px, 4vw, 40px);
}
.coming .soon-tag {
  display: inline-block; background: var(--leaf); color: #fff; font-weight: 700;
  font-size: 12px; padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.coming p { font-size: 16px; color: var(--ink); }

/* =============================================================
   ロゴ配布
   ============================================================= */
.dl-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.dl-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 26px; text-align: center; box-shadow: var(--shadow-s);
}
.dl-card .frame {
  background: var(--cream-2); border-radius: var(--r-s); padding: 20px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; min-height: 150px;
}
.dl-card .frame img { max-height: 120px; width: auto; }
.usage-note {
  max-width: 780px; margin: 24px auto 0; background: var(--leaf-tint);
  border-radius: var(--r-m); padding: 18px 24px; font-size: 15px; color: var(--ink); text-align: center;
}

/* =============================================================
   入居者様のご紹介（募集中の空状態）
   ============================================================= */
.circles-empty {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--paper); border: 2px dashed var(--line); border-radius: var(--r-l);
  padding: clamp(36px, 6vw, 56px) 28px; box-shadow: var(--shadow-s);
}
.circles-empty img { width: 74px; margin: 0 auto 18px; }
.circles-empty p.big { font-size: 17px; font-weight: 800; color: var(--ink); margin: 0; }
.circles-empty p.sub { font-size: 14.5px; color: var(--ink-soft); margin: 10px 0 0; }

/* =============================================================
   公式SNS・お問い合わせ・管理人紹介
   ============================================================= */
.contact-card {
  max-width: 780px; margin: 0 auto 40px; text-align: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: clamp(30px, 5vw, 44px); box-shadow: var(--shadow-s);
}
.contact-mail {
  display: inline-block; font-family: var(--font-round); font-weight: 800;
  font-size: clamp(17px, 3.4vw, 24px); color: var(--sakura-deep);
  text-decoration: none; margin: 8px 0 6px; word-break: break-all;
}
.contact-mail:hover { text-decoration: underline; }
.hashtags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 14px; }
.hashtag {
  background: var(--leaf-tint); color: var(--leaf); border-radius: var(--r-pill);
  padding: 7px 16px; font-size: 13px; font-weight: 700;
}

.organizers {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(24px, 4vw, 40px); align-items: center;
}
.org-figure {
  border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-m);
  border: 1px solid var(--line-soft); background: var(--paper);
}
.org-figure figcaption { padding: 10px 16px; font-size: 13px; color: var(--ink-soft); text-align: center; }
.org-list { list-style: none; margin: 0; padding: 0; }
.org-list li {
  padding: 14px 4px; border-bottom: 1px solid var(--line-soft); font-size: 16px; color: var(--ink);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.org-list li:last-child { border-bottom: none; }
.org-list .role {
  font-family: var(--font-round); font-size: 11.5px; font-weight: 800; color: #fff;
  background: var(--sakura); padding: 3px 12px; border-radius: var(--r-pill);
}
.org-list .handle { color: var(--ink-soft); font-size: 14px; }

/* =============================================================
   シークレット（夜の小さなお城）
   ============================================================= */
.secret {
  background: linear-gradient(180deg, var(--night-1) 0%, var(--night-2) 100%);
  color: #eef2ec; text-align: center;
  padding: clamp(64px, 9vw, 96px) 20px;
  border-top: 1px solid #35443c;
}
.secret .inner { max-width: 620px; margin: 0 auto; }
.secret .castle-art { width: min(280px, 74%); margin: 0 auto 14px; display: block; }
.secret .stamp {
  display: inline-block; font-family: var(--font-round); font-weight: 700; letter-spacing: .18em;
  color: var(--gold); border: 1px solid var(--gold); border-radius: var(--r-pill);
  padding: 5px 18px; font-size: 13px; margin-bottom: 14px;
}
.secret h2 { color: #f4f7f2; font-size: clamp(19px, 3.2vw, 24px); margin: 0 0 10px; }
.secret .gate-art { width: min(210px, 58%); margin: 16px auto 12px; display: block; }
.secret p { color: #cfd9d0; font-size: 16px; max-width: 500px; margin: 8px auto; }
.secret .day { color: var(--gold); font-family: var(--font-round); font-weight: 800; font-size: 18px; margin-top: 16px; }
.lock-star { transition: filter .3s ease; }
.secret .gate-art:hover .lock-star { filter: drop-shadow(0 0 5px var(--gold)); }

/* =============================================================
   フッター
   ============================================================= */
.site-footer {
  background: var(--ink); color: #dfe7df; padding: 44px 0 26px;
  text-align: center;
}
.site-footer h3 { font-family: var(--font-round); color: #fff; font-size: 18px; margin: 0 0 10px; }
.site-footer .f-meta { font-size: 14px; color: #bcc9bd; }
.site-footer .f-copy {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px; color: #a6b4a7;
}

/* 追従CTA（モバイル） */
.float-cta {
  display: none; position: fixed; right: 16px; bottom: 16px; z-index: 90;
  background: var(--sakura-deep); color: #fff; text-decoration: none;
  font-family: var(--font-round); font-weight: 800; font-size: 14px;
  padding: 13px 20px; border-radius: var(--r-pill); min-height: 48px;
  align-items: center; box-shadow: 0 10px 22px rgba(168, 93, 114, 0.4);
}

/* =============================================================
   レスポンシブ（PCで段組み・余白拡大／モバイルはハンバーガー）
   ============================================================= */
@media (min-width: 720px) {
  .forms-grid  { grid-template-columns: repeat(3, 1fr); }
  .card-grid   { grid-template-columns: repeat(2, 1fr); }
  .dl-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .world-grid    { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1.15fr .85fr; }
  .organizers    { grid-template-columns: .9fr 1.1fr; }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
}

/* モバイル：ハンバーガー開閉（CSSチェックボックス／JS不要） */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .site-nav ul { flex-direction: column; padding: 8px 14px 16px; gap: 2px; }
  .site-nav a { min-height: 48px; font-size: 16px; justify-content: flex-start; border-radius: var(--r-s); }
  .nav-toggle-cb:checked ~ .site-nav { max-height: 620px; }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .float-cta { display: inline-flex; }
}

@media (max-width: 720px) {
  .notice { flex-direction: column; align-items: center; text-align: center; }
  .notice { border-left: none; border-top: 6px solid var(--sakura); }
}

/* 動きを減らす設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .petal { display: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-cta, .btn, .info-card { transition: none !important; }
}
