/* =================================================================
   白井とおる 選挙サイト — 「小金井を、もっとおもしろく。」
   こがおも magazine palette (pop CMYK) × イチゼン構造
   Blue #00a0e9 / Magenta #e4007f / Yellow #fff100 / Ink #221815
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700;900&family=Noto+Sans+JP:wght@400;500;700;900&family=Shippori+Mincho+B1:wght@600;700;800&family=Outfit:wght@500;700;800;900&display=swap');

:root {
  --blue:       #00AEEF;
  --blue-deep:  #0079bf;
  --blue-ink:   #005a91;
  --blue-pale:  #d3edfb;
  --blue-soft:  #eaf7fe;
  --magenta:    #e4007f;
  --magenta-deep:#b80067;
  --magenta-pale:#fde3f0;
  --yellow:     #fff100;
  --yellow-soft:#fffcd1;

  --ink:        #221815;
  --ink-soft:   #5d5650;
  --ink-faint:  #948d86;
  --paper:      #ffffff;
  --paper-alt:  #f3f8fc;
  --card:       #ffffff;
  --line:       #e7e2d6;
  --line-soft:  #f0ece1;

  /* role tokens (swapped by tone) */
  --accent:      var(--blue);
  --accent-deep: var(--blue-deep);
  --accent-pale: var(--blue-soft);
  --pop:         var(--magenta);
  --pop-deep:    var(--magenta-deep);
  --pop-pale:    var(--magenta-pale);

  --shadow-sm: 0 2px 10px rgba(20, 40, 70, 0.07);
  --shadow-md: 0 12px 34px rgba(20, 40, 70, 0.12);
  --shadow-lg: 0 26px 64px rgba(20, 40, 70, 0.16);

  --font-jp: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-round: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --font-en: 'Outfit', 'Zen Maru Gothic', sans-serif;

  --maxw: 1160px;
  --r-lg: 30px;
  --r-md: 18px;
  --r-sm: 12px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tone variants (data-tone on <html>) — swap which CMYK ink leads */
[data-tone="pop"]    { --accent: var(--blue);    --accent-deep: var(--blue-deep);    --accent-pale: var(--blue-soft);    --pop: var(--magenta); --pop-deep: var(--magenta-deep); --pop-pale: var(--magenta-pale); }
[data-tone="magenta"]{ --accent: var(--magenta); --accent-deep: var(--magenta-deep); --accent-pale: var(--magenta-pale); --pop: var(--blue);    --pop-deep: var(--blue-deep);    --pop-pale: var(--blue-soft); }
[data-tone="blue"]   { --accent: var(--blue);    --accent-deep: var(--blue-ink);     --accent-pale: var(--blue-soft);    --pop: var(--blue-deep); --pop-deep: var(--blue-ink);  --pop-pale: var(--blue-pale); }

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp); color: var(--ink); background: var(--paper);
  font-size: 16px;
  line-height: 1.85; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Section + numbered heading kit (イチゼン式) ---- */
.sec { padding: clamp(72px, 9vw, 124px) 0; position: relative; }
.sec-head { margin-bottom: clamp(34px, 5vw, 58px); position: relative; padding-left: 64px; }
.sec-head::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 54px; height: 6px;
  background: var(--pop); border-radius: 3px;
}
.sec-no { display: none; }
.sec-en {
  font-family: var(--font-en); font-weight: 900; line-height: 1.05;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem); color: var(--ink); letter-spacing: -.01em; margin-top: 2px;
}
.sec-ja { font-family: var(--font-round); font-weight: 900; color: var(--accent-deep); font-size: 1.9rem; margin-top: 8px; } /* 校正指示で拡大。元は font-weight: 700; font-size: 1.05rem; */
.sec-lead { margin-top: 18px; max-width: 660px; color: var(--ink-soft); font-size: 1.02rem; line-height: 2; }
.mark { background: linear-gradient(transparent 58%, var(--yellow) 58%); padding: 0 .05em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-round); font-weight: 700; font-size: .95rem;
  padding: 12px 24px; border-radius: 999px; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s;
}
.btn .arrow { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; background: rgba(255,255,255,.24); }
.btn-pop { background: var(--pop); color: #fff; box-shadow: 0 8px 20px color-mix(in srgb, var(--pop) 36%, transparent); }
.btn-pop:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in srgb, var(--pop) 46%, transparent); }
.btn-blue { background: var(--accent); color: #fff; box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 34%, transparent); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 44%, transparent); }
.btn-ghost { background: var(--card); color: var(--ink); box-shadow: inset 0 0 0 2px var(--line); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent-deep); }
.btn-ghost .arrow { background: var(--accent-pale); color: var(--accent-deep); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 74px; display: flex; align-items: center;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease); }
.site-header .wrap { position: relative; }
.site-header.solid { background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm); height: 64px; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0; background: var(--pop); color: #fff;
  display: grid; place-items: center; font-family: var(--font-round); font-weight: 900; font-size: 1.2rem;
  box-shadow: var(--shadow-sm); transform: rotate(-5deg); transition: transform .3s var(--ease); }
.brand:hover .brand-mark { transform: rotate(0) scale(1.05); }
.brand-name { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.55rem, 2.3vw, 1.75rem); letter-spacing: .04em; line-height: 1.15; white-space: nowrap; }
.brand-sub { font-family: var(--font-en); font-size: 1.55rem; letter-spacing: .15em; color: var(--accent-deep); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav-link { font-family: var(--font-round); font-weight: 700; font-size: 1.08rem; padding: 9px 14px; border-radius: 999px;
  color: var(--ink-soft); white-space: nowrap; transition: color .2s, background-color .2s; }
.nav-link:hover { color: var(--accent-deep); background: var(--accent-pale); }
.header-cta { padding: 10px 20px; font-size: .86rem; white-space: nowrap; background: var(--yellow); color: var(--ink); box-shadow: 0 8px 20px color-mix(in srgb, var(--yellow) 36%, transparent); }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px color-mix(in srgb, var(--yellow) 46%, transparent); }
.nav-burger { display: none; }
.mobile-nav { display: none; }

/* =================================================================
   HERO — gradient + window grid + white bottom bar (イチゼン式)
   ================================================================= */
.hero { position: relative; min-height: 100vh; padding-top: 74px; overflow: hidden;
  background: var(--blue); }
/* decorative background — 大きなアーク（下部で左へ折り返す境界トーン） */
.hero-arc { position: absolute; inset: 0; top: -40px; height: calc(100% + 40px); width: 100%; z-index: 1; pointer-events: none; } /* 本文の上詰めに合わせて背景も40px上へ。元は inset: 0; height: 100%; */
[data-tone="magenta"] .hero { background: var(--magenta); }
.hero-windows { display: none; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: center;
  min-height: calc(100vh - 74px - 160px); padding: 0 0 30px; } /* 上詰め。元は padding: 36px 0 30px; min-height: calc(100vh - 74px - 116px); */
.hero-copy { color: #fff; position: relative; z-index: 3; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); color: var(--accent-deep);
  box-shadow: var(--shadow-sm); padding: 8px 16px 8px 10px; border-radius: 999px; margin-bottom: 22px;
  font-family: var(--font-round); font-weight: 700; font-size: .82rem; }
.hero-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pop); box-shadow: 0 0 0 4px var(--pop-pale); }
.hero-title { font-family: var(--font-round); font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.2;
  letter-spacing: .01em; text-shadow: 0 2px 18px rgba(0,60,100,.18); }
.hero-title .yellow { color: oklch(94% 0.165 99); } /* 彩度を落とした黄色。元は color: var(--yellow); (#fff100) */
.hero-title .underline { position: relative; display: inline-block; }
.hero-title .underline::after { content: ""; position: absolute; left: -1%; right: -1%; bottom: .1em; height: .1em;
  background: var(--yellow); border-radius: 999px; z-index: -1; opacity: .65; }
.hero-sub { margin-top: 22px; font-family: var(--font-round); font-weight: 500; font-size: clamp(1.05rem, 1.8vw, 1.38rem); line-height: 1.6; max-width: 26em; color: rgba(255,255,255,.96);
  text-shadow: 0 1px 10px rgba(0,60,100,.18); }
.hero-cta { display: flex; gap: 13px; margin-top: clamp(42px, 8vw, 110px); flex-wrap: wrap; }
.hero-cta .btn { padding: 17px 32px; font-size: 1.15rem; } /* 拡大。元は padding: 15px 28px; font-size: 1rem; */
.hero-cta .btn-on-blue { background: #fff; color: var(--accent-deep); box-shadow: var(--shadow-md); }
.hero-cta .btn-on-blue .arrow { background: var(--accent-pale); color: var(--accent-deep); }
.hero-cta .btn-line-w { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }
.hero-cta .btn-line-w:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

.hero-visual { position: relative; z-index: 3; }
.hero-visual picture { display: block; }
.hero-photo { width: 100%; aspect-ratio: 725 / 920; height: auto; border-radius: var(--r-lg); object-fit: contain; object-position: bottom center; }

/* hero nameplate — 多層リボン型ネームプレート */
.hero-nameplate { position: absolute; left: -6px; bottom: 28px; z-index: 5;
  transform: none; filter: drop-shadow(0 18px 28px rgba(20,40,70,.30)); } /* 水平化。元は transform: rotate(-3deg); */
.np-main { position: relative; transform: skewX(-12deg);
  background: linear-gradient(148deg, #3f80cb 0%, #2c66b0 52%, #1f4e8d 100%); }
.np-content { transform: skewX(12deg); padding: 18px 22px 24px 14px; display: flex; flex-direction: column; }
.hero-nameplate .hn-role { font-family: var(--font-round); font-weight: 700; font-size: 1.12rem;
  letter-spacing: .24em; color: rgba(255,255,255,.95); margin-left: .35em; }
.hero-nameplate .hn-name { font-family: var(--font-round); font-weight: 900;
  font-size: clamp(2.7rem, 4.4vw, 3.8rem); letter-spacing: .1em; line-height: 1.02; color: #fff;
  text-shadow: 0 3px 7px rgba(0,0,0,.22); margin-top: 6px; }
/* layers */
.np-back, .np-shadow { position: absolute; transform: skewX(-12deg); pointer-events: none; }
.np-back { left: -15px; top: -15px; width: 100%; height: 100%; z-index: -1;
  background: transparent; border: 2px solid rgba(255,255,255,.92); }
.np-shadow { left: 12px; top: 15px; width: 100%; height: 100%; z-index: -3; background: #7fb4e6; }
.hero-badge { position: absolute; left: -22px; bottom: 30px; z-index: 4; background: var(--yellow); color: var(--ink);
  border-radius: 20px; padding: 15px 22px; box-shadow: var(--shadow-md); transform: none; font-family: var(--font-round); /* 水平化。元は transform: rotate(-4deg); */
  white-space: nowrap; text-align: center; }
.hero-badge .big { font-weight: 900; font-size: 2.15rem; line-height: 1.05; }
.hero-badge .big .u { font-size: 1rem; margin-left: 2px; }
.hero-badge .small { font-weight: 700; font-size: .76rem; margin-top: 4px; }
.hero-tag { position: absolute; right: -16px; top: 26px; z-index: 4; background: var(--pop); color: #fff; border-radius: 14px;
  padding: 11px 17px; box-shadow: var(--shadow-md); font-family: var(--font-round); font-weight: 900; font-size: .98rem; transform: none; } /* 水平化。元は transform: rotate(4deg); */

/* white bottom bar */
.hero-bar { position: relative; z-index: 3; background: var(--paper); }
.hero-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; padding: 26px 0; flex-wrap: wrap; }
.supporters-title { font-family: var(--font-round); font-weight: 900; font-size: 2rem; letter-spacing: .08em; color: var(--ink); }
.hero-bar .en { font-family: var(--font-en); font-weight: 800; font-size: .82rem; letter-spacing: .18em; color: var(--accent-deep);
  line-height: 1.5; text-transform: uppercase; }
.hero-bar .nm { font-family: var(--font-round); font-weight: 900; font-size: 1.9rem; letter-spacing: .08em; }
.hero-bar .nm small { font-family: var(--font-en); font-weight: 700; font-size: .8rem; letter-spacing: .16em; color: var(--ink-faint); margin-left: 12px; }
.hero-bar .ja { font-family: var(--font-round); font-weight: 700; color: var(--accent-deep); font-size: 1rem; margin-left: auto; }

/* =================================================================
   INTRO BAND — 静かなエディトリアル導入
   ================================================================= */
.intro-band { background: var(--paper); padding: clamp(52px, 7vw, 88px) 0; border-bottom: 1px solid var(--line-soft); }
.intro-inner { display: block; }
.intro-lead { font-family: var(--font-round); font-weight: 900; font-size: clamp(2.5rem, 5.2vw, 3.75rem); line-height: 1.15;
  letter-spacing: .05em; color: var(--accent); margin: 0; }

/* =================================================================
   MESSAGE — vertical text accent (縦書き)
   ================================================================= */
.message { background: var(--paper-alt); }
.message-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.message-q { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.7; color: color-mix(in oklch, var(--magenta) 74%, gray); } /* 彩度を少し落としたマゼンタ。元に戻す場合は color: var(--magenta); */
.message-q .pop { color: var(--pop); }
.message-body { margin-top: 26px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.9vw, 1.44rem); line-height: 1.5; font-family: var(--font-round); font-weight: 500; }
.message-sign { margin-top: 26px; font-family: var(--font-jp); font-weight: 700; font-size: 2rem; }
.message-sign .nm { font-size: 2.8rem; letter-spacing: .08em; margin-left: 16px; }
.sp-br { display: none; }
.message-vertical { writing-mode: vertical-rl; text-orientation: mixed; font-family: var(--font-round); font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.45; letter-spacing: .12em; color: var(--accent);
  border-right: 12px solid var(--yellow); padding-right: 20px; }

/* =================================================================
   ACHIEVEMENTS
   ================================================================= */
.achv-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 48px; } /* 12分野カード削除に伴い2列化。元は repeat(3, 1fr) */
/* Original design (pre "remove AI look" request) — restore by swapping back in if needed:
.stat { background: var(--card); border-radius: var(--r-md); padding: 28px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); position: relative; overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%; background: var(--accent-pale); }
.stat:nth-child(2)::after { background: var(--pop-pale); }
*/
.stat { background: color-mix(in srgb, var(--accent) 5%, #fff); border-radius: var(--r-md); padding: 28px 26px; box-shadow: var(--shadow-sm); border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent); position: relative; }
.stat:nth-child(2) { background: color-mix(in srgb, var(--pop) 5%, #fff); border-color: color-mix(in srgb, var(--pop) 14%, transparent); }
.stat::before { content: ""; display: block; width: 30px; height: 4px; border-radius: 2px; background: var(--accent); margin-bottom: 4px; } /* 元は margin-bottom: 16px; */
.stat:nth-child(2)::before { background: var(--pop); }
.stat .num { font-family: var(--font-en); font-weight: 900; color: var(--accent); font-size: clamp(2.6rem, 5vw, 3.5rem); line-height: 1; display: flex; align-items: baseline; gap: 5px; position: relative; }
.stat:nth-child(2) .num { color: var(--pop); }
.stat .num .unit { font-size: 1.1rem; color: var(--ink); font-family: var(--font-round); }
.stat .lbl { margin-top: 0; margin-bottom: 10px; font-weight: 700; font-size: 1.3rem; position: relative; } /* バーに近づけ拡大。元は margin-top: 10px; font-size: .98rem;（件数の下にあった頃の値） */
.stat .desc { margin-top: 3px; font-size: .82rem; color: var(--ink-faint); line-height: 1.7; position: relative; }

.achv-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip { font-family: var(--font-round); font-weight: 700; font-size: .9rem; padding: 10px 18px; border-radius: 10px;
  background: var(--card); box-shadow: inset 0 0 0 2px var(--line); color: var(--ink-soft); transition: all .2s var(--ease); white-space: nowrap; }
.chip:hover { box-shadow: inset 0 0 0 2px var(--accent); color: var(--accent-deep); transform: translateY(-1px); }
.chip.active { background: var(--accent); color: #fff; box-shadow: 0 6px 16px color-mix(in srgb, var(--accent) 34%, transparent); }
.chip .cnt { font-size: .76rem; margin-left: 6px; opacity: .7; }

.achv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.acard { --navy: #1b2a4c; --navy-deep: #14203c;
  background: var(--card); border-radius: 6px; padding: 32px 30px 30px 38px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 0; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.acard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: var(--navy); }
.acard:hover { transform: translate(10px, -8px); box-shadow: var(--shadow-lg); }
.acard .a-cat-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.acard .cat { font-family: var(--font-jp); font-weight: 700; font-size: .82rem; letter-spacing: .07em; color: var(--label-col, var(--navy)); }
.acard .cat-line { height: 2px; width: 44px; background: var(--navy); }
.acard .a-title { font-family: var(--font-jp); font-weight: 700; font-size: 1.2rem; line-height: 1.5;
  color: #1c2333; letter-spacing: .01em; text-wrap: pretty; }
.acard .a-divider { height: 1px; background: var(--line); margin: 18px 0 14px; }
.acard .a-meta { font-size: .84rem; color: var(--ink-soft); font-weight: 500; padding-right: 60px; }
.acard .a-arrow { position: absolute; right: 28px; bottom: 24px; width: 34px; height: 34px; background: transparent; border: 1.5px solid var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #1c2333; font-size: 1rem; line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.acard:hover .a-arrow { background: var(--navy); color: var(--arrow-fg, #fff); }
.achv-more { display: flex; justify-content: center; margin-top: 34px; }

/* ---- 成果詳細モーダル ---- */
.acard { cursor: pointer; }
.achv-detail { --navy: #00a0e9; --navy-deep: #0079bf; border: none; padding: 0; margin: auto; width: min(640px, calc(100vw - 36px)); max-height: min(80vh, 720px);
  border-radius: var(--r-lg); background: var(--paper); box-shadow: 0 30px 80px rgba(0,30,60,.35); display: none; flex-direction: column; overflow: hidden; }
.achv-detail[open] { display: flex; }
.achv-detail::backdrop { background: rgba(10,25,45,.55); }
.adm-accent { flex: none; height: 8px; background: var(--navy); }
.adm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 30px 20px; border-bottom: 1px solid var(--line); }
.adm-cat { display: flex; align-items: center; gap: 14px; }
.adm-cat .cat { font-weight: 700; font-size: .85rem; letter-spacing: .07em; color: var(--label-col, var(--navy)); }
.adm-cat .cat-line { height: 2px; width: 44px; background: var(--navy); }
.adm-head h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.35rem; line-height: 1.5; color: var(--ink); margin-top: 12px; text-wrap: pretty; }
.adm-meta { margin-top: 8px; font-size: .88rem; color: var(--ink-faint); font-weight: 500; }
.adm-body { overflow-y: auto; padding: 22px 30px 30px; }
.adm-body p { font-size: 1rem; line-height: 2; color: var(--ink-soft); }
.adm-body a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.adm-body a:hover { color: var(--accent); }
@media (max-width: 560px) {
  .adm-head { padding: 20px 20px 16px; }
  .adm-body { padding: 18px 20px 24px; }
  .adm-head h3 { font-size: 1.15rem; }
}

/* =================================================================
   PARTNERS
   ================================================================= */
.partners { background: var(--paper-alt); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pcard { background: var(--card); border-radius: var(--r-sm); padding: 20px 22px; box-shadow: var(--shadow-sm);
  display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line-soft); }
.pcard .pno { font-family: var(--font-en); font-weight: 900; color: var(--pop); font-size: 1rem; flex-shrink: 0; width: 28px; }
.pcard .ptxt { font-size: .92rem; line-height: 1.7; font-weight: 500; }

/* =================================================================
   PROFILE
   ================================================================= */
.profile-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.profile-photo-col { position: sticky; top: 96px; }
.profile-photo { width: 100%; aspect-ratio: 657 / 830; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 8px solid #fff; overflow: hidden; background: linear-gradient(165deg, #8ed0f5 0%, #3f9ad8 55%, #2c7fc0 100%); display: flex; }
.profile-photo picture { display: block; width: 100%; height: 100%; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.profile-photo-cap { margin-top: 16px; text-align: center; font-family: var(--font-round); font-weight: 700; }
.profile-photo-cap .nm { font-size: 1.45rem; letter-spacing: .08em; }
.profile-photo-cap .roma { font-family: var(--font-en); font-size: .74rem; letter-spacing: .18em; color: var(--ink-faint); margin-top: 2px; }
.profile-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 38px; }
.fact { background: var(--card); border-radius: var(--r-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.fact .k { font-size: .74rem; color: var(--accent-deep); font-weight: 700; font-family: var(--font-round); letter-spacing: .04em; min-height: 1.1em; }
.fact .v { margin-top: 4px; font-weight: 700; font-size: .98rem; line-height: 1.5; }
.fact .v small { font-weight: 500; color: var(--ink-soft); font-size: .82rem; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: var(--line); border-radius: 2px; }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -30px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 4px var(--accent); }
.tl-item:nth-child(even)::before { box-shadow: inset 0 0 0 4px var(--pop); }
.tl-year { font-family: var(--font-en); font-weight: 800; color: var(--accent-deep); font-size: .95rem; letter-spacing: .03em; }
.tl-text { font-weight: 500; margin-top: 2px; line-height: 1.7; font-size: 1.2rem; }
.tl-text strong { font-weight: 700; }

/* =================================================================
   EVENTS
   ================================================================= */
.events { background: var(--paper-alt); }
.event-note { font-size: .82rem; color: var(--ink-soft); margin-bottom: 26px; background: var(--card); display: inline-block;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.event-list { display: flex; flex-direction: column; gap: 14px; }
.event { display: grid; grid-template-columns: 120px 1fr auto; gap: 24px; align-items: center; background: var(--card);
  border-radius: var(--r-md); padding: 22px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.event:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.event .date { text-align: center; border-right: 2px dashed var(--line); padding-right: 20px; }
.event .date .md { font-family: var(--font-round); font-weight: 900; font-size: 1.2rem; line-height: 1.2; color: var(--accent); }
.event .date .dow { font-family: var(--font-en); font-size: .74rem; color: var(--ink-faint); margin-top: 4px; font-weight: 700; }
.event .info .ev-title { font-family: var(--font-round); font-weight: 700; font-size: 1.1rem; }
.event .info .ev-title a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; font-size: .95rem; word-break: break-all; }
.event .info .ev-title a:hover { color: var(--accent); }
.event .info .ev-place { font-size: .88rem; color: var(--ink-soft); margin-top: 4px; }
.event .ev-time { font-family: var(--font-round); font-weight: 700; font-size: .9rem; color: var(--accent-deep);
  background: var(--accent-pale); padding: 8px 16px; border-radius: 999px; white-space: nowrap; }

/* =================================================================
   SUPPORT CTA
   ================================================================= */
.support .support-card { background: transparent; color: var(--ink); border: 6px solid var(--pop); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden; box-shadow: none; }
.support-card::before { display: none; }
.support-card::after { display: none; }
.support-inner { position: relative; z-index: 1; max-width: 660px; }
.support-label { display: inline-block; background: var(--pop); color: #fff; font-family: var(--font-round); font-weight: 900;
  font-size: 1.35rem; letter-spacing: .06em; padding: 12px 28px; border-radius: 999px; margin-bottom: 16px; } /* 拡大。元は font-size: .95rem; padding: 8px 18px; */
.support-card .sup-no { font-family: var(--font-en); font-weight: 800; letter-spacing: .14em; opacity: .9; }
.support-card h2 { font-family: var(--font-round); font-weight: 900; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.4; margin-top: 6px; color: var(--ink); }
.support-card p { margin-top: 16px; line-height: 1.7; opacity: 1; color: var(--ink-soft); font-weight: 500; font-size: clamp(1.15rem, 2.6vw, 1.4rem); } /* 拡大。元は line-height: 1.4; font-size: clamp(1rem, 2.4vw, 1.15rem); */
.support-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.support-actions .btn { padding: 15px 30px; font-size: 1rem; }
.support-actions .btn-w { background: #fff; color: var(--pop-deep); box-shadow: var(--shadow-md); border: 2px solid var(--pop); }
.support-actions .btn-w .arrow { background: var(--pop-pale); color: var(--pop-deep); }
.support-actions .btn-yellow { background: var(--yellow); color: var(--ink); border: none; }
.support-actions .btn-yellow .arrow { background: rgba(0,0,0,.12); }

/* =================================================================
   MAGAZINE — サポーターズマガジン（チラシPDF掲載・案2、2026.7.18追加）
   元に戻す: このブロックと index の MAGAZINE セクションを削除し、
   campaign.css?v を v=14 → v=13 に戻す（掲載前バックアップ: backup/ フォルダ）
   ================================================================= */
.magazine { background: var(--paper-alt); }
.mag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: end; }
.mag-issue { text-align: center; }
.mag-pages { display: flex; justify-content: center; align-items: flex-start; }
.mag-pages a { display: block; transition: transform .3s var(--ease); }
.mag-pages img { height: auto; border-radius: 6px; box-shadow: 0 14px 30px rgba(20,40,70,.22); border: 1px solid var(--line); }
.mag-front { position: relative; transform: rotate(-2.5deg) translateX(8px); z-index: 2; }
.mag-back { transform: rotate(2deg) translateX(-8px) translateY(12px); }
.mag-pages a:hover { transform: rotate(0) translateY(-8px); z-index: 3; }
.mag-pages.portrait a { width: min(46%, 235px); }
.mag-pages.landscape a { width: min(48%, 300px); }
.mag-caption { margin-top: 28px; }
.mag-lbl { display: inline-block; background: var(--yellow); font-family: var(--font-round); font-weight: 900; font-size: .85rem; padding: 4px 16px; border-radius: 999px; }
.mag-caption h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.25rem; margin-top: 10px; }
.mag-date { font-size: .85rem; color: var(--ink-faint); margin-top: 2px; }
.mag-actions { display: flex; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
@media (max-width: 760px) { .mag-grid { grid-template-columns: 1fr; gap: 56px; } }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--blue); color: #fff; padding: 60px 0 0; overflow: hidden; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 38px; }
.footer-brand .brand-mark { transform: none; }
.footer-brand .fb-name { font-family: var(--font-round); font-weight: 900; font-size: 2.4rem; letter-spacing: .05em; margin-top: 16px; } /* 拡大。元は font-size: 1.8rem; */
.footer-brand .fb-slogan { color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.9; max-width: 30em; font-size: .9rem; }
.footer-brand .fb-sns-note { color: rgba(255,255,255,.75); margin-top: 18px; font-size: 1.05rem; } /* 拡大。元は font-size: .9rem; */
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); transition: background-color .2s, transform .2s; }
.footer-social a:hover { background: var(--pop); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-en); font-weight: 800; font-size: 1.1rem; letter-spacing: .12em; color: rgba(255,255,255,.88); margin-bottom: 14px; } /* 拡大。元は font-size: .86rem; */
.footer-col a { display: block; color: rgba(255,255,255,.78); font-size: 1.25rem; padding: 7px 0; transition: color .2s; } /* 拡大。元は font-size: 1rem; padding: 5px 0; */
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-disclaimer { font-size: .76rem; color: rgba(255,255,255,.38); padding-bottom: 22px; line-height: 1.7; }
.footer-banner { overflow: hidden; padding: 18px 0 26px; }
.footer-banner-track { display: flex; white-space: nowrap; animation: marquee 32s linear infinite; }
.footer-banner-track span { font-family: var(--font-en); font-weight: 900; font-size: clamp(3rem, 8vw, 6rem); color: rgba(255,255,255,.07);
  letter-spacing: .04em; text-transform: uppercase; padding-right: 40px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .footer-banner-track { animation: none; } }

/* =================================================================
   WAVE
   ================================================================= */
.wave { line-height: 0; }
.wave svg { width: 100%; height: 70px; display: block; }
.wave.to-alt svg path { fill: var(--paper-alt); }
.wave.to-paper svg path { fill: var(--paper); }

/* =================================================================
   FLOATING CTA
   ================================================================= */
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 10px;
  background: var(--pop); color: #fff; padding: 15px 24px; border-radius: 999px; font-family: var(--font-round); font-weight: 700; font-size: .95rem;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--pop) 46%, transparent); transition: transform .2s var(--ease); }
.float-cta:hover { transform: translateY(-3px) scale(1.03); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; padding-top: 24px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-windows { inset: 70px 0 40% 0; }
  .achv-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-inner { grid-template-columns: 1fr; gap: 38px; }
  .profile-photo-col { position: static; max-width: 340px; }
  .message-inner { grid-template-columns: 1fr; }
  .message-vertical { writing-mode: horizontal-tb; border-right: none; border-left: 4px solid var(--yellow); padding: 0 0 0 18px; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .site-header .wrap > .nav,
  .site-header .wrap > .header-cta { display: none; }
  .nav-burger { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--card); box-shadow: inset 0 0 0 2px var(--line); }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; }
  .nav-burger span::before { position: absolute; top: -6px; } .nav-burger span::after { position: absolute; top: 6px; }
  .nav-burger.open span { background: transparent; }
  .nav-burger.open span::before { top: 0; transform: rotate(45deg); }
  .nav-burger.open span::after { top: 0; transform: rotate(-45deg); }
  .mobile-nav { display: none; flex-direction: column; gap: 4px; background: var(--paper); border-top: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md); padding: 14px 20px 20px; position: absolute; top: 100%; left: 0; right: 0; }
  .mobile-nav.open { display: flex; }
  .mobile-nav .nav-link { padding: 12px 6px; font-size: 1.1rem; text-align: left; border-radius: 10px; }
  .mobile-nav .header-cta { display: inline-flex; justify-content: center; margin-top: 8px; }
  .sec-head { padding-left: 0; } .sec-head::before { display: none; }
  .achv-stats { grid-template-columns: 1fr; }
  .achv-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .profile-facts { grid-template-columns: 1fr; }
  .sp-br { display: block; }
  .intro-inner { grid-template-columns: 1fr; gap: 18px; }
  .event { grid-template-columns: 84px 1fr; }
  .event .ev-time { grid-column: 2; justify-self: start; margin-top: 6px; }
  .hero-bar-inner { gap: 16px; } .hero-bar .ja { margin-left: 0; }
  .hero-cta { margin-top: 44px; }
  .hero-badge { left: -8px; } .hero-tag { right: -4px; }
  .message-sign { margin-top: 18px; font-size: 1.3rem; line-height: 1.35; }
  .message-sign .nm { font-size: 1.85rem; margin-left: 0; }
  .message-vertical { font-size: 1.32rem; line-height: 1.5; letter-spacing: .06em; margin-top: 20px; padding: 2px 0 2px 16px; } /* 改行防止でスマホのみ縮小。元は 1.5rem */
  .hero-nameplate { left: 40px; transform-origin: bottom left;
    transform: scale(.62); } /* 水平化。元は rotate(-3deg) scale(.62) */
}

/* =================================================================
   サポーターズ規約（モーダル）
   ================================================================= */
.terms-link { align-self: center; background: none; border: none; cursor: pointer; padding: 15px 6px;
  font-family: var(--font-round); font-weight: 700; font-size: .95rem; color: var(--ink-soft);
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px;
  text-decoration-color: color-mix(in srgb, var(--pop) 50%, transparent); transition: color .2s; }
.terms-link:hover { color: var(--pop-deep); text-decoration-color: var(--pop); }

.terms-dialog { border: none; padding: 0; margin: auto; width: min(680px, calc(100vw - 36px)); max-height: min(82vh, 780px);
  border-radius: var(--r-lg); background: var(--paper); box-shadow: 0 30px 80px rgba(0,30,60,.35);
  display: none; flex-direction: column; overflow: hidden; }
.terms-dialog[open] { display: flex; }
.terms-dialog::backdrop { background: rgba(10,25,45,.55); }

.terms-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 26px 30px 18px; border-bottom: 1px solid var(--line); background: var(--paper); }
.terms-en { font-family: var(--font-en); font-weight: 800; font-size: .78rem; letter-spacing: .2em; color: var(--pop); }
.terms-head h3 { font-family: var(--font-round); font-weight: 900; font-size: 1.3rem; color: var(--ink); margin-top: 4px; }
.terms-close { flex: none; width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--paper-alt); color: var(--ink-soft); font-size: 1.4rem; line-height: 1; transition: all .2s; }
.terms-close:hover { background: var(--pop-pale); color: var(--pop-deep); }

.terms-body { overflow-y: auto; padding: 8px 30px 30px; }
.kiyaku { display: flex; flex-direction: column; }
.k-item { display: grid; grid-template-columns: 128px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.k-item:last-of-type { border-bottom: none; }
.k-no { font-family: var(--font-round); font-weight: 900; font-size: .95rem; color: var(--accent-deep); line-height: 1.6; }
.k-no span { display: block; font-size: .78rem; font-weight: 700; color: var(--ink-faint); letter-spacing: .04em; }
.k-item p { font-size: .95rem; line-height: 1.9; color: var(--ink-soft); }
.k-item ol { margin: 6px 0 0 1.4em; font-size: .95rem; line-height: 1.9; color: var(--ink-soft); }
.k-item ol li::marker { font-family: var(--font-en); font-weight: 700; color: var(--accent); }
.k-fusoku { margin-top: 18px; background: var(--paper-alt); border-radius: var(--r-sm); padding: 14px 18px;
  font-size: .92rem; line-height: 1.8; color: var(--ink-soft); }
.k-fusoku span { display: inline-block; font-family: var(--font-round); font-weight: 900; color: var(--accent-deep); margin-right: 12px; }

@media (max-width: 560px) {
  .k-item { grid-template-columns: 1fr; gap: 4px; }
  .terms-head { padding: 20px 20px 14px; }
  .terms-body { padding: 6px 20px 24px; }
}
