@charset "UTF-8";
/* =============================================================
   Go! 30 AED PROJECT - style.css  (v2 / award-grade redesign)
   コンセプト: 極太タイポ × 全幅ブロブ × マーキー × 黒セクション
   参考: Shibuya Street Live のデザインDNAを継承
   ============================================================= */

/* ===== カラー変数 ===== */
:root {
  --c-primary: #dc461a;       /* ロゴの朱色 (ブランド) */
  --c-primary-dark: #b9360f;

  /* 指定の新パレット */
  --c-purple: #7A44A6;
  --c-blue:   #5CADFF;
  --c-green:  #002E13;        /* 濃緑(ほぼ黒に近い深緑) */
  --c-lime:   #E6FF5E;        /* ライムイエロー */

  --c-ink:    #0a0a0a;        /* 極太見出しの黒 */
  --c-white:  #ffffff;
  --c-bg:     #ffffff;
  --c-text:   #1a1a1a;
  --c-text-light: #6b6b6b;

  --font-jp: "M PLUS Rounded 1c", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-display: "Bricolage Grotesque", "Montserrat", sans-serif;

  --radius: 24px;
  --radius-lg: 40px;
  --maxw: 1400px;
  --gutter: clamp(20px, 5vw, 80px);
}

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 全幅レイアウト用ラッパ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.full { width: 100%; }

/* ===== セクション共通 ===== */
.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--c-primary);
}
.eyebrow--purple::before { background: var(--c-purple); }
.eyebrow--blue::before { background: var(--c-blue); }
.eyebrow--lime::before { background: var(--c-lime); }
.eyebrow--white { color: var(--c-white); }

/* 巨大英字見出し(参考サイトのDNA) */
.bigtype {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  text-transform: uppercase;
}

.section__title-jp {
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--c-ink);
}

.marker {
  background: linear-gradient(transparent 58%, var(--c-lime) 58%);
  padding: 0 6px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 18px 40px;
  border-radius: 100px;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 20px; height: 20px; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 0 var(--c-primary-dark); }
.btn--primary:hover { transform: translateY(4px); box-shadow: 0 4px 0 var(--c-primary-dark); }
.btn--ink { background: var(--c-ink); color: #fff; box-shadow: 0 8px 0 #000; }
.btn--ink:hover { transform: translateY(4px); box-shadow: 0 4px 0 #000; }
.btn--outline { background: transparent; color: var(--c-ink); border: 3px solid var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: #fff; }
.btn--lime { background: var(--c-lime); color: var(--c-ink); box-shadow: 0 8px 0 #b5cc2e; }
.btn--lime:hover { transform: translateY(4px); box-shadow: 0 4px 0 #b5cc2e; }
.btn--white { background: #fff; color: var(--c-primary); box-shadow: 0 8px 0 rgba(0,0,0,.2); }
.btn--white:hover { transform: translateY(4px); box-shadow: 0 4px 0 rgba(0,0,0,.2); }
.btn--full { width: 100%; }

/* ===== ヘッダー ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 8px 0;
}
.header--scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,.07); }
.header__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 52px; width: auto; transition: transform 0.3s cubic-bezier(.34,1.56,.64,1); }
.header__logo:hover img { transform: rotate(-4deg) scale(1.06); }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link { font-weight: 700; font-size: 0.95rem; padding: 10px 18px; border-radius: 100px; transition: background .2s, color .2s; }
.nav__link:hover { background: var(--c-lime); color: var(--c-ink); }
.nav__link--btn { background: var(--c-primary); color: #fff; }
.nav__link--btn:hover { background: var(--c-primary-dark); color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; z-index: 1100; }
.nav__toggle span { display: block; width: 28px; height: 3px; background: var(--c-ink); border-radius: 3px; transition: transform .3s, opacity .3s; }

/* ===== ① ヒーロー ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
  background: var(--c-white);
}
/* 背景の有機ブロブ群(アップロードSVG画像) */
.hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; opacity: .9; }
.blob--1 { width: 20vw; top: 6%;  left: -6%;  animation: drift 18s ease-in-out infinite; }
.blob--2 { width: 16vw; top: -2%; right: 4%;  animation: drift 21s ease-in-out infinite reverse; }
.blob--3 { width: 13vw; bottom: 4%; left: 1%; animation: drift 20s ease-in-out infinite; }
.blob--4 { width: 17vw; top: -4%; right: -7%; animation: drift 24s ease-in-out infinite; }
.blob--5 { width: 11vw; top: 12%; right: 26%; opacity:.8; animation: drift 16s ease-in-out infinite reverse; }
.blob--6 { width: 15vw; bottom: -2%; right: 3%; animation: drift 22s ease-in-out infinite reverse; }
.blob--7 { width: 12vw; bottom: 2%; left: 26%; opacity:.7; animation: drift 19s ease-in-out infinite; }
.blob--8 { width: 9vw;  top: 30%; left: 11%; opacity:.6; animation: drift 26s ease-in-out infinite reverse; }
@keyframes drift {
  0%,100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33% { transform: translate(3vw,-2vw) rotate(8deg) scale(1.06); }
  66% { transform: translate(-2vw,2vw) rotate(-6deg) scale(.96); }
}

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__tag {
  display: inline-block;
  font-weight: 700; font-size: 0.92rem; letter-spacing: .08em;
  color: var(--c-ink); background: var(--c-lime);
  padding: 10px 24px; border-radius: 100px; margin-bottom: 32px;
  animation: rise .7s ease both;
}
.hero__headline {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 7rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 48px;
}
.hero__headline .l1 { display: block; animation: rise .7s ease .1s both; }
.hero__headline .l2 { display: block; color: var(--c-primary); animation: rise .7s ease .25s both; }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  animation: rise .7s ease .4s both;
}
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 500; max-width: 520px; }
.hero__lead strong { color: var(--c-primary); font-weight: 800; }

/* 5% → 30% の数字 */
.hero__stat { display: flex; align-items: flex-end; gap: clamp(16px, 3vw, 40px); background: rgba(255,255,255,.55); backdrop-filter: blur(6px); padding: 20px 28px; border-radius: 28px; }
.hero__stat-item { display: flex; flex-direction: column; }
.hero__stat-label { font-weight: 700; font-size: 0.82rem; color: var(--c-text-light); margin-bottom: 2px; }
.hero__stat-num { font-family: var(--font-en); font-weight: 900; line-height: 0.85; }
.hero__stat-num .u { font-size: 0.4em; }
.hero__stat--from .hero__stat-num { font-size: clamp(2.4rem, 6vw, 4rem); color: #c9c9c9; }
.hero__stat--to .hero__stat-num { font-size: clamp(4.5rem, 13vw, 9rem); color: var(--c-primary); }
.hero__stat-arrow { width: clamp(36px,5vw,64px); color: var(--c-ink); margin-bottom: clamp(10px,2vw,28px); animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%,100%{transform:translateX(0);} 50%{transform:translateX(8px);} }

@keyframes rise { from { opacity: 0; transform: translateY(28px);} to { opacity:1; transform: translateY(0);} }

/* ===== マーキー(横スクロール帯) ===== */
.marquee {
  background: var(--c-white);
  color: var(--c-ink);
  padding: 24px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track { display: inline-block; animation: scroll-x 30s linear infinite; }
.marquee__track span {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  padding: 0 48px;
}
@keyframes scroll-x { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===== ② コンセプト ===== */
.concept { background: var(--c-white); position: relative; }
.concept__head { text-align: center; margin-bottom: 72px; }
.concept__big {
  font-size: clamp(2.4rem, 8vw, 6rem);
  margin-bottom: 28px;
}
.concept__big .accent { color: var(--c-primary); }
.concept__statement-sub { color: var(--c-text-light); font-size: 1.1rem; font-weight: 500; }

.concept__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cc {
  position: relative;
  border-radius: var(--radius);
  padding: 48px 40px 44px;
  color: var(--c-white);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cc:hover { transform: translateY(-10px) rotate(-1deg); }
.cc--1 { background: var(--c-primary); }
.cc--2 { background: var(--c-blue); }
.cc--3 { background: var(--c-purple); }
.cc--4 { background: var(--c-green); }
.cc__num {
  font-family: var(--font-en); font-weight: 900;
  font-size: 8rem; line-height: 0.8;
  position: absolute; top: 20px; right: 28px;
  color: rgba(255,255,255,.16);
}
.cc--4 .cc__num { color: rgba(230,255,94,.2); }
.cc__title { font-size: 1.6rem; font-weight: 900; margin-bottom: 14px; position: relative; z-index: 1; }
.cc__text { font-size: 1rem; line-height: 1.8; position: relative; z-index: 1; opacity: .95; }
.cc--4 .cc__title, .cc--4 .cc__text { color: var(--c-lime); }

/* ===== ③ 取り組み ===== */
.approach { background: var(--c-green); color: var(--c-white); position: relative; overflow: hidden; }
.approach__head { text-align: center; margin-bottom: 72px; }
.approach__big { color: var(--c-lime); font-size: clamp(2.4rem,8vw,6rem); margin-bottom: 24px; }
.approach__desc { color: rgba(255,255,255,.8); font-size: 1.1rem; }
.approach__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 72px; }
.ap {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 40px 28px;
  transition: transform .3s, background .3s, border-color .3s;
}
.ap:hover { transform: translateY(-8px); background: rgba(255,255,255,.1); border-color: var(--c-lime); }
.ap__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%;
  font-family: var(--font-en); font-weight: 900; font-size: 1.5rem;
  color: var(--c-ink); margin-bottom: 24px;
}
.ap:nth-child(1) .ap__num { background: var(--c-primary); color:#fff; }
.ap:nth-child(2) .ap__num { background: var(--c-blue); color:#fff; }
.ap:nth-child(3) .ap__num { background: var(--c-purple); color:#fff; }
.ap:nth-child(4) .ap__num { background: var(--c-lime); }
.ap__title { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color:#fff; }
.ap__text { font-size: 0.95rem; color: rgba(255,255,255,.72); }

.approach__vision {
  text-align: center;
  background: var(--c-lime);
  color: var(--c-ink);
  border-radius: var(--radius-lg);
  padding: clamp(40px,6vw,72px);
}
.approach__vision-label { display: block; font-weight: 700; font-size: 1rem; margin-bottom: 16px; }
.approach__vision-text { font-size: clamp(1.6rem,5vw,3rem); font-weight: 900; line-height: 1.3; }

/* ===== ④ ストーリー ===== */
.stories { background: var(--c-white); }
.stories__head { text-align: center; margin-bottom: 72px; }
.stories__big { font-size: clamp(2.4rem,8vw,6rem); margin-bottom: 24px; }
.stories__big .accent { color: var(--c-primary); }
.stories__desc { color: var(--c-text-light); font-size: 1.05rem; }
.stories__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 64px; }
.sc {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-white);
  border: 2px solid #f0f0f0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
}
.sc:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(0,0,0,.13); border-color: transparent; }
.sc__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.sc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sc:hover .sc__img img { transform: scale(1.06); }
.sc__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: #fff; }
.sc--save .sc__ph { background: linear-gradient(135deg, var(--c-primary), #ff7a4d); }
.sc--family .sc__ph { background: linear-gradient(135deg, var(--c-blue), #93cbff); }
.sc--lost .sc__ph { background: linear-gradient(135deg, var(--c-purple), #a673d4); }
.sc__body { padding: 26px 28px 30px; }
.sc__tag { display: inline-block; font-size: .78rem; font-weight: 700; color: #fff; padding: 5px 16px; border-radius: 100px; margin-bottom: 16px; }
.sc__tag--save { background: var(--c-primary); }
.sc__tag--family { background: var(--c-blue); }
.sc__tag--lost { background: var(--c-purple); }
.sc__title { font-size: 1.3rem; font-weight: 800; line-height: 1.5; margin-bottom: 14px; }
.sc:hover .sc__title { color: var(--c-primary); }
.sc__date { font-family: var(--font-en); font-weight: 700; font-size: .85rem; color: var(--c-text-light); }
.stories__more { text-align: center; }

/* ===== ⑤ 投稿(朱色背景に変更) ===== */
.submit { background: var(--c-primary); position: relative; overflow: hidden; }
.submit__blob { position: absolute; fill: rgba(255,255,255,.08); pointer-events: none; }
.submit__blob--1 { width: 30vw; top: -8%; right: -6%; }
.submit__blob--2 { width: 24vw; bottom: -10%; left: -6%; }
.submit__head { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.submit__big { color: #fff; font-size: clamp(2rem,6vw,4.5rem); margin-bottom: 20px; }
.submit__big-jp { color: #fff; font-size: clamp(1.8rem,5vw,3.4rem); font-weight: 900; line-height: 1.4; }
.submit__sub { color: rgba(255,255,255,.9); font-size: 1.05rem; }
.submit__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
.submit__text-title { font-size: 1.5rem; font-weight: 800; color:#fff; margin-bottom: 24px; }
.submit__list { margin-bottom: 28px; }
.submit__list li { position: relative; padding: 14px 0 14px 40px; border-bottom: 2px dashed rgba(255,255,255,.3); font-weight: 700; color:#fff; }
.submit__list li::before {
  content:"✓"; position:absolute; left:0; top:50%; transform: translateY(-50%);
  width:26px; height:26px; display:flex; align-items:center; justify-content:center;
  background: var(--c-lime); color: var(--c-ink); border-radius:50%; font-size:.85rem; font-weight:900;
}
.submit__note { font-size:.86rem; color: rgba(255,255,255,.85); line-height:1.7; }

.submit__form { background:#fff; border-radius: var(--radius); padding: clamp(28px,4vw,44px); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.field { margin-bottom: 20px; }
.field label { display:block; font-weight:700; font-size:.92rem; margin-bottom:8px; }
.field__req { display:inline-block; font-size:.7rem; color:#fff; background: var(--c-primary); padding:2px 9px; border-radius:100px; margin-left:6px; vertical-align: middle; }
.field__opt { font-size:.8rem; color: var(--c-text-light); font-weight:500; }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size:1rem; padding:14px 16px;
  border:2px solid #ececec; border-radius:14px; background:#fafafa;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(220,70,26,.12);
}
.field textarea { resize: vertical; }
.field--check label { display:flex; align-items:flex-start; gap:12px; font-weight:500; font-size:.9rem; cursor:pointer; }
.field--check input { width:auto; margin-top:4px; accent-color: var(--c-primary); }

/* ===== ⑥ 関係機関 ===== */
.partners { background: var(--c-ink); color:#fff; position: relative; overflow: hidden; }
.partners__head { text-align:center; margin-bottom: 64px; }
.partners__big { color:#fff; font-size: clamp(2rem,6vw,4.5rem); margin-bottom:24px; }
.partners__big .accent { color: var(--c-lime); }
.partners__big-jp { color:#fff; font-size: clamp(1.8rem,5vw,3.4rem); font-weight: 900; line-height: 1.4; margin-bottom:24px; }
.partners__desc { color: rgba(255,255,255,.75); font-size:1.05rem; }
.partners__grid { display:grid; grid-template-columns: repeat(3,1fr); gap:28px; margin-bottom:64px; }
.pc {
  background: rgba(255,255,255,.04);
  border:2px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align:center;
  transition: transform .3s, border-color .3s, background .3s;
}
.pc:hover { transform: translateY(-8px); border-color: var(--c-lime); background: rgba(255,255,255,.07); }
.pc__icon {
  width:72px; height:72px; margin:0 auto 24px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 20px; font-size: 2rem;
}
.pc:nth-child(1) .pc__icon { background: var(--c-primary); }
.pc:nth-child(2) .pc__icon { background: var(--c-blue); }
.pc:nth-child(3) .pc__icon { background: var(--c-purple); }
.pc__title { font-size:1.3rem; font-weight:800; color:#fff; margin-bottom:16px; }
.pc__text { font-size:.95rem; color: rgba(255,255,255,.72); line-height:1.8; }
.partners__cta { text-align:center; }
.partners__cta-text { color: rgba(255,255,255,.8); font-weight:700; margin-bottom:20px; }

/* ===== フッター ===== */
.footer { background: var(--c-green); color: rgba(255,255,255,.7); padding: clamp(56px,8vw,90px) 0 36px; position: relative; overflow:hidden; }
.footer__big { font-family: var(--font-display); font-weight:800; font-size: clamp(2.4rem,10vw,7rem); line-height:.9; color: var(--c-lime); margin-bottom: 48px; letter-spacing:-.02em; }
.footer__inner { display:flex; justify-content: space-between; flex-wrap:wrap; gap:36px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.15); }
.footer__logo { height:60px; width:auto; }
.footer__tagline { margin-top:18px; font-weight:700; color: rgba(255,255,255,.85); }
.footer__nav { display:flex; flex-wrap:wrap; gap:26px; font-weight:700; font-size:.95rem; align-items:center; }
.footer__nav a:hover { color: var(--c-lime); }
.footer__bottom { display:flex; justify-content: space-between; flex-wrap:wrap; gap:14px; margin-top:28px; font-size:.82rem; }
.footer__copy { font-family: var(--font-en); font-weight:700; }
.footer__links a:hover { color: var(--c-lime); }

/* ===== 表示制御 ===== */
.pc-only { display:inline; }
.sp-only { display:none; }

/* ===== レスポンシブ ===== */
@media (max-width: 960px) {
  .approach__grid { grid-template-columns: repeat(2,1fr); }
  .submit__grid { grid-template-columns: 1fr; gap:36px; }
}
@media (max-width: 768px) {
  .pc-only { display:none; }
  .sp-only { display:inline; }
  .nav__toggle { display:flex; }
  .nav__list {
    position: fixed; top:0; right:-100%; width:78%; max-width:340px; height:100vh;
    flex-direction: column; align-items:stretch; justify-content:center; gap:10px;
    background:#fff; padding:40px 28px; box-shadow:-8px 0 40px rgba(0,0,0,.2);
    transition: right .35s cubic-bezier(.34,1.1,.64,1);
  }
  .nav__list--open { right:0; }
  .nav__link { font-size:1.15rem; padding:16px; text-align:center; }
  .nav__toggle--open span:nth-child(1){ transform: translateY(9px) rotate(45deg);}
  .nav__toggle--open span:nth-child(2){ opacity:0;}
  .nav__toggle--open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg);}

  .concept__cards { grid-template-columns:1fr; gap:18px; }
  .approach__grid { grid-template-columns:1fr; }
  .stories__grid { grid-template-columns:1fr; gap:22px; }
  .partners__grid { grid-template-columns:1fr; gap:18px; }

  .hero { min-height:auto; padding:120px var(--gutter) 70px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; gap:36px; }
  .hero__stat { width:100%; justify-content: flex-start; }
  .marquee__track span { font-size: 3rem; padding: 0 24px; }
  .footer__inner { flex-direction: column; align-items:flex-start; }
  .footer__bottom { flex-direction: column; }
}

/* ===== スクロール演出 ===== */
.reveal { opacity:0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity:1; transform:none; }
.reveal[data-delay="1"]{ transition-delay:.08s;}
.reveal[data-delay="2"]{ transition-delay:.16s;}
.reveal[data-delay="3"]{ transition-delay:.24s;}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* =============================================================
   ストーリー個別ページ専用スタイル
   ============================================================= */
.article__hero {
  position: relative;
  padding: clamp(120px,16vw,200px) 0 clamp(48px,7vw,88px);
  overflow: hidden;
}
.article__hero--save { background: var(--c-primary); }
.article__hero--family { background: var(--c-blue); }
.article__hero--lost { background: var(--c-purple); }
.article__hero-inner { position: relative; z-index: 1; }
.article__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .92rem; color: #fff;
  margin-bottom: 32px; opacity: .9; transition: opacity .2s;
}
.article__back:hover { opacity: 1; }
.article__back svg { width: 18px; height: 18px; }
.article__tag {
  display: inline-block; font-size: .82rem; font-weight: 700;
  color: var(--c-ink); background: var(--c-lime);
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
}
.article__title {
  font-size: clamp(1.8rem,5vw,3.4rem); font-weight: 900;
  line-height: 1.45; color: #fff; margin-bottom: 24px;
}
.article__meta { display: flex; gap: 24px; flex-wrap: wrap; color: rgba(255,255,255,.92); font-weight: 700; font-size: .92rem; }

.article__body { max-width: 760px; margin: 0 auto; padding: clamp(48px,7vw,80px) var(--gutter); }
.article__lead { font-size: 1.2rem; font-weight: 700; line-height: 1.95; margin-bottom: 40px; color: var(--c-ink); }
.article__figure { margin: 44px 0; }
.article__figure img { width: 100%; border-radius: var(--radius); }
.article__figure-ph {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius);
  background: linear-gradient(135deg, #f2f2f2, #e2e2e2);
  display: flex; align-items: center; justify-content: center;
  color: #999; font-weight: 700;
}
.article__figcaption { margin-top: 12px; font-size: .85rem; color: var(--c-text-light); text-align: center; }
.article__body h2 {
  font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 900; line-height: 1.5;
  margin: 56px 0 20px; padding-left: 18px; border-left: 8px solid var(--c-primary);
}
.article__body h3 { font-size: 1.3rem; font-weight: 800; margin: 40px 0 16px; }
.article__body p { font-size: 1.05rem; line-height: 2.05; margin-bottom: 24px; }
.article__body strong { color: var(--c-primary); font-weight: 800; }
.article__quote {
  background: var(--c-lime); border-radius: var(--radius);
  padding: clamp(28px,4vw,44px); margin: 44px 0;
  font-size: 1.2rem; font-weight: 800; line-height: 1.85; color: var(--c-ink);
}
.article__share { margin-top: 56px; padding-top: 40px; border-top: 2px solid #f0f0f0; text-align: center; }
.article__share-label { font-weight: 700; margin-bottom: 16px; color: var(--c-text-light); }
.article__share-btns { display: flex; gap: 12px; justify-content: center; }
.article__share-btns a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-ink); color: #fff; transition: transform .2s, background .2s;
}
.article__share-btns a:hover { transform: translateY(-3px); background: var(--c-primary); }
.article__share-btns svg { width: 20px; height: 20px; }

.article__cta {
  text-align: center; background: var(--c-green); color: #fff;
  padding: clamp(56px,8vw,96px) var(--gutter);
}
.article__cta-title { font-size: clamp(1.5rem,4vw,2.4rem); font-weight: 900; color: var(--c-lime); margin-bottom: 20px; line-height: 1.4; }
.article__cta-text { color: rgba(255,255,255,.85); margin-bottom: 32px; }
