:root {
  --ink: #1f2d35;
  --muted: #536871;
  --paper: #fffdfb;
  --white: #ffffff;
  --rose: #fff1f5;
  --rose-strong: #d84b7a;
  --rose-dark: #b53663;
  --teal: #0b7f95;
  --teal-soft: #e8f7f5;
  --sun: #fff5d6;
  --green: #4f9a70;
  --line: #ebdfe2;
  --shadow: 0 14px 36px rgba(60, 42, 48, 0.1);
  --radius: 8px;
  --max: 1120px;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 84px);
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.88;
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

p + p {
  margin-top: 0.8em;
}

ul,
ol {
  margin: 0;
  padding-left: 1.35em;
}

li + li {
  margin-top: 0.52em;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.38;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.18;
}

h2 {
  font-size: 1.72rem;
}

h3 {
  font-size: 1.13rem;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  background: var(--teal);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--rose-strong), var(--teal), var(--green));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(235, 223, 226, 0.92);
  background: rgba(255, 253, 251, 0.96);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(60, 42, 48, 0.1);
}

.brand span {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.35;
}

.brand strong {
  max-width: 235px;
  font-size: 0.95rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.global-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  display: none;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.global-nav.is-open {
  display: flex;
}

.global-nav a {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: calc(var(--radius) - 2px);
  color: #374c55;
  font-size: 0.96rem;
  font-weight: 800;
}

.global-nav a:hover,
.global-nav a:focus-visible,
.global-nav a.is-active {
  color: var(--rose-dark);
  background: var(--rose);
  outline: none;
}

.nav-toggle {
  display: inline-grid;
  place-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 16px 30px;
}

.hero-text {
  max-width: 680px;
  text-align: center;
}

.hero-title,
.story-title {
  display: inline-block;
  text-align: center;
}

.hero-stance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  gap: 3px;
  margin-top: 14px;
  padding: 8px 16px 9px;
  border: 1px solid rgba(216, 75, 122, 0.22);
  border-radius: 999px;
  color: var(--rose-dark);
  font-size: clamp(1.18rem, 5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(216, 75, 122, 0.13);
}

.hero-stance span {
  color: var(--white);
  padding: 3px 10px 4px;
  border-radius: 999px;
  background: var(--rose-strong);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-lead {
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  max-width: 21em;
  color: #41545d;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.hero-links a,
.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid rgba(216, 75, 122, 0.24);
  border-radius: var(--radius);
  color: var(--rose-dark);
  font-weight: 900;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(60, 42, 48, 0.06);
}

.hero-links a:first-child,
.contact-action:first-child {
  color: var(--white);
  border-color: var(--rose-strong);
  background: var(--rose-strong);
}

.hero-image {
  order: -1;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3.65;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.section-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 70;
  display: flex;
  gap: 8px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.97);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #40545d;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  background: var(--white);
}

.policy-nav {
  gap: 6px;
}

.policy-nav a {
  padding-right: 11px;
  padding-left: 11px;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a.is-active {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
  outline: none;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 16px;
}

.section[id],
article[id] {
  scroll-margin-top: calc(var(--header-height) + 84px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.story-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.council-section > .section-heading,
.vision-section > .section-heading,
.reports-section > .section-heading,
.contact-section > .section-heading {
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
}

.sns-section {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  padding-bottom: 28px;
}

.sns-section .section-heading {
  margin-bottom: 0;
}

.sns-section h2 {
  font-size: 1.1rem;
}

.sns-section .section-heading > p:not(.eyebrow) {
  margin-top: 2px;
  font-size: 0.94rem;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.top-sns {
  margin-top: 0;
}

.sns-links .sns-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(60, 42, 48, 0.12);
}

.sns-links .sns-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sns-links .sns-instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 24%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
}

.sns-links .sns-facebook {
  background: #1877f2;
}

.sns-links .sns-instagram rect,
.sns-links .sns-instagram circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
}

.sns-links .sns-instagram .sns-dot,
.sns-links .sns-facebook path {
  fill: currentColor;
  stroke: none;
}

.profile-section,
.vision-section,
.reports-section,
.contact-section {
  max-width: none;
}

.profile-section {
  background: linear-gradient(180deg, var(--paper), var(--rose));
}

.profile-section > .section-heading,
.profile-layout,
.council-section > .section-heading,
.council-grid,
.vision-section > .section-heading,
.vision-grid,
.vision-detail-grid,
.reports-section > .section-heading,
.home-report-list,
.report-list,
.contact-section > .section-heading,
.contact-box {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.profile-text > p {
  color: #41545d;
  font-weight: 500;
}

.home-summary-section {
  background: var(--paper);
}

.home-summary-grid {
  align-items: stretch;
}

.home-summary-single {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.summary-card {
  height: 100%;
}

.summary-card .inline-figure img {
  max-height: 280px;
  object-fit: contain;
}

.home-policy-overview {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.home-policy-visual {
  max-width: 300px;
  margin: 0 auto;
}

.summary-list {
  display: grid;
  gap: 8px;
  padding-left: 1.45em;
  color: #41545d;
  font-weight: 800;
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-list > div,
.text-block,
.story-card,
.video-block,
.council-card,
.policy-card,
.policy-main-visual,
.report-card,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(60, 42, 48, 0.07);
}

.info-list > div,
.text-block,
.video-block,
.council-card,
.policy-card,
.report-card,
.contact-box {
  padding: 20px;
}

.info-list h3,
.story-card h3,
.text-block h3,
.video-block h3,
.council-card h3,
.report-card h3,
.contact-message h3 {
  margin-bottom: 10px;
  color: var(--rose-dark);
}

.profile-item-photo {
  margin: 14px 0 0;
  overflow: hidden;
}

.profile-item-photo img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.profile-carousel {
  max-width: 330px;
  margin: 14px auto 0;
}

.profile-carousel .profile-item-photo {
  margin: 0;
}

.profile-carousel .profile-item-photo img {
  height: 300px;
}

.council-grid {
  display: grid;
  gap: 12px;
}

.council-card {
  text-align: left;
}

.council-card p,
.report-date {
  color: var(--muted);
  font-weight: 800;
}

.council-party {
  white-space: nowrap;
}

.council-party span {
  display: inline-flex;
  margin-right: 3px;
  padding: 1px 6px 2px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-strong), var(--teal));
  box-shadow: 0 4px 10px rgba(185, 55, 106, 0.18);
}

.council-list {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.council-list li::marker {
  color: var(--rose-strong);
}

.image-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel-button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-dark);
  font-size: 1.45rem;
  line-height: 1;
  background: var(--white);
  cursor: pointer;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  border-color: rgba(216, 75, 122, 0.45);
  outline: none;
  box-shadow: 0 0 0 3px rgba(216, 75, 122, 0.12);
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e8ccd6;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--rose-strong);
}

.text-flow {
  display: grid;
  gap: 16px;
}

.lead-block {
  border-color: rgba(11, 127, 149, 0.2);
  background: var(--teal-soft);
}

.story-card {
  display: grid;
  gap: 16px;
  padding: 14px;
}

.story-card img {
  width: min(100%, 320px);
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.quote {
  color: var(--teal);
  font-weight: 900;
}

.image-aside {
  display: grid;
  gap: 18px;
}

.inline-figure,
.vision-inline-image {
  margin: 18px 0 0;
}

.inline-figure {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.inline-figure img,
.vision-inline-image img {
  width: 100%;
  height: auto;
  max-height: 460px;
  margin: 0 auto;
  object-fit: contain;
}

.council-chart,
.population-figure,
.vision-support-image {
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
}

.video-block h3 {
  margin-bottom: 14px;
}

.video-open-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
  max-width: 430px;
  margin: 0 auto;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-strong), var(--teal));
  box-shadow: var(--shadow);
}

.play-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  color: var(--rose-dark);
  background: var(--white);
}

.video-embed {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.video-embed-toggle {
  max-width: 430px;
  margin: 12px auto 0;
}

.video-embed-toggle summary {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 900;
  text-align: center;
  background: var(--white);
  cursor: pointer;
}

.video-embed iframe {
  width: min(100%, 420px);
  min-height: 560px;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.vision-section {
  background: var(--teal-soft);
}

.vision-grid {
  display: block;
}

.vision-detail-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.vision-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.vision-list li::marker,
.policy-card li::marker {
  color: var(--rose-strong);
  font-weight: 900;
}

.policy-main-visual {
  max-width: 680px;
  margin: 0 auto 18px;
  padding: 10px;
}

.policy-main-visual img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.policy-map {
  position: relative;
}

.policy-hotspot {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.policy-hotspot:hover,
.policy-hotspot:focus-visible {
  outline: 3px solid rgba(11, 127, 149, 0.45);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.hotspot-1 {
  left: 8.5%;
  top: 6.5%;
  width: 31%;
  height: 20.5%;
}

.hotspot-2 {
  left: 59.5%;
  top: 6.5%;
  width: 31%;
  height: 20.5%;
}

.hotspot-3 {
  left: 74.5%;
  top: 37%;
  width: 22%;
  height: 23.5%;
}

.hotspot-4 {
  left: 65%;
  top: 70%;
  width: 27%;
  height: 17%;
}

.hotspot-5 {
  left: 8%;
  top: 70%;
  width: 27%;
  height: 17%;
}

.hotspot-6 {
  left: 2%;
  top: 37%;
  width: 23.5%;
  height: 23.5%;
}

.policy-grid {
  display: grid;
  gap: 16px;
}

.policy-card {
  scroll-margin-top: calc(var(--header-height) + 64px);
}

.policy-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.policy-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: var(--rose-strong);
}

.policy-card h3 {
  font-size: 1.08rem;
}

.policy-image {
  width: min(100%, 260px);
  height: auto;
  max-height: 260px;
  margin: 0 auto 16px;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.policy-image-wide {
  width: min(100%, 310px);
  max-height: 220px;
}

.policy-subtitle {
  margin: 18px 0 8px;
  color: var(--teal);
  font-weight: 900;
}

.policy-plus {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #f2de96;
  border-radius: var(--radius);
  color: #5f4600;
  font-weight: 900;
  background: var(--sun);
}

.reports-section {
  background: #fffaf0;
}

.home-report-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: 12px;
}

.home-report-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.home-report-item:hover,
.home-report-item:focus-visible {
  color: var(--rose-dark);
  border-color: #f0c8d4;
  outline: none;
  transform: translateY(-1px);
}

.home-report-item img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  background: #fff7fa;
}

.home-report-item small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-report-item strong {
  display: block;
  color: var(--rose-dark);
  font-size: 1rem;
  line-height: 1.45;
}

.home-detail-actions {
  justify-content: flex-start;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.summary-card .report-link,
.home-policy-overview .report-link,
.home-detail-actions .report-link {
  min-width: min(100%, 220px);
}

.report-list {
  display: grid;
  gap: 14px;
}

.report-list-preview {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.report-list-full {
  gap: 22px;
}

.report-card {
  display: grid;
  gap: 16px;
  text-align: left;
}

.report-image {
  margin: 0;
}

.report-image img,
.report-image video {
  display: block;
  width: min(100%, 420px);
  max-height: 520px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.report-image video {
  background: #111;
}

.report-card-summary .report-image img {
  width: min(100%, 280px);
  max-height: 340px;
}

.report-date {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.report-body h2,
.report-body h3 {
  color: var(--rose-dark);
}

.report-body h4 {
  margin: 20px 0 8px;
  color: var(--teal);
  font-size: 1rem;
}

.report-lead {
  font-size: 1.05rem;
  font-weight: 700;
}

.report-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 250, 0.9), rgba(255, 250, 240, 0.96)),
    #fffaf0;
}

.report-article {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-article-hero {
  display: grid;
  gap: 18px;
  padding: 26px 18px 0;
  background: linear-gradient(135deg, #fff7fa 0%, #fffaf0 58%, #ecfbf8 100%);
}

.report-article-hero-simple {
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: 26px;
  text-align: center;
}

.report-hero-copy {
  align-self: center;
}

.report-article-hero-simple .report-hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.report-hero-copy h1 {
  margin: 6px 0 14px;
  color: var(--rose-dark);
  font-size: 2.15rem;
  line-height: 1.08;
}

.report-article-subtitle {
  margin: 0;
  color: var(--teal);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.45;
}

.report-download-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.report-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid #f0c8d4;
  border-radius: var(--radius);
  color: var(--rose-dark);
  font-size: 0.95rem;
  font-weight: 900;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(214, 41, 118, 0.12);
}

.report-hero-visual {
  max-width: 320px;
  margin: 0 auto;
}

.report-hero-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.report-article-body {
  padding: 20px 18px 26px;
}

.report-vol-section {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.report-article-body > .report-vol-section:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.report-section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--rose-dark);
  font-size: 0.85rem;
  font-weight: 900;
  background: #fff1f5;
}

.report-vol-copy h2,
.report-vol-copy h3,
.report-profile-band h2,
.report-closing h2 {
  color: var(--rose-dark);
}

.report-vol-copy h2,
.report-profile-band h2,
.report-closing h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  line-height: 1.3;
}

.report-vol-copy h3 {
  margin: 20px 0 8px;
  color: var(--teal);
  font-size: 1.06rem;
}

.report-vol-copy .report-heading-large,
.report-closing .report-heading-large {
  margin: 24px 0 12px;
  padding: 10px 12px 10px 14px;
  border-left: 5px solid var(--rose);
  border-radius: 6px;
  color: var(--rose-dark);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.42;
  background: linear-gradient(90deg, #fff1f5, rgba(255, 241, 245, 0));
}

.report-vol-copy .report-heading-medium,
.report-closing .report-heading-medium {
  margin: 18px 0 8px;
  color: var(--teal);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.48;
}

.report-vol-copy .report-heading-small,
.report-closing .report-heading-small {
  margin: 8px 0 8px;
  padding-left: 11px;
  border-left: 3px solid #f0c8d4;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.55;
}

.report-profile-band {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfb;
}

.report-profile-list {
  display: grid;
  gap: 10px;
}

.report-photo,
.report-info-image,
.report-logo-figure {
  margin: 0;
}

.report-photo img,
.report-info-image img,
.report-logo-figure img {
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(60, 42, 48, 0.08);
}

.report-photo img {
  max-height: 560px;
  object-fit: cover;
}

.report-photo-portrait img {
  object-position: center top;
}

.report-intro-grid .report-photo-portrait {
  width: min(100%, 280px);
  justify-self: center;
}

.report-intro-grid .report-photo-portrait img {
  max-height: 360px;
}

.report-photo-wide img {
  aspect-ratio: 4 / 3;
}

.report-info-image img {
  max-height: 700px;
  object-fit: contain;
}

.report-bike-photo {
  width: min(100%, 330px);
  justify-self: center;
  align-self: center;
}

.report-bike-photo img {
  max-height: 430px;
  padding: 10px;
  object-fit: contain;
  background: linear-gradient(180deg, #fff7fa, #fffaf0);
}

.report-logo-figure {
  max-width: 120px;
}

.report-logo-figure img {
  padding: 8px;
  background: #fffaf0;
}

.report-logo-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.report-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}

.report-info-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.report-photo-pair,
.report-seeds-visuals {
  display: grid;
  gap: 12px;
}

.report-instagram-gallery {
  align-items: start;
  margin: 0;
}

.report-instagram-gallery .report-image img,
.report-instagram-gallery .report-image video {
  width: min(100%, 360px);
  max-height: 520px;
}

.report-instagram-gallery-mixed {
  grid-template-columns: minmax(0, 1fr);
}

.report-parenting-carousel {
  align-self: start;
}

.report-parenting-carousel .carousel-track {
  border-radius: calc(var(--radius) - 2px);
}

.report-parenting-carousel .report-photo img {
  height: clamp(320px, 78vw, 360px);
  max-height: none;
  object-fit: contain;
  background: #fffaf0;
}

.report-parenting-carousel .report-photo:first-child img {
  object-position: center center;
}

.report-parenting-carousel .report-photo:nth-child(2) img {
  object-position: center center;
}

.report-inline-figure {
  max-width: min(100%, 560px);
  margin: 16px 0 22px;
}

.report-inline-figure-narrow {
  max-width: min(100%, 360px);
}

.report-certificate-figure {
  width: min(100%, 280px);
  margin: 18px auto 24px;
}

.report-certificate-figure img {
  max-height: 430px;
  object-fit: contain;
}

.report-committee-figure {
  width: min(100%, 420px);
  margin: 18px auto 24px;
}

.report-committee-figure img {
  max-height: 560px;
  object-fit: contain;
}

.report-committee-figure-mobile {
  margin: 18px auto 22px;
}

.report-term-certificate-figure {
  width: min(100%, 300px);
  justify-self: center;
  align-self: start;
  margin: 0;
}

.report-term-certificate-figure img {
  max-height: 430px;
  object-fit: contain;
}

.report-logo-figure.report-inline-figure {
  max-width: 120px;
}

.report-seeds-logo-figure {
  max-width: 120px;
  margin: 14px auto 20px;
}

.report-inline-media-row {
  display: grid;
  gap: 14px;
  margin: 16px 0 22px;
}

.report-inline-media-copy {
  min-width: 0;
}

.report-inline-media-row .report-heading-large:first-child,
.report-inline-media-row .report-heading-medium:first-child,
.report-inline-media-row .report-heading-small:first-child {
  margin-top: 0;
}

.report-inline-media-row .report-photo,
.report-inline-media-row .report-info-image,
.report-inline-media-row .report-logo-figure,
.report-inline-media-row .report-parenting-carousel {
  width: min(100%, 420px);
  max-width: 420px;
  justify-self: center;
  margin: 0;
}

.report-inline-media-row .report-certificate-figure {
  max-width: 280px;
}

.report-inline-media-row-committee .report-info-image {
  max-width: 340px;
}

.report-independent-figure {
  width: min(100%, 420px);
  justify-self: center;
}

.report-inline-media-row-logo .report-logo-figure {
  max-width: 118px;
}

.report-principle-label {
  display: inline-flex;
  margin: 6px 0 8px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--rose-dark);
  font-weight: 900;
  background: #fff1f5;
}

.report-closing {
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius);
  color: #493942;
  background: linear-gradient(135deg, #fff1f5, #ecfbf8);
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.report-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, #d62976, #1877f2);
}

.report-body > .report-link {
  margin-top: 16px;
}

.report-link-secondary {
  color: var(--rose-dark);
  border: 1px solid #f0c8d4;
  background: #fff7fa;
}

.section-more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  margin: 20px auto 32px;
}

.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(11, 127, 149, 0.16);
}

.contact-section {
  background: #fff7fa;
}

.contact-box {
  max-width: 820px;
}

.contact-message {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-message p {
  line-height: 1.92;
}

.contact-voice-image {
  max-width: 560px;
  margin: 0 auto 20px;
}

.contact-voice-image img {
  width: 100%;
  height: auto;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.contact-box a:not(.sns-icon):not(.contact-action) {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 28px 16px 92px;
  color: var(--white);
  background: #253238;
}

.site-footer p {
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  font-size: 0.9rem;
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 10px;
  left: 12px;
  z-index: 85;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(235, 223, 226, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(60, 42, 48, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mobile-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: calc(var(--radius) - 2px);
  color: var(--white);
  font-weight: 900;
  background: var(--teal);
}

.mobile-actions a:first-child {
  background: var(--rose-strong);
}

.mobile-actions a:last-child {
  color: var(--white);
  background: linear-gradient(135deg, #d62976, #1877f2);
}

.back-home {
  position: fixed;
  left: 16px;
  bottom: 92px;
  z-index: 84;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(216, 75, 122, 0.25);
  border-radius: 999px;
  color: var(--rose-dark);
  font-size: 0.88rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.back-home:hover,
.back-home:focus-visible {
  color: var(--white);
  border-color: var(--rose-strong);
  background: var(--rose-strong);
  outline: none;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 84;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-dark);
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-actions {
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .back-home {
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 82px));
  }
}

@media (min-width: 520px) {
  .hero-links,
  .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-links a:last-child {
    grid-column: span 2;
  }

  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-photo-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-instagram-gallery-mixed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-instagram-gallery .report-image img,
  .report-instagram-gallery .report-image video {
    width: 100%;
    max-height: 430px;
  }
}

@media (min-width: 760px) {
  :root {
    --header-height: 76px;
  }

  body {
    padding-bottom: 0;
    font-size: 17px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .site-header {
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
    padding-left: max(24px, calc((100vw - var(--max)) / 2));
  }

  .brand strong {
    max-width: none;
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    align-items: center;
    gap: 54px;
    padding: 64px 24px 56px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-title {
    text-align: left;
  }

  .hero-stance {
    justify-content: flex-start;
    font-size: clamp(1.32rem, 2.2vw, 1.9rem);
  }

  .hero-lead {
    margin-left: 0;
  }

  .hero-image {
    order: 0;
  }

  .hero-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    max-width: 560px;
  }

  .hero-links a {
    min-width: 0;
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.88rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .report-article-hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: center;
    gap: 34px;
    padding: 42px 42px 0;
  }

  .report-article-hero-simple {
    grid-template-columns: minmax(0, 1fr);
    padding-bottom: 42px;
  }

  .report-article {
    max-width: min(1320px, calc(100vw - 40px));
  }

  .report-hero-copy h1 {
    font-size: 3.25rem;
  }

  .report-vol-copy .report-heading-large,
  .report-closing .report-heading-large {
    margin-top: 26px;
    font-size: 1.32rem;
  }

  .report-vol-copy .report-heading-medium,
  .report-closing .report-heading-medium {
    font-size: 1.12rem;
  }

  .report-vol-copy .report-heading-small,
  .report-closing .report-heading-small {
    font-size: 0.98rem;
  }

  .report-article-body {
    padding: 34px 42px 46px;
  }

  .report-article-body > .report-vol-section:first-child {
    padding-top: 4px;
  }

  .report-parenting-carousel .report-photo img {
    height: 410px;
  }

  .report-bike-photo {
    width: min(100%, 320px);
  }

  .report-bike-photo img {
    max-height: 480px;
  }

  .report-photo img {
    max-height: 540px;
  }

  .report-info-image img {
    max-height: 560px;
  }

  .report-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }

  .report-intro-grid .report-photo-portrait {
    max-width: 330px;
    justify-self: center;
  }

  .report-intro-grid .report-photo-portrait img {
    max-height: 430px;
  }

  .report-photo-wide img {
    max-height: 360px;
  }

  .report-inline-figure-narrow {
    float: right;
    width: min(38%, 250px);
    margin: 4px 0 16px 24px;
  }

  .report-inline-figure-narrow img {
    max-height: 360px;
    object-fit: contain;
  }

  .report-certificate-figure {
    float: right;
    width: min(38%, 280px);
    margin: 4px 0 18px 26px;
  }

  .report-certificate-figure img {
    max-height: 420px;
  }

  .report-term-section {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
  }

  .report-term-section .report-term-certificate-figure {
    grid-column: 2;
    grid-row: 1;
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    justify-self: center;
  }

  .report-term-section .report-term-certificate-figure img {
    max-height: 430px;
  }

  .report-vol-section-full .report-inline-figure {
    float: right;
    width: min(42%, 360px);
    margin: 4px 0 18px 28px;
  }

  .report-vol-section-full .report-inline-figure img {
    max-height: 520px;
  }

  .report-committee-figure {
    float: right;
    width: min(42%, 470px);
    margin: 4px 0 20px 32px;
  }

  .report-committee-figure img {
    max-height: 640px;
  }

  .report-term-section .report-committee-figure {
    float: none;
    width: 100%;
    margin: 0;
  }

  .report-logo-figure.report-inline-figure {
    max-width: 92px;
  }

  .report-seeds-logo-figure {
    float: right;
    max-width: 98px;
    margin: 2px 0 14px 22px;
  }

  .report-seeds-visuals .report-photo-wide img {
    max-height: 330px;
  }

  .section-nav {
    padding-right: 24px;
    padding-left: 24px;
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .section {
    padding: 82px 24px;
  }

  .sns-section {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .story-card {
    grid-template-columns: minmax(200px, 250px) 1fr;
    gap: 24px;
    padding: 18px;
  }

  .story-section .section-heading {
    margin-left: 0;
    text-align: left;
  }

  .story-title {
    text-align: left;
  }

  .story-title br {
    display: none;
  }

  .council-section > .section-heading,
  .vision-section > .section-heading,
  .reports-section > .section-heading,
  .contact-section > .section-heading {
    text-align: left;
  }

  .image-aside {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
    align-items: center;
    gap: 28px;
  }

  .image-aside .inline-figure,
  .image-aside .vision-inline-image {
    margin-top: 0;
  }

  #story .home-summary-grid,
  #vision .home-summary-grid {
    gap: 24px;
    align-items: stretch;
  }

  #story .summary-card,
  #vision .summary-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  #story .image-aside,
  #vision .image-aside {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  #story .summary-card > div,
  #vision .summary-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  #story .summary-card .report-actions,
  #vision .summary-card .report-actions {
    margin-top: auto;
  }

  #story .story-figure,
  #vision .story-figure {
    order: -1;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    margin: 0;
  }

  #story .story-figure img,
  #vision .story-figure img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  #story .story-photo-figure img {
    object-fit: cover;
    object-position: center 42%;
  }

  #story .story-chart-figure img,
  #vision .story-chart-figure img {
    object-fit: contain;
  }

  .home-policy-overview {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 26px;
    align-items: center;
  }

  .home-policy-visual {
    margin: 0;
  }

  .council-grid,
  .vision-detail-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-vol-section {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
    align-items: start;
    gap: 30px;
  }

  .report-vol-section-reverse {
    grid-template-columns: minmax(320px, 410px) minmax(0, 1fr);
  }

  .report-vol-section-full {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-vol-section-reverse > :last-child {
    order: -1;
  }

  .report-intro-grid {
    align-items: center;
  }

  .council-card:last-child {
    grid-column: 1 / -1;
  }

  .contact-actions {
    max-width: 420px;
  }

  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  }

  .site-footer nav {
    justify-content: flex-end;
    margin-top: 0;
  }

  .mobile-actions {
    display: none;
  }

  .back-home {
    bottom: 22px;
  }

  .back-to-top {
    bottom: 22px;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .global-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 7px;
    font-size: 0.8rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .policy-grid {
    gap: 18px;
  }

  .council-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  }

  .council-card:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1120px) {
  .global-nav {
    gap: 5px;
  }

  .global-nav a {
    min-height: 36px;
    padding: 8px 9px;
    font-size: 0.84rem;
  }

  .report-article-body {
    padding: 40px 48px 54px;
  }

  .report-vol-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    gap: 36px;
  }

  .report-vol-section-reverse {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  }

  .report-vol-section-full {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-term-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  }

  .report-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  }

  .report-parenting-carousel .report-photo img {
    height: 440px;
  }

  .report-certificate-figure {
    width: min(36%, 290px);
    margin-left: 28px;
  }

  .report-term-section .report-term-certificate-figure {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }

  .report-committee-figure {
    width: min(44%, 500px);
    margin-left: 36px;
  }

  .report-seeds-logo-figure {
    max-width: 90px;
    margin-left: 24px;
  }
}

@media (min-width: 760px) {
  .report-inline-media-row {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
    gap: 28px;
    margin: 20px 0 28px;
  }

  .report-inline-media-row .report-photo,
  .report-inline-media-row .report-info-image,
  .report-inline-media-row .report-logo-figure,
  .report-inline-media-row .report-parenting-carousel {
    float: none;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .report-inline-media-row .report-photo img,
  .report-inline-media-row .report-info-image img {
    max-height: 460px;
  }

  .report-inline-media-row .report-photo-wide img {
    max-height: 300px;
  }

  .report-inline-media-row-street .report-photo img {
    height: 300px;
    max-height: none;
    object-fit: cover;
    object-position: center 50%;
  }

  .report-inline-media-row-parenting {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
  }

  .report-inline-media-row-parenting .report-parenting-carousel {
    justify-self: end;
  }

  .report-inline-media-row-certificate {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    align-items: start;
  }

  .report-inline-media-row-certificate .report-certificate-figure {
    justify-self: end;
    width: auto;
    max-width: 320px;
  }

  .report-inline-media-row-certificate .report-certificate-figure img {
    width: auto;
    height: 500px;
    max-height: none;
    object-fit: contain;
  }

  .report-inline-media-row-chart {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    align-items: start;
  }

  .report-inline-media-row-chart .report-info-image {
    justify-self: end;
    width: auto;
  }

  .report-inline-media-row-chart .report-info-image img {
    width: auto;
    height: 290px;
    max-height: none;
    object-fit: contain;
  }

  .report-inline-media-row-committee {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: start;
  }

  .report-inline-media-row-committee .report-info-image {
    justify-self: end;
    width: auto;
    max-width: 380px;
  }

  .report-inline-media-row-committee .report-info-image img {
    width: auto;
    height: clamp(390px, 31vw, 430px);
    max-height: none;
    object-fit: contain;
  }

  .report-independent-section {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .report-inline-media-row-independent {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 350px);
    align-items: start;
  }

  .report-independent-figure {
    justify-self: end;
    width: auto;
    max-width: 350px;
  }

  .report-independent-figure img {
    width: auto;
    height: 430px;
    max-height: none;
    object-fit: contain;
  }

  .report-inline-media-row-logo {
    grid-template-columns: minmax(0, 1fr) 118px;
    align-items: center;
  }

  .report-inline-media-row-logo .report-seeds-logo-figure {
    max-width: 118px;
    justify-self: center;
  }

  .report-inline-media-row-seeds-photo {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }
}

@media (min-width: 1120px) {
  .report-inline-media-row {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: 34px;
  }

  .report-inline-media-row-parenting {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  }

  .report-inline-media-row-certificate {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  }

  .report-inline-media-row-certificate .report-certificate-figure img {
    height: 420px;
  }

  .report-inline-media-row-chart {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  }

  .report-inline-media-row-committee {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  }

  .report-inline-media-row-chart .report-info-image img {
    height: 230px;
  }

  .report-inline-media-row-committee .report-info-image {
    max-width: 420px;
  }

  .report-inline-media-row-committee .report-info-image img {
    height: clamp(390px, 31vw, 430px);
  }

  .report-independent-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .report-inline-media-row-independent {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  }

  .report-independent-figure {
    max-width: 380px;
  }

  .report-independent-figure img {
    height: 455px;
  }

  .report-inline-media-row-street .report-photo img {
    height: 220px;
  }

  .report-inline-media-row-logo {
    grid-template-columns: minmax(0, 1fr) 126px;
  }

  .report-inline-media-row-logo .report-seeds-logo-figure {
    max-width: 126px;
  }

  .report-inline-media-row-seeds-photo {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  }
}

@media (max-width: 759px) {
  .report-inline-media-row-committee > .report-committee-figure:not(.report-committee-figure-mobile) {
    display: none;
  }
}

@media (min-width: 760px) {
  .report-committee-figure-mobile {
    display: none;
  }

  .report-inline-media-row-city {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    align-items: start;
  }

  .report-inline-media-row-city .report-city-photo {
    order: -1;
    justify-self: start;
    width: 100%;
    max-width: none;
  }

  .report-inline-media-row-city .report-city-photo img {
    max-height: 330px;
    object-fit: cover;
  }

  .report-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  }

  .report-intro-grid .report-photo-portrait {
    max-width: 280px;
  }

  .report-intro-grid .report-photo-portrait img {
    max-height: 360px;
  }
}

@media (min-width: 1120px) {
  .report-inline-media-row-city {
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  }

  .report-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  }
}

@media (max-width: 380px) {
  .brand strong {
    max-width: 190px;
  }

  h1 {
    font-size: 2rem;
  }

  .section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .info-list > div,
  .text-block,
  .video-block,
  .policy-card,
  .contact-box {
    padding: 18px;
  }
}
