/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }

/* === TOKENS ===
   カラーパレット（2026-07-14 拡張／2026-07-14 全体を濃く再調整）：
   ・主役＝ブランドピンク系（彩度・深みを強化）
   ・副色＝セージグリーン系（自然・犬・安心感）／クリーム（温かみのある中間背景）
   ・差し色＝アンバー（数字・3枚目のカード等に少量）
   セクション背景は 白 / pink-pale / green-pale / cream を交互に使い、単調さを避ける
   ※ pale系も「薄すぎて色として認識できない」を避けるため、はっきり色付きに寄せてある */
:root {
  --pink:       #E4548A;
  --pink-dark:  #A83A63;
  --pink-light: #F0A0BE;
  --pink-pale:  #FBE0E9;
  --green:      #3E8F5C;
  --green-dark: #2A6B41;
  --green-pale: #DCEEE0;
  --cream:      #F2E4C4;
  --amber:      #C4801A;
  --amber-pale: #F2DFAF;
  --black:      #0D0D0D;
  --muted:      #666;
  --border:     #E8E8E8;
  --max:        1100px;
}

/* === CONTAINER === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: #1A1A1A;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.active { color: var(--pink); font-weight: 700; }
.nav-btn {
  background: var(--pink);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px !important;
  font-weight: 700 !important;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--pink-dark) !important; }

/* ハンバーガーボタン */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: #1A1A1A;
  line-height: 1;
}
/* モバイルドロップダウン */
.nav-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav-mobile ul li a:hover { background: var(--pink-pale); color: var(--pink); }
.nav-mobile ul li:last-child a {
  color: var(--pink);
  font-weight: 700;
  border-bottom: none;
}

/* === PAGE HERO（内部ページ用） ===
   英語＝小さな飾りラベル／日本語＝大きな主見出し（読みやすさ優先の主従） */
.page-hero {
  background: linear-gradient(120deg, var(--pink-pale) 0%, #FDECF2 55%, var(--green-pale) 100%);
  padding: 84px 0 58px;
  margin-top: 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero-en {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1;
  color: var(--pink-dark);
  margin-bottom: 14px;
}
.page-hero-jp {
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* === HERO（トップページ用） === */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(42,21,32,0.68) 0%, rgba(26,13,21,0.60) 45%, rgba(13,13,13,0.70) 100%), url('images/uploads/ph_hero_bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(228,84,138,0.22) 0%, transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  font-size: 10px;
  letter-spacing: 0.22em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 36px;
  font-weight: 500;
}
.hero-title {
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.hero-title-jp {
  font-size: clamp(13px, 1.8vw, 18px);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: 36px;
}
.hero-lead {
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 300;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 16px;
}
.hero-lead strong { font-weight: 700; }
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 52px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-pink {
  background: var(--pink);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-black {
  background: #0D0D0D;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.btn-black:hover { opacity: 0.75; }
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.25);
}

/* === SECTION HEADINGS ===
   英語＝小さな飾りラベル（ピンク）／日本語＝大きな黒太字の主見出し。
   日本語見出しの左にピンクの縦バー、中央揃えでは下に短い下線が付く */
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-en {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1;
  color: var(--pink-dark);
  margin-bottom: 12px;
}
.sec-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(23px, 3.2vw, 33px);
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.sec-rule::before {
  content: '';
  width: 6px;
  height: 30px;
  border-radius: 3px;
  background: var(--pink);
  flex-shrink: 0;
}
.sec-head.center .sec-rule { justify-content: center; }
.sec-head.center .sec-rule::before { display: none; }
.sec-head.center .sec-rule::after { display: none; }
.sec-head.center::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: var(--pink);
  margin: 20px auto 0;
}

/* === PHOTO PLACEHOLDERS === */
.photo, .photo-placeholder {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.photo-dog   { background: linear-gradient(135deg, #b07090 0%, #8a5070 50%, #7a4060 100%); }
.photo-dark  { background: linear-gradient(160deg, #2e1a22 0%, #1a0d14 100%); }
.photo-office{ background: linear-gradient(135deg, #9eb4cc 0%, #6d8ca8 100%); }
.photo-warm  { background: linear-gradient(135deg, #d4a87c 0%, #a87858 100%); }
.photo-green { background: linear-gradient(135deg, #9abf9a 0%, #6a9a6a 100%); }
.photo-tall  { aspect-ratio: 3/4; }
.photo-wide  { aspect-ratio: 16/9; }
.photo-sq    { aspect-ratio: 1/1; }
.photo-card  { aspect-ratio: 16/9; border-radius: 0; }

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.rev .col-photo { order: -1; }
.col-text h3 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.4;
}
.col-text p {
  font-size: 14px;
  color: #444;
  line-height: 1.95;
  margin-bottom: 18px;
}

/* === STATS ROW === */
.stats-row {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--pink-dark);
  line-height: 1;
}
.stat-unit { font-size: 0.52em; }
.stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* === SECTION: WHAT WE DO === */
.sec-whatwedo { padding: 100px 0; background: var(--pink-light); }

/* === SECTION: PAIN POINTS === */
.sec-pain { padding: 100px 0; background: #fff; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pain-block { margin-bottom: 40px; }
.pain-block:last-child { margin-bottom: 0; }
.pain-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink);
}
.pain-list { list-style: none; }
.pain-list li {
  padding: 10px 0 10px 18px;
  position: relative;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}
.pain-list li::before { content: '・'; position: absolute; left: 0; color: var(--pink); }

/* === SECTION: SERVICES === */
.sec-services { padding: 100px 0; background: #fff; }
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}
.svc-photo { position: relative; }
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  color: #fff;
}
.svc-overlay h3 {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
.svc-overlay p { font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.svc-body { padding: 28px; }
.svc-body p { font-size: 13px; color: #555; line-height: 1.85; margin-bottom: 24px; }

/* === SECTION: IMPACT (dark) === */
.sec-impact { padding: 100px 0; background: #1A1A1A; color: #fff; }
.impact-top { text-align: center; margin-bottom: 72px; }
.impact-top h2 { font-size: clamp(24px, 4vw, 46px); font-weight: 300; line-height: 1.45; margin-bottom: 24px; }
.impact-top p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 620px; margin: 0 auto; line-height: 1.9; }
.impact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.impact-card { padding: 40px 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; text-align: center; }
.impact-num { font-size: 52px; font-weight: 900; color: var(--pink-light); line-height: 1; margin-bottom: 18px; }
.impact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.impact-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.85; }
.impact-quote { text-align: center; margin-top: 64px; font-size: clamp(16px, 2.2vw, 22px); font-weight: 700; color: rgba(255,255,255,0.85); }

/* === SECTION: SESSION === */
.sec-session { padding: 100px 0; background: #fff; }
.session-flow { display: flex; flex-direction: column; }
.flow-row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.flow-row:last-child { border-bottom: none; }
.flow-num { width: 42px; height: 42px; min-width: 42px; background: var(--pink); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.flow-txt h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.flow-txt p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* === SECTION: ESG === */
.sec-esg { padding: 100px 0; background: var(--green-pale); }
.esg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.esg-card { background: #fff; padding: 40px 30px; border-radius: 12px; border: 1px solid var(--border); }
.esg-letter { font-size: 60px; font-weight: 900; color: var(--pink); line-height: 1; margin-bottom: 18px; }
.esg-card:nth-child(2) .esg-letter { color: var(--green); }
.esg-card:nth-child(3) .esg-letter { color: var(--amber); }
.esg-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; line-height: 1.5; }
.esg-card p { font-size: 13px; color: var(--muted); line-height: 1.85; }

/* === SECTION: CHILDREN === */
.sec-children { padding: 100px 0; background: var(--pink-pale); }
.children-info { margin-top: 32px; padding: 14px 20px; background: rgba(228,84,138,0.10); border-left: 3px solid var(--pink); border-radius: 0 8px 8px 0; font-size: 14px; color: #444; line-height: 1.75; }
.children-info strong { color: var(--pink-dark); }
.children-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.children-card { background: #fff; border-radius: 12px; padding: 34px 30px; border: 1px solid var(--border); }
.children-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--pink); }
.children-card:nth-child(2n) h4 { border-bottom-color: var(--green); }
.children-card ul { list-style: none; font-size: 14px; color: #444; line-height: 2; }
.children-card ul li { padding-left: 16px; position: relative; }
.children-card ul li::before { content: '・'; position: absolute; left: 0; color: var(--pink); }

/* === SECTION: CERTIFICATIONS === */
.sec-cert { padding: 100px 0; background: #fff; }
.cert-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cert-card { border: 1px solid var(--border); border-top: 4px solid var(--pink); border-radius: 12px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
.cert-cards .cert-card:nth-child(2) { border-top-color: var(--green); }
.cert-cards .cert-card:nth-child(3) { border-top-color: var(--amber); }
.cert-photo { aspect-ratio: 4/3; }
.cert-body { padding: 28px; }
.cert-tag { display: inline-block; background: var(--pink-pale); color: var(--pink-dark); font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 12px; letter-spacing: 0.1em; }
.cert-cards .cert-card:nth-child(2) .cert-tag { background: var(--green-pale); color: var(--green-dark); }
.cert-cards .cert-card:nth-child(3) .cert-tag { background: var(--amber-pale); color: #7A5010; }
.cert-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.45; }
.cert-for { font-size: 12px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.cert-body p { font-size: 13px; color: #555; line-height: 1.85; margin-bottom: 22px; }
.cert-btn { display: block; width: 100%; text-align: center; background: #0D0D0D; color: #fff; padding: 12px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: opacity 0.2s; }
.cert-btn:hover { opacity: 0.75; }

/* === SECTION: FAQ === */
.sec-faq { padding: 100px 0; background: var(--cream); }
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; }
.faq-item:first-child { border-top: 1px solid #ddd; }
.faq-q { width: 100%; padding: 22px 0; display: flex; align-items: flex-start; gap: 14px; background: none; border: none; cursor: pointer; text-align: left; font-size: 15px; font-weight: 600; font-family: 'Noto Sans JP', sans-serif; color: #1A1A1A; }
.faq-q-mark { font-weight: 700; color: var(--pink); font-size: 18px; line-height: 1.4; min-width: 22px; }
.faq-q-text { flex: 1; line-height: 1.55; }
.faq-icon { font-size: 20px; color: var(--pink); transition: transform 0.3s; min-width: 20px; line-height: 1.4; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-body { padding: 0 0 22px 36px; font-size: 14px; color: #555; line-height: 1.9; }

/* === SECTION: CTA === */
.sec-cta { padding: 100px 0; background: #fff; text-align: center; }
.sec-cta h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 700; margin-bottom: 14px; line-height: 1.5; }
.sec-cta > .container > p { color: var(--muted); font-size: 14px; line-height: 1.9; max-width: 540px; margin: 0 auto 48px; }

/* === FOOTER === */
.footer { background: #0D0D0D; color: rgba(255,255,255,0.65); padding: 60px 0 36px; }
.footer-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 52px; }
.footer-card { display: flex; align-items: center; justify-content: space-between; padding: 36px 30px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; cursor: pointer; transition: background 0.2s; background: rgba(255,255,255,0.03); }
.footer-card:hover { background: rgba(255,255,255,0.07); }
.footer-card-en { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: 0.05em; }
.footer-card-jp { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 5px; }
.footer-card-tag { display: inline-block; margin-top: 8px; background: var(--pink); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 50px; }
.footer-card-arrow { font-size: 22px; color: rgba(255,255,255,0.4); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-circle { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 900; letter-spacing: 0.04em; text-align: center; line-height: 1.3; color: #fff; overflow: hidden; flex-shrink: 0; }
.footer-logo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-brand { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; letter-spacing: 0.04em; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { width: 100%; text-align: center; font-size: 10px; color: rgba(255,255,255,0.25); margin-top: 28px; letter-spacing: 0.08em; }

/* === VOLUNTEER === */
.sec-volunteer { padding: 100px 0; background: #fff; }
.vol-lead { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 18px; }
.vol-body { font-size: 15px; color: #444; line-height: 2.1; margin-bottom: 28px; }
.vol-list-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--pink-dark); text-transform: uppercase; margin-bottom: 14px; }
.vol-list { list-style: none; margin-bottom: 36px; }
.vol-list li { padding: 12px 0 12px 26px; position: relative; font-size: 15px; color: #333; border-bottom: 1px solid var(--border); }
.vol-list li:first-child { border-top: 1px solid var(--border); }
.vol-list li::before { content: '›'; position: absolute; left: 2px; color: var(--pink); font-weight: 700; font-size: 18px; line-height: 1.4; }

/* === DONATION === */
.sec-donate { padding: 100px 0; background: var(--pink-pale); }
.donate-lead { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; line-height: 1.7; margin-bottom: 20px; max-width: 700px; }
.donate-sub { font-size: 15px; color: #555; line-height: 1.95; margin-bottom: 56px; max-width: 660px; }
.donate-use-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--pink-dark); text-transform: uppercase; margin-bottom: 20px; }
.donate-use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.donate-use-card { background: #fff; border-radius: 12px; padding: 32px 28px; border: 1px solid var(--border); }
.donate-use-card-icon { font-size: 32px; margin-bottom: 14px; }
.donate-use-card h4 { font-size: 15px; font-weight: 700; padding-bottom: 10px; border-bottom: 2px solid var(--pink-light); margin-bottom: 12px; }
.donate-use-card:nth-child(2) h4 { border-bottom-color: var(--green); }
.donate-use-card:nth-child(3) h4 { border-bottom-color: var(--amber); }
.donate-use-card p { font-size: 13px; color: #555; line-height: 1.85; }
.donate-method-box { background: var(--black); border-radius: 16px; padding: 48px; }
.donate-method-box h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 28px; }
.donate-method-items { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.donate-method-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 24px; }
.donate-method-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.donate-method-item p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.85; }
.donate-method-btn { display: block; width: 100%; max-width: 320px; margin: 0 auto; text-align: center; background: var(--pink); color: #fff; padding: 16px 32px; border-radius: 50px; font-size: 14px; font-weight: 700; transition: background 0.2s; }
.donate-method-btn:hover { background: var(--pink-dark); }

/* === NEWS === */
.sec-news { padding: 100px 0; background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.news-card { background: var(--pink-pale); border-radius: 12px; padding: 28px; border: 1px solid var(--border); display: block; transition: transform 0.25s, box-shadow 0.25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.news-date { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 8px; }
.news-tag { display: inline-block; background: #fff; border: 1px solid var(--pink-light); color: var(--pink-dark); font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 10px; }
.news-title { font-size: 14px; font-weight: 700; line-height: 1.65; color: #1A1A1A; }
.news-empty { color: var(--muted); font-size: 14px; margin-top: 40px; }

/* === NEWS LIST (news.html：クリックで開く一覧) ===
   news-tag・news-title・news-date は <p> タグで書かれています。編集スタジオで
   他の文章と同じようにクリックして直接書き換えられます（見出し行 news-card-head 自体は
   ただの入れ物なのでクリックしても本文は開閉しません。開閉は右端の「＋詳しく見る」だけが担当します） */
.news-list { max-width: 780px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 16px; }
.news-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; scroll-margin-top: 100px; }
.news-item.open { border-color: var(--pink-light); }
.news-card-head { width: 100%; display: flex; align-items: center; gap: 16px; padding: 16px; font-family: 'Noto Sans JP', sans-serif; }
.news-card-photo { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--pink-pale); }
.news-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card-headtext { flex: 1; }
.news-icon-toggle { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--pink-dark); border: 1px solid var(--pink-light); border-radius: 50px; padding: 7px 16px; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.news-icon-toggle:hover { background: var(--pink-pale); }
.news-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.news-body-inner { padding: 0 20px 24px 104px; font-size: 14px; color: #555; line-height: 1.9; }
.news-body-link { display: inline-block; margin-top: 10px; color: var(--pink-dark); font-weight: 700; font-size: 13px; }
@media (max-width: 600px) {
  .news-card-head { flex-wrap: wrap; }
  .news-card-photo { width: 56px; height: 56px; }
  .news-body-inner { padding-left: 20px; }
}

/* === SEC-HEAD ROW (with VIEW MORE) === */
.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.sec-head-row .sec-head { margin-bottom: 0; }
.view-more {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 6px;
}
.view-more:hover { color: var(--pink); }

/* === SERVICE BLOCKS (homepage big cards) === */
.service-blocks { display: flex; flex-direction: column; gap: 20px; }
.service-block {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: transform 0.25s;
}
.service-block:hover { transform: translateY(-2px); }
.service-block-photo {
  width: 100%;
  aspect-ratio: 16/7;
}
.service-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 48px;
  color: #fff;
  transition: background 0.25s;
}
.service-block:hover .service-block-overlay { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.28) 60%); }
.service-block h3 {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.service-block-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  line-height: 1.65;
}
.service-block-btn {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}
.service-block:hover .service-block-btn { background: var(--pink-dark); }
.service-block-btn.disabled { background: rgba(255,255,255,0.3); }

/* === DARK RESCUE SECTION === */
.sec-rescue {
  padding: 120px 0;
  background: #1A1A1A;
  color: #fff;
  text-align: center;
}
.rescue-title {
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 28px;
}
.rescue-body {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 2.1;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* === NEWS CARD WITH IMAGE === */
.news-card-img {
  margin: -28px -28px 18px -28px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.news-tag-dark {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* === CERT SUMMARY (homepage) === */
.sec-cert-summary { padding: 100px 0; background: var(--green-pale); }
.cert-summary-text p { font-size: 14px; color: #444; line-height: 2; margin-bottom: 14px; }
.cert-summary-text strong { color: var(--black); }
.cert-summary-text .btn-pink { margin-top: 16px; font-size: 13px; padding: 12px 28px; }

/* === ABOUT PAGE === */
.sec-about { padding: 100px 0; background: #fff; }
.about-body p { font-size: 15px; color: #444; line-height: 2.1; margin-bottom: 20px; }
.about-body p strong { color: var(--black); }
.mission-box {
  background: var(--pink-pale);
  border-radius: 12px;
  padding: 40px 48px;
  margin: 48px 0;
}
.mission-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--black); }
.mission-box p { font-size: 14px; color: #555; line-height: 2; margin-bottom: 12px; }
.mission-box p:last-child { margin-bottom: 0; }
.org-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 32px; }
.org-table th { text-align: left; padding: 14px 20px; background: var(--pink-pale); font-weight: 700; width: 160px; border-bottom: 1px solid var(--border); }
.org-table td { padding: 14px 20px; color: #444; border-bottom: 1px solid var(--border); line-height: 1.75; }

/* === CAREERS PAGE === */
.sec-careers { padding: 100px 0; background: #fff; }
.careers-intro { font-size: 15px; color: #444; line-height: 2; max-width: 700px; margin-bottom: 56px; }
.careers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.careers-card { border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; }
.careers-card-tag { display: inline-block; background: var(--pink-pale); color: var(--pink-dark); font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 50px; margin-bottom: 14px; letter-spacing: 0.1em; }
.careers-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.45; }
.careers-card p { font-size: 13px; color: #555; line-height: 1.85; margin-bottom: 20px; }
.careers-card-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0 20px; }
.careers-dl { font-size: 13px; }
.careers-dl dt { font-weight: 700; color: var(--black); margin-top: 14px; margin-bottom: 4px; }
.careers-dl dd { color: #555; line-height: 1.85; margin-left: 0; }
.careers-apply-btn { display: inline-block; margin-top: 24px; background: var(--pink); color: #fff; font-size: 13px; font-weight: 700; padding: 12px 28px; border-radius: 50px; letter-spacing: 0.08em; }
.careers-apply-btn:hover { background: var(--pink-dark); }
.careers-note { margin-top: 48px; padding: 32px 36px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.careers-note h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.careers-note p { font-size: 13px; color: #555; line-height: 1.9; margin-bottom: 14px; }
.careers-vol-link { font-size: 13px; font-weight: 700; color: var(--pink); letter-spacing: 0.08em; }
.careers-vol-link:hover { color: var(--pink-dark); }
.sec-careers-intro { padding: 80px 0 60px; background: #fff; }
.news-empty { font-size: 14px; color: var(--muted); text-align: center; padding: 80px 0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .two-col, .two-col.rev { grid-template-columns: 1fr; }
  .two-col.rev .col-photo { order: 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .impact-cards { grid-template-columns: 1fr; }
  .esg-grid { grid-template-columns: 1fr; }
  .cert-cards { grid-template-columns: 1fr; }
  .children-grid { grid-template-columns: 1fr; }
  .donate-use-grid { grid-template-columns: 1fr; }
  .donate-method-items { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-cards { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-btns { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 60px 0 40px; }
}
