:root {
  --text: #444;
  --red: #ec4c38;
  --yellow: #fdd878;
  --gold: #efb700;
  --cream: #fef8ea;
  --line: #e1e1e1;
  --input: #f4f4f5;
  --font-round: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  background: #fff;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--yellow);
}

.header-inner {
  width: min(100%, 1440px);
  height: 71px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-logo {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand {
  width: 193px;
  height: 53px;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.global-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-round);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.global-nav a:not(.nav-contact),
.site-footer nav a:not(.nav-contact) {
  position: relative;
  transition: color .2s ease;
}

.global-nav a:not(.nav-contact):hover {
  color: var(--red);
}

.nav-contact {
  padding: 8px 24px;
  color: #fff;
  background: var(--red);
  border-radius: 34px;
  transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
}

.nav-contact:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.site-footer nav a:not(.nav-contact)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-footer nav a:not(.nav-contact):hover {
  color: var(--red);
}

.site-footer nav a:not(.nav-contact):hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  min-height: min(903px, calc(100svh - 71px));
  padding: clamp(56px, 6.8vh, 104px) 24px clamp(220px, 33vh, 408px);
  background: url("../images/hero-bg.png") center bottom / 100% 100% no-repeat;
}

.hero-copy {
  width: min(896px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(617px, 76vw);
  height: auto;
  margin: 0 auto 20px;
}

h1,
h2,
h3 {
  font-family: var(--font-round);
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 4.4vw, 64px);
}

h1 span,
h2 span,
h2 strong {
  color: var(--red);
}

.hero p {
  margin-top: 20px;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  letter-spacing: .08em;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 40px);
}

.section-heading p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6;
}

.news {
  padding: 100px 24px;
  background: url("../images/news-bg.png") center / cover no-repeat;
}

.news-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.news-head h2 {
  font-size: clamp(30px, 3.2vw, 40px);
}

.news-head h2 span {
  color: var(--red);
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 16px;
  line-height: 34px;
  transition: color .2s ease, transform .2s ease;
}

.news-more:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.news-more img {
  width: 24px;
  height: 24px;
}

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

.news-item {
  min-height: 84px;
  padding: 20px 80px;
  display: grid;
  grid-template-columns: 124px 158px 1fr;
  align-items: center;
  gap: 48px;
  background: #fff;
  border-radius: 100px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-item:hover {
  box-shadow: 0 12px 24px rgba(68, 68, 68, .1);
  transform: translateY(-2px);
}

.news-item time,
.news-item p {
  font-size: 24px;
  line-height: 34px;
}

.news-label {
  min-width: 158px;
  padding: 10px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  background: var(--red);
  border-radius: 100px;
  font-size: 24px;
  line-height: 34px;
}

.news-item p {
  margin: 0;
  font-weight: 500;
}

.news-item p a {
  transition: color .2s ease;
}

.news-item p a:hover {
  color: var(--red);
}

.news-page {
  min-height: 990px;
  padding: 100px 24px;
  background: #faf6ed;
}

.news-page-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.news-page-heading {
  margin-bottom: 48px;
  text-align: center;
}

.news-page-heading h1 {
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.42;
}

.news-page-heading span {
  color: var(--red);
}

.news-page .news-list {
  margin: 0 auto;
}

.news-pagination {
  margin-top: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  font-size: 18px;
  line-height: 1.5;
}

.news-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  list-style: none;
}

.news-pagination a,
.news-pagination span {
  position: relative;
  display: inline-flex;
  min-width: 13px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color .2s ease, transform .2s ease;
}

.news-pagination a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.news-pagination .is-current,
.news-pagination .current {
  color: var(--red);
}

.news-pagination .is-current::after,
.news-pagination .current::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--red);
  transform: translateX(-50%);
}

.news-pagination .next {
  font-size: 26px;
  line-height: 1;
}

.news-empty {
  padding: 40px 24px;
  text-align: center;
  background: #fff;
  border-radius: 28px;
}

.news-detail {
  min-height: 990px;
  padding: 100px 24px;
  background: url("../images/privacy-bg.png") center / cover no-repeat;
}

.news-detail-inner {
  width: min(910px, 100%);
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 54px;
}

.news-detail-header h1 {
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
}

.news-detail-header p {
  margin-top: 15px;
  color: #595757;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.news-detail-body {
  display: grid;
  gap: 80px;
}

.news-detail-content {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.news-detail-content > * + * {
  margin-top: 0;
}

.news-detail-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-detail-image {
  width: 100%;
  min-height: 451px;
  margin: 0;
  background: #d9d9d9;
}

figure.news-detail-image {
  min-height: 0;
  display: flex;
  justify-content: center;
  background: transparent;
}

.news-detail-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.news-back {
  width: min(276px, 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--red);
  border-radius: 44px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
}

.news-back:hover {
  background: #ff624e;
  transform: translateY(-2px);
  opacity: .95;
}

.news-back span {
  font-size: 22px;
  line-height: 1;
}

.challenge {
  background: #dff7ff;
}

.challenge-image {
  width: min(1121px, 100%);
  margin: 0 auto;
}

.challenge-image-mobile {
  display: none;
}

.friends {
  padding: 100px 24px;
  background: url("../images/friends-bg.png") center / cover no-repeat;
}

.friends-grid {
  width: min(1280px, 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 58px;
}

.friends-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.world {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 100px 24px;
  background: url("../images/world-bg.png") center / cover no-repeat;
}

.world-text {
  width: min(490px, 100%);
  text-align: left;
}

.world h2 {
  font-size: clamp(30px, 3.2vw, 40px);
}

.world h2 span {
  font-size: clamp(38px, 3.8vw, 48px);
}

.world p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.55;
}

.world-button {
  width: min(430px, 92%);
  height: auto;
  margin: 44px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(68, 68, 68, .16));
  transition: transform .2s ease, filter .2s ease;
}

.world-button:hover {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 14px 16px rgba(68, 68, 68, .2));
}

.world-photo {
  width: min(588px, 48vw);
  border-radius: 8px;
  overflow: hidden;
}

.world-photo img {
  width: 100%;
  aspect-ratio: 588 / 414;
  object-fit: cover;
}

.about {
  padding: 100px 24px 150px;
  background: url("../images/about-bg.png") center top / cover repeat-y;
}

.about .section-heading {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.about-stack {
  width: min(1140px, 100%);
  margin: 72px auto 0;
  position: relative;
  min-height: 1910px;
}

.about-block {
  position: absolute;
  display: grid;
  align-items: center;
  gap: 42px;
}

.about-block-primary {
  left: 14px;
  top: 0;
  width: 900px;
  display: block;
}

.about-block-primary > img {
  width: 820px;
}

.about-block-primary > div {
  width: 610px;
  margin: 58px 0 0 335px;
}

.about-block.reverse {
  left: 0;
  top: 1060px;
  width: 1080px;
  grid-template-columns: 520px 1fr;
  gap: 70px;
}

.about-block.reverse img {
  order: 0;
}

.about-block:not(.about-block-primary):not(.reverse) {
  left: 0;
  top: 1515px;
  width: 1110px;
  grid-template-columns: 1fr 520px;
  gap: 62px;
}

.about-block > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-block h3 {
  padding-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 32px);
  border-bottom: 4px solid var(--yellow);
}

.about-block p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.parents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 100px 24px;
  background: url("../images/parents-bg.png") center / cover no-repeat;
}

.parents-text {
  width: min(473px, 100%);
}

.parents h2 {
  font-size: clamp(32px, 3.2vw, 40px);
}

.parents p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
}

.parents-photo {
  width: min(588px, 48vw);
  border-radius: 30px;
  overflow: hidden;
}

.parents-photo img {
  width: 100%;
  aspect-ratio: 588 / 414;
  object-fit: cover;
}

.future {
  padding: 100px 24px;
  background: url("../images/future-bg.png") center / cover no-repeat;
}

.future-grid {
  width: min(1204px, 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
}

.future-grid article {
  text-align: center;
}

.future-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.future-grid p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.contact {
  padding: 100px 24px;
  background: var(--cream);
}

.contact .section-heading {
  width: min(839px, 100%);
  margin: 0 auto;
}

.contact-form {
  width: min(830px, 100%);
  margin: 48px auto 0;
  padding: 60px 115px 67px;
  background: #fff;
  border-radius: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form .wpcf7,
.contact-form .wpcf7-form {
  margin: 0;
}

.contact-form .wpcf7-form p {
  margin: 0 0 20px;
}

.contact-form .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.contact-form .wpcf7-form br {
  display: none;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 5px;
}

.contact-form .wpcf7-form label {
  margin-bottom: 0;
}

.contact-form span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.contact-form em {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 5px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  background: var(--red);
  border-radius: 2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--input);
  color: var(--text);
  font: 400 16px/1.5 var(--font-body);
}

.contact-form input {
  height: 52px;
  padding: 0 20px;
}

.contact-form textarea {
  min-height: 200px;
  padding: 14px 20px;
  resize: vertical;
}

.contact-form ::placeholder {
  color: #a8a8a8;
  opacity: 1;
}

.contact-form button,
.contact-form input[type="submit"] {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 100px;
  color: #fff;
  background: var(--gold);
  font: 700 18px/1 var(--font-body);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.site-footer {
  padding: 40px 50px;
  color: var(--text);
  background: var(--yellow);
}

.footer-main {
  width: min(1340px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  width: 301px;
  height: auto;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.site-footer .nav-contact {
  background: var(--red);
}

.site-footer .nav-contact:hover {
  background: #ff624e;
}

.footer-bottom {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 16px;
  text-align: center;
}

.footer-bottom a {
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom small {
  font-size: 14px;
}

.privacy-page {
  min-height: 630px;
  padding: 100px 24px;
  background: url("../images/privacy-bg.png") center / cover no-repeat;
}

.privacy-content {
  width: min(934px, 100%);
  margin: 0 auto;
  color: var(--text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .08em;
}

.privacy-content h1 {
  margin-bottom: 32px;
  font-size: clamp(30px, 3vw, 40px);
  text-align: center;
}

.privacy-content section {
  margin-top: 32px;
}

.privacy-content h2 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.privacy-content p,
.privacy-content ul {
  margin: 0;
}

.privacy-content ul {
  padding-left: 1.4em;
}

.privacy-date {
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .header-inner {
    padding-inline: 24px;
  }

  .global-nav {
    gap: 14px;
    font-size: 14px;
  }

  .world,
  .parents {
    flex-direction: column;
    text-align: center;
  }

  .world-text,
  .parents-text {
    text-align: center;
  }

  .world-photo,
  .parents-photo {
    width: min(680px, 100%);
  }

  .about-block,
  .about-block.reverse {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-stack {
    position: static;
    min-height: 0;
    display: grid;
    gap: 48px;
  }

  .about-block-primary {
    display: grid;
  }

  .about-block-primary > img,
  .about-block-primary > div {
    width: 100%;
    margin: 0;
  }

  .about-block:not(.about-block-primary):not(.reverse) {
    position: static;
    width: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-block.reverse img {
    order: 0;
  }

  .future-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

  .news-item {
    padding-inline: 48px;
    grid-template-columns: 112px 150px 1fr;
    gap: 28px;
  }

  .news-item time,
  .news-item p,
  .news-label {
    font-size: 18px;
    line-height: 1.6;
  }

  .news-label {
    min-width: 150px;
    padding: 8px 24px;
  }

  .news-page {
    padding-inline: 32px;
  }

  .news-detail {
    padding-inline: 32px;
  }

  .footer-main {
    flex-direction: column;
  }

  .privacy-page {
    padding-inline: 32px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .header-inner {
    height: 66px;
    padding: 8px 18px;
  }

  .brand {
    width: 162px;
    height: 45px;
  }

  .menu-button {
    display: block;
  }

  .menu-button.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(253, 216, 120, .98);
    box-shadow: 0 16px 24px rgba(68, 68, 68, .12);
    transform: translateY(-120%);
    transition: transform .25s ease;
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  .global-nav a {
    padding: 14px 0;
  }

  .global-nav .nav-contact {
    margin-top: 8px;
    padding: 12px 24px;
    text-align: center;
  }

  .hero {
    min-height: 178vw;
    padding: clamp(54px, 8vw, 76px) 18px 0;
    background-image: url("../images/hero-bg-mobile.png");
    background-position: center top;
    background-size: 100% auto;
  }

  .hero-logo {
    width: min(360px, 74vw);
    margin-bottom: 0;
  }

  .hero h1 {
    margin-top: clamp(18px, 4vw, 28px);
    font-size: clamp(34px, 8vw, 48px);
    line-height: 1.25;
  }

  .hero p {
    margin-top: clamp(12px, 3vw, 18px);
    font-size: clamp(15px, 3.7vw, 20px);
    line-height: 1.45;
    letter-spacing: .04em;
  }

  .friends,
  .news,
  .world,
  .about,
  .parents,
  .future,
  .contact {
    padding-block: 72px;
  }

  .section-heading p br,
  .hero p br {
    display: none;
  }

  .challenge-image-desktop {
    display: none;
  }

  .challenge-image-mobile {
    display: block;
    width: 100%;
  }

  .friends-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .news-head {
    margin-bottom: 32px;
  }

  .news-page {
    min-height: auto;
    padding: 72px 22px;
  }

  .news-detail {
    min-height: auto;
    padding: 72px 22px;
  }

  .news-page-heading {
    margin-bottom: 32px;
  }

  .news-detail-header {
    margin-bottom: 40px;
  }

  .news-detail-body {
    gap: 48px;
  }

  .news-detail-image {
    min-height: 260px;
  }

  .news-detail-image img {
    min-height: 0;
  }

  .news-item {
    padding: 22px 28px;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 28px;
  }

  .news-label {
    width: fit-content;
  }

  .news-pagination {
    margin-top: 36px;
    font-size: 16px;
  }

  .news-pagination ul {
    gap: 18px;
  }

  .world {
    gap: 36px;
  }

  .about-stack {
    margin-top: 48px;
  }

  .parents {
    gap: 36px;
  }

  .contact-form {
    padding: 36px 22px 42px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 36px 22px;
  }

  .privacy-page {
    padding: 72px 22px;
    background-position: center top;
  }

  .privacy-content {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .04em;
  }

  .privacy-content h1 {
    margin-bottom: 28px;
  }

  .footer-logo {
    width: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 178vw;
    padding-top: clamp(38px, 11vw, 58px);
    padding-bottom: 0;
  }

  .hero-logo {
    width: min(310px, 70vw);
  }

  .hero h1 {
    margin-top: clamp(12px, 4vw, 20px);
    font-size: clamp(29px, 8.9vw, 38px);
  }

  .hero p {
    margin-top: 10px;
    font-size: clamp(14px, 4.2vw, 16px);
    line-height: 1.4;
  }

  .section-heading p {
    font-size: 15px;
  }

  .friends-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .news-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .news-more {
    padding: 0;
    font-size: 14px;
  }

  .news-page {
    padding-block: 56px;
  }

  .news-detail {
    padding-block: 56px;
  }

  .news-detail-header h1 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .news-detail-header p,
  .news-detail-content,
  .news-back {
    font-size: 15px;
  }

  .news-detail-image {
    min-height: 210px;
  }

  .news-detail-image img {
    min-height: 0;
  }

  .news-item time,
  .news-item p,
  .news-label {
    font-size: 16px;
  }

  .friends-grid {
    width: min(390px, 100%);
  }

  .about-block h3 {
    font-size: 23px;
  }

  .about-block p,
  .parents p,
  .world p {
    font-size: 15px;
  }

  .future-grid {
    width: min(270px, 100%);
  }

  .contact-form span {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .privacy-page {
    padding-block: 56px;
  }

  .privacy-content section {
    margin-top: 24px;
  }
}
