*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --pink: #ee8aa1;
  --pink-text: #ee8aa1;
  --cyan: #4faed1;
  --cyan-soft: #4faed1;
  --gray: #e9e9e9;
  --text: #6f6f6f;
  --dark: #555555;
  --yellow: #fff000;
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --pink: color(display-p3 0.933 0.541 0.631);
    --pink-text: color(display-p3 0.933 0.541 0.631);
    --cyan: color(display-p3 0.310 0.682 0.820);
    --cyan-soft: color(display-p3 0.310 0.682 0.820);
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック体", "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

section[id] {
  scroll-margin-top: 11rem;
}

#features {
  scroll-margin-top: 11rem;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.page {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  background: #fff;
}

.bg-gray {
  background: var(--gray);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 95;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 3rem 3rem 0;
  pointer-events: none;
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header.is-scrolled {
  padding-bottom: 2rem;
  background: var(--pink);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.header__logo,
.header__menu {
  pointer-events: auto;
}

.header__logo {
  width: 180px;
}

.header__menu {
  display: grid;
  gap: 6px;
  width: 36px;
  padding: 0;
}

.header__menu span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: #fff;
}

.global-menu {
  position: fixed;
  top: 2.5rem;
  right: 2.4rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.global-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.global-menu__panel {
  position: relative;
  width: min(100%, 28rem);
  padding: 6.4rem 3rem 3.4rem 6.4rem;
  border-radius: 1.6rem;
  background: #fff;
}

.global-menu__close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
}

.global-menu__close::before,
.global-menu__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.8rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--pink-text);
}

.global-menu__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.global-menu__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.global-menu ul {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-menu a {
  position: relative;
  display: inline-block;
  color: var(--pink-text);
  font-size: 1.8rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.global-menu a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4.5rem;
  width: 3.4rem;
  height: 3.4rem;
  background: url("../img/menu_cursor.svg") center / contain no-repeat;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.global-menu a:hover,
.global-menu a:focus-visible {
  background: linear-gradient(transparent 58%, var(--yellow) 58%);
}

.global-menu a:hover::before,
.global-menu a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.hero {
  position: relative;
  height: 560px;
  background: var(--pink);
}

.hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  transform: translate(-30%, -50%);
  max-height: 400px;
  width: auto;
}

.hero__buttons {
  position: absolute;
  right: 0;
  bottom: -2.4rem;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}

.pill {
  display: flex;
  min-width: 32rem;
  min-height: 6rem;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 1.0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.pill img {
  width: auto;
  height: 24px;
}

.pill:hover,
.pill:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2), inset 0 0 0 2px rgba(255, 255, 255, 1.0);
  filter: brightness(1.04);
}

.pill--cyan {
  background: var(--cyan);
}

.stats {
  width: min(100%, 1200px);
  margin: auto;
  display: flex;
  gap: 6rem;
  justify-content: center;
  padding: 8rem 5%;
  background: #fff;
}

.stats__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.stats__item img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.issues {
  padding: 8rem 5%;
}

.issue-panel {
  width: min(100%, 1200px);
  margin: auto;
  padding: 8rem;
  border-radius: 32px;
  background: #fff;
  position: relative;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin: 0 0 4rem;
  color: var(--text);
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 160px;
  height: 2px;
  background: var(--text);
}

.section-title--white {
  color: #fff;
}

.section-title--white::before,
.section-title--white::after {
  background: #fff;
}

.issue-lead {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 6rem;
}

.issue-lead p {
  margin: 0;
}

.issue-lead picture,
.issue-bottom picture,
.voice-card picture {
  display: block;
}

.issue-lead__pi {
  display: block;
  width: 100%;
  max-width: 200px;
}

.issue-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}

.issue-row__num {
  width: auto;
}

.issue-row__img p {
  font-size: 1.0rem;
  line-height: 1.5;
  margin-top: 2rem;
}

.issue-row__text p {
  margin: 0 0 8px;
  font-size: 2rem;
}

.issue-row__text strong {
  display: block;
  color: var(--pink-text);
  font-size: 2.8rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.issue-row__headline {
  width: 360px;
  max-width: 100%;
}

.yellow-arrow {
  position: relative;
  width: 120px;
  height: 160px;
  margin: 0 auto -30px;
  transform: translateX(-60px);
}

.yellow-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  width: 120px;
  height: 80px;
  background: var(--yellow);
}

.yellow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 80px solid var(--yellow);
  border-right: 120px solid transparent;
  border-left: 120px solid transparent;
}

.impact {
  padding: 4rem;
  border: 2px solid var(--cyan);
  border-radius: 2.4rem;
  text-align: center;
}

.impact h3 {
  margin: 0 0 2rem;
  color: var(--pink-text);
  font-size: 4rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.impact p {
  margin: 0;
  font-size: 2rem;
}

.issue-bottom {
  width: min(100%, 840px);
  margin: 6rem auto 0;
}

.issue-bottom p {
  margin: 0;
  color: #686367;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.issue-bottom mark {
  background: linear-gradient(transparent 52%, var(--yellow) 52%);
  color: inherit;
}

.issue-bottom__mark {
  position: absolute;
  right: 2rem;
  bottom: -4rem;
  width: 28rem;
}

.issue-bottom__mark img {
  display: block;
  width: 100%;
}

.service {
  text-align: center;
  background: #fff;
}

.service-container {
  width: min(100%, 1200px);
  margin: auto;
  padding: 8rem 5%;
}

.service__copy {
  margin: 0 0 2rem;
  font-size: 2rem;
}

.service__headline {
  width: min(100%, 640px);
  margin: 0 auto 8rem;
}

.bridge {
  width: 100%;
  margin: 0 auto;
}

.values {
  padding: 8rem 5%;
  background: var(--pink);
}

.value-list {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.value-list article {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  align-content: center;
  padding: 4rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
}

.value-list b {
  position: absolute;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.16);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 28rem;
  line-height: 1;
}

.value-list h3 {
  position: relative;
  margin: 0 0 2rem;
  font-size: 2.2rem;
  line-height: 1.5;
}

.value-list p {
  position: relative;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

.overview {
  padding: 8rem 5%;
}

.overview-grid {
  width: min(100%, 800px);
  margin: 0 auto 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
}

.overview-grid article {
  display: flex;
  min-height: 30rem;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem;
  border-radius: 3.2rem;
  background: #fff;
}

.overview-grid h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2.4rem;
  color: var(--pink-text);
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.3;
}

.overview-title-img {
  width: auto;
  height: 3.2rem;
}

.overview-grid ul {
  margin: 0;
  padding-left: 2rem;
  font-size: 1.8rem;
  line-height: 2;
}

.section-title--feature {
  margin-top: 0;
}

.feature-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: stretch;
}

.feature-grid>section {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.feature-grid>section>h3 {
  margin: 0 0 2.4rem;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.feature-box {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(3, 1fr);
  border: 2px solid #7a777b;
  border-radius: 2.4rem;
  overflow: hidden;
}

.feature-box article {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.feature-box article+article {
  border-top: 2px dashed #aaa;
}

.feature-box h4 {
  margin: 0 0 1.4rem;
  color: var(--pink-text);
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.feature-box p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

.device {
  width: 100%;
  margin-top: 2rem;
}

.courses {
  padding: 8rem 5%;
  background: var(--pink);
}

.course+.course {
  margin-top: 6rem;
}

.course__label {
  width: min(100%, 1200px);
  display: flex;
  align-items: center;
  margin: 0 auto -2.4rem;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

.course__pi {
  display: block;
  width: 20rem;
  flex: 0 0 auto;
}

.course__label p {
  transform: translate(-2em, 1em);
}

.course__card {
  position: relative;
  width: min(100%, 1200px);
  min-height: 24rem;
  margin: auto;
  padding: 5rem 6rem;
  border-radius: 3.2rem;
  background: #fff;
}

.course__card>b {
  position: absolute;
  display: flex;
  top: 50%;
  left: 8rem;
  transform: translate(0%, -50%);
  color: rgba(145, 220, 228, 0.26);
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24rem;
  line-height: 1;
}

.course__card h3 {
  position: relative;
  margin: 0 0 1.6rem;
  color: var(--pink-text);
  font-size: 4.8rem;
  letter-spacing: 0.18em;
}

.course-title-img {
  width: auto;
  height: 4.8rem;
}

.course__card p {
  position: relative;
  max-width: 100%;
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.8;
}

.course__card a {
  position: absolute;
  right: -3rem;
  bottom: -2rem;
}

.voice {
  padding: 8rem 5%;
  background: #fff;
}

.voice__lead {
  width: min(100%, 640px);
  margin: 0 auto 6rem;
}

.voice-num {
  width: min(80%, 480px);
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}

.voice-list {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  gap: 6rem;
}

.voice-card {
  position: relative;
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: 5rem;
  align-items: center;
  min-height: 24rem;
  padding: 4rem 5rem;
  border: 2px solid var(--cyan);
  border-radius: 3.2rem;
  background: #fff;
}

.voice-card::after {
  content: "";
  position: absolute;
  bottom: -4.4rem;
  left: 8.8rem;
  width: 15rem;
  height: 4.4rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 44'%3E%3Cpath d='M1 1C18 1.8 38 1 58 1C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 158 1V0H1Z' fill='%23fff'/%3E%3Cpath d='M1 1C18 1.8 38 1 58 1C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 158 1' fill='none' stroke='%234faed1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left top / 100% 100% no-repeat;
}

@supports (color: color(display-p3 0 0 0)) {
  .voice-card::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 44'%3E%3Cpath d='M1 1C18 1.8 38 1 58 1C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 158 1V0H1Z' fill='%23fff'/%3E%3Cpath d='M1 1C18 1.8 38 1 58 1C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 158 1' fill='none' stroke='color(display-p3%200.310%200.682%200.820)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left top / 100% 100% no-repeat;
  }
}

.voice-card--reverse {
  grid-template-columns: 1fr 32rem;
}

.voice-card--reverse::after {
  right: 8.8rem;
  left: auto;
  transform: scaleX(-1);
}

.voice-card--reverse .voice-card__photo {
  order: 2;
}

.voice-card__photo {
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.2));
}

.voice-card__name {
  max-height: 2.4rem;
  margin-bottom: 2rem;
}

.voice-card p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.8;
}

.faq {
  padding: 8rem 5%;
}

.faq-list {
  width: min(100%, 980px);
  margin: auto;
  display: grid;
  gap: 2.4rem;
  font-size: 1.6rem;
}

.faq-list h3,
.faq-list p {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.6rem;
  margin: 0;
}

.faq-list h3 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
  align-items: center;
}

.faq-list span {
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
}

.faq-list h3 span {
  background: #333;
}

.faq-list p span {
  background: var(--pink);
}

.bottom-cta {
  padding: 8rem 5%;
  color: #fff;
  background: var(--pink);
}

.bottom-cta__container {
  width: min(100%, 1200px);
  margin: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  align-items: center;
}

.bottom-cta__left {
  display: flex;
  align-items: center;
  margin: auto;
}

.bottom-cta__right {
  margin: auto;
}

.bottom-cta__pi {
  display: block;
  width: 20rem;
  transform: translateY(-2rem);
}

.bottom-cta__text p {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

.bottom-cta__buttons__note {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto 2.4rem;
}

.bottom-cta__buttons__pill {
  display: flex;
  gap: 1.6rem;
}


.footer {
  padding: 4rem 5% 2rem;
  color: var(--text);
  background: #fff;
  text-align: center;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin-bottom: 4rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
}

.footer__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer__brand img {
  width: 24rem;
  justify-self: center;
}

.footer p {
  margin: 0;
  font-size: 1rem;
}

.page-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 90;
  display: inline-flex;
  width: 6.4rem;
  height: 6.4rem;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.4rem;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.18s ease;
}

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

.page-top:hover,
.page-top:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {

  body {
    font-size: 1.4rem;
  }

  section[id] {
    scroll-margin-top: 7.2rem;
  }

  #features {
    scroll-margin-top: 7.2rem;
  }

  .header {
    padding: 1.8rem 1.6rem 0;
  }

  .header.is-scrolled {
    padding-bottom: 1.4rem;
  }

  .header__logo {
    width: 10.8rem;
  }

  .header__menu {
    gap: 0.5rem;
    width: 3.2rem;
  }

  .header__menu span {
    height: 0.35rem;
  }

  .global-menu {
    top: 1.2rem;
    right: 1.2rem;
  }

  .global-menu__panel {
    width: min(86vw, 26rem);
    padding: 6.4rem 3rem 3.2rem 6.2rem;
  }

  .hero {
    height: 100svh;
    min-height: 64rem;
  }

  .hero__mark {
    top: 42%;
    width: 92vw;
    max-height: initial;
    transform: translate(-50%, -50%);
  }

  .hero__buttons {
    bottom: 3rem;
    flex-direction: column;
    gap: 1.2rem;
    width: min(90%, 480px);
    margin: auto;
  }

  .pill {
    min-width: 21rem;
    min-height: 4.8rem;
    height: auto;
    padding: 0 2.4rem;
    font-size: 1.5rem;
  }

  .pill img {
    height: 16px;
  }

  .stats {
    flex-direction: row;
    align-items: stretch;
    gap: 1.2rem;
    padding: 4rem 5%;
  }

  .stats__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 10rem;
  }

  .stats__item img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section-title {
    gap: 1.6rem;
    margin-bottom: 3.2rem;
    font-size: 2rem;
    line-height: 1.45;
    text-align: center;
  }

  .section-title::before,
  .section-title::after {
    width: 5.8rem;
  }

  .issues {
    padding: 6rem 4vw;
  }

  .issue-panel {
    padding: 4rem 8vw 9rem;
    border-radius: 2rem;
  }

  .issue-lead {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 4rem;
  }

  .issue-lead__pi {
    width: 12rem;
    margin: auto;
  }

  .issue-lead p img {
    width: 100%;
  }

  .issue-row {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 4rem;
  }

  .issue-row__img,
  .issue-row__text {
    display: contents;
  }

  .issue-row__num {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 22rem);
    margin: auto;
  }

  .issue-row__img p {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .issue-row__text p {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.8;
    text-align: center;
  }

  .issue-row__text strong {
    grid-column: 1;
    grid-row: 3;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }

  .yellow-arrow {
    width: 9.6rem;
    height: 6.8rem;
    margin: 0 auto -2rem;
    transform: none;
  }

  .yellow-arrow::before {
    top: 0;
    left: 50%;
    width: 4.8rem;
    height: 3.6rem;
    transform: translateX(-50%);
  }

  .yellow-arrow::after {
    right: 0;
    bottom: 0;
    left: 0;
    border-top-width: 3.2rem;
    border-right-width: 4.8rem;
    border-left-width: 4.8rem;
  }

  .impact {
    padding: 3rem;
    border-radius: 2rem;
  }

  .impact h3 {
    font-size: 2rem;
    line-height: 1.5;
  }

  .impact p {
    font-size: 1.4rem;
  }

  .issue-bottom {
    margin-top: 3.2rem;
  }

  .issue-bottom__mark {
    display: block;
    right: 50%;
    bottom: -1.6rem;
    width: 12rem;
    transform: translateX(50%);
  }

  .service-container {
    padding: 6rem 8vw;
  }

  .service__copy {
    font-size: 1.4rem;
  }

  .service__copy br {
    display: none;
  }

  .service__headline {
    width: 100%;
    margin-bottom: 4.8rem;
  }

  .values {
    padding: 6rem 4vw;
  }

  .value-list,
  .overview-grid,
  .feature-grid,
  .voice-list {
    grid-template-columns: 1fr;
  }

  .value-list {
    gap: 2rem;
  }

  .value-list article {
    display: flex;
    width: min(100%, 29rem);
    min-height: 29rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 3rem 2.8rem;
  }

  .value-list b {
    font-size: 13rem;
  }

  .value-list h3 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.35;
  }

  .value-list p {
    font-size: 1.28rem;
    line-height: 1.6;
  }

  .overview {
    padding: 6rem 4vw;
  }

  .overview-grid {
    width: 100%;
    gap: 1.6rem;
    margin-bottom: 4.8rem;
  }

  .overview-grid article {
    min-height: 0;
    padding: 3rem 6rem;
    border-radius: 2rem;
  }

  .overview-grid h3 {
    font-size: 2.4rem;
  }

  .overview-title-img {
    height: 2.4rem;
  }

  .overview-grid ul {
    font-size: 1.5rem;
    line-height: 1.9;
  }

  .feature-grid {
    gap: 4.8rem;
  }

  .feature-grid>section>h3 {
    min-height: 0;
    margin-bottom: 1.6rem;
    font-size: 1.9rem;
    line-height: 1.5;
  }

  .feature-box {
    border-width: 1px;
    border-radius: 1.8rem;
  }

  .feature-box article {
    padding: 2.4rem;
  }

  .feature-box article+article {
    border-top-width: 1px;
  }

  .feature-box h4 {
    font-size: 1.8rem;
  }

  .feature-box p {
    font-size: 1.35rem;
    line-height: 1.8;
  }

  .device {
    width: min(100%, 28rem);
    margin: 2.4rem auto 0;
  }

  .courses {
    padding: 6rem 4vw;
  }

  .course+.course {
    margin-top: 4.8rem;
  }

  .course__label {
    gap: 1.2rem;
    margin-bottom: -0.8rem;
    font-size: 1.6rem;
  }

  .course__label p {
    transform: translate(0);
  }

  .course__pi {
    width: 7.2rem;
  }

  .course__card {
    min-height: 0;
    padding: 3.2rem 2.4rem 7.2rem;
    border-radius: 2rem;
  }

  .course__card>b {
    top: 0;
    left: 2.4rem;
    font-size: 9.6rem;
    transform: translate(0);
  }

  .course__card h3 {
    font-size: 2.8rem;
  }

  .course-title-img {
    height: 2.8rem;
  }

  .course__card p {
    width: min(100%, 46rem);
    font-size: 1.35rem;
    line-height: 1.65;
  }

  .course__card a {
    right: 2rem;
    bottom: 1.6rem;
    min-width: 17rem;
    height: 4.8rem;
    font-size: 1.4rem;
  }

  .voice {
    padding: 6rem 4vw;
  }

  .voice__lead {
    width: 100%;
    margin-bottom: 3.2rem;
  }

  .voice-num {
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .voice-list {
    gap: 4.8rem;
  }

  .voice-card,
  .voice-card--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
    padding: 2.4rem;
    border-width: 2px;
    border-radius: 1.8rem;
  }

  .voice-card--reverse .voice-card__photo {
    order: 0;
  }

  .voice-card::before {
    content: "";
    position: absolute;
    top: calc(100% - 2px);
    left: 3.6rem;
    z-index: 1;
    width: 10rem;
    height: 4px;
    background: #fff;
    pointer-events: none;
  }

  .voice-card::after {
    top: calc(100%);
    bottom: auto;
    left: 3.6rem;
    z-index: 2;
    width: 10rem;
    height: 3rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 44'%3E%3Cpath d='M0 1H58C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 150 1V0H0Z' fill='%23fff'/%3E%3Cpath d='M0 1H58C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 150 1' fill='none' stroke='%234faed1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left top / 100% 100% no-repeat;
    pointer-events: none;
  }

  @supports (color: color(display-p3 0 0 0)) {
    .voice-card::after {
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 44'%3E%3Cpath d='M0 1H58C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 150 1V0H0Z' fill='%23fff'/%3E%3Cpath d='M0 1H58C79 1 89 10 87 24C86 32 82 38 83 43C99 32 114 15 134 4C140 1.5 147 1 150 1' fill='none' stroke='color(display-p3%200.310%200.682%200.820)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") left top / 100% 100% no-repeat;
    }
  }


  .voice-card--reverse::before {
    right: auto;
    left: 3.6rem;
    transform: none;
  }

  .voice-card--reverse::after {
    right: auto;
    left: 3.6rem;
    transform: none;
  }

  .voice-card__photo {
    width: 100%;
    height: auto;
  }

  .voice-card__name {
    width: auto;
    max-width: 100%;
    height: 2.4rem;
    max-height: none;
    margin: 0 auto 1.6rem;
  }

  .voice-card picture.line--2 .voice-card__name {
    height: 4.8rem;
  }

  .voice-card picture.line--3 .voice-card__name {
    height: 7.2rem;
  }

  .voice-card p {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: justify;
  }

  .faq {
    padding: 6rem 8vw;
  }

  .faq-list {
    gap: 2.8rem;
    font-size: 1.4rem;
  }

  .faq-list h3,
  .faq-list p {
    grid-template-columns: 2.8rem 1fr;
    gap: 1rem;
  }

  .faq-list h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    align-items: start;
  }

  .faq-list p {
    line-height: 1.8;
  }

  .faq-list span {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.4rem;
  }

  .bottom-cta {
    padding: 4.8rem 5vw;
  }

  .bottom-cta__container,
  .bottom-cta__left,
  .bottom-cta__buttons__pill {
    flex-direction: column;
  }

  .bottom-cta__container {
    gap: 2.8rem;
  }

  .bottom-cta__left {
    text-align: center;
  }

  .bottom-cta__pi {
    width: 10rem;
    margin-inline: auto;
    transform: none;
  }

  .bottom-cta__text p {
    font-size: 1.9rem;
    line-height: 1.6;
  }

  .bottom-cta__buttons__note {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .bottom-cta .pill {
    min-width: 21rem;
    height: 4.8rem;
    font-size: 1.4rem;
  }

  .footer {
    padding: 3.2rem 5vw 2.4rem;
  }

  .footer nav {
    gap: 3rem;
    margin-bottom: 2.8rem;
    font-size: 1.2rem;
  }

  .footer__brand {
    margin-bottom: 1.6rem;
  }

  .footer__brand img {
    width: 18rem;
  }

  .footer p {
    font-size: 1.1rem;
  }

  .page-top {
    right: 1.6rem;
    bottom: 1.6rem;
    width: 5.2rem;
    height: 5.2rem;
    font-size: 1.1rem;
  }
}
