:root {
  --pink: #b52b5a;
  --pink-bright: #e95b8d;
  --pink-soft: #faeaf0;
  --navy: #17384a;
  --navy-dark: #102a38;
  --ink: #17232d;
  --ink-muted: #52616c;
  --paper: #fffdfa;
  --surface: #f5f3ef;
  --surface-cool: #edf1f3;
  --line: #d8dee2;
  --teal: #247b72;
  --focus: #075fae;
  --content-width: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --shadow-soft: 0 1px 2px rgba(18, 32, 42, .08);
  --shadow-lift: 0 18px 48px -28px rgba(18, 32, 42, .45);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
[hidden] { display: none !important; }
.inner { width: min(var(--content-width), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.mobile-only { display: none; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--navy-dark); color: #fff; font-weight: 700; transform: translateY(-160%); transition: transform .18s var(--ease-out); }
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  border-top: 3px solid var(--pink);
  border-bottom: 1px solid rgba(23, 56, 74, .12);
  background: rgba(255, 253, 250, .95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.site-header.is-fixed { position: fixed; height: 72px; animation: header-in .26s var(--ease-out); box-shadow: 0 12px 30px -24px rgba(16, 42, 56, .65); }
@keyframes header-in { from { transform: translateY(-100%); } }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.site-logo { display: block; width: min(300px, 32vw); }
.site-logo img { width: 100%; }
.global-nav { display: flex; height: 100%; align-items: center; gap: 4px; }
.global-nav a { position: relative; display: grid; min-height: 44px; padding: 0 18px; place-items: center; color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.global-nav a::after { position: absolute; right: 18px; bottom: 4px; left: 18px; height: 2px; background: var(--pink); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s var(--ease-out); }
.global-nav a:hover::after, .global-nav a:focus-visible::after, .global-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.global-nav a[aria-current="page"] { color: var(--pink); }
.global-nav .nav-external { min-height: 42px; margin-left: 8px; border: 1px solid var(--navy); }
.global-nav .nav-external:hover { background: var(--navy); color: #fff; }
.global-nav .nav-external::after { display: none; }
.menu-button { display: none; }

/* Home hero */
.hero-slider { position: relative; overflow: hidden; background: #fff; }
.hero-slider::after { position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(16, 42, 56, .13)); content: ""; pointer-events: none; }
.hero-slide { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 0; transform: scale(1.015); transition: opacity .7s ease, transform 7s linear; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.slider-dots { position: absolute; z-index: 2; bottom: 24px; left: 50%; display: flex; gap: 9px; transform: translateX(-50%); }
.slider-dots i { display: block; width: 24px; height: 3px; background: rgba(255, 255, 255, .72); box-shadow: 0 1px 3px rgba(0, 0, 0, .2); }
.slider-dots i.is-active { background: var(--pink); }
.slider-toggle { position: absolute; z-index: 3; right: max(var(--gutter), calc((100% - var(--content-width)) / 2)); bottom: 15px; display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255, 255, 255, .8); border-radius: 50%; background: rgba(16, 42, 56, .72); color: #fff; cursor: pointer; }
.js .slider-toggle { display: block; }
.hero-slider.is-paused .hero-slide { transition: none; transform: none; }
.slider-toggle::before, .slider-toggle::after { position: absolute; top: 13px; width: 3px; height: 16px; background: currentcolor; content: ""; }
.slider-toggle::before { left: 16px; }
.slider-toggle::after { right: 16px; }
.slider-toggle.is-paused::before { top: 12px; left: 16px; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 15px solid currentcolor; background: transparent; }
.slider-toggle.is-paused::after { display: none; }

.committee { position: relative; padding: 40px 20px; border-top: 1px solid rgba(181, 43, 90, .15); border-bottom: 1px solid rgba(181, 43, 90, .18); background: linear-gradient(90deg, var(--pink-soft), #fff 45%, var(--pink-soft)); color: var(--navy); text-align: center; }
.committee::before { display: block; width: 36px; height: 2px; margin: 0 auto 16px; background: var(--pink); content: ""; }
.committee h1 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(25px, 2.4vw, 34px); font-weight: 600; letter-spacing: .06em; line-height: 1.55; }

/* Shared sections */
.section { padding-block: clamp(72px, 8vw, 112px); }
.section-title { display: flex; margin-bottom: 42px; align-items: baseline; gap: 18px; }
.section-title::before { width: 32px; height: 2px; align-self: center; background: var(--pink); content: ""; }
.section-title h2 { margin: 0; font-family: Arial, Helvetica, sans-serif; font-size: clamp(30px, 3vw, 42px); font-weight: 700; letter-spacing: .1em; line-height: 1.2; }
.section-title p { margin: 0; color: var(--ink-muted); font-size: 14px; font-weight: 600; letter-spacing: .08em; }
.button { display: inline-flex; min-width: 184px; min-height: 48px; padding: 0 24px; align-items: center; justify-content: center; gap: 18px; border: 1px solid var(--navy); border-radius: 2px; background: var(--navy); color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .05em; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button::after { content: "→"; }
.button:hover, .button:focus-visible { border-color: var(--pink); background: var(--pink); transform: translateY(-1px); }
.button--rose { border-color: var(--pink); background: var(--pink); }
.button--rose:hover, .button--rose:focus-visible { border-color: var(--navy); background: var(--navy); }
.zoom-image { display: block; overflow: hidden; background: var(--surface-cool); }
.zoom-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .52s var(--ease-out); }

/* Home policy cards */
.home-policies { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; padding-block: clamp(72px, 8vw, 112px); }
.policy-card { position: relative; min-width: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); transition: border-color .22s, box-shadow .22s, transform .22s var(--ease-out); }
.policy-card:hover, .policy-card:focus-within { border-color: rgba(23, 56, 74, .4); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.policy-card-link { display: flex; height: 100%; flex-direction: column; }
.policy-card .eyebrow { display: flex; min-height: 44px; margin: 0; padding: 0 20px; align-items: center; border-top: 3px solid var(--pink); color: var(--pink); font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.policy-card .eyebrow span { margin-right: 8px; color: var(--ink); font-size: 11px; letter-spacing: .16em; }
.policy-card .zoom-image { aspect-ratio: 740 / 520; }
.policy-card:hover .zoom-image img, .policy-card:focus-within .zoom-image img { transform: scale(1.025); }
.policy-card-body { display: flex; padding: 28px 28px 30px; flex: 1; flex-direction: column; align-items: flex-start; }
.policy-card-title { min-height: 3.4em; margin: 0 0 24px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(17px, 1.5vw, 20px); font-weight: 600; line-height: 1.7; text-align: left; }
.policy-card .button { margin-top: auto; background: transparent; color: var(--navy); }
.policy-card:hover .button, .policy-card:focus-within .button { background: var(--navy); color: #fff; }

/* Reports */
.reports-section { position: relative; background: var(--surface); box-shadow: 0 0 0 100vmax var(--surface); clip-path: inset(0 -100vmax); }
.report-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px 32px; }
.report-card { position: relative; min-width: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); transition: border-color .22s, box-shadow .22s, transform .22s var(--ease-out); }
.report-card:hover, .report-card:focus-within { border-color: rgba(23, 56, 74, .4); box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.report-card-link { display: block; height: 100%; }
.report-card .report-date { position: absolute; z-index: 2; top: 18px; left: 18px; margin: 0; padding: 8px 12px 7px; border-left: 3px solid var(--pink); background: rgba(255, 253, 250, .94); box-shadow: var(--shadow-soft); color: var(--navy); font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .04em; line-height: 1.4; }
.report-card .zoom-image { aspect-ratio: 740 / 500; border-bottom: 1px solid var(--line); }
.report-card .zoom-image img { object-fit: contain; background: var(--pink-soft); }
.report-card:hover .zoom-image img, .report-card:focus-within .zoom-image img { transform: scale(1.025); }
.report-card h3 { position: relative; min-height: 94px; margin: 0; padding: 24px 58px 24px 26px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(16px, 1.4vw, 19px); font-weight: 600; line-height: 1.65; }
.report-card h3::after { position: absolute; right: 26px; top: 50%; color: var(--pink); content: "→"; font-family: Arial, sans-serif; font-size: 19px; transform: translateY(-50%); transition: transform .2s var(--ease-out); }
.report-card:hover h3::after, .report-card:focus-within h3::after { transform: translate(4px, -50%); }
.empty { color: var(--ink-muted); text-align: center; }

/* Contact */
.contact-section { position: relative; margin-block: clamp(72px, 8vw, 112px); padding: clamp(48px, 6vw, 76px); border: 1px solid var(--line); background: linear-gradient(135deg, #fff 0 72%, var(--pink-soft) 72%); box-shadow: var(--shadow-lift); }
.contact-section::after { position: absolute; top: -1px; left: -1px; width: 112px; height: 3px; background: var(--pink); content: ""; }
.contact-section .section-title { margin-bottom: 32px; }
.contact-section > p { max-width: 620px; margin: 0 auto 30px; color: var(--ink-muted); font-size: 17px; letter-spacing: .04em; text-align: center; }
.contact-icons { display: flex; width: max-content; margin: 0 auto; padding: 0; gap: 24px; }
.contact-icons a { display: grid; width: 56px; height: 56px; place-items: center; transition: transform .2s var(--ease-out); }
.contact-icons a:hover, .contact-icons a:focus-visible { transform: translateY(-3px); }

/* Child page hero and breadcrumbs */
.page-hero { position: relative; height: clamp(390px, 41vw, 520px); overflow: hidden; background: var(--page-image) center / cover no-repeat; color: #fff; }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 33, 45, .76), rgba(12, 33, 45, .26) 58%, rgba(12, 33, 45, .08)); }
.page-hero-title { position: absolute; z-index: 2; top: 53%; left: max(var(--gutter), calc((100% - var(--content-width)) / 2)); width: min(700px, calc(100% - (var(--gutter) * 2))); margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(34px, 4vw, 52px); font-weight: 600; letter-spacing: .05em; line-height: 1.3; transform: translateY(-50%); }
.page-hero-en { position: absolute; z-index: 2; top: calc(53% - 76px); left: max(var(--gutter), calc((100% - var(--content-width)) / 2)); margin: 0; padding-left: 46px; color: #fff; font-family: Arial, Helvetica, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .2em; line-height: 1; text-transform: uppercase; }
.page-hero-en::before { position: absolute; top: 50%; left: 0; width: 32px; height: 2px; background: var(--pink-bright); content: ""; }
.breadcrumbs { margin-top: 44px; margin-bottom: 54px; padding: 0; color: var(--ink-muted); font-size: 13px; line-height: 1.5; }
.breadcrumbs ol { display: flex; margin: 0; padding: 0; align-items: center; gap: 8px; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li + li::before { margin-right: 8px; color: #98a2a9; content: "/"; }
.breadcrumbs a:hover { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb-home { display: inline-grid; width: 44px; height: 44px; margin: -14px 0; place-items: center; color: var(--navy); }
.breadcrumb-home svg { display: block; width: 14px; height: 14px; fill: currentColor; }

/* Policy page */
.policy-content { padding-bottom: clamp(72px, 8vw, 112px); counter-reset: policy; }
.policy-intro { max-width: 760px; margin: 0 auto clamp(72px, 8vw, 108px); text-align: center; }
.policy-intro::before { display: block; width: 42px; height: 3px; margin: 0 auto 22px; background: var(--pink); content: ""; }
.policy-intro p { margin: 0 0 12px; color: var(--ink-muted); font-size: 18px; font-weight: 600; letter-spacing: .1em; }
.policy-intro h2 { margin: 0; color: var(--navy); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(30px, 4vw, 44px); font-weight: 600; letter-spacing: .06em; line-height: 1.4; }
.policy-intro small { margin: 0 .15em; color: var(--pink); font-size: .65em; }
.policy-block { position: relative; margin-bottom: clamp(80px, 10vw, 132px); padding-top: 58px; border-top: 1px solid var(--line); counter-increment: policy; scroll-margin-top: 100px; }
.policy-block::before { position: absolute; top: 16px; left: 0; color: var(--pink); content: "VISION 0" counter(policy); font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.policy-lead { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(40px, 6vw, 84px); }
.policy-lead h2 { margin: 0 0 20px; color: var(--navy); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(27px, 3vw, 38px); font-weight: 600; letter-spacing: .03em; line-height: 1.5; }
.policy-lead h2::after { display: block; width: 42px; height: 2px; margin-top: 20px; background: var(--pink); content: ""; }
.policy-lead p { max-width: 60ch; margin: 0; color: var(--ink-muted); line-height: 2; }
.policy-lead img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; box-shadow: var(--shadow-lift); }
.policy-block:nth-of-type(odd) .policy-lead > div { order: 2; }
.policy-block:nth-of-type(odd) .policy-lead > img { order: 1; }
.policy-list-row { display: grid; grid-template-columns: 120px 1fr; margin-top: 28px; padding: 26px 30px; align-items: start; gap: 28px; border-left: 3px solid var(--pink); background: var(--pink-soft); }
.policy-list-row + .policy-list-row { border-left-color: var(--navy); background: var(--surface-cool); }
.policy-list-row img { width: 104px; margin: 0; }
.policy-list-row ol { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.policy-list-row li { position: relative; padding: 4px 0 4px 44px; counter-increment: item; color: var(--ink); line-height: 1.8; }
.policy-list-row li::before { position: absolute; top: 4px; left: 0; color: var(--pink); content: counter(item, decimal-leading-zero); font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.policy-list-row + .policy-list-row li::before { color: var(--navy); }

/* Report archive and detail */
.page-report-index { background: var(--surface); }
.page-report-index .site-footer { background: var(--paper); }
.archive-section { padding-top: clamp(72px, 8vw, 104px); padding-bottom: clamp(80px, 10vw, 132px); }
.archive-section .section-title { justify-content: center; }
.archive-section .section-title h2 { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; letter-spacing: .05em; }
.report-detail { max-width: 1040px; margin-bottom: clamp(72px, 8vw, 112px); padding: clamp(36px, 6vw, 72px); border: 1px solid var(--line); background: var(--surface); }
.report-detail > h1 { margin: 0 0 54px; padding-left: 22px; border-left: 4px solid var(--pink); color: var(--navy); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(27px, 3vw, 38px); font-weight: 600; line-height: 1.5; }
.report-detail > h2 { margin: 0 0 30px; color: var(--ink-muted); font-size: 18px; font-weight: 600; line-height: 1.7; }
.report-pages { display: flex; align-items: flex-start; gap: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-lift); }
.report-pages a { position: relative; flex: 1 1 50%; }
.report-pages a + a { border-left: 1px solid var(--line); }
.report-pages a::after { position: absolute; right: 12px; bottom: 12px; padding: 4px 8px; background: rgba(16, 42, 56, .82); color: #fff; content: "拡大"; font-size: 12px; letter-spacing: .06em; opacity: 0; transition: opacity .2s; }
.report-pages a:hover::after, .report-pages a:focus-visible::after { opacity: 1; }
.report-pages img { width: 100%; }
.report-pages--legacy-cover a { flex-basis: 100%; }
.report-download { margin: 48px 0 0; text-align: center; }

/* Activity footer */
.activity-links { position: relative; min-height: 510px; overflow: hidden; background: url('/assets/images/footer-bg.jpg') center / cover no-repeat; color: #fff; text-align: center; }
.activity-links::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12, 33, 45, .82), rgba(12, 33, 45, .48)); content: ""; }
.activity-links .inner { position: relative; z-index: 1; display: flex; min-height: 510px; padding-block: 64px; flex-direction: column; align-items: center; justify-content: center; }
.activity-links h2 { margin: 0 0 12px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(30px, 3.5vw, 42px); font-weight: 600; letter-spacing: .05em; line-height: 1.4; }
.activity-links h2::after { display: block; width: 40px; height: 2px; margin: 18px auto 0; background: var(--pink-bright); content: ""; }
.activity-links p { margin: 0 0 36px; font-size: 14px; line-height: 2; }
.activity-card-list { display: flex; width: 830px; max-width: 100%; margin: 0; padding: 0; justify-content: center; gap: 30px; list-style: none; }
.activity-card { position: relative; flex: 0 1 400px; width: 400px; aspect-ratio: 10 / 3; overflow: hidden; border: 1px solid rgba(255, 255, 255, .55); box-shadow: 0 15px 32px -22px rgba(0, 0, 0, .9); }
.activity-card:focus-within::after { position: absolute; z-index: 4; inset: 3px; border: 3px solid var(--focus); content: ""; pointer-events: none; }
.activity-card a { display: block; width: 100%; height: 100%; }
.activity-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-out); }
.activity-card::before { position: absolute; z-index: 1; inset: 0 55% 0 0; background: rgba(16, 42, 56, .18); content: ""; pointer-events: none; }
.activity-card__title { position: absolute; z-index: 2; top: 0; right: 0; display: flex; width: 58%; height: 100%; padding: 0 20px 0 42px; align-items: center; justify-content: center; clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); background: rgba(255, 253, 250, .96); color: var(--ink); font-size: 14px; font-weight: 600; white-space: nowrap; }
.activity-card a:hover img, .activity-card a:focus-visible img { transform: scale(1.025); }
.activity-card a:focus-visible { outline: 0; }

/* Lower footer */
.footer-brand { display: flex; padding-block: 52px 42px; flex-direction: column; align-items: center; }
.footer-brand > a { width: 240px; }
.footer-nav { display: flex; min-height: 64px; padding: 10px 20px; align-items: center; justify-content: center; border-top: 1px solid var(--line); background: var(--surface); font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.footer-nav a { display: grid; min-height: 44px; padding: 0 18px; place-items: center; }
.footer-nav a + a { border-left: 1px solid var(--line); }
.footer-nav a:hover { color: var(--pink); text-decoration: underline; text-underline-offset: 4px; }
.copyright { display: grid; min-height: 64px; margin: 0; padding: 0 20px; place-items: center; background: var(--navy-dark); color: rgba(255, 255, 255, .78); text-align: center; }
.copyright small { font-size: 12px; letter-spacing: .04em; }
.page-top { position: fixed; z-index: 80; right: 24px; bottom: 24px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255, 255, 255, .45); border-radius: 50%; background: var(--navy); color: #fff; box-shadow: 0 8px 20px -12px rgba(0, 0, 0, .8); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, visibility .2s, transform .2s var(--ease-out); }
.page-top::before { width: 10px; height: 10px; margin-top: 6px; border-top: 2px solid currentcolor; border-left: 2px solid currentcolor; content: ""; transform: rotate(45deg); }
.page-top.is-visible { opacity: .94; visibility: visible; transform: translateY(0); }

@media (max-width: 1100px) {
  html { scroll-padding-top: 68px; }
  .site-header, .site-header.is-fixed { position: sticky; top: 0; height: 64px; animation: none; }
  .site-logo { width: min(260px, calc(100vw - 92px)); }
  .menu-button { position: relative; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; }
  .js .menu-button { display: block; }
  .menu-button > span:not(.sr-only) { position: absolute; left: 10px; width: 28px; height: 2px; background: currentcolor; transition: transform .2s, top .2s, opacity .2s; }
  .menu-button > span:nth-child(1) { top: 14px; }
  .menu-button > span:nth-child(2) { top: 23px; }
  .menu-button > span:nth-child(3) { top: 32px; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { top: 23px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
  .global-nav { position: static; display: flex; height: auto; padding: 8px var(--gutter) 16px; flex-direction: column; align-items: stretch; background: var(--paper); }
  .js .global-nav { position: absolute; z-index: 120; top: 63px; right: 0; left: 0; display: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 20px 38px -28px rgba(16, 42, 56, .7); }
  .js .global-nav.is-open { display: flex; }
  .global-nav a { min-height: 52px; padding-inline: 0; justify-content: start; border-bottom: 1px solid var(--line); }
  .global-nav a::after { right: auto; bottom: 8px; left: 0; width: 42px; }
  .global-nav .nav-external { margin: 8px 0 0; padding-inline: 16px; justify-content: center; border: 1px solid var(--navy); }
  .home-policies { gap: 22px; }
}

@media (max-width: 900px) {
  .home-policies, .report-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-policies .policy-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .policy-lead { gap: 38px; }
  .policy-list-row { grid-template-columns: 94px 1fr; }
  .policy-list-row img { width: 86px; }
  .activity-card-list { width: 100%; flex-direction: column; align-items: center; gap: 22px; }
  .activity-card { flex-basis: auto; width: min(400px, 100%); }
  .report-pages { flex-direction: column; }
  .report-pages a { width: 100%; flex-basis: auto; }
  .report-pages a + a { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 767px) {
  .hero-slide:not(.hero-slide-responsive), .slider-dots, .slider-toggle { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .mobile-only { display: block; }
  .committee { padding: 28px 18px; }
  .committee h1 { font-size: 20px; }
  .section { padding-block: 64px; }
  .section-title { margin-bottom: 30px; flex-wrap: wrap; gap: 8px 12px; }
  .section-title::before { width: 24px; }
  .section-title h2 { font-size: 28px; }
  .section-title p { width: 100%; padding-left: 36px; }
  .home-policies, .report-grid { grid-template-columns: 1fr; gap: 24px; }
  .home-policies { padding-block: 64px; }
  .home-policies .policy-card:last-child { grid-column: auto; width: 100%; }
  .policy-card-body { padding: 24px; }
  .policy-card-title { min-height: 0; }
  .report-card h3 { min-height: 82px; padding: 21px 54px 21px 22px; }
  .contact-section { width: calc(100% - 40px); margin-block: 64px; padding: 44px 24px; background: linear-gradient(145deg, #fff 0 82%, var(--pink-soft) 82%); }
  .contact-section > p { font-size: 16px; }
  .contact-icons { gap: 20px; }
  .contact-icons a { width: 52px; height: 52px; }
  .page-hero { height: 300px; }
  .page-hero-title { top: 52%; left: 20px; width: calc(100% - 40px); font-size: 30px; }
  .page-hero-en { top: calc(52% - 58px); left: 20px; font-size: 12px; }
  .breadcrumbs { width: 100%; min-height: 52px; margin: 0; padding: 12px 20px; line-height: 1.5; }
  .breadcrumbs ol { flex-wrap: wrap; row-gap: 4px; }
  .breadcrumbs li { min-width: 0; }
  .breadcrumb-home { margin: 0; }
  .policy-content { padding: 58px 20px 72px; }
  .policy-intro { margin-bottom: 72px; }
  .policy-intro p { font-size: 16px; }
  .policy-intro h2 { font-size: 28px; }
  .policy-block { margin-bottom: 82px; padding-top: 52px; scroll-margin-top: 72px; }
  .policy-lead { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
  .policy-block:nth-of-type(odd) .policy-lead > div, .policy-block:nth-of-type(odd) .policy-lead > img { order: initial; }
  .policy-lead h2 { margin-bottom: 16px; font-size: 26px; }
  .policy-lead p { line-height: 1.9; }
  .policy-list-row { grid-template-columns: 68px 1fr; margin-top: 18px; padding: 20px 18px; gap: 18px; }
  .policy-list-row img { width: 64px; }
  .policy-list-row li { padding-left: 34px; font-size: 15px; }
  .archive-section { padding: 64px 20px 80px; }
  .archive-section .section-title { justify-content: flex-start; }
  .report-detail { width: 100%; margin-bottom: 0; padding: 42px 20px 64px; border-right: 0; border-left: 0; }
  .report-detail > h1 { margin-bottom: 34px; padding-left: 14px; font-size: 25px; }
  .report-detail > h2 { font-size: 16px; }
  .report-download { margin-top: 32px; }
  .report-download .button { width: 100%; }
  .activity-links, .activity-links .inner { min-height: 0; }
  .activity-links .inner { padding-block: 58px; }
  .activity-links h2 { font-size: 28px; }
  .activity-links p { margin-bottom: 28px; font-size: 13px; }
  .activity-card__title { width: 58%; padding: 0 13px 0 30px; font-size: 13px; }
  .footer-brand { padding-block: 42px 34px; }
  .footer-brand > a { width: 230px; }
  .footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); padding: 18px 20px; }
  .footer-nav a + a { border-left: 0; }
  .copyright { min-height: 58px; }
  .page-top { right: 14px; bottom: 14px; width: 46px; height: 46px; }
}

@media (max-width: 480px) {
  .policy-list-row { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .activity-card__title { width: 60%; font-size: 12px; white-space: normal; line-height: 1.5; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-slide, .hero-slide.is-active { transform: none !important; }
}

@media (forced-colors: active) {
  :where(a, button, input, select, textarea):focus-visible { outline: 3px solid Highlight; }
  .button, .global-nav .nav-external { border: 1px solid ButtonText; }
  .activity-card:focus-within::after { border-color: Highlight; }
}
