@charset "UTF-8";

/* =========================================================
   Design tokens — derived from the Figma file
   "児童養護施設SUU設立LPページ" (Desktop 1920 / Mobile 390)
   ========================================================= */
:root {
  /* Brand */
  --coral: #ff6b5c;
  --coral-deep: #f26c5b;
  --coral-soft: #ff7a66;
  --cyan: #08add6;
  --cyan-mid: #2bb2db;
  --cyan-deep: #0885ab;
  --yellow: #f7c85b;
  --amber: #f4b746;
  --orange: #e58a17;
  --mint: #49b9a4;
  --mint-deep: #2f9c8a;
  --navy: #094358;

  /* Text */
  --ink: #0e333d;
  --ink-strong: #12343f;
  --ink-heading: #14292e;
  --body: #263036;
  --body-soft: #435a61;
  --body-mute: #49656c;

  /* Surfaces */
  --paper: #fffefb;
  --white: #fff;
  --bg-story: #fff8ee;
  --bg-use: #f1fafd;
  --bg-news: #fff4d8;
  --bg-method: #b9e8f5;
  --bg-voices: #f2f1ff;
  --bg-donors: #fff8e8;
  --bg-org: #edfaf6;

  /* Layout */
  --content: 1420px;
  --wide: 1760px;
  --gutter: clamp(20px, 4.1vw, 80px);
  --pad: clamp(20px, 5.5vw, 80px);
  --header-h: 104px;

  /* Elevation */
  --shadow-card: 0 12px 30px rgba(9, 79, 107, .08);
  --shadow-photo: 0 18px 36px rgba(13, 46, 56, .14);
  --shadow-float: 0 14px 28px rgba(10, 71, 97, .1);
}

/* =========================================================
   Base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  /* Decorative accents may bleed; keep the page from growing sideways. */
  overflow-x: hidden;
}

h1, h2, h3, p, figure, address { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
address { font-style: normal; }

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan-deep);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__media img {
    animation: none !important;
    transform: none !important;
  }
  .hero__card > *,
  .hero__card::before {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .accent { animation: none !important; }
}

/* =========================================================
   Shared components
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes accent-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(8px, -12px, 0) scale(1.04); }
}

@keyframes hero-kenburns {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1.2%, 0); }
}

/* Scroll / entrance reveals (driven by .is-inview from JS) */
@media (prefers-reduced-motion: no-preference) {
  .hero__card,
  .story__head,
  .story-row,
  .panel--use .section-head,
  .use-card,
  .news,
  .giving__head,
  .giving-card,
  .donate__inner,
  .panel--voices .section-head,
  .voice-card,
  .voice-more,
  .panel--donors .section-head,
  .donor-card,
  .panel--org .section-head,
  .org-photo,
  .org-desc,
  .site-footer__brand,
  .site-footer__contact {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
      opacity .75s cubic-bezier(.2, .8, .2, 1),
      transform .75s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .reveal--left { transform: translate3d(-36px, 0, 0); }
  .reveal--right { transform: translate3d(36px, 0, 0); }
  .reveal--scale { transform: translate3d(0, 16px, 0) scale(.96); }
  .reveal--fade { transform: none; }

  .hero__card.is-inview,
  .story__head.is-inview,
  .story-row.is-inview,
  .panel--use .section-head.is-inview,
  .use-card.is-inview,
  .news.is-inview,
  .giving__head.is-inview,
  .giving-card.is-inview,
  .donate__inner.is-inview,
  .panel--voices .section-head.is-inview,
  .voice-card.is-inview,
  .voice-more.is-inview,
  .panel--donors .section-head.is-inview,
  .donor-card.is-inview,
  .panel--org .section-head.is-inview,
  .org-photo.is-inview,
  .org-desc.is-inview,
  .site-footer__brand.is-inview,
  .site-footer__contact.is-inview {
    opacity: 1;
    transform: none;
  }

  .story-row__figure img,
  .giving-card__visual img,
  .org-photo img {
    transition: transform 1.15s cubic-bezier(.2, .8, .2, 1);
  }
  .story-row:not(.is-inview) .story-row__figure img,
  .giving-card:not(.is-inview) .giving-card__visual img,
  .org-photo:not(.is-inview) img {
    transform: scale(1.06);
  }
  .story-row.is-inview .story-row__figure img,
  .giving-card.is-inview .giving-card__visual img,
  .org-photo.is-inview img {
    transform: scale(1);
  }
}

@media (scripting: none) {
  .hero__card,
  .hero__card > *,
  .story__head,
  .story-row,
  .use-card,
  .news,
  .giving__head,
  .giving-card,
  .donate__inner,
  .voice-card,
  .voice-more,
  .donor-card,
  .org-photo,
  .org-desc,
  .site-footer__brand,
  .site-footer__contact,
  .section-head {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__card::before { transform: none !important; }
}

.btn--coral {
  background: var(--coral-deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(140, 46, 31, .22);
}
.btn--coral:hover { background: #e85c4b; }

.btn--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 31, 43, .2);
}
.btn--yellow:hover { background: #f5bf42; }

.btn--lg {
  min-height: 66px;
  padding-inline: 44px;
  font-size: 24px;
  background: var(--coral);
  box-shadow: 0 10px 20px rgba(255, 82, 64, .22);
}
.btn--lg:hover { background: #ff5747; }

.btn--pill { padding-inline: 60px; font-size: 22px; }
.btn--block { display: flex; width: 100%; }
.btn--arrow img { width: 22px; height: 22px; }

.pill {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 999px;
  background: #e0f7fc;
  color: var(--cyan-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
}
.eyebrow--coral { color: var(--coral-deep); }
.eyebrow--amber { color: #f09d2f; }
.eyebrow--cyan { color: var(--cyan); }

/* Responsive copy / chrome toggles */
.hero__lead--mobile,
.story__lead--mobile,
.section-head__eyebrow-mobile,
.section-head__title--mobile,
.section-head__lead--mobile,
.use-card__title-mobile,
.use-card__body-mobile,
.giving__head,
.giving-card__ribbon--mobile { display: none; }

/* Decorative translucent circles from the design */
.accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: accent-float 12s ease-in-out infinite alternate;
}
.accent--story-coral,
.accent--use-coral,
.accent--voices-coral {
  animation-duration: 14s;
  animation-direction: alternate-reverse;
}
.accent--story-yellow,
.accent--use-yellow,
.accent--donor-mustard {
  animation-duration: 16s;
  animation-delay: -4s;
}

/* =========================================================
   Header — fixed, follows the viewport while scrolling
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 8px 24px rgba(13, 46, 56, .1);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 28px rgba(13, 46, 56, .14);
}

.headerSubpage {
  padding-top: var(--header-h);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding-inline: clamp(16px, 4.6vw, 88px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.brand__mark { width: 72px; height: 72px; }
.brand__name {
  color: #1a2429;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.gnav__list a {
  position: relative;
  color: #293338;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--coral-deep);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.gnav__list a:hover::after,
.gnav__list a.is-active::after,
.gnav__list a[aria-current="true"]::after { transform: scaleX(1); }
.gnav__list a.is-active,
.gnav__list a[aria-current="true"] { color: var(--coral-deep); }

.gnav__cta { display: none; }
.header__cta { width: 190px; flex-shrink: 0; }
.menu-toggle { display: none; }
.nav-scrim { display: none; }

/* =========================================================
   Hero — bold glass panel over full-bleed photo
   ========================================================= */
.hero {
  position: relative;
  min-height: min(1080px, 100vh);
  overflow: hidden;
  isolation: isolate;
}
.hero__visual {
  position: absolute;
  inset: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.04);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 42, 54, .18) 0%, rgba(8, 42, 54, .04) 42%, rgba(8, 42, 54, .28) 100%),
    linear-gradient(to top, rgba(8, 42, 54, .35) 0%, transparent 45%);
  pointer-events: none;
}

.accent--hero-yellow {
  top: 120px;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(247, 200, 91, .55) 0%, rgba(247, 200, 91, 0) 70%);
  filter: blur(2px);
}
.accent--hero-coral {
  bottom: 12%;
  right: 42%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 107, 92, .35) 0%, rgba(255, 107, 92, 0) 72%);
  filter: blur(4px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: min(1800px, 100% - 2 * var(--gutter));
  min-height: inherit;
  margin-inline: auto;
  padding-block: calc(var(--header-h) + 80px) 100px;
}

.hero__card {
  position: relative;
  width: min(720px, 100%);
  padding: 48px 44px 40px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 36px;
  background: linear-gradient(155deg, rgba(255, 252, 248, .78) 0%, rgba(255, 248, 240, .58) 100%);
  box-shadow:
    0 30px 80px rgba(8, 40, 52, .28),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 6px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, var(--coral) 0%, var(--amber) 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__card::before {
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform .7s cubic-bezier(.2, .8, .2, 1) .35s;
  }
  .hero__card.is-inview::before {
    transform: scaleY(1);
  }
  .hero__card > * {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
      opacity .55s cubic-bezier(.2, .8, .2, 1),
      transform .55s cubic-bezier(.2, .8, .2, 1);
  }
  .hero__card.is-inview > * {
    opacity: 1;
    transform: none;
  }
  .hero__card.is-inview > *:nth-child(1) { transition-delay: .1s; }
  .hero__card.is-inview > *:nth-child(2) { transition-delay: .2s; }
  .hero__card.is-inview > *:nth-child(3) { transition-delay: .32s; }
  .hero__card.is-inview > *:nth-child(4) { transition-delay: .44s; }
  .hero__card.is-inview > *:nth-child(5) { transition-delay: .56s; }
}

.pill--hero {
  background: rgba(224, 247, 252, .92);
  box-shadow: 0 8px 20px rgba(8, 133, 171, .12);
}

.hero__title {
  margin-top: 22px;
  color: #071f28;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .01em;
  text-wrap: balance;
}
.hero__lead {
  margin-top: 22px;
  color: #163743;
  font-size: 19px;
  line-height: 1.85;
}

.hero__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 34px;
  padding: 0;
  background: none;
}
.hero__cta {
  min-width: 260px;
  min-height: 72px;
  font-size: 24px;
  box-shadow: 0 16px 36px rgba(255, 82, 64, .35);
}
.hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 42px rgba(255, 82, 64, .42);
}
.hero__note {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(13, 46, 56, .1);
}
.hero__note strong {
  color: var(--coral-deep);
  font-size: 20px;
}

/* =========================================================
   Section shells
   ========================================================= */
.panel {
  position: relative;
  width: min(var(--content), 100% - 2 * var(--gutter));
  margin-inline: auto;
  border-radius: 40px;
}
.panel--wide {
  width: min(var(--wide), 100% - 2 * var(--gutter));
  border-radius: 56px;
}
.panel__inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), 100%);
  margin-inline: auto;
  padding: 0 var(--pad);
}

.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head__title {
  color: var(--ink-strong);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
}
.section-head--center .section-head__title {
  color: #000;
  font-size: 35px;
}
.section-head__lead {
  margin-top: 26px;
  color: #1b232a;
  font-size: 22px;
  line-height: 1.73;
}
.section-head__sub {
  margin-top: 12px;
  color: var(--body-mute);
  font-size: 20px;
  font-weight: 700;
}
.section-head__sub--strong { color: var(--ink-strong); font-size: 22px; }

/* =========================================================
   Story
   ========================================================= */
.panel--story {
  margin-top: 80px;
  padding-block: 52px 80px;
  background: var(--bg-story);
}
.accent--story-sky {
  top: 110px;
  left: -125px;
  width: 230px;
  height: 230px;
  background: rgba(143, 221, 242, .28);
}
.accent--story-coral {
  top: 580px;
  right: -45px;
  width: 145px;
  height: 145px;
  background: rgba(255, 141, 121, .24);
}
.accent--story-yellow {
  top: 2170px;
  left: 0;
  width: 170px;
  height: 170px;
  background: rgba(247, 200, 91, .2);
}

.story__head { text-align: center; }
.story__logo {
  width: 72px;
  height: 72px;
  margin-inline: auto;
}
.story__title {
  margin-top: 32px;
  color: var(--cyan-mid);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
}
.story__lead {
  max-width: 1000px;
  margin: 30px auto 0;
  color: #1b232a;
  font-size: 22px;
  line-height: 1.64;
}

.story__rows {
  display: grid;
  gap: 120px;
  margin-top: 120px;
}
.story-row {
  display: grid;
  grid-template-columns: 1.07fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-row--reverse .story-row__body { order: 2; }
.story-row--reverse .story-row__figure { order: 1; }

.story-row__title {
  margin-bottom: 22px;
  color: var(--ink-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
.story-row__body p {
  color: var(--body);
  font-size: 21px;
  line-height: 1.72;
}
.story-row__figure img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-photo);
}

/* =========================================================
   ご寄付の使い道
   ========================================================= */
.panel--use {
  margin-top: 50px;
  padding-block: 70px 80px;
  background: var(--bg-use);
}
.accent--use-yellow {
  top: 26px;
  left: 26px;
  width: 100px;
  height: 100px;
  background: rgba(247, 200, 91, .22);
}
.accent--use-coral {
  top: 400px;
  right: 5px;
  width: 72px;
  height: 72px;
  background: rgba(255, 122, 102, .22);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.use-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 26px 24px;
  border: 1px solid #dde8eb;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 12px rgba(10, 38, 48, .08);
}
.use-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pictogram {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
}
.pictogram img { width: 26px; height: 26px; }
.pictogram--coral { background: #fff1ee; }
.pictogram--amber { background: #fff7e6; }
.pictogram--violet { background: #f3f1ff; }
.pictogram--mint { background: #eaf8f4; }

.use-card__title {
  color: #123742;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.43;
}
.use-card__body {
  color: var(--body-soft);
  font-size: 15px;
  line-height: 1.67;
}

/* =========================================================
   お知らせ
   ========================================================= */
.panel--news {
  margin-top: 60px;
  padding: 50px var(--pad);
  background: var(--bg-news);
  border-radius: 36px;
}
.news {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.news__title {
  color: var(--orange);
  font-size: 38px;
  font-weight: 700;
}
.news__list {
  display: block;
  padding: 10px 50px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 71, 97, .08);
}
.news__list li {
  display: block;
  width: 100%;
}
.news__list li + li { border-top: 1px solid #e3eef1; }
.news__list a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  color: #213036;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.news__list a::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral-deep);
}
.news__list a::after {
  content: "＞";
  margin-left: auto;
  color: var(--body-mute);
  font-size: 20px;
  transition: transform .18s ease;
}
.news__list a:hover { color: var(--coral-deep); }
.news__list a:hover::after { transform: translateX(4px); }
.news__more {
  margin-top: 16px;
  text-align: right;
}
.news__more a {
  color: var(--coral-deep);
  font-size: 16px;
  font-weight: 700;
}
.news__more a::after {
  content: "＞";
  margin-left: 8px;
}

/* =========================================================
   あなたの寄付でできること
   ========================================================= */
.giving {
  width: min(1100px, 100% - 2 * var(--gutter));
  margin: 62px auto 0;
}
.giving__head { margin-bottom: 28px; }
.giving__title {
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.48;
}
.giving__lead {
  margin-top: 14px;
  color: #2b4d57;
  font-size: 15px;
  line-height: 1.8;
}
.giving__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
.giving-card__visual {
  position: relative;
  border-radius: 27px;
  overflow: hidden;
}
.giving-card__visual img {
  width: 100%;
  height: 307px;
  object-fit: cover;
}
.giving-card__ribbon {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  height: 89px;
  padding-top: 22px;
  border-radius: 24px 24px 0 0;
  color: #fff;
}
.giving-card__ribbon--coral { background: var(--coral-soft); }
.giving-card__ribbon--amber { background: var(--amber); }
.giving-card__ribbon--mint { background: var(--mint); }
.giving-card__unit { font-size: 20px; font-weight: 700; }
.giving-card__amount { font-size: 50px; font-weight: 700; line-height: 1; }

.giving-card__title {
  margin-top: 22px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.giving-card__body {
  margin-top: 12px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

/* =========================================================
   寄付する（ボタン切替 + フォーム）
   ========================================================= */
.donate {
  position: relative;
  margin-top: 90px;
  padding: 72px 0 64px;
  background: var(--bg-method);
  overflow: hidden;
}

.donate__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

.donate__head {
  margin-bottom: 28px;
  text-align: center;
}
.donate__eyebrow {
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}
.donate__title {
  margin-top: 8px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.donate-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.donate-switch__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 96px;
  padding: 20px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.donate-switch__btn:hover { transform: translateY(-2px); }
.donate-switch__label {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}
.donate-switch__hint {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: .85;
}

.donate-switch__btn--coral {
  background: #fff;
  border-color: #ffc4b8;
  color: #c24a3a;
}
.donate-switch__btn--coral.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 107, 92, .28);
}
.donate-switch__btn--mint {
  background: #fff;
  border-color: #a8ddd0;
  color: #1f7a6a;
}
.donate-switch__btn--mint.is-active {
  background: var(--mint);
  border-color: var(--mint);
  color: #fff;
  box-shadow: 0 12px 28px rgba(73, 185, 164, .28);
}

.donate__panel {
  padding: 28px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 79, 107, .1);
}

.donate-cycle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 999px;
  background: #eef7fa;
}
.donate-cycle__btn {
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #3a5a63;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.donate-cycle__btn:hover { color: var(--ink); }
.donate-cycle__btn.is-active {
  background: var(--white);
  color: var(--coral-deep);
  box-shadow: 0 6px 16px rgba(13, 46, 56, .1);
}

.donate__form { padding: 0; }
.donate__form img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* =========================================================
   応援メッセージ
   ========================================================= */
.panel--voices {
  margin-top: 120px;
  padding-block: 60px 70px;
  background: var(--bg-voices);
  border-radius: 48px;
}
.accent--voices-coral {
  top: 38px;
  right: 20px;
  width: 250px;
  height: 250px;
  background: rgba(255, 141, 121, .18);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.voice-card {
  display: flex;
  gap: 24px;
  min-height: 230px;
  padding: 34px 24px;
  border: 1px solid #c7e8f2;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-float);
}
.voice-card__portrait {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}
.voice-card__name {
  color: #142b30;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}
.voice-card__org {
  color: #576e75;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.voice-card__text {
  margin-top: 10px;
  color: #29383d;
  font-size: 14px;
  line-height: 1.72;
}

.voice-more {
  margin-top: 50px;
  text-align: center;
}

/* =========================================================
   ご寄付者様一覧
   ========================================================= */
.panel--donors {
  margin-top: 64px;
  padding-block: 52px 70px;
  background: var(--bg-donors);
}
.accent--donor-mustard {
  bottom: 60px;
  left: 30px;
  width: 300px;
  height: 300px;
  background: rgba(247, 200, 91, .17);
}

.donor-card {
  padding: 38px 40px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.donor-card + .donor-card { margin-top: 32px; }
.donor-card__label {
  display: inline-block;
  min-width: 160px;
  padding: 6px 24px;
  border-radius: 999px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.donor-card__label--coral { background: var(--coral-deep); }
.donor-card__label--mint { background: var(--mint-deep); }
.donor-card__names {
  margin-top: 24px;
  color: var(--ink-strong);
  font-size: 16px;
  line-height: 1.75;
}

.donor-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-top: 28px;
}
.donor-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 109px;
  padding: 14px 42px;
  border: 1px solid #d6edf2;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(9, 79, 107, .05);
  overflow: hidden;
}
.donor-logos img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================
   運営主体
   ========================================================= */
.panel--org {
  margin-top: 94px;
  padding-block: 50px 70px;
  background: var(--bg-org);
}
.accent--org-mint {
  top: 60px;
  right: 30px;
  width: 280px;
  height: 280px;
  background: rgba(98, 199, 178, .16);
}

.org-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(9, 79, 107, .1);
}
.org-desc {
  margin-top: 30px;
  padding: 30px 40px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 79, 107, .06);
  color: var(--body-mute);
  font-size: 16px;
  line-height: 1.75;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  position: relative;
  margin-top: 98px;
  padding: 50px 0 40px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.accent--footer-glow {
  top: -128px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: rgba(255, 255, 255, .035);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  width: min(var(--content), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.site-footer__contact {
  position: relative;
  padding-left: 120px;
}
.site-footer__contact::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 1px;
  height: 260px;
  background: rgba(255, 255, 255, .22);
}

.site-footer__logo { width: 183px; height: auto; }
.site-footer__org {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}
.site-footer__address {
  margin-top: 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.67;
}
.site-footer__address a:hover { text-decoration: underline; }

.site-footer__social-caption {
  margin-top: 36px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}
.social {
  display: flex;
  gap: 56px;
  margin-top: 22px;
}
.social a {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 20, 30, .28);
  transition: transform .18s ease;
}
.social a:hover { transform: translateY(-3px); }
.social img { width: auto; height: 34px; }

.site-footer__copyright {
  position: relative;
  z-index: 1;
  width: min(var(--content), 100% - 2 * var(--gutter));
  margin: 56px auto 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

/* =========================================================
   Collapsed navigation — 1023px and below
   The five nav items plus the CTA stop fitting the header bar
   well before the mobile layout kicks in, so the drawer starts here.
   ========================================================= */
@media (max-width: 1023px) {
  .header__cta { display: none; }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: #e0f7fc;
    cursor: pointer;
  }

  .gnav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: min(320px, 86vw);
    max-height: calc(100dvh - var(--header-h));
    padding: 24px 20px 32px;
    background: #fff;
    border-radius: 0 0 0 24px;
    box-shadow: -8px 12px 32px rgba(13, 46, 56, .18);
    overflow-y: auto;
    /* Stays inside the viewport when closed: a fixed element parked off-screen
       would widen the document and add a horizontal scrollbar. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s;
  }
  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__list a {
    display: block;
    padding: 15px 4px;
    border-bottom: 1px solid #e6f1f4;
    font-size: 16px;
  }
  .gnav__list a::after { display: none; }
  .gnav__list a.is-active,
  .gnav__list a[aria-current="true"] {
    color: var(--coral-deep);
    background: #fff7f5;
  }

  .gnav__cta {
    display: flex;
    margin-top: 20px;
    min-height: 56px;
  }

  .nav-scrim {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 98;
    background: rgba(8, 40, 52, .4);
  }
  .nav-scrim[hidden] { display: none; }
}

/* =========================================================
   Tablet — 1200px and below
   ========================================================= */
@media (max-width: 1199px) {
  :root { --header-h: 88px; }

  .brand__mark { width: 56px; height: 56px; }
  .gnav__list { gap: 22px; }
  .gnav__list a { font-size: 14px; }
  .header__cta { width: 160px; min-height: 54px; font-size: 16px; }

  .hero { min-height: 760px; }
  .hero__inner { padding-block: calc(var(--header-h) + 60px) 80px; }
  .hero__title { font-size: 34px; }
  .hero__lead { font-size: 17px; }
  .accent--hero-yellow { right: 24px; width: 160px; height: 160px; }
  .accent--hero-coral { right: 36%; width: 140px; height: 140px; }
  .hero__cta { min-width: 220px; min-height: 64px; font-size: 20px; }

  .story__title { font-size: 34px; }
  .story__lead { font-size: 18px; }
  .story__rows { gap: 80px; margin-top: 80px; }
  .story-row { gap: 48px; }
  .story-row__title { font-size: 26px; }
  .story-row__body p { font-size: 17px; }
  .story-row__figure img { height: 340px; }

  .section-head__title { font-size: 32px; }
  .section-head--center .section-head__title { font-size: 28px; }
  .section-head__lead { font-size: 18px; }

  .use-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .news { grid-template-columns: 1fr; gap: 24px; }
  .news__list { padding-inline: 28px; }

  .giving__grid { gap: 20px; }
  .giving-card__amount { font-size: 40px; }
  .giving-card__unit { font-size: 16px; }

  .donate__title { font-size: 28px; }
  .donate-switch__label { font-size: 18px; }
  .donate-cycle__btn { font-size: 15px; }

  .voice-grid { grid-template-columns: repeat(2, 1fr); }

  .donor-logos { gap: 20px; }
  .donor-logos li { height: 92px; padding-inline: 24px; }

  .org-photo img { height: 320px; }

  .site-footer__inner { gap: 60px; }
  .site-footer__contact { padding-left: 60px; }
  .social { gap: 28px; }
  .social a { width: 72px; height: 72px; }
  .social img { height: 28px; }
}

/* =========================================================
   Mobile — 767px and below (Figma: Mobile 390)
   ========================================================= */
@media (max-width: 767px) {
  :root {
    --header-h: 72px;
    --gutter: 0px;
    --pad: 20px;
  }

  body { font-size: 15px; }

  /* --- Header + drawer --- */
  .site-header { background: rgba(255, 255, 255, .97); }
  .site-header__inner {
    gap: 12px;
    padding-inline: 16px;
  }
  .brand { gap: 10px; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__name { color: var(--ink); font-size: 12px; line-height: 1.5; }
  .brand__name-break { display: block; font-size: 0; }

  /* Responsive copy swaps */
  .hero__lead--desktop,
  .story__lead--desktop,
  .section-head__title--desktop,
  .section-head__lead--desktop,
  .use-card__title-desktop,
  .use-card__body-desktop,
  .giving-card__ribbon--desktop { display: none; }

  .hero__lead--mobile,
  .story__lead--mobile,
  .section-head__eyebrow-mobile,
  .section-head__title--mobile,
  .section-head__lead--mobile,
  .use-card__title-mobile,
  .use-card__body-mobile,
  .giving__head { display: block; }
  .giving-card__ribbon--mobile { display: inline-flex; }

  /* --- Hero: FV fits donate card; mobile photo fills remaining space --- */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    overflow: hidden;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
  }
  .hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    transform: none;
    animation: none;
  }
  .hero__veil {
    background:
      linear-gradient(to top, rgba(8, 42, 54, .55) 0%, rgba(8, 42, 54, .16) 42%, transparent 68%);
  }
  .hero__inner {
    width: 100%;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    margin-top: 0;
    padding: calc(var(--header-h) + 12px) 16px 20px;
  }
  .hero__card {
    width: 100%;
    padding: 22px 20px 18px;
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(255, 252, 248, .94) 0%, rgba(255, 248, 240, .88) 100%);
    box-shadow: 0 18px 40px rgba(8, 40, 52, .28);
  }
  .hero__card::before {
    top: 14%;
    bottom: 14%;
    width: 5px;
  }
  .pill { padding: 7px 14px; font-size: 13px; }
  .hero__title { margin-top: 12px; font-size: 24px; line-height: 1.4; }
  .hero__lead { margin-top: 12px; font-size: 14px; line-height: 1.65; }
  .hero__action {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
  }
  .btn--lg,
  .hero__cta {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 12px 20px 12px 24px;
    font-size: 18px;
    border-radius: 29px;
  }
  .hero__note {
    justify-content: center;
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .hero__note strong { font-size: 16px; }
  .accent--hero-yellow {
    top: 12%;
    right: 4%;
    width: 100px;
    height: 100px;
  }
  .accent--hero-coral {
    display: none;
  }

  /* --- Section shells become full-bleed bands --- */
  .panel,
  .panel--wide {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding-block: 64px 72px;
    overflow: hidden;
  }
  .panel__inner { padding-inline: 20px; }
  .giving,
  .donate,
  .site-footer {
    max-width: 100%;
    overflow: hidden;
  }

  .section-head { margin-bottom: 24px; }
  .section-head__title { font-size: 27px; line-height: 1.48; }
  .section-head--center { text-align: left; }
  .section-head--center .section-head__title { font-size: 25px; }
  .section-head__lead { margin-top: 16px; font-size: 15px; line-height: 1.8; }
  .section-head__lead br { display: none; }
  .section-head__sub { font-size: 15px; }
  .section-head__sub--strong { font-size: 16px; }
  .eyebrow { font-size: 12px; letter-spacing: .08em; }

  /* --- Story --- */
  .panel--story { background: #fff9ed; }
  .accent--story-sky { top: 40px; left: -40px; width: 140px; height: 140px; }
  .accent--story-coral { top: 700px; right: -30px; width: 110px; height: 110px; }
  .accent--story-yellow { display: none; }

  .story__logo { width: 58px; height: 58px; }
  .story__title { margin-top: 24px; font-size: 25px; color: var(--cyan); }
  .story__lead { margin-top: 20px; font-size: 15px; line-height: 1.86; text-align: left; }

  .story__rows { gap: 32px; margin-top: 40px; }
  .story-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 0 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 51, 61, .1);
    overflow: hidden;
  }
  .story-row__body {
    order: 2;
    padding: 16px 16px 0;
  }
  .story-row__figure {
    order: 1;
    margin: 0;
  }
  .story-row__figure img {
    height: 220px;
    border-radius: 0;
    box-shadow: none;
  }
  .story-row__title { margin-bottom: 14px; font-size: 20px; line-height: 1.55; }
  .story-row__body p { font-size: 15px; line-height: 1.8; color: #2e4d57; }

  /* --- ご寄付の使い道 --- */
  .panel--use { background: #ebfaff; }
  .accent--use-yellow,
  .accent--use-coral { display: none; }
  .section-head--center { text-align: left; }
  .section-head__eyebrow-mobile { margin-bottom: 12px; }
  .use-grid { grid-template-columns: 1fr; gap: 14px; }
  .use-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    align-items: center;
    padding: 16px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(13, 51, 64, .08);
  }
  .use-card__head {
    display: contents;
  }
  .use-card__head .pictogram {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .use-card__title {
    grid-column: 2;
    font-size: 18px;
    line-height: 1.55;
  }
  .use-card__body {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    line-height: 1.64;
    color: #123b47;
  }

  /* --- お知らせ --- */
  .panel--news {
    padding: 56px 20px 64px;
    background: #fff7d6;
    border-radius: 0;
  }
  .news { grid-template-columns: 1fr; gap: 20px; }
  .news__title { font-size: 27px; color: #f07a0d; }
  .news__list { padding: 8px 16px; border-radius: 22px; }
  .news__list a { padding: 12px 10px; font-size: 14px; }
  .news__list a::after { font-size: 16px; }
  .news__more { text-align: left; }

  /* --- 寄付でできること --- */
  .giving {
    width: 100%;
    margin-top: 0;
    padding: 64px 20px 40px;
  }
  .giving__grid { grid-template-columns: 1fr; gap: 20px; }
  .giving-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 16px 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 46, 56, .1);
  }
  .giving-card__visual { border-radius: 18px; }
  .giving-card__visual img { height: 180px; }
  .giving-card__ribbon--mobile {
    align-self: flex-start;
    width: auto;
    height: auto;
    padding: 7px 14px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }
  .giving-card__title { margin-top: 0; font-size: 18px; text-align: left; }
  .giving-card__body { margin-top: 0; font-size: 14px; font-weight: 400; color: #123845; line-height: 1.7; }

  /* --- 寄付する --- */
  .donate {
    margin-top: 0;
    padding: 56px 20px 48px;
  }
  .donate__inner { width: 100%; }
  .donate__head {
    margin-bottom: 20px;
    text-align: left;
  }
  .donate__title { font-size: 24px; }
  .donate-switch {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }
  .donate-switch__btn {
    min-height: 72px;
    padding: 16px 20px;
    border-radius: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .donate-switch__label { font-size: 17px; }
  .donate-switch__hint { font-size: 13px; }
  .donate__panel {
    padding: 16px;
    border-radius: 24px;
  }
  .donate-cycle {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }
  .donate-cycle__btn {
    min-height: 48px;
    border-radius: 16px;
    font-size: 15px;
  }
  .donate__form img { border-radius: 14px; }

  /* --- 応援メッセージ --- */
  .panel--voices { background: #f5f2ff; }
  .accent--voices-coral { width: 140px; height: 140px; right: -20px; }
  .voice-grid { grid-template-columns: 1fr; gap: 16px; }
  .voice-card {
    min-height: 0;
    gap: 16px;
    padding: 22px 18px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(20, 46, 61, .1);
  }
  .voice-card:nth-child(n + 2) { display: none; }
  .voice-card__portrait { width: 92px; height: 92px; }
  .voice-card__name { font-size: 18px; }
  .voice-card__org { font-size: 12px; font-weight: 400; }
  .voice-card__text { font-size: 14px; }
  .voice-more { margin-top: 28px; }
  .btn--pill { width: 100%; padding-inline: 24px; font-size: 17px; min-height: 56px; }

  /* --- ご寄付者様一覧 --- */
  .panel--donors { background: #fff7e0; }
  .accent--donor-mustard { display: none; }
  .donor-card { padding: 20px 18px; border-radius: 22px; box-shadow: none; }
  .donor-card + .donor-card { margin-top: 20px; }
  .donor-card__label {
    min-width: 0;
    padding: 0;
    background: none !important;
    font-size: 15px;
    text-align: left;
  }
  .donor-card__label--coral { color: var(--coral); }
  .donor-card__label--mint { color: #29a38f; }
  .donor-card__names { margin-top: 14px; font-size: 13px; color: #294752; }
  .donor-logos { gap: 8px; margin-top: 16px; }
  .donor-logos li {
    height: 60px;
    padding: 8px;
    border-radius: 12px;
    border-color: #dbebed;
    box-shadow: none;
  }

  /* --- 運営主体 --- */
  .panel--org { background: #ebfaf5; }
  .accent--org-mint { display: none; }
  .org-photo img { height: 220px; border-radius: 22px; }
  .org-desc {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
    box-shadow: none;
    font-size: 14px;
    color: #294a54;
  }

  /* --- Footer --- */
  .site-footer {
    margin-top: 0;
    padding: 56px 0 36px;
    background: #084052;
  }
  .accent--footer-glow { width: 220px; height: 220px; top: -40px; right: -40px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    padding-inline: 24px;
  }
  .site-footer__contact { padding-left: 0; }
  .site-footer__contact::before { display: none; }
  .site-footer__logo { width: 140px; }
  .site-footer__org { margin-top: 16px; font-size: 18px; }
  .site-footer__address { margin-top: 14px; font-size: 14px; color: #d9f0f5; }
  .btn--yellow { min-height: 58px; background: #ffc74f; font-size: 17px; }
  .site-footer__social-caption { margin-top: 24px; font-size: 13px; color: #bfe0e8; }
  .social { gap: 18px; margin-top: 16px; }
  .social a { width: 56px; height: 56px; box-shadow: none; }
  .social li:nth-child(1) a { background: #e0f7ff; }
  .social li:nth-child(2) a { background: #fff2c4; }
  .social li:nth-child(3) a { background: #ffe0e0; }
  .social img { height: 24px; }
  .site-footer__copyright {
    width: 100%;
    margin-top: 32px;
    padding-inline: 24px;
    font-size: 11px;
    color: #a6d1db;
  }
}

@media (max-width: 400px) {
  .hero__inner { padding-inline: 12px; }
  .hero__title { font-size: 22px; }
}

/* Short phones: keep donate CTA inside first view */
@media (max-width: 767px) and (max-height: 720px) {
  .hero__card { padding: 18px 16px 16px; }
  .hero__title { margin-top: 10px; font-size: 21px; line-height: 1.35; }
  .hero__lead { margin-top: 8px; font-size: 13px; line-height: 1.55; }
  .hero__action { margin-top: 14px; gap: 8px; }
  .btn--lg,
  .hero__cta {
    min-height: 50px;
    font-size: 17px;
  }
  .hero__inner { padding-bottom: 14px; }
}

/* blog (compiled from scss/blog) */
.news-back { margin: -24px 0 40px; text-align: center; }
.news-back a { color: #0071bc; font-size: 15px; font-weight: 700; }
.news-back a::before { content: "＜"; margin-right: 8px; }
.news-back--bottom { margin: 10px 0 0; }
@media only screen and (max-width: 990px) {
  .news-back--bottom { margin-bottom: 48px; }
}
.blogContainer{padding:40px 2% 80px}.blogContainer_wrap{max-width:1400px;margin:0 auto}.blogContainer_inner{display:flex;justify-content:space-between}.blogContainer_right{width:280px}.blogContainer_left{flex:1;margin-right:50px}.blogContainer .commonBtn{padding:50px 0 0;text-align:center}.blogContainer .activetyPostMain{display:flex;flex-wrap:wrap;justify-content:space-between}.blogContainer .activetyPostMain::after{content:"";display:block;width:48%}.blogContainer .activetyPostMain_item{display:block;width:48%;margin-bottom:35px;overflow:hidden;background:#fff;border-radius:8px;box-shadow:0 8px 24px rgba(13,46,56,.08);color:inherit;text-decoration:none;transition:transform .18s ease,box-shadow .18s ease}.blogContainer .activetyPostMain_item:hover{text-decoration:none;transform:translateY(-3px);box-shadow:0 12px 28px rgba(13,46,56,.12)}.blogContainer .activetyPostMain_pic-inner{width:100%;padding-top:62%;background-color:#e8eef0;background-position:center;background-size:cover}.blogContainer .activetyPostMain_item-inner{padding:14px 16px 18px}.blogContainer .activetyPostMain_data{display:flex;align-items:center;gap:12px;margin-bottom:10px}.blogContainer .activetyPostMain_data dt span{display:inline-block;padding:3px 10px;border-radius:3px;background:#33c9e9;color:#fff;font-size:12px}.blogContainer .activetyPostMain_data dd{color:#8aa0a6;font-size:13px}.blogContainer .activetyPostMain_title{font-size:16px;font-weight:700;line-height:1.5}.commonSectionTitle{position:relative;margin:0 0 48px;padding-bottom:16px;color:#3f3f3f;font-size:28px;font-weight:700;letter-spacing:.06em;text-align:center}.commonSectionTitle::after{content:"";display:block;width:48px;height:3px;margin:14px auto 0;background:#33c9e9}.blogSodePic{padding:10px 0}.blogSodePic_item{margin-bottom:15px}.blogSodePic_item img{width:100%}.blogSodePic_item a{transition:opacity .2s ease-in-out;cursor:pointer;opacity:1;filter:alpha(opacity=100)}@media only screen and (max-width: 990px){.blogSodePic_item a{opacity:1;filter:alpha(opacity=100)}}.blogSodePic_item a:active,.desktop .blogSodePic_item a:hover{text-decoration:none;opacity:.7;filter:alpha(opacity=70)}@media only screen and (max-width: 990px){.blogSodePic_item a:active,.desktop .blogSodePic_item a:hover{opacity:1;filter:alpha(opacity=100)}}.blogSideList{margin-bottom:30px}.blogSideList a:hover{text-decoration:none;background:#fafafa}.blogSideListItem{display:table;width:100%;padding:10px;border-top:1px solid #ddd}.blogSideListItem_left,.blogSideListItem_data{display:table-cell;vertical-align:top}.blogSideListItem_left{width:80px}.blogSideListItem_pic{width:80px;height:80px;background-size:cover;background-position:center center}.blogSideListItem_data{padding:0 0 0 10px}.blogSideListItem_title{font-size:14px;line-height:1.3;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;margin-bottom:10px}.blogSideListItem_category{color:#fff;text-align:center;border-radius:3px;font-size:12px;padding:3px 0;background:linear-gradient(90deg, #33c9e9, #0071bc)}.blogSide_title{background:linear-gradient(90deg, #33c9e9, #0071bc);text-align:center;font-size:18px;padding:10px 0;font-family:"m-plus-rounded-1c",sans-serif;color:#fff}.blogSide_inner{border:1px solid #ddd;margin-bottom:30px}.blogSideMonth{padding:15px}.blogSideMonth li{margin-top:10px}.blogSideMonth li:first-child{margin-top:0}.blogSideMonth li a{text-decoration:underline;font-size:14px;position:relative;padding:0 0 0 15px}.blogSideMonth li a:before{content:"";width:8px;height:8px;position:absolute;background:linear-gradient(90deg, #33c9e9, #0071bc);top:0;bottom:0;left:0;margin:auto}.blogSideMonth li a:active,.desktop .blogSideMonth li a:hover{text-decoration:none}.commonPager .wp-pagenavi{padding:30px 0 100px;display:flex;justify-content:center}.commonPager span,.commonPager a{display:inline-flex;text-align:center;margin:0 5px;font-size:14px;width:33px;height:30px;justify-content:center;align-items:center;color:#0071bc;border:1px solid #0071bc}.commonPager a{border:1px solid #0071bc}.commonPager a:active,.desktop .commonPager a:hover{background:#0071bc !important;border:1px solid #0071bc;text-decoration:none;color:#fff}.commonPager .current{width:30px;background:#0071bc;border:1px solid #0071bc;color:#fff}.commonPager .extend{padding:0;vertical-align:3px}.commonPager .extend .wp-pagenavi{border-top:none}.commonPager .previouspostslink,.commonPager .nextpostslink{width:60px}.blogDetail{border:1px solid #ddd;margin-bottom:150px;word-break:break-all}.blogDetail_head{padding:1em 2em;border-bottom:1px solid #ddd;display:flex;align-items:center;justify-content:space-between}.blogDetail_head-day{letter-spacing:.05em;color:#7f7f7f;font-size:13px}.blogDetail_head-category{font-size:14px}.blogDetail_head-icon img{width:30px;height:auto}.blogDetail_head-name{background:linear-gradient(90deg, #33c9e9, #0071bc);color:#fff;padding:5px 20px;border-radius:3px;font-size:13px}.blogDetail_title{font-size:28px;margin-bottom:35px;letter-spacing:.1em;font-family:"m-plus-rounded-1c",sans-serif;line-height:1.8}.blogDetail_inner{padding:2em;margin-bottom:50px}.blogDetailMain{margin-bottom:40px}.blogDetailMain h1{font-size:22px;background:linear-gradient(90deg, #33c9e9, #0071bc);color:#fff;padding:.5em;margin-bottom:2em;line-height:1.3;position:relative;letter-spacing:.1em;font-weight:600}.blogDetailMain h2{font-size:20px;line-height:1.8;margin-bottom:2em;border-bottom:2px solid #0071bc;padding:0 5px 5px;letter-spacing:.1em;font-weight:600}.blogDetailMain h3{font-size:18px;border-bottom:2px solid #0071bc;padding-bottom:5px;letter-spacing:.1em;margin-bottom:1.5em;font-weight:600}.blogDetailMain h3:before{content:"";width:10px;height:10px;background:linear-gradient(90deg, #33c9e9, #0071bc);display:inline-block;margin-right:8px}.blogDetailMain h4,.blogDetailMain h5,.blogDetailMain h6{font-size:16px;margin-bottom:2em;font-weight:600}.blogDetailMain img{max-width:100%;height:auto}.blogDetailMain p,.blogDetailMain pre{font-size:16px;margin-bottom:2em;line-height:2.2;padding:0 1em;letter-spacing:.06em}.blogDetailMain a{text-decoration:underline}.blogDetailMain a:active,.desktop .blogDetailMain a:hover{text-decoration:none}.blogDetailMain ul{list-style-type:disc;font-size:14px;margin:0 0 25px 20px}.blogDetailMain ol{list-style-type:decimal;font-size:14px;margin:0 0 25px 15px}.blogDetailMain ol li{padding-left:5px}.blogDetailMain blockquote{border:3px solid #f1f1f1;padding:15px;font-size:14px;display:block;margin-bottom:2em}.blogDetailMain strong{color:#0071bc}.blogDetailLinks{display:flex;justify-content:space-between}.blogDetailLinks_item{width:48%}.blogDetailLinks_item a{display:flex;height:50px;border-radius:3px;background:#58b188;position:relative;color:#fff;font-size:14px;letter-spacing:.05em;align-items:center;justify-content:center;border-radius:100px;transition:opacity .2s ease-in-out;cursor:pointer;opacity:1;filter:alpha(opacity=100)}@media only screen and (max-width: 990px){.blogDetailLinks_item a{opacity:1;filter:alpha(opacity=100)}}.blogDetailLinks_item a:active,.desktop .blogDetailLinks_item a:hover{text-decoration:none;opacity:.7;filter:alpha(opacity=70)}@media only screen and (max-width: 990px){.blogDetailLinks_item a:active,.desktop .blogDetailLinks_item a:hover{opacity:1;filter:alpha(opacity=100)}}.blogDetailLinks_item a:after{content:"";width:8px;height:8px;position:absolute;top:0;bottom:0;right:15px;margin:auto;border:solid #fff;border-width:2px 2px 0 0;transform:rotate(45deg)}.blogDetailRelation{margin:20px 30px 60px}.blogDetailRelation_title{font-size:22px;padding:10px 0 12px;letter-spacing:.1em;font-family:"m-plus-rounded-1c",sans-serif}.blogDetailRelationList a:active,.desktop .blogDetailRelationList a:hover{text-decoration:none;background:#fafafa}.blogDetailRelationItem{display:flex;width:100%;padding:10px 0 10px 0px;border-top:1px solid #ddd}.blogDetailRelationItem_left{width:120px;margin-right:20px}.blogDetailRelationItem_pic{width:140px;height:90px;background-size:cover;background-position:center center;background-repeat:no-repeat}.blogDetailRelationItem_data{flex:1;padding:0 0 0 15px;position:relative}.blogDetailRelationItem_title{display:block;padding-right:150px}.blogDetailRelationItem_title-01{font-size:14px;margin-bottom:10px;letter-spacing:.1em}.blogDetailRelationItem_title-02{font-size:16px;margin-bottom:0}.blogDetailRelationItem_comment{font-size:14px;line-height:1.4;padding-right:150px}.blogDetailRelationItem_category{color:#fff;display:block;position:absolute;top:0;right:0;width:120px;text-align:center;border-radius:3px;line-height:1.4;padding:3px 0;font-size:13px;background:linear-gradient(90deg, #33c9e9, #0071bc)}.blogCommonNavi{border-top:2px solid #ddd;position:relative;height:110px;margin:0 30px}.blogCommonNavi_item{position:absolute;top:0;bottom:0;display:inline-block;margin:auto;text-align:center;height:50px;width:140px}.blogCommonNavi_item a{display:block;padding:12px 0;font-size:14px;line-height:1.3;position:relative;color:#fff;background:#58b188;border-radius:100px;transition:opacity .2s ease-in-out;cursor:pointer;opacity:1;filter:alpha(opacity=100)}@media only screen and (max-width: 990px){.blogCommonNavi_item a{opacity:1;filter:alpha(opacity=100)}}.blogCommonNavi_item a:active,.desktop .blogCommonNavi_item a:hover{text-decoration:none;opacity:.7;filter:alpha(opacity=70)}@media only screen and (max-width: 990px){.blogCommonNavi_item a:active,.desktop .blogCommonNavi_item a:hover{opacity:1;filter:alpha(opacity=100)}}.blogCommonNavi_item a:before{content:"";position:absolute;top:0;bottom:0;margin:auto;width:8px;height:8px}.blogCommonNavi_item-01{left:0}.blogCommonNavi_item-01 a:before{left:15px;border-left:2px solid #fff;border-bottom:2px solid #fff;transform:rotate(45deg)}.blogCommonNavi_item-02{width:220px;right:0;left:0}.blogCommonNavi_item-03{right:0}.blogCommonNavi_item-03 a:before{right:15px;border-right:2px solid #fff;border-top:2px solid #fff;transform:rotate(45deg)}
@media only screen and (max-width: 990px){.blogContainer{padding:24px 15px 30px}.blogContainer_inner{flex-wrap:wrap}.blogContainer_right{width:100%;order:2}.blogContainer_left{flex:initial;margin-right:0px;width:100%;order:1}.blogContainer .commonBtn{padding:50px 0 0;text-align:center}.blogContainer .activetyPostMain::after{display:none}.blogContainer .activetyPostMain_item{width:100%;margin-bottom:30px}.blogSodePic{padding:10px 0}.blogSodePic_item{margin-bottom:15px}.blogSodePic_item a{transition:opacity .2s ease-in-out;cursor:pointer;opacity:1;filter:alpha(opacity=100)}}@media only screen and (max-width: 990px)and (max-width: 990px){.blogSodePic_item a{opacity:1;filter:alpha(opacity=100)}}@media only screen and (max-width: 990px){.blogSodePic_item a:active,.desktop .blogSodePic_item a:hover{text-decoration:none;opacity:.7;filter:alpha(opacity=70)}}@media only screen and (max-width: 990px)and (max-width: 990px){.blogSodePic_item a:active,.desktop .blogSodePic_item a:hover{opacity:1;filter:alpha(opacity=100)}}@media only screen and (max-width: 990px){.blogSideList{margin-bottom:30px}.blogSideList a:hover{text-decoration:none;background:#fafafa}.blogSideListItem{display:table;width:100%;padding:10px;border-top:1px solid #ddd}.blogSideListItem_left,.blogSideListItem_data{display:table-cell;vertical-align:top}.blogSideListItem_left{width:80px}.blogSideListItem_pic{width:80px;height:80px;background-size:cover;background-position:center center}.blogSideListItem_data{padding:0 0 0 10px}.blogSideListItem_title{font-size:14px;line-height:1.3;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;margin-bottom:10px}.blogSideListItem_category{color:#fff;text-align:center;border-radius:3px;font-size:12px;padding:3px 0;background:#0071bc}.blogSide_title{background:linear-gradient(90deg, #33c9e9, #0071bc);text-align:center;font-size:18px;padding:10px 0;font-family:"m-plus-rounded-1c",sans-serif;color:#fff;position:relative}.blogSide_title-02:before,.blogSide_title-02:after{content:"";background:#fff;position:absolute;top:0;bottom:0;margin:auto;transition:all 0.3s;transition-timing-function:cubic-bezier(0, 1.01, 0.47, 1)}.blogSide_title-02:before{width:16px;height:3px;right:15px}.blogSide_title-02:after{width:3px;height:16px;right:21px}.blogSide_title.active:before,.blogSide_title.active:after{transform:rotate(45deg)}.blogSide_inner{border:1px solid #ddd;margin-bottom:30px}.blogSideMonth{padding:15px;display:none}.blogSideMonth li{margin-top:10px}.blogSideMonth li:first-child{margin-top:0}.blogSideMonth li a{text-decoration:underline;font-size:14px;position:relative;padding:0 0 0 15px}.blogSideMonth li a:before{content:"";width:8px;height:8px;position:absolute;background:linear-gradient(90deg, #33c9e9, #0071bc);top:0;bottom:0;left:0;margin:auto}.blogSideMonth li a:active,.desktop .blogSideMonth li a:hover{text-decoration:none}.commonPager .wp-pagenavi{padding:30px 0 60px}.commonPager span,.commonPager a{margin:0 3px;font-size:13px}.commonPager .previouspostslink,.commonPager .nextpostslink{width:55px}.blogDetail{margin-bottom:60px}.blogDetail_head{padding:1em 1em}.blogDetail_head-day{font-size:12px}.blogDetail_head-category{font-size:12px}.blogDetail_head-name{padding:5px 15px;font-size:12px}.blogDetail_title{font-size:20px;margin-bottom:25px;line-height:1.7}.blogDetail_inner{padding:1em;margin-bottom:20px;padding-bottom:0}.blogDetailMain{margin-bottom:40px}.blogDetailMain h1{font-size:20px}.blogDetailMain h2{font-size:18px}.blogDetailMain h3{font-size:15px}.blogDetailMain h4,.blogDetailMain h5,.blogDetailMain h6{font-size:15px}.blogDetailMain p,.blogDetailMain pre{font-size:15px;padding:0;line-height:2}.blogDetailMain ul{list-style-type:disc;font-size:15px;margin:0 0 25px 20px}.blogDetailMain ol{list-style-type:decimal;font-size:15px;margin:0 0 25px 15px}.blogDetailMain ol li{padding-left:5px}.blogDetailMain blockquote{border:3px solid #f1f1f1;padding:15px;font-size:15px;display:block;margin-bottom:2em}.blogDetailLinks{flex-wrap:wrap}.blogDetailLinks_item{width:100%;margin-bottom:20px}.blogDetailRelation{margin:0 1em 30px}.blogDetailRelation_title{font-size:18px;text-align:center}.blogDetailRelationItem{border-top:none;flex-wrap:wrap;margin-bottom:25px;padding-bottom:25px;border-bottom:1px solid #0071bc}.blogDetailRelationItem_left{width:100%;margin-right:0}.blogDetailRelationItem_pic{width:100%;height:150px;margin:0 auto 15px}.blogDetailRelationItem_data{flex:initial;width:100%;padding:0;position:relative}.blogDetailRelationItem_title{display:block;padding-top:10px;padding-right:0}.blogDetailRelationItem_title-01{font-size:12px;margin-bottom:10px;letter-spacing:.1em}.blogDetailRelationItem_title-02{font-size:14px;margin-bottom:0}.blogDetailRelationItem_comment{font-size:14px;line-height:1.4;padding-right:150px}.blogDetailRelationItem_category{font-size:12px}.blogCommonNavi{border-top:none;position:relative;height:60px;margin:0 15px 20px}.blogCommonNavi_item{position:absolute;top:0;bottom:0;display:inline-block;margin:auto;text-align:center;height:40px;width:65px}.blogCommonNavi_item a{display:block;border-radius:3px;padding:9px 0;font-size:12px;position:relative}.blogCommonNavi_item a:before{display:none}.blogCommonNavi_item-01{left:0}.blogCommonNavi_item-02{width:110px;right:0;left:0}.blogCommonNavi_item-03{right:0}}

/* pager (overrides compiled blog commonPager) */
.commonPager { padding: 8px 0 24px; text-align: center; }
.commonPager .pages { display: none; }
.commonPager .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.commonPager .page-numbers li { margin: 0; }
.commonPager a.page-numbers,
.commonPager span.page-numbers {
  display: inline-flex;
  box-sizing: border-box;
  width: auto;
  min-width: 36px;
  height: 36px;
  margin: 0;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid #0071bc;
  background: #fff;
  color: #0071bc;
  font-size: 14px;
  text-decoration: none;
}
.commonPager span.page-numbers.current {
  background: #0071bc;
  color: #fff;
  border-color: #0071bc;
}
.commonPager a.page-numbers.next,
.commonPager a.page-numbers.prev {
  min-width: 64px;
}
.commonPager a.page-numbers:hover {
  background: #0071bc;
  color: #fff;
  text-decoration: none;
}
