:root {
  --site-container-width: 1280px;
  --site-container-narrow-width: 920px;
  --site-gutter: clamp(20px, 5vw, 80px);
  --section-padding-block: clamp(64px, 10vw, 120px);
  --spacing-pc-section: var(--section-padding-block);
  --color-bg: #fff8ee;
  --color-bg-accent: #ffd0af;
  --color-surface: #ffffff;
  --color-text: #492f1d;
  --color-header-text: #353535;
  --color-muted: #7a6554;
  --color-primary: #e9775d;
  --color-brand-green: #91a63c;
  --color-border: #ead8c9;
  --shadow-soft: 0 12px 40px rgba(73, 47, 29, 0.08);
  --radius-panel: 36px;
  --radius-card: 24px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic Pro', 'Yu Gothic', sans-serif;
  line-height: 1.6;
  background: var(--color-bg);
}

a {
  color: inherit;
  transition: opacity 0.4s ease;
}

a:hover {
  opacity: 0.5;
}

img {
  height: auto;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 32px;
  background: transparent;
}

.site-header.is-compact {
  position: fixed;
  padding: 8px 16px;
  animation: site-header-slide-in 0.4s ease both;
}

@keyframes site-header-slide-in {
  from {
    transform: translateY(-120%);
  }

  to {
    transform: translateY(0);
  }
}

.site-header__inner,
.site-footer__inner,
.section-container {
  width: min(100%, calc(var(--site-container-width) + var(--site-gutter) * 2));
  margin: 0 auto;
  padding-right: var(--site-gutter);
  padding-left: var(--site-gutter);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, var(--site-container-width));
  min-width: 0;
  min-height: 170px;
  padding: 0;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 170px;
  height: 170px;
}

.site-header__logo {
  display: block;
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.site-header__nav {
  flex: 0 1 auto;
  min-width: 0;
  max-width: calc(100% - 202px);
}

.site-header__menu {
  align-items: center;
  gap: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-brand-green);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-header-text);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.site-header__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 16px 32px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-header__menu a:hover,
.site-header__menu a:focus-visible {
  background: rgba(145, 166, 60, 0.12);
}

.site-header__menu a[aria-current='page'] {
  background: var(--color-brand-green);
  color: #ffffff;
}

.site-header__menu a[aria-current='page']:hover,
.site-header__menu a[aria-current='page']:focus-visible {
  background: var(--color-brand-green);
  color: #ffffff;
}

.site-header__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.site-header__brand,
.site-footer__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-header__menu,
.site-footer__menu {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header__menu {
  gap: 0;
}

.site-footer__menu {
  gap: 18px;
}

.site-header__menu a,
.site-footer__menu a {
  text-decoration: none;
}

.site-header__toggle {
  display: none;
}

.site-header.is-compact .site-header__inner {
  position: relative;
  min-height: 84px;
  border-radius: 24px;
}

.site-header.is-compact .site-header__brand,
.site-header.is-compact .site-header__logo {
  width: 100px;
  height: 100px;
}

.site-header.is-compact .site-header__toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 4px 0 0;
  border: 1px solid var(--color-brand-green);
  border-radius: 999px;
  background: #ffffff;
  color: #353535;
  font-family: inherit;
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease;
}

.site-header.is-compact .site-header__toggle[aria-expanded='true'] {
  border-color: #b5cf4b;
  background: #b5cf4b;
  color: #ffffff;
}

.site-header.is-compact .site-header__toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 8px;
}

.site-header.is-compact .site-header__toggle-line {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.4s ease,
    top 0.4s ease,
    background-color 0.4s ease;
}

.site-header.is-compact .site-header__toggle-line:first-child {
  top: 1px;
}

.site-header.is-compact .site-header__toggle-line:last-child {
  top: 7px;
}

.site-header.is-compact .site-header__toggle[aria-expanded='true'] .site-header__toggle-line:first-child {
  top: 4px;
  transform: rotate(45deg);
}

.site-header.is-compact .site-header__toggle[aria-expanded='true'] .site-header__toggle-line:last-child {
  top: 4px;
  transform: rotate(-45deg);
}

.site-header.is-compact .site-header__toggle-label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-header.is-compact .site-header__nav {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: none;
  min-height: 100vh;
  padding: 156px 16px 64px;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: none;
  visibility: hidden;
}

.site-header.is-compact .site-header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
  visibility: visible;
}

.site-header.is-compact .site-header__menu {
  position: relative;
  z-index: 1;
  align-items: center;
  flex-direction: column;
  gap: 64px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #353535;
  font-size: 20px;
}

.site-header.is-compact .site-header__menu a {
  gap: 8px;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  font-weight: 500;
  line-height: 1.5;
}

.site-header.is-compact .site-header__menu a::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fae500;
  content: '';
}

.site-header.is-compact .site-header__menu a:hover,
.site-header.is-compact .site-header__menu a:focus-visible {
  background: transparent;
}

.site-header.is-compact .site-header__menu a[aria-current='page'],
.site-header.is-compact .site-header__menu a[aria-current='page']:hover,
.site-header.is-compact .site-header__menu a[aria-current='page']:focus-visible {
  background: transparent;
  color: #353535;
}

.section-full {
  width: 100%;
  padding-top: var(--section-padding-block);
  padding-bottom: var(--section-padding-block);
}

.section-container {
  max-width: none;
}

.section-container--narrow {
  width: min(100%, calc(var(--site-container-narrow-width) + var(--site-gutter) * 2));
}

.section-panel {
  padding: clamp(32px, 6vw, 72px);
  border-radius: var(--radius-panel);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.section-panel--split {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.section-heading__eyebrow,
.page-hero__eyebrow,
.home-hero__eyebrow {
  margin: 0;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading__title,
.page-hero__title,
.home-hero__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: 0.12em;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--color-bg);
}

.home-hero__slider {
  display: grid;
  width: min(100vw, 2000px);
  max-width: 2000px;
  margin: 0 auto;
}

.home-hero__slide {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.home-hero__slide.is-active {
  opacity: 1;
}

.home-hero__slide-image {
  display: block;
  width: 100%;
  max-width: 2000px;
  height: auto;
}

.home-hero__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(92vw, 1120px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-hero__copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3.05vw, 39px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(53, 53, 53, 0.18);
}

.home-hero__copy-line {
  display: block;
}

.home-hero__copy-line--sp {
  display: none;
}

.home-hero__dots {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 288px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.home-hero__dot {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9b9b9;
  cursor: pointer;
}

.home-hero__dot.is-active {
  width: 32px;
  height: 20px;
  background: #fa7900;
}

.home-main-catch {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -180px;
  background: transparent;
}

.home-main-catch.section-full {
  padding-top: 0;
}

.home-main-catch__decoration {
  --decoration-scale: 1;

  position: absolute;
  z-index: 0;
  bottom: clamp(24px, 4vw, 56px);
  display: block;
  width: 136.223px;
  height: 142.923px;
  pointer-events: none;
  transform: scale(var(--decoration-scale));
  transform-origin: center bottom;
}

.home-main-catch__decoration--left {
  left: clamp(20px, 8vw, 112px);
}

.home-main-catch__decoration--right {
  right: clamp(20px, 8vw, 112px);
}

.home-main-catch__decoration img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 70.3307px;
  height: 126.846px;
  max-width: none;
  transform-origin: 0 0;
}

.home-main-catch__decoration--left img {
  transform: translate(0, 46.0618px) rotate(-40.9144deg);
}

.home-main-catch__decoration--right img {
  transform: matrix(-0.779277, -0.62668, -0.62668, 0.779277, 134.299, 44.0749);
}

.home-main-catch__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.home-main-catch__background {
  margin: 0;
  color: #c4d96f;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.5;
  white-space: nowrap;
}

.home-main-catch__text {
  margin: 0;
  color: #353535;
  font-size: clamp(22px, 2.42vw, 31px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.button,
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button--secondary {
  background: var(--color-bg-accent);
  color: var(--color-text);
}

.news-list {
  display: grid;
  gap: 24px;
}

.news-list__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.news-list__date {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-list__title {
  text-decoration: none;
}

.news-list__empty {
  margin: 0;
  color: var(--color-muted);
}

.home-news-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 12px;
  background: #ffffff;
}

.home-news-card__heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
  border-bottom: 4px dashed #b5cf4b;
}

.home-news-card__heading h2 {
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.home-news-card__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.home-news-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.home-news-card__item {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.home-news-card__date {
  flex: 0 0 90px;
  color: #6d7c2d;
  font-weight: 400;
  white-space: nowrap;
}

.home-news-card__title {
  color: #353535;
  font-weight: 500;
  text-decoration: none;
}

.home-news-card__button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 32px;
  border: 1px solid #fa7900;
  border-radius: 999px;
  background: #fa7900;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
}

.home-news-card__button-arrow {
  font-size: 24px;
  line-height: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.content-card {
  display: grid;
  gap: 16px;
  min-height: 180px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.content-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content-card__text {
  color: var(--color-muted);
}

.home-about,
.home-specialists,
.home-activities,
.home-master-sponsor {
  padding-top: 0;
  padding-bottom: 0;
  background: var(--color-bg);
}

.home-specialists {
  padding-top: var(--spacing-pc-section);
}

.home-about,
.home-activities,
.home-master-sponsor {
  padding-top: var(--spacing-pc-section);
}

.home-master-sponsor {
  padding-bottom: var(--spacing-pc-section);
}

.home-specialists__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.specialist-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 661px);
  gap: 32px;
  align-items: start;
  padding: 0 16px;
}

.specialist-profile__media {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
}

.specialist-profile__media img {
  display: block;
  width: 100%;
  height: 593px;
  border-radius: 12px;
  object-fit: cover;
}

.specialist-profile__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  color: #353535;
  word-break: break-word;
}

.specialist-profile__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.specialist-profile__catch {
  margin: 0;
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.specialist-profile__name-row {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.specialist-profile__name {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

.specialist-profile__name span {
  color: #91a63c;
}

.specialist-profile__name-en {
  margin: 0;
  color: #b9b9b9;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.specialist-profile__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.specialist-profile__lead p {
  margin: 0;
}

.specialist-profile__lead p + p {
  margin-top: 0;
}

.specialist-profile__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.specialist-profile__history {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  padding: 16px 16px 16px 0;
  overflow: hidden;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}

.specialist-profile__history h3 {
  flex: 0 0 auto;
  margin: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.specialist-profile__history-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-left: 16px;
  border-left: 1px solid #b9b9b9;
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.specialist-profile__history-list p {
  margin: 0;
}

.specialist-profile__licenses {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  color: #353535;
  letter-spacing: 0.02em;
}

.specialist-profile__licenses h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.specialist-profile__licenses ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.7;
}

.specialist-profile__licenses li::before {
  color: #91a63c;
  content: '・';
}

.home-specialists__decoration {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: 0;
  color: var(--color-neutral-80, #e6e6e6);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: -2.48px;
  text-align: center;
  opacity: 0.5;
  white-space: nowrap;
}

.home-info-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.home-info-card__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  min-width: 0;
  color: #353535;
}

.home-info-card--text-left .home-info-card__content {
  padding-left: 32px;
}

.home-info-card--image-left .home-info-card__content {
  padding-right: 32px;
}

.home-info-card__title {
  display: inline-flex;
  justify-content: center;
  padding-bottom: 16px;
  border-bottom: 4px dashed #b5cf4b;
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

.home-info-card__text {
  width: 100%;
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.home-info-card__text p {
  margin: 0;
}

.home-info-card__text p + p {
  margin-top: 1.7em;
}

.home-info-card__button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 16px 32px;
  border: 1px solid #fa7900;
  border-radius: 999px;
  background: #fa7900;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.home-info-card__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 608 / 376;
  border-radius: 12px;
}

.home-info-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: inherit;
  object-fit: cover;
}

.home-about .home-info-card__media img {
  height: 129.41%;
  top: -4.97%;
}

.home-activities .home-info-card__media img {
  object-position: center bottom;
}

.home-sponsors {
  padding: 64px var(--site-gutter);
  background: #ffffff;
}

.home-sponsors .section-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  padding-right: 0;
  padding-left: 0;
}

.home-sponsors__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: #353535;
  text-align: center;
}

.home-sponsors__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.home-sponsors__footprint {
  position: relative;
  display: block;
  width: 26.1px;
  height: 27.191px;
  flex: 0 0 26.1px;
}

.home-sponsors__footprint img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 13.475px;
  height: 24.3031px;
  max-width: none;
  transform-origin: 0 0;
}

.home-sponsors__footprint--left img {
  transform: translate(0, 8.8252px) rotate(-40.9144deg);
}

.home-sponsors__footprint--right img {
  transform: matrix(-0.755688, -0.654931, -0.654931, 0.755688, 26.0999, 8.8252);
}

.home-sponsors__heading h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 100px));
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.sponsor-grid__item {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 12px;
  background: #d6d6d6;
}

.section-media-placeholder,
.feature-row__media {
  min-height: 100px;
  border-radius: 12px;
  background: #d6d6d6;
}

.feature-stack {
  display: grid;
  gap: 48px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.feature-row--reverse .feature-row__media {
  order: 2;
}

.feature-row__media {
  min-height: 360px;
}

.feature-row__title {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.08em;
}

.feature-row__text,
.section-lead {
  margin: 0 0 28px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

.section-media-placeholder {
  min-height: 320px;
}

.contact-section {
  padding: 64px var(--site-gutter);
  background: #ffffff;
}

.contact-section .section-container {
  padding-right: 0;
  padding-left: 0;
}

.contact-section__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.contact-section__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  color: #353535;
  text-align: center;
}

.contact-section__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-section__footprint {
  position: relative;
  display: block;
  width: 26.1px;
  height: 27.191px;
  flex: 0 0 26.1px;
}

.contact-section__footprint img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 13.475px;
  height: 24.3031px;
  max-width: none;
  transform-origin: 0 0;
}

.contact-section__footprint--left img {
  transform: translate(0, 8.8252px) rotate(-40.9144deg);
}

.contact-section__footprint--right img {
  transform: matrix(-0.755688, -0.654931, -0.654931, 0.755688, 26.0999, 8.8252);
}

.contact-section__heading h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

.contact-section__lead {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
}

.site-form,
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 100%;
}

.site-form label,
.wpcf7-form label {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: min(100%, 804px);
  padding: 16px;
  overflow: hidden;
  border-bottom: 1px solid #b9b9b9;
  color: #353535;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.site-form__label-text {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 250px;
  white-space: nowrap;
}

.site-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 8px;
  background: #eb0000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.site-form input,
.site-form textarea,
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 16px;
  border: 1px solid #717171;
  border-radius: 8px;
  background: #ffffff;
  color: #353535;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.site-form textarea,
.wpcf7-form textarea {
  min-height: 243px;
  resize: vertical;
}

.site-form input::placeholder,
.site-form textarea::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #828282;
  opacity: 1;
}

.site-form .button,
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 314px;
  min-height: 64px;
  padding: 16px 32px;
  border: 1px solid #4a9ccf;
  border-radius: 999px;
  margin-top: 32px;
  background: #4a9ccf;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.wpcf7 form .wpcf7-response-output {
  width: min(100%, 804px);
}

.page-hero {
  background: var(--color-bg);
}

.content-page > .section-container,
.lower-page > .section-container,
.single-post > .section-container,
.news-page > .section-container {
  padding-bottom: var(--section-padding-block);
}

.content-page__body,
.single-post__body,
.content-list {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pagination__item,
.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  background: var(--color-bg);
  text-decoration: none;
}

.pagination__item--current {
  background: var(--color-primary);
  color: #ffffff;
}

.news-page,
.news-detail {
  position: relative;
  overflow: hidden;
  background: #fff8f1;
}

.news-lower {
  position: relative;
  min-height: 720px;
  padding: 202px 16px 128px;
  overflow: hidden;
}

.news-lower__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
  width: min(100%, var(--site-container-width));
  margin: 0 auto;
}

.news-lower__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding-top: 32px;
  color: #353535;
  text-align: center;
}

.news-lower__heading::before {
  position: absolute;
  z-index: 0;
  top: 30px;
  left: 50%;
  width: 94px;
  height: 91px;
  border-radius: 999px;
  background: rgba(250, 229, 0, 0.6);
  content: '';
  transform: translateX(-50%);
}

.news-lower__icon-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.news-lower__icon {
  display: block;
  width: 40px;
  height: 40px;
}

.news-lower__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.news-lower__background-text {
  position: absolute;
  z-index: 0;
  top: 125px;
  left: 50%;
  margin: 0;
  color: rgba(181, 207, 75, 0.3);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.35;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px #48531e;
  white-space: nowrap;
}

.news-lower__footprints {
  position: absolute;
  z-index: 0;
  top: 122px;
  left: 50%;
  width: 1451px;
  height: 684px;
  pointer-events: none;
  transform: translateX(-50%) rotate(-29deg);
}

.news-lower--detail .news-lower__footprints {
  top: -100px;
}

.news-lower__footprints::before,
.news-lower__footprints::after {
  position: absolute;
  width: 41px;
  height: 74px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  opacity: 0.95;
}

.news-lower__footprints::before {
  top: 0;
  left: 40px;
  background-image: url('../images/visionflag-footer-footprint-left.svg');
  box-shadow:
    176px 64px 0 0 rgba(0, 0, 0, 0),
    347px 130px 0 0 rgba(0, 0, 0, 0),
    546px 219px 0 0 rgba(0, 0, 0, 0),
    948px 431px 0 0 rgba(0, 0, 0, 0),
    1149px 537px 0 0 rgba(0, 0, 0, 0);
  filter: drop-shadow(176px 64px 0 #f8faed) drop-shadow(347px 130px 0 #f8faed) drop-shadow(546px 219px 0 #f8faed) drop-shadow(948px 431px 0 #f8faed) drop-shadow(1149px 537px 0 #f8faed);
}

.news-lower__footprints::after {
  top: 99px;
  left: 98px;
  background-image: url('../images/visionflag-footer-footprint-right.svg');
  filter: drop-shadow(156px 54px 0 #f8faed) drop-shadow(327px 120px 0 #f8faed) drop-shadow(777px 325px 0 #f8faed) drop-shadow(965px 421px 0 #f8faed) drop-shadow(1154px 543px 0 #f8faed);
}

.news-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 950px);
  background: #ffffff;
}

.news-panel--archive {
  padding: 32px 64px 64px;
}

.news-panel--detail {
  padding: 64px;
}

.news-list--page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-list--page .news-list__item {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  border-bottom: 1px dashed #b9b9b9;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.news-list--page .news-list__date {
  flex: 0 0 112px;
  color: #6d7c2d;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news-list--page .news-list__title {
  min-width: 0;
  color: #353535;
  font-weight: 500;
  text-decoration: none;
}

.news-list--page .news-list__title:hover,
.news-list--page .news-list__title:focus-visible {
  color: #6d7c2d;
}

.news-list--page .news-list__empty {
  margin: 0;
  padding: 32px 0;
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.news-pagination {
  gap: 16px;
  align-items: center;
  margin-top: 64px;
}

.news-pagination .pagination__item,
.news-pagination .pagination__ellipsis {
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  border: 1px solid #fa7900;
  background: #ffffff;
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.news-pagination .pagination__item--current {
  background: #fa7900;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.6;
}

.news-pagination .pagination__ellipsis {
  border: 0;
}

.pagination__next {
  color: #353535;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.news-detail__header {
  display: flex;
  gap: 64px;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  color: #353535;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news-detail__date {
  flex: 0 0 auto;
  color: #6d7c2d;
  font-weight: 400;
}

.news-detail__title {
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  white-space: normal;
}

.news-detail__body {
  width: 100%;
  padding: 32px 0 96px;
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.news-detail__body p {
  margin: 0;
}

.news-detail__body p + p,
.news-detail__body ul + p,
.news-detail__body p + ul {
  margin-top: 32px;
}

.news-detail__body ul {
  padding-left: 1.5em;
  margin: 0;
}

.news-detail__body li + li {
  margin-top: 0;
}

.news-detail__pager {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
}

.news-detail__pager-link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.news-detail__pager-link--prev::before,
.news-detail__pager-link--back::before,
.news-detail__pager-link--next::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  content: '';
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.news-detail__pager-link--prev::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.2 12C21.2 17.081 17.081 21.2 12 21.2C6.919 21.2 2.8 17.081 2.8 12C2.8 6.919 6.919 2.8 12 2.8C17.081 2.8 21.2 6.919 21.2 12Z' stroke='black' stroke-width='1.6'/%3E%3Cpath d='M11.5 8L7.5 12L11.5 16' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 12H16.5' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.news-detail__pager-link--back::before {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8L4 12L8 16' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 12H15C17.7614 12 20 14.2386 20 17V18' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.news-detail__pager-link--next::after {
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.2 12C21.2 17.081 17.081 21.2 12 21.2C6.919 21.2 2.8 17.081 2.8 12C2.8 6.919 6.919 2.8 12 2.8C17.081 2.8 21.2 6.919 21.2 12Z' stroke='black' stroke-width='1.6'/%3E%3Cpath d='M12.5 8L16.5 12L12.5 16' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 12H7.5' stroke='black' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.news-detail__pager-link--disabled {
  opacity: 0.35;
}

.about-page {
  position: relative;
  overflow: hidden;
  background: #fff8f1;
}

.lower-title-blob {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(768px, 78vw, 1440px);
  height: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.about-lower {
  position: relative;
  padding: 202px 0 128px;
  overflow: hidden;
}

.about-lower__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
  width: min(100%, var(--site-container-width));
  margin: 0 auto;
}

.about-lower__footprints {
  position: absolute;
  z-index: 0;
  top: -220px;
  left: 50%;
  width: 1451px;
  height: 684px;
  pointer-events: none;
  transform: translateX(-47%) rotate(-95.57deg) scaleY(-1);
  transform-origin: center;
}

.about-lower__footprints::before,
.about-lower__footprints::after {
  position: absolute;
  width: 41px;
  height: 74px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  opacity: 0.28;
}

.about-lower__footprints::before {
  top: 0;
  left: 40px;
  background-image: url('../images/visionflag-footer-footprint-left.svg');
  filter: drop-shadow(176px 64px 0 #e8efc8) drop-shadow(347px 130px 0 #e8efc8) drop-shadow(546px 219px 0 #e8efc8) drop-shadow(948px 431px 0 #e8efc8) drop-shadow(1149px 537px 0 #e8efc8);
}

.about-lower__footprints::after {
  top: 99px;
  left: 98px;
  background-image: url('../images/visionflag-footer-footprint-right.svg');
  filter: drop-shadow(156px 54px 0 #e8efc8) drop-shadow(327px 120px 0 #e8efc8) drop-shadow(777px 325px 0 #e8efc8) drop-shadow(965px 421px 0 #e8efc8) drop-shadow(1154px 543px 0 #e8efc8);
}

.about-lower__heading {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding-top: 32px;
  color: #353535;
  text-align: center;
}

.about-lower__heading-footprints {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-lower__heading-footprint {
  display: block;
  width: 59.539px;
  height: 59.908px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30.128px 54.339px;
}

.about-lower__heading-footprint--left {
  background-image: url('../images/visionflag-about-title-footprint-left.svg');
  transform: rotate(-44.38deg);
}

.about-lower__heading-footprint--right {
  background-image: url('../images/visionflag-about-title-footprint-right.svg');
  transform: rotate(44.38deg) scaleX(-1);
}

.about-lower__title {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #353535;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.about-lower__background-text {
  position: absolute;
  z-index: 2;
  top: 125px;
  left: 50%;
  margin: 0;
  color: rgba(181, 207, 75, 0.3);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.35;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px #48531e;
  white-space: nowrap;
}

/* Keep foreground page content above oversized decorative backgrounds. */
.about-intro,
.about-guide,
.activities-lead,
.activities-record,
.master-sponsor-section {
  position: relative;
  z-index: 3;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 128px 0 0 32px;
}

.about-intro__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  min-width: 0;
}

.about-intro__title {
  width: fit-content;
  padding-bottom: 16px;
  border-bottom: 4px dashed #b5cf4b;
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.about-intro__text {
  width: 100%;
  color: #000000;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.about-intro__text p {
  margin: 0;
}

.about-intro__text p + p {
  margin-top: 1.7em;
}

.about-intro__media {
  width: 100%;
  height: 376px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0;
}

.about-intro__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-guide {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.about-guide__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.about-guide__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #353535;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.about-guide__eyebrow-footprint {
  display: block;
  width: 26.1px;
  height: 27.191px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13.475px 24.303px;
}

.about-guide__eyebrow-footprint--left {
  background-image: url('../images/visionflag-about-guide-heading-left.svg');
  transform: rotate(-40.91deg);
}

.about-guide__eyebrow-footprint--right {
  background-image: url('../images/visionflag-about-guide-heading-right.svg');
  transform: rotate(40.91deg) scaleX(-1);
}

.about-guide__title {
  width: 217px;
  margin: 0;
  color: #000000;
  font-size: 31px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

.about-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  padding: 0 32px;
}

.about-guide-card {
  min-width: 0;
}

.about-guide-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  height: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    -1px 8px 18px rgba(182, 180, 180, 0.1),
    -3px 33px 34px rgba(182, 180, 180, 0.09),
    -7px 75px 45px rgba(182, 180, 180, 0.05),
    -13px 134px 54px rgba(182, 180, 180, 0.01),
    -20px 209px 59px rgba(182, 180, 180, 0);
  color: #353535;
  text-decoration: none;
}

.about-guide-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 346;
  overflow: hidden;
  margin: 0;
}

.about-guide-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-guide-card__title {
  width: 100%;
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.about-guide__pagination {
  gap: 16px;
  align-items: center;
  margin-top: 0;
}

.about-guide__pagination .pagination__item,
.about-guide__pagination .pagination__ellipsis {
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  border: 1px solid #fa7900;
  background: #ffffff;
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.about-guide__pagination .pagination__item--current,
.about-guide__pagination .current {
  background: #fa7900;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.6;
}

.about-guide__pagination .pagination__ellipsis {
  border: 0;
}

.activities-page {
  position: relative;
  overflow: hidden;
  background: #fff8f1;
}

.activities-lower {
  position: relative;
  padding: 202px 0 128px;
  overflow: hidden;
}

.activities-lower__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
  width: min(100%, var(--site-container-width));
  margin: 0 auto;
}

.activities-lower__footprints {
  position: absolute;
  z-index: 0;
  top: -220px;
  left: 50%;
  width: 1451px;
  height: 684px;
  pointer-events: none;
  transform: translateX(-47%) rotate(-95.57deg) scaleY(-1);
  transform-origin: center;
}

.activities-lower__footprints::before,
.activities-lower__footprints::after {
  position: absolute;
  width: 41px;
  height: 74px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  opacity: 0.28;
}

.activities-lower__footprints::before {
  top: 0;
  left: 40px;
  background-image: url('../images/visionflag-footer-footprint-left.svg');
  filter: drop-shadow(176px 64px 0 #e8efc8) drop-shadow(347px 130px 0 #e8efc8) drop-shadow(546px 219px 0 #e8efc8) drop-shadow(948px 431px 0 #e8efc8) drop-shadow(1149px 537px 0 #e8efc8);
}

.activities-lower__footprints::after {
  top: 99px;
  left: 98px;
  background-image: url('../images/visionflag-footer-footprint-right.svg');
  filter: drop-shadow(156px 54px 0 #e8efc8) drop-shadow(327px 120px 0 #e8efc8) drop-shadow(777px 325px 0 #e8efc8) drop-shadow(965px 421px 0 #e8efc8) drop-shadow(1154px 543px 0 #e8efc8);
}

.activities-lower__heading {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding-top: 32px;
  color: #353535;
  text-align: center;
}

.activities-lower__heading-icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 119.078px;
  height: 59.908px;
}

.activities-lower__heading-icon img {
  display: block;
  width: 47px;
  height: 56.3987px;
  object-fit: contain;
}

.activities-lower__title {
  position: relative;
  z-index: 3;
  margin: 0;
  color: #353535;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.activities-lower__background-text {
  position: absolute;
  z-index: 2;
  top: 125px;
  left: 50%;
  margin: 0;
  color: rgba(181, 207, 75, 0.4);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.35;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px #48531e;
  white-space: nowrap;
}

.activities-lead {
  width: 100%;
  padding: 128px 32px 0;
}

.activities-lead__text {
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.activities-record {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.activities-record__heading {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.activities-record__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #353535;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.activities-record__eyebrow-footprint {
  display: block;
  width: 26.1px;
  height: 27.191px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13.475px 24.303px;
}

.activities-record__eyebrow-footprint--left {
  background-image: url('../images/visionflag-activities-heading-left.svg');
  transform: rotate(-40.91deg);
}

.activities-record__eyebrow-footprint--right {
  background-image: url('../images/visionflag-activities-heading-right.svg');
  transform: rotate(40.91deg) scaleX(-1);
}

.activities-record__title {
  width: 217px;
  margin: 0;
  color: #000000;
  font-size: 31px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

.activities-record__social-icon {
  position: absolute;
  top: -7px;
  left: calc(50% + 106px);
  display: block;
  width: 72.547px;
  height: 58.281px;
  text-decoration: none;
}

.activities-record__social-bubble,
.activities-record__social-instagram {
  position: absolute;
  display: block;
}

.activities-record__social-bubble--fill {
  top: 1px;
  left: 1px;
  width: 70.548px;
  height: 56.281px;
  transform: scaleX(-1) rotate(10.68deg);
  transform-origin: center;
}

.activities-record__social-bubble--outline {
  top: 0;
  left: 0;
  width: 72.547px;
  height: 58.281px;
  transform: scaleX(1) rotate(10.68deg);
  transform-origin: center;
}

.activities-record__social-instagram {
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: translate(-50%, -56%) rotate(15deg);
  transform-origin: center;
}

.activities-record__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  padding: 0 32px;
}

.activities-record-card {
  min-width: 0;
}

.activities-record-card__link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  height: 100%;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    -1px 8px 18px rgba(182, 180, 180, 0.1),
    -3px 33px 34px rgba(182, 180, 180, 0.09),
    -7px 75px 45px rgba(182, 180, 180, 0.05),
    -13px 134px 54px rgba(182, 180, 180, 0.01),
    -20px 209px 59px rgba(182, 180, 180, 0);
  color: #353535;
  text-decoration: none;
}

.activities-record-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 560 / 346;
  overflow: hidden;
  margin: 0;
  background: #dedede;
}

.activities-record-card__media img,
.activities-record-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.activities-record-card__media img {
  object-fit: cover;
  object-position: bottom center;
}

.activities-record-card__placeholder {
  background: #dedede;
}

.activities-record-card__title {
  width: 100%;
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.activities-record__pagination {
  gap: 16px;
  align-items: center;
  margin-top: 0;
}

.activities-record__pagination .pagination__item,
.activities-record__pagination .pagination__ellipsis {
  width: 45px;
  min-width: 45px;
  height: 45px;
  min-height: 45px;
  border: 1px solid #fa7900;
  background: #ffffff;
  color: #353535;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.activities-record__pagination .pagination__item--current,
.activities-record__pagination .current {
  background: #fa7900;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.6;
}

.activities-record__pagination .pagination__ellipsis {
  border: 0;
}

.master-sponsor-page {
  position: relative;
  overflow: hidden;
  background: #fff8f1;
}

.master-sponsor-lower {
  position: relative;
  padding: 202px 0 128px;
  overflow: hidden;
}

.master-sponsor-lower__inner {
  position: relative;
  isolation: isolate;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 128px;
  align-items: center;
  width: min(100%, var(--site-container-width));
  margin: 0 auto;
}

.master-sponsor-lower__footprints {
  position: absolute;
  z-index: 0;
  top: -311px;
  left: -153px;
  width: 1280px;
  height: 684px;
  pointer-events: none;
  transform: rotate(-29deg);
  transform-origin: center;
}

.master-sponsor-lower__footprints::before,
.master-sponsor-lower__footprints::after {
  position: absolute;
  width: 41px;
  height: 74px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  opacity: 0.45;
}

.master-sponsor-lower__footprints::before {
  top: 0;
  left: 0;
  background-image: url('../images/visionflag-footer-footprint-left.svg');
  filter: drop-shadow(176px 64px 0 #e8efc8) drop-shadow(347px 130px 0 #e8efc8) drop-shadow(546px 219px 0 #e8efc8) drop-shadow(948px 431px 0 #e8efc8) drop-shadow(1149px 537px 0 #e8efc8);
}

.master-sponsor-lower__footprints::after {
  top: 99px;
  left: 58px;
  background-image: url('../images/visionflag-footer-footprint-right.svg');
  filter: drop-shadow(156px 54px 0 #e8efc8) drop-shadow(327px 120px 0 #e8efc8) drop-shadow(777px 325px 0 #e8efc8) drop-shadow(965px 421px 0 #e8efc8) drop-shadow(1154px 543px 0 #e8efc8);
}

.master-sponsor-lower__heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding-top: 32px;
  color: #353535;
  text-align: center;
}

.master-sponsor-lower__heading::before {
  position: absolute;
  z-index: 0;
  top: 30px;
  left: 50%;
  width: 94px;
  height: 91px;
  border-radius: 999px;
  background: rgba(250, 229, 0, 0.6);
  content: '';
  transform: translateX(-50%);
}

.master-sponsor-lower__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.master-sponsor-lower__icon img {
  display: block;
  width: 40px;
  height: 40px;
}

.master-sponsor-lower__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #353535;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.master-sponsor-lower__background-text {
  position: absolute;
  z-index: 0;
  top: 125px;
  left: 50%;
  margin: 0;
  color: rgba(181, 207, 75, 0.3);
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 87px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.35;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  -webkit-text-stroke: 1px #48531e;
  white-space: nowrap;
}

.master-sponsor-hero {
  position: absolute;
  z-index: -1;
  top: 94px;
  left: 50%;
  width: min(100vw, 1230px);
  aspect-ratio: 1230 / 548;
  overflow: visible;
  margin: 0;
  border-radius: 0;
  transform: translateX(-50%);
}

.master-sponsor-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.master-sponsor-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.master-sponsor-section--master {
  padding-top: 400px;
}

.master-sponsor-section__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.master-sponsor-section__eyebrow {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #353535;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.master-sponsor-section__eyebrow-footprint {
  display: block;
  width: 26.1px;
  height: 27.191px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13.475px 24.303px;
}

.master-sponsor-section__eyebrow-footprint--left {
  background-image: url('../images/visionflag-master-sponsor-heading-left.svg');
  transform: rotate(-40.91deg);
}

.master-sponsor-section__eyebrow-footprint--right {
  background-image: url('../images/visionflag-master-sponsor-heading-right.svg');
  transform: rotate(40.91deg) scaleX(-1);
}

.master-sponsor-section__title {
  margin: 0;
  color: #353535;
  font-size: 31px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
}

.master-sponsor-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  width: 100%;
}

.master-sponsor-feature--image-right {
  padding-left: 32px;
}

.master-sponsor-feature--image-left {
  padding-right: 32px;
}

.master-sponsor-feature__content {
  min-width: 0;
}

.master-sponsor-feature__content p {
  margin: 0;
  color: #353535;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.master-sponsor-feature__media {
  width: 100%;
  aspect-ratio: 608 / 376;
  overflow: hidden;
  margin: 0;
}

.master-sponsor-feature__media--right {
  border-radius: 12px 0 0 12px;
}

.master-sponsor-feature__media--left {
  border-radius: 0 12px 12px 0;
}

.master-sponsor-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-sponsor-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 0 32px;
}

.master-sponsor-list__title {
  margin: 0;
  color: #353535;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}

.master-sponsor-list__title span {
  display: inline;
}

.master-sponsor-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 100px));
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.master-sponsor-list__item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 12px;
  background: #d6d6d6;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 128px 16px;
  background: #b5cf4b;
}

.site-footer__decoration {
  position: absolute;
  z-index: 0;
  left: -151px;
  bottom: -531.581px;
  display: block;
  width: 1280px;
  height: 684px;
  max-width: none;
  pointer-events: none;
  transform: rotate(-24.85deg);
  transform-origin: center center;
}

.site-footer__footprint {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__footprint--left {
  width: 79.604px;
  height: 82.704px;
}

.site-footer__footprint--right {
  width: 84.389px;
  height: 68.346px;
}

.site-footer__footprint img {
  display: block;
  width: 41.027px;
  height: 73.996px;
  max-width: none;
}

.site-footer__footprint--left img {
  transform: scaleY(-1) rotate(138.81deg);
}

.site-footer__footprint--right img {
  transform: rotate(-65.13deg);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 0;
}

.site-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0;
  overflow: hidden;
  list-style: none;
}

.site-footer__menu li {
  display: flex;
}

.site-footer__menu a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__menu a::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fae500;
  content: '';
}

.site-footer__company {
  padding: 10px;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  :root {
    --site-gutter: clamp(20px, 4vw, 48px);
    --section-padding-block: clamp(56px, 9vw, 96px);
  }

  .site-header__menu {
    font-size: 16px;
  }

  .site-header__menu a {
    padding: 12px 20px;
  }

  .home-main-catch__text {
    font-size: 24px;
  }

  .home-news-card__list {
    font-size: 18px;
  }

  .specialist-profile {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .specialist-profile__media img {
    height: 520px;
  }

  .specialist-profile__catch,
  .specialist-profile__name {
    font-size: 22px;
  }

  .home-info-card__content {
    gap: 24px;
  }

  .home-info-card--text-left .home-info-card__content {
    padding-left: 16px;
  }

  .home-info-card--image-left .home-info-card__content {
    padding-right: 16px;
  }

  .section-panel--split {
    grid-template-columns: 1fr;
  }

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

  .home-sponsors {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-sponsors .section-container {
    gap: 48px;
  }

  .site-footer__menu {
    gap: 32px;
  }

  .site-footer__decoration {
    transform: scale(0.82) rotate(-24.85deg);
  }
}

@media (max-width: 768px) {
  :root {
    --site-gutter: 16px;
    --section-padding-block: 96px;
    --spacing-pc-section: 96px;
  }

  .section-container {
    width: 100%;
    padding-right: var(--site-gutter);
    padding-left: var(--site-gutter);
  }

  .site-header {
    position: fixed;
    padding: 8px 16px;
  }

  .site-header__inner {
    position: relative;
    min-height: 84px;
    border-radius: 24px;
  }

  .site-header__brand,
  .site-header__logo {
    width: 100px;
    height: 100px;
  }

  .site-header__toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 4px 0 0;
    border: 1px solid var(--color-brand-green);
    border-radius: 999px;
    background: #ffffff;
    color: #353535;
    font-family: inherit;
    transition:
      background-color 0.4s ease,
      border-color 0.4s ease,
      color 0.4s ease;
  }

  .site-header__toggle[aria-expanded='true'] {
    border-color: #b5cf4b;
    background: #b5cf4b;
    color: #ffffff;
  }

  .site-header__toggle-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 8px;
  }

  .site-header__toggle-line {
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    transition:
      transform 0.4s ease,
      top 0.4s ease,
      background-color 0.4s ease;
  }

  .site-header__toggle-line:first-child {
    top: 1px;
  }

  .site-header__toggle-line:last-child {
    top: 7px;
  }

  .site-header__toggle[aria-expanded='true'] .site-header__toggle-line:first-child {
    top: 4px;
    transform: rotate(45deg);
  }

  .site-header__toggle[aria-expanded='true'] .site-header__toggle-line:last-child {
    top: 4px;
    transform: rotate(-45deg);
  }

  .site-header__toggle-label {
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .site-header__nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: none;
    min-height: 100vh;
    padding: 156px 16px 64px;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0.4s ease;
    visibility: hidden;
  }

  .site-header__nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header__menu {
    position: relative;
    z-index: 1;
    align-items: center;
    flex-direction: column;
    gap: 64px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #353535;
    font-size: 20px;
  }

  .site-header__menu a {
    gap: 8px;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    line-height: 1.5;
  }

  .site-header__menu a::before {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #fae500;
    content: '';
  }

  .site-header__menu a:hover,
  .site-header__menu a:focus-visible {
    background: transparent;
  }

  .site-header__menu a[aria-current='page'],
  .site-header__menu a[aria-current='page']:hover,
  .site-header__menu a[aria-current='page']:focus-visible {
    background: transparent;
    color: #353535;
  }

  .home-hero {
    --home-hero-overflow: 18vw;
    --home-hero-overflow-half: 9vw;
  }

  .home-hero__dots {
    right: calc(var(--home-hero-overflow-half) + 24px);
    bottom: 34px;
    transform: none;
  }

  .home-hero__slider {
    width: calc(100vw + var(--home-hero-overflow));
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .home-hero__copy {
    top: auto;
    bottom: 17%;
    left: 50%;
    width: min(72vw, 330px);
    transform: translateX(-50%);
  }

  .home-hero__copy h1 {
    font-size: clamp(16px, 4.2vw, 24px);
    line-height: 1.55;
  }

  .home-hero__copy-line--pc {
    display: none;
  }

  .home-hero__copy-line--sp {
    display: block;
  }

  .home-main-catch {
    margin-top: 0;
  }

  .home-main-catch__background {
    font-size: 60px;
    line-height: 1.1;
    white-space: normal;
  }

  .home-main-catch__text {
    max-width: 361px;
    font-size: 20px;
    line-height: 1.6;
  }

  .home-main-catch__decoration {
    --decoration-scale: 0.66;

    opacity: 0.75;
  }

  .home-main-catch__decoration--left {
    left: -3px;
  }

  .home-main-catch__decoration--right {
    right: -3px;
  }

  .home-news-card__heading h2 {
    font-size: 20px;
  }

  .home-news .section-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-news-card {
    gap: 32px;
    padding: 16px;
  }

  .home-news-card__list {
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .home-news-card__item {
    align-items: flex-start;
    flex-direction: row;
    gap: 32px;
  }

  .home-news-card__date {
    flex: 0 0 auto;
  }

  .home-news-card__title {
    flex: 1 1 auto;
    min-width: 0;
  }

  .home-news-card__button,
  .home-info-card__button {
    min-height: 58px;
    padding: 16px 24px;
    font-size: 18px;
  }

  .specialist-profile {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .specialist-profile + .home-specialists__decoration + .specialist-profile,
  .specialist-profile + .specialist-profile {
    padding-top: 64px;
  }

  .specialist-profile__media {
    justify-content: center;
    width: 100%;
    height: 349px;
    padding-left: 16px;
  }

  .specialist-profile__media img {
    width: min(100%, 361px);
    height: 349px;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .specialist-profile__body {
    gap: 16px;
    padding: 0;
  }

  .specialist-profile__heading {
    align-items: center;
    text-align: center;
  }

  .specialist-profile__name-row {
    flex-wrap: nowrap;
    gap: 32px;
    justify-content: center;
  }

  .specialist-profile__catch,
  .specialist-profile__name {
    font-size: 20px;
    white-space: normal;
  }

  .specialist-profile__lead,
  .specialist-profile__history-list,
  .specialist-profile__licenses ul,
  .home-info-card__text,
  .contact-section__lead {
    font-size: 16px;
  }

  .specialist-profile__history {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }

  .specialist-profile__history-list {
    width: 100%;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid #b9b9b9;
    border-left: 0;
  }

  .home-specialists__decoration {
    margin: 0;
    font-size: 68px;
    line-height: 0.99;
    white-space: normal;
  }

  .home-info-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-info-card__content {
    width: 100%;
    gap: 24px;
  }

  .home-info-card--image-left .home-info-card__media {
    order: 2;
  }

  .home-info-card--image-left .home-info-card__content {
    order: 1;
  }

  .home-info-card--text-left .home-info-card__content,
  .home-info-card--image-left .home-info-card__content {
    padding-right: 0;
    padding-left: 0;
  }

  .home-info-card__media,
  .home-info-card__media--right,
  .home-info-card__media--left {
    width: 100%;
    aspect-ratio: 361 / 223;
    border-radius: 12px;
  }

  .home-info-card__text {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .home-info-card__title,
  .contact-section__heading h2 {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .home-info-card__button {
    min-height: 58px;
    padding: 16px 24px;
    font-size: 18px;
    line-height: 1.6;
  }

  .home-sponsors {
    padding: 96px var(--site-gutter);
  }

  .contact-section {
    padding: 32px 16px;
  }

  .home-sponsors {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-sponsors .section-container {
    gap: 32px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .home-sponsors__heading h2 {
    font-size: 25px;
    line-height: 1.4;
    white-space: normal;
  }

  .sponsor-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 100px));
    gap: 8px 14px;
  }

  .contact-section__inner {
    gap: 32px;
    padding: 0;
  }

  .contact-section .section-container {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-section__heading {
    gap: 16px;
  }

  .contact-section__lead {
    width: 100%;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .news-list__item {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .news-lower {
    min-height: auto;
    padding: 156px 16px 96px;
  }

  .news-lower__inner {
    gap: 32px;
    width: 100%;
  }

  .news-lower__heading {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .news-lower__heading::before {
    top: -14px;
    left: 50%;
  }

  .news-lower__icon-wrap,
  .news-lower__icon {
    width: 30px;
    height: 30px;
  }

  .news-lower__title {
    font-size: 31px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .news-lower__background-text {
    top: 86px;
    max-width: 100vw;
    color: rgba(181, 207, 75, 0.3);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.35;
    -webkit-text-stroke: 1px #48531e;
  }

  .news-lower__footprints {
    top: 84px;
    left: 0;
    transform: scale(0.5) rotate(-29deg);
    transform-origin: top left;
  }

  .news-lower--detail .news-lower__footprints {
    top: 48px;
  }

  .news-panel--archive,
  .news-panel--detail {
    width: 100%;
    padding: 24px 16px 32px;
  }

  .news-list--page .news-list__item {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .news-list--page .news-list__date {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .news-list--page .news-list__title {
    flex: 1 1 0;
    min-width: 0;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    padding-top: 32px;
  }

  .news-detail__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    font-size: 20px;
    line-height: 1.6;
    white-space: normal;
  }

  .news-detail__title {
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .news-detail__body {
    padding: 24px 0 32px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .news-detail__pager {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px 24px;
    justify-content: stretch;
    width: 100%;
    padding-top: 32px;
  }

  .news-detail__pager-link--prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .news-detail__pager-link--next {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .news-detail__pager-link--back {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .about-lower {
    padding: 156px 0 96px;
  }

  .about-lower__inner {
    gap: 96px;
    width: 100%;
  }

  .about-lower__footprints {
    top: -47px;
    left: 50%;
    transform: translateX(-47%) rotate(-95.57deg) scale(0.49) scaleY(-1);
    transform-origin: center top;
  }

  .about-lower__heading {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .lower-title-blob {
    transform: translate(-50%, calc(-50% - 80px));
  }

  .about-lower__heading-footprint {
    width: 40.76px;
    height: 41.012px;
    background-size: 20.625px 37.2px;
  }

  .about-lower__title {
    font-size: 31px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .about-lower__background-text {
    top: 86px;
    max-width: 100vw;
    color: rgba(181, 207, 75, 0.3);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.35;
    -webkit-text-stroke: 1px #48531e;
  }

  .about-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 16px;
  }

  .about-intro__content {
    gap: 24px;
    width: 100%;
  }

  .about-intro__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .about-intro__text {
    color: #353535;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .about-intro__media {
    width: 100%;
    height: auto;
    aspect-ratio: 361 / 223;
  }

  .about-guide {
    gap: 32px;
  }

  .about-guide__heading {
    gap: 16px;
  }

  .about-guide__title {
    width: auto;
    font-size: 25px;
    line-height: 1.4;
    color: #353535;
  }

  .about-guide__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .about-guide-card__link {
    gap: 16px;
    padding: 16px;
  }

  .about-guide-card__media {
    aspect-ratio: 329 / 203;
  }

  .about-guide-card__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .about-guide__pagination {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    width: 100%;
    padding-top: 32px;
  }

  .activities-lower {
    padding: 156px 0 96px;
  }

  .activities-lower__inner {
    gap: 96px;
    width: 100%;
  }

  .activities-lower__footprints {
    top: -47px;
    left: 50%;
    transform: translateX(-47%) rotate(-95.57deg) scale(0.49) scaleY(-1);
    transform-origin: center top;
  }

  .activities-lower__heading {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .activities-lower__heading-icon {
    width: 81.52px;
    height: 41.012px;
  }

  .activities-lower__heading-icon img {
    width: 32px;
    height: 38.399px;
  }

  .activities-lower__title {
    font-size: 31px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .activities-lower__background-text {
    top: 86px;
    max-width: 100vw;
    color: rgba(181, 207, 75, 0.3);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    opacity: 0.35;
    -webkit-text-stroke: 1px #48531e;
  }

  .activities-lead {
    padding: 0 16px;
  }

  .activities-lead__text {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .activities-lead__text br {
    display: none;
  }

  .activities-record {
    gap: 32px;
  }

  .activities-record__heading {
    gap: 16px;
  }

  .activities-record__title {
    width: auto;
    color: #353535;
    font-size: 25px;
    line-height: 1.4;
  }

  .activities-record__social-icon {
    top: -6px;
    left: calc(50% + 100px);
    transform: scale(0.78);
    transform-origin: top left;
  }

  .activities-record__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .activities-record-card__link {
    gap: 16px;
    padding: 16px;
  }

  .activities-record-card__media {
    aspect-ratio: 329 / 203;
  }

  .activities-record-card__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .activities-record__pagination {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    width: 100%;
    padding-top: 32px;
  }

  .master-sponsor-lower {
    padding: 124px 0 96px;
  }

  .master-sponsor-lower__inner {
    gap: 96px;
    width: 100%;
    padding: 0 16px;
  }

  .master-sponsor-lower__footprints {
    top: -38px;
    left: -7px;
    width: 394.612px;
    height: 228.643px;
    transform: rotate(-29deg);
  }

  .master-sponsor-lower__footprints::before,
  .master-sponsor-lower__footprints::after {
    opacity: 0.45;
    transform: scale(0.62);
    transform-origin: top left;
  }

  .master-sponsor-lower__heading {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .master-sponsor-lower__heading::before {
    top: -14px;
    width: 94px;
    height: 91px;
  }

  .master-sponsor-lower__icon {
    width: 30px;
    height: 30px;
  }

  .master-sponsor-lower__icon img {
    width: 30px;
    height: 30px;
  }

  .master-sponsor-lower__title {
    font-size: 31px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .master-sponsor-lower__title span {
    display: block;
  }

  .master-sponsor-lower__background-text {
    top: 166px;
    font-size: 52px;
    line-height: 1.1;
    white-space: normal;
  }

  .master-sponsor-hero {
    top: 172px;
    width: 622px;
    max-width: none;
    aspect-ratio: 1230 / 548;
    border-radius: 0;
  }

  .master-sponsor-section {
    gap: 32px;
  }

  .master-sponsor-section--master {
    padding-top: 230px;
  }

  .master-sponsor-section__heading {
    gap: 16px;
  }

  .master-sponsor-section__eyebrow {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }

  .master-sponsor-section__title {
    font-size: 25px;
    line-height: 1.4;
  }

  .master-sponsor-feature {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0;
  }

  .master-sponsor-feature--image-right {
    flex-direction: column;
  }

  .master-sponsor-feature--image-left {
    flex-direction: column-reverse;
  }

  .master-sponsor-feature__content {
    width: 100%;
  }

  .master-sponsor-feature__content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .master-sponsor-feature__media {
    width: 100%;
    aspect-ratio: 361 / 223;
    border-radius: 12px;
  }

  .master-sponsor-feature__media--left,
  .master-sponsor-feature__media--right {
    border-radius: 12px;
  }

  .master-sponsor-list {
    gap: 24px;
    padding: 0;
  }

  .master-sponsor-list__title {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .master-sponsor-list__title span {
    display: block;
  }

  .master-sponsor-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 100px));
    gap: 8px 14px;
    justify-content: center;
    min-height: 0;
  }

  .master-sponsor-list__item {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .site-form label,
  .wpcf7-form label {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    padding: 16px 0;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .site-form__label-text {
    width: auto;
  }

  .site-form input,
  .site-form textarea,
  .wpcf7-form input,
  .wpcf7-form textarea {
    min-height: 44px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .site-form textarea,
  .wpcf7-form textarea {
    min-height: 243px;
  }

  .site-form .button,
  .wpcf7-submit {
    width: 230px;
    min-height: 58px;
    padding: 16px 24px;
    font-size: 18px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-row__media {
    order: initial;
  }

  .site-footer {
    padding: 64px 16px;
  }

  .site-footer__inner {
    gap: 32px;
  }

  .site-footer__menu {
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .site-footer__company {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }

  .site-footer__decoration {
    top: -235.57px;
    bottom: auto;
    left: -561px;
    transform: rotate(-24.85deg);
  }
}

@media (max-width: 480px) {
  .home-hero {
    --home-hero-overflow: 35vw;
    --home-hero-overflow-half: 17.5vw;
  }
}
