@charset "UTF-8";
.footer {
  position: relative;
  z-index: 1;
  margin-top: -15.1428571429vw;
  padding-top: 33.5714285714vw;
  color: white;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 0;
    padding-top: 54.4rem;
  }
}
.footer__inner {
  position: relative;
  height: 100%;
  background-color: var(--g-color-green);
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-bottom: 100px;
  }
}
.footer__content {
  width: 96rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  gap: 9rem;
  justify-content: center;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .footer__content {
    width: 100%;
    flex-direction: column-reverse;
    justify-content: initial;
    align-items: center;
    gap: 5rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.footer__logo {
  width: 22rem;
}
.footer__isms{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 400px;
  margin: auto;
  padding: 20px 0;
}
.footer__isms figure {
  width: 100px;
}
.footer__isms .footer__ismsTxt {
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__logo {width: 43rem;}
  .footer__isms{max-width: 300px;}
}
.footer__menu {
  display: flex;
  gap: 8rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    gap: 4.4rem;
  }
}
.footer__menu-links,
.footer__menu-list {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 1.6rem 7.2rem;
}
@media screen and (max-width: 767px) {
  .footer__menu-links,
  .footer__menu-list {
    display: block;
  }
}
.footer__menu-links li,
.footer__menu-list li {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__menu-links li,
  .footer__menu-list li {
    font-size: 2.2rem;
  }
  .footer__menu-links li + li,
  .footer__menu-list li + li {
    margin-top: 1em;
  }
}
.footer__menu-links li a,
.footer__menu-list li a {
  transition: opacity 0.2s ease-out;
}
.footer__menu-links li a:hover,
.footer__menu-list li a:hover {
  opacity: 0.8;
}
.footer__menu-links li a:before,
.footer__menu-list li a:before {
  content: "";
  display: inline-block;
  margin-right: 0.6em;
  background-color: #ffd20b;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  vertical-align: 0.15em;
}
@media screen and (max-width: 767px) {
  .footer__menu-links li a:before,
  .footer__menu-list li a:before {
    width: 0.78rem;
    height: 0.78rem;
  }
}
.footer__copyright {
  margin-top: 10rem;
  text-align: center;
  padding-bottom: 2rem;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 2rem;
    margin-top: 4.8rem;
    text-align: center;
    padding-bottom: 2.8rem;
  }
}
.footer__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__image {
    aspect-ratio: 750/1042;
  }
}
.footer__to-top {
  position: fixed;
  right: 3.2rem;
  bottom: 3.2rem;
  display: block;
  width: 7.2rem;
  height: 7.2rem;
  pointer-events: auto;
  border-radius: 50%;
  background-color: #ffe128;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 0 4px rgba(5, 34, 74, 0.2));
  transition: opacity 0.35s ease-out, visibility 0.35s ease-out;
}
@media screen and (max-width: 767px) {
  .footer__to-top {
    bottom: calc(var(--page-gutter));
    right: calc(var(--page-gutter) / 2);
    width: 9rem;
    height: 9rem;
  }
}
.footer__to-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.56rem !important;
  transition: transform 0.175s ease-out;
}
@media screen and (max-width: 767px) {
  .footer__to-top img {
    width: 3.2rem !important;
  }
}
.footer__to-top:hover img {
  transform: translate(-50%, calc(-50% - 0.4rem));
}
.footer__to-top.--active {
  opacity: 1;
  visibility: visible;
}
[data-modal-content] {
  display: none;
}
.modal [data-modal-content] {
  display: block;
}
.modal {
  z-index: 99999;
}
.modal.modal--sp-menu {
  z-index: 99;
}
.modal__inner {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal[class*="character"] .modal__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal[class*="character"] .modal__inner {
    display: block;
  }
}
.menu {
  --menu-outer-padding: 2rem;
  height: 100%;
  padding-top: var(--menu-outer-padding);
  padding-right: var(--menu-outer-padding);
  padding-bottom: var(--menu-outer-padding);
  padding-left: var(--menu-outer-padding);
  background-color: var(--g-color-green);
}
.modal .menu {
  display: block;
}
.menu__inner {
  height: 100%;
  padding-right: calc(var(--page-gutter) - 2rem);
  padding-left: calc(var(--page-gutter) - 2rem);
  background-image: radial-gradient(#4bad7d 0.2rem, transparent 0.2rem),
    radial-gradient(#4bad7d 0.2rem, transparent 0.2rem);
  background-size: 2.6rem 2.6rem;
  background-position: 0 0, 1.3rem 1.3rem;
}
.menu__container {
  padding-top: calc(var(--menu-outer-padding) + var(--header-height) + 8.8rem);
  padding-bottom: 12rem;
  color: white;
}
.menu__links li + li {
  margin-top: 4.8rem;
}
.menu__links-button.button {
  --shadow-gap: 1.5rem;
  height: 12rem;
  border-radius: 7rem;
}
.menu__links-button .button__text {
  font-size: 5rem;
}
.menu__links-button .button__icon {
  right: 8rem;
  width: 1.8rem;
  height: 3.4rem;
}
.menu__links-button.large-button {
  --shadow-gap: 1.6rem;
}
.menu__links-button .large-button__text {
  font-size: 4.8rem;
  letter-spacing: 0.04em;
}
.menu__links-button .large-button__text small {
  font-size: 2.65rem;
}
.menu__links-button .large-button__icon {
  right: 5.4rem;
  width: 1.8rem;
  height: 3.4rem;
}
.menu__list {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 3.2rem 6.4rem;
  margin-top: 8rem;
}
.menu__list li {
  line-height: 1.6;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.menu__list li a:before {
  content: "";
  display: inline-block;
  margin-right: 0.6em;
  background-color: #ffd20b;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  vertical-align: 0.15em;
}
.menu__item + .menu__item {
  margin-top: 3.8rem;
}
.space-bg {
  position: relative;
  margin-top: 4.7142857143vw;
  padding-top: 25.4rem;
  padding-bottom: 32rem;
  background: linear-gradient(
    0deg,
    rgb(126, 197, 205) 2.3508%,
    rgb(85, 140, 182) 13.5546%,
    rgb(70, 81, 115) 47.1902%,
    rgb(18, 30, 87) 89.3068%,
    rgb(0, 0, 61) 99.0024%
  );
}
@media screen and (max-width: 767px) {
  .space-bg {
    margin-top: 0;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    padding-bottom: 40rem;
  }
}
.space-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 67.47772%;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 2.3508%,
    rgba(129, 78, 149, 0.7973783263) 100%
  );
}
.space-bg:after {
  content: "";
  position: absolute;
  top: -1.8571428571vw;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  height: 79.6%;
  width: 97%;
  background-image: url(../images/hero-starry-sky.svg);
  background-repeat: repeat-y;
}
@media screen and (max-width: 767px) {
  .space-bg:after {
    top: 4.9rem;
    width: 134rem;
  }
}
.space-bg__section {
  --gutter: 12rem;
  position: relative;
  z-index: 1;
  width: var(--content-width-large);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .space-bg__section {
    --gutter: 5rem;
  }
}
.space-bg__section + .space-bg__section {
  margin-top: 5.8rem;
}
.space-bg__section-inner {
  background-color: white;
  padding-top: 10rem;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  padding-bottom: 8rem;
  border-radius: var(--g-border-radius-large);
  filter: drop-shadow(0 0 1rem rgba(5, 34, 74, 0.35));
}
@media screen and (max-width: 767px) {
  .space-bg__section-inner {
    border-radius: 5rem;
    padding-bottom: 7.2rem;
  }
}
.space-bg__section-images {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.space-bg__section-images img {
  position: absolute;
  z-index: -1;
}
.space-bg__section-images img[src*="moon"] {
  position: absolute;
  top: -9.6rem;
  left: 24.9rem;
  width: 16.7rem;
  filter: drop-shadow(0 0 4.8rem rgba(224, 250, 255, 0.75));
}
@media screen and (max-width: 767px) {
  .space-bg__section-images img[src*="moon"] {
    top: -8.6rem;
    left: 5.9rem;
  }
}
.space-bg__section-images img[src*="seiun"] {
  position: absolute;
  top: 69rem;
  right: -19.6rem;
  width: 34.4rem;
}
@media screen and (max-width: 767px) {
  .space-bg__section-images img[src*="seiun"] {
    top: 118rem;
    width: 35.2rem;
  }
}
.space-bg__section-images img[src*="planet-blue"] {
  position: absolute;
  top: 29.4rem;
  left: -12.6rem;
  width: 19rem;
  filter: drop-shadow(0 0 4.3rem rgba(224, 250, 255, 0.75));
}
@media screen and (max-width: 767px) {
  .space-bg__section-images img[src*="planet-blue"] {
    top: 43.8rem;
    left: -11.4rem;
    width: 19rem;
  }
}
.space-bg__footer {
  margin-top: 8rem;
  color: white;
}
@media screen and (max-width: 767px) {
  .space-bg__footer {
    margin-top: 6.8rem;
  }
}
.modal-content {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .modal-content {
    margin-top: calc(var(--header-height) + 9.6rem);
    margin-bottom: 28rem;
  }
}
@media screen and (min-width: 768px) {
  .modal[class*="kadai"] .modal-content {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
.modal-content__box {
  position: relative;
  width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 8rem;
  padding-right: 8rem;
  padding-bottom: 8rem;
  padding-left: 8rem;
  border-radius: var(--g-border-radius-large);
  background-color: white;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .modal-content__box {
    width: calc(100% - var(--page-gutter) * 2);
  }
}
.modal[class*="kadai"] .modal-content__box {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .modal[class*="kadai"] .modal-content__box {
    width: calc(100% - var(--page-gutter) * 2);
  }
}
.modal[class*="character"] .modal-content__box {
  padding-right: 5rem;
  padding-left: 7.2rem;
}
@media screen and (max-width: 767px) {
  .modal[class*="character"] .modal-content__box {
    padding-bottom: 0;
    padding-left: 5rem;
  }
}
.modal-content__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #ffd20b;
  transition: opacity 0.25s ease-out;
}
@media screen and (max-width: 767px) {
  .modal-content__close {
    top: 0;
    right: 0;
    transform: translateY(calc(-100% - 1.6rem));
    width: 12rem;
    height: 12rem;
  }
}
.modal-content__close:hover {
  opacity: 0.75;
}
.modal-content__close-icon {
  position: relative;
  transform: rotate(45deg);
  display: block;
  width: 100%;
  height: 100%;
}
.modal-content__close-icon:after,
.modal-content__close-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  height: 1px;
  background-color: white;
}
.modal-content__close-icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.cta {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .cta {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: initial;
  }
}
.cta__item-text {
  margin-bottom: 0.5em;
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.6rem;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .cta__item-text {
    font-size: 2.8rem;
  }
}
.cta__button.button {
  --shadow-gap: 1rem;
  width: 34.9rem;
  height: 8rem;
  border-radius: var(--g-border-radius-large);
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .cta__button.button {
    --shadow-gap: 1.5rem;
    width: 64rem;
    height: 16rem;
    font-size: 5rem;
  }
}
.about {
  position: relative;
  /* margin-top: var(--body-border-size); */
  background-image: radial-gradient(#a6e0c9 0.16rem, transparent 0.16rem),
    radial-gradient(#a6e0c9 0.16rem, transparent 0.16rem);
  background-size: 2.6rem 2.6rem;
  background-position: 0 0, 1.3rem 1.3rem;
  padding-top: 8.8rem;
  padding-bottom: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 12rem;
    padding-bottom: 42rem;
    background-image: radial-gradient(#a6e0c9 0.2rem, transparent 0.2rem),
      radial-gradient(#a6e0c9 0.2rem, transparent 0.2rem);
  }
}
.about__title {
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
.about__title span {
  display: block;
}
.about__title-small {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .about__title-small {
    font-size: 2.4rem;
  }
}
.about__title-large {
  font-size: 5.6rem;
  margin-top: 0.35em;
}
@media screen and (max-width: 767px) {
  .about__title-large {
    margin-top: 0.25em;
    font-size: 8rem;
  }
}
.about__title-en {
  margin-top: 1.1em;
}
.about__title-en img[src*="seurat-about"] {
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .about__title-en img[src*="seurat-about"] {
    width: 10.5rem;
  }
}
.about__video-text {
  text-align: center;
  line-height: 1.625;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .about__video-text {
    line-height: 1.56;
    font-size: 5rem;
    letter-spacing: 0.08em;
  }
}
.about__video-text strong {
  color: var(--g-color-green);
}
.about__lead {
  margin-top: 7.8rem;
}
@media screen and (max-width: 767px) {
  .about__lead {
    margin-top: 9.6rem;
  }
}
.about__lead-text {
  text-align: center;
  line-height: 1.625;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .about__lead-text {
    line-height: 1.56;
    font-size: 5rem;
    letter-spacing: 0.08em;
  }
}
.about__lead-text strong {
  color: var(--g-color-green);
}
.about__lead-image {
  --containerWidth: 1100;
  --containerHeight: 495;
  position: relative;
  width: calc(var(--content-width) * 1.1);
  margin-top: 3.6rem;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: var(--containerWidth) / var(--containerHeight);
}
@media screen and (max-width: 767px) {
  .about__lead-image {
    width: calc(var(--content-width) - var(--page-gutter) * 2);
    --containerWidth: 640;
    /* --containerHeight: 1764; */
    margin-top: 5.6rem;
  }
}
@supports not (aspect-ratio: var(--containerWidth) / var(--containerHeight)) {
  .about__lead-image {
    padding-top: calc(var(--containerHeight) / var(--containerWidth) * 100%);
    height: 0;
  }
}

.about__lead-image img[src$=".svg"] {
  display: block;
  margin: auto;
  width: 80%;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .about__lead-image img[src$=".svg"] {
    width: 90%;
    padding: 30px 0;
  }
}

.about__lead-image-items {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about__lead-image-items img {
  display: block;
  position: absolute;
}
.about__lead-image-items img[src*="about-lead-image"] {
  left: calc((942 / var(--containerWidth)) * 100%);
  top: calc((124 / var(--containerHeight)) * 100%);
  width: calc((112.9357 / var(--containerWidth)) * 100%);
  border: 0.2rem solid currentColor;
}
@media screen and (max-width: 767px) {
  .about__lead-image-items img[src*="about-lead-image"] {
    left: calc((352 / var(--containerWidth)) * 100%);
    top: calc((888 / var(--containerHeight)) * 100%);
    width: calc((125.726 / var(--containerWidth)) * 100%);
    border: 1px solid currentColor;
  }
}
.about__lead-fukidashi {
  position: absolute;
  top: 0.8rem;
  right: -9.8rem;
  width: 15.2rem;
}
@media screen and (max-width: 767px) {
  .about__lead-fukidashi {
    top: 62rem;
    right: auto;
    left: -2.9rem;
    width: 17.1rem;
  }
}
.about__video {
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .about__video {
    margin-top: 8.2rem;
  }
}
.about__video-wrapper {
  position: relative;
  width: 93rem;
  margin-top: 3.6rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 2rem;
  background-color: white;
  padding: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about__video-wrapper {
    margin-top: 5.6rem;
    width: calc(var(--content-width) - var(--page-gutter) * 2);
  }
}
.about__video-content {
  aspect-ratio: 16/9;
}
.about__video-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  vertical-align: bottom;
}
.about__video-icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14rem;
}
.about__images {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.about__images > * {
  position: absolute;
}
.about__images .about__images-planet-blue {
  top: 13.2rem;
  left: 50%;
  transform: translateX(calc(-100% - 48.7rem));
  width: 11.4rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-blue {
    top: auto;
    bottom: 6.4rem;
    transform: translateX(calc(-100% - 20.5rem));
  }
}
.about__images .about__images-planet-orange {
  top: 7rem;
  left: 50%;
  transform: translateX(calc(-100% - 40.7rem));
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-orange {
    top: auto;
    bottom: 16.6rem;
    transform: translateX(calc(-100% - 12.6rem));
  }
}
.about__images .about__images-planet-moon {
  top: 7.3rem;
  left: 50%;
  transform: translateX(40rem);
  width: 11.3rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-moon {
    top: auto;
    bottom: 22.1rem;
    transform: translateX(8.7rem);
    width: 7.9rem;
  }
}
.about__images .about__images-planet-meteor {
  top: 17.2rem;
  left: 50%;
  transform: translateX(53rem);
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-meteor {
    top: auto;
    bottom: 17.8rem;
    transform: translateX(17.8rem);
    width: 5.27rem;
  }
}
.about__images .about__images-planet-tower {
  bottom: -4.6rem;
  left: 50%;
  transform: translateX(calc(-100% - 49rem));
  width: 11.4rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-tower {
    transform: translateX(-50%);
  }
}
.about__images .about__images-planet-rocket {
  bottom: -5.4rem;
  left: 50%;
  transform: translateX(36.6rem) rotate(90deg);
  width: 23.8rem;
}
@media screen and (max-width: 767px) {
  .about__images .about__images-planet-rocket {
    bottom: -4.9rem;
    transform: translateX(11.5rem) rotate(90deg);
    width: 20.5rem;
  }
}
.kadai {
  background-color: white;
}
.kadai__inner {
  position: relative;
  width: 118rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 14rem;
  padding-bottom: 17rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kadai__inner {
    width: calc(100% - var(--page-gutter) * 2);
    padding-bottom: 29.6rem;
  }
}
.kadai__inner:before {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  width: 100%;
  height: 2rem;
  background: radial-gradient(
    circle farthest-side,
    #e6e6e6,
    #e6e6e6 0.2rem,
    transparent 0.2rem,
    transparent
  );
  background-size: 4.6rem 2rem;
  background-repeat: repeat-x;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .kadai__inner:before {
    top: 8rem;
    background: radial-gradient(
      circle farthest-side,
      #e6e6e6,
      #e6e6e6 0.4rem,
      transparent 0.4rem,
      transparent
    );
    background-size: 6.7rem 2rem;
    background-repeat: repeat-x;
    background-position: center;
  }
}
.kadai__inner:after {
  content: "";
  position: absolute;
  top: 5.6rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  --grid-size: 6rem;
  --border-width: 1px;
  background-size: calc(100% + 2px);
  background-image: repeating-linear-gradient(
    0deg,
    #e6e6e6,
    #e6e6e6 var(--border-width),
    transparent var(--border-width),
    transparent var(--grid-size)
  );
}
@media screen and (max-width: 767px) {
  .kadai__inner:after {
    top: 10rem;
  }
}
.kadai__header {
  position: relative;
}
.kadai__header-fukidashi {
  position: absolute;
  top: -6.4rem;
  left: 50%;
  transform: translateX(-38.2rem);
  width: 17.9rem;
}
.kadai__header-illust {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(22.3rem);
  width: 31.6rem;
}
.kadai__title {
  --scale: 1;
  text-align: center;
  line-height: 1.46;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-sans-yakuhan-all);
}
@media screen and (max-width: 767px) {
  .kadai__title {
    font-size: 6.2rem;
  }
}
.kadai__title span {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.kadai__title span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  z-index: -1;
  width: 100%;
  height: 0.5em;
  background-color: #ffc800;
  transform: scaleX(var(--scale));
  transform-origin: left;
}
.kadai__list {
  --item-gap: 7.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7.2rem;
  width: 107rem;
  margin-top: 10rem;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: var(--item-gap);
}
@media screen and (max-width: 767px) {
  .kadai__list {
    --item-gap: 0;
    width: 50rem;
    grid-template-columns: 1fr;
    gap: 13.5rem;
  }
}
.kadai__list-item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kadai__list-item {
    display: block;
  }
}
.kadai__list-item:nth-of-type(odd) {
  transform: translateY(var(--item-gap));
}
@media screen and (max-width: 767px) {
  .kadai__list-item:nth-of-type(odd) {
    transform: none;
  }
}
.kadai__list-item-text {
  margin-top: 3.2rem;
}
.kadai__list-item-title {
  text-align: center;
  color: #3d8c54;
  border-bottom: 1px soli currentColor;
  line-height: 1.5;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
.kadai__list-item-body {
  margin-top: 0.5em;
  text-align: justify;
  line-height: 1.77;
  font-size: 1.8rem;
}
.kadai__list-item-button {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .kadai__list-item-button {
    margin-top: 6.4rem;
  }
}
.kadai__list-item-button .button {
  margin-top: 3.6rem;
  --shadow-gap: 0.7rem;
  width: 100%;
  height: 6.6rem;
  border-radius: 4rem;
  border-width: 0.2rem;
  font-size: 2.2rem;
  color: var(--g-color-dark-green);
}
@media screen and (max-width: 767px) {
  .kadai__list-item-button .button {
    --shadow-gap: 1.2rem;
    margin-top: 0;
    height: 12rem;
    border-radius: 6.4rem;
    font-size: 4rem;
  }
}
.kadai-modal {
  position: relative;
}
.kadai-modal__manga {
  width: 40rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .kadai-modal__manga {
    width: 100%;
  }
}
.features {
  position: relative;
  z-index: 1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 9.6rem;
  padding-bottom: 6rem;
  background-color: var(--g-color-light-green);
}
@media screen and (max-width: 767px) {
  .features {
    padding-top: 14rem;
    padding-bottom: 11rem;
  }
}
.features:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  display: block;
  width: 100%;
  height: 8.7922714286vw;
  background-image: url("../images/features-top-mask.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .features:before {
    height: 6.7rem;
  }
}
.features:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  display: block;
  width: 157.1428571429vw;
  height: 12.2010785714vw;
  background-image: url("../images/features-bottom-mask.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .features:after {
    width: 220rem;
    height: 17.08151rem;
  }
}
.features__title {
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
.features__title span {
  display: block;
}
.features__title-small {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .features__title-small {
    font-size: 2.8rem;
  }
}
.features__title-large {
  font-size: 5.6rem;
  margin-top: 0.35em;
}
@media screen and (max-width: 767px) {
  .features__title-large {
    margin-top: 0.25em;
    font-size: 8rem;
  }
}
.features__title-en {
  margin-top: 1.1em;
}
.features__title-en img[src*="seurat-features"] {
  width: 10.5rem;
}
@media screen and (max-width: 767px) {
  .features__title-en img[src*="seurat-features"] {
    width: 15.7rem;
  }
}
.features-sections {
  margin-top: 16rem;
  width: 115.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .features-sections {
    transform: translateX(-1%);
  }
}
@media screen and (max-width: 767px) {
  .features-sections {
    width: 100%;
    margin-top: 9.2rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.features-sections__item {
  --border-radius: 2rem;
  --inner-padding: 3.5rem;
  display: flex;
  gap: 4.4rem;
}
@media screen and (max-width: 767px) {
  .features-sections__item {
    --inner-padding: 4rem;
    flex-direction: column-reverse;
    gap: 14rem;
  }
}
.features-sections__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .features-sections__item:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .features-sections__item:nth-of-type(2) {
    transform: translateX(3rem);
  }
}
.features-sections__item + .features-sections__item {
  margin-top: calc(var(--inner-padding) + 9.4rem);
}
@media screen and (max-width: 767px) {
  .features-sections__item + .features-sections__item {
    margin-top: 18rem;
  }
}
@media screen and (min-width: 768px) {
  .features-sections__item + .features-sections__item:last-of-type {
    margin-top: calc(var(--inner-padding) + 11.4rem);
  }
}
.features-section__item-image-wrap {
  align-self: flex-start;
  position: relative;
  flex-shrink: 0;
  width: 54.8rem;
  padding-left: var(--inner-padding);
}
@media screen and (max-width: 767px) {
  .features-section__item-image-wrap {
    width: 100%;
  }
}
.features-section__item-image-wrap:before {
  content: "";
  position: absolute;
  top: calc(var(--inner-padding) * -1);
  left: 0;
  z-index: -1;
  display: block;
  width: 27rem;
  height: 23.3rem;
  background-color: var(--g-color-green);
  border-radius: var(--border-radius);
}
@media screen and (min-width: 768px) {
  .features-sections__item:nth-of-type(2) .features-section__item-image-wrap {
    margin-top: var(--inner-padding);
  }
}
.features-section__item-image {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  border-radius: var(--border-radius);
  background-color: white;
}
.features-section__item-image img[src*="features-image-02"] {
  margin-bottom: 1.5rem;
}
.features-section__item-image-icon {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
.features-section__item-image-icon img[src*="features-image-02-icon"] {
  width: 10.7rem;
}
.features-section__item-text {
  --label-title-gap: 3rem;
  --label-width: 9.5rem;
  margin-top: calc(var(--inner-padding) * -1);
}
@media screen and (max-width: 767px) {
  .features-section__item-text {
    margin-top: 0;
    --label-title-gap: 2.4rem;
    --label-width: 10.3rem;
  }
}
.features-section__item-text-header {
  position: relative;
  padding-left: calc(var(--label-width) + var(--label-title-gap));
}
.features-section__item-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--label-width);
}
@media screen and (max-width: 767px) {
  .features-section__item-label {
    transform: translateY(-60%);
  }
}
.features-section__item-title {
  line-height: 1.36;
  font-family: var(--font-sans-yakuhan-all);
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .features-section__item-title {
    line-height: 1.32;
    font-size: 4.6rem;
    letter-spacing: 0.04em;
  }
}
.features-section__item-title strong {
  color: var(--g-color-green);
}
.features-section__item-list {
  width: 46.8rem;
  margin-top: 3.8rem;
  margin-left: calc(var(--label-width) + var(--label-title-gap));
}
@media screen and (max-width: 767px) {
  .features-section__item-list {
    width: 100%;
    margin-top: 6rem;
    margin-left: 0;
  }
}
.features-section__item-list-item + .features-section__item-list-item {
  margin-top: 2.2em;
}
.features-section__item-list-item-title {
  display: inline-block;
  background-color: var(--g-color-green);
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-top: 0.25em;
  padding-right: 0.7em;
  padding-bottom: 0.35em;
  padding-left: 0.7em;
  border-radius: 0.8rem;
  font-size: 2.3rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .features-section__item-list-item-title {
    padding-top: 0.5em;
    padding-right: 1.25em;
    padding-bottom: 0.55em;
    padding-left: 1.25em;
    border-radius: 1.4rem;
    font-size: 3rem;
  }
}
.features-section__item-list-item-text {
  margin-top: 0.75em;
  text-align: justify;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .features-section__item-list-item-text {
    margin-top: 0.75em;
    line-height: 2.07;
    font-size: 2.8rem;
  }
}
.features-section__item-list-item-text strong {
  font-weight: 700;
  /* text-decoration: underline;
  text-decoration-thickness: 0.475em;
  text-decoration-color: #ffff0a;
  text-underline-offset: -0.175em;
  text-decoration-skip-ink: none; */

  background: linear-gradient(transparent 70%, #ffff0a 30%);
}
.story-content01__header {
  position: relative;
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .story-content01__header {
    display: block;
  }
}
.story-content01__title {
  flex-shrink: 0;
}
.story-content01__title span {
  display: block;
}
.story-content01__title-en {
  width: 6.8rem;
}
@media screen and (max-width: 767px) {
  .story-content01__title-en {
    width: 10.2rem;
  }
}
.story-content01__title-text {
  margin-top: 0.25em;
  margin-bottom: 0.125em;
  line-height: 1.75;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .story-content01__title-text {
    margin-top: 0.1em;
    line-height: 1.56;
    font-size: 5rem;
  }
}
.story-content01__header-image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .story-content01__header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.story-content01__header-image img {
  position: absolute;
}
.story-content01__header-image img[src*="satellite"] {
  top: -2.4rem;
  left: 0;
  width: 15.5rem;
}
@media screen and (max-width: 767px) {
  .story-content01__header-image img[src*="satellite"] {
    top: -4rem;
    right: 5.7rem;
    left: auto;
    width: 13.2rem;
  }
}
.story-content01__header-image img[src*="spaceman"] {
  top: 11rem;
  left: 16.4rem;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .story-content01__header-image img[src*="spaceman"] {
    top: 11.1rem;
    right: 1.2rem;
    left: auto;
    width: 8.14rem;
  }
}
.story-content01__body {
  margin-top: 8rem;
  margin-left: calc(var(--gutter) * -1);
}
@media screen and (max-width: 767px) {
  .story-content01__body {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 6.4rem;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .story-content01__body-image {
    width: 51.5rem;
    float: left;
    shape-outside: url("../images/story-image-mask.svg");
    shape-margin: 1.6rem;
    float: left;
    shape-image-threshold: 0;
  }
}
@media screen and (max-width: 767px) {
  .story-content01__body-image {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .story-content01__body-image img {
    margin-top: 8.8rem;
    width: 45.8rem;
  }
}
.story-content01__body-image-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .story-content01__body-image-sp {
    overflow: hidden;
    --containerWidth: 640;
    --containerHeight: 400;
    position: relative;
    display: block;
    aspect-ratio: var(--containerWidth) / var(--containerHeight);
    margin-top: 2.4rem;
    margin-right: calc((var(--gutter) + 1px) * -1);
    margin-left: calc((var(--gutter) + 1px) * -1);
    margin-bottom: 4.2rem;
  }
  @supports not (aspect-ratio: var(--containerWidth) / var(--containerHeight)) {
    .story-content01__body-image-sp {
      padding-top: calc(var(--containerHeight) / var(--containerWidth) * 100%);
      height: 0;
    }
  }
  .story-content01__body-image-sp img {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
  }
}
@media screen and (max-width: 767px) {
  .story-content01__body-image-bitmap {
    position: absolute;
    inset: 0;
  }
  .story-content01__body-image-bitmap img {
    display: block;
    position: absolute;
  }
  .story-content01__body-image-bitmap img[src*="story-image-sp-bitmap"] {
    left: calc((203 / var(--containerWidth)) * 100%);
    top: calc((292 / var(--containerHeight)) * 100%);
    width: calc((86.1181 / var(--containerWidth)) * 100%);
  }
}
.story-content01__body-text {
  line-height: 2.15;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: justify;
  padding-left: var(--gutter);
}
@media screen and (max-width: 767px) {
  .story-content01__body-text {
    padding-left: 0;
    line-height: 2.07;
    font-size: 2.8rem;
  }
}
.story-content01__body-text p + p {
  margin-top: 1.35em;
}
@media screen and (max-width: 767px) {
  .story-content01__body-text p + p {
    margin-top: 0;
  }
}
.story-content01__footer {
  position: relative;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .story-content01__footer {
    margin-top: 4rem;
  }
}
.story-content01__note-list-item {
  font-size: 1.2rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .story-content01__note-list-item {
    line-height: 1.66;
    font-size: 2.4rem;
  }
}
.story-content01__footer-images {
  --containerWidth: 203;
  --containerHeight: 151;
  position: absolute;
  top: -11.3rem;
  right: 3.5rem;
  width: 20.3rem;
  aspect-ratio: var(--containerWidth) / var(--containerHeight);
}
@supports not (aspect-ratio: var(--containerWidth) / var(--containerHeight)) {
  .story-content01__footer-images {
    padding-top: calc(var(--containerHeight) / var(--containerWidth) * 100%);
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  .story-content01__footer-images {
    display: none;
  }
}
.story-content01__footer-images img {
  position: absolute;
}
.story-content01__footer-images img[src*="space-kids-green"] {
  left: 0;
  bottom: 0;
  width: calc((45.6968 / var(--containerWidth)) * 100%);
}
.story-content01__footer-images img[src*="space-kids-blue"] {
  left: calc((75.6197 / var(--containerWidth)) * 100%);
  top: 0;
  width: calc((45.6968 / var(--containerWidth)) * 100%);
}
.story-content01__footer-images img[src*="space-kids-gray"] {
  left: calc((157.3409 / var(--containerWidth)) * 100%);
  top: calc((25.366 / var(--containerHeight)) * 100%);
  width: calc((45.6968 / var(--containerWidth)) * 100%);
}
.story-content02__title {
  text-align: center;
}
.story-content02__title span {
  display: block;
}
.story-content02__title-en {
  width: 12.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .story-content02__title-en {
    width: 18.84rem;
  }
}
.story-content02__title-text {
  position: relative;
  width: fit-content;
  margin-top: 0.25em;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.75;
  text-align: center;
  font-family: var(--font-sans-yakuhan-all);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .story-content02__title-text {
    width: 100%;
    margin-top: 0.1em;
    line-height: 1.56;
    font-size: 5rem;
  }
}
.story-content02__title-fukidashi {
  position: absolute;
  top: -9.2rem;
  left: -4.8rem;
  width: 16.2rem;
}
@media screen and (max-width: 767px) {
  .story-content02__title-fukidashi {
    top: -9.5rem;
    left: -7.8rem;
    width: 17.3rem;
  }
}
.character-list {
  margin-top: 9.6rem;
  display: flex;
  justify-content: center;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .character-list {
    flex-direction: column;
    gap: 4rem;
    margin-top: 6.8rem;
  }
}
.character-list__item {
  --shadow-gap: 0.7rem;
}
.character-list__item button {
  display: block;
  margin-bottom: var(--shadow-gap);
  width: 35.6rem;
  padding-top: 4rem;
  padding-bottom: 2.8rem;
  text-align: center;
  border-radius: 3.3rem;
  background-color: var(--g-color-light-green);
  filter: drop-shadow(0 var(--shadow-gap) 0 var(--g-color-green));
  will-change: transform;
  transition: background-color 0.175s ease-out, 0.175s ease-out,
    filter 0.175s ease-out;
}
@media screen and (max-width: 767px) {
  .character-list__item button {
    --shadow-gap: 1rem;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
.character-list__item button:hover {
  transform: translateY(var(--shadow-gap));
  filter: drop-shadow(0 0 0 var(--g-color-green));
  background-color: var(--g-color-green);
}
.character-list__item-name {
  text-align: center;
  line-height: 1;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.175s ease-out;
}
@media screen and (max-width: 767px) {
  .character-list__item-name {
    font-size: 4rem;
  }
}
button:hover .character-list__item-name {
  color: white;
}
.character-list__item-image {
  width: 23.3rem;
  margin-top: 0.4rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .character-list__item-image {
    width: 35.4rem;
  }
}
.character-list__item-icon {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-color: var(--g-color-green);
  transition: color 0.175s ease-out;
}
@media screen and (max-width: 767px) {
  .character-list__item-icon {
    margin-top: -0.8rem;
    width: 10rem;
    height: 10rem;
  }
}
button:hover .character-list__item-icon {
  background-color: white;
}
.character-list__item-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border-style: solid;
  width: 0.8rem;
  height: 1.5rem;
  border-width: 0.75rem 0 0.75rem 0.8rem;
  border-color: transparent transparent transparent white;
  transition: border-color 0.175s ease-out;
}
@media screen and (max-width: 767px) {
  .character-list__item-icon:after {
    width: 1.6rem;
    height: 3rem;
    border-width: 1.5rem 0 1.5rem 1.6rem;
  }
}
button:hover .character-list__item-icon:after {
  border-color: transparent transparent transparent var(--g-color-green);
}
.character-modal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .character-modal {
    display: block;
  }
}
.character-modal__title {
  width: 25.6rem;
  background-color: var(--g-color-green);
  border-radius: 2.4rem;
  padding-bottom: 0.075em;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  line-height: 4.4rem;
  white-space: nowrap;
}
.character-modal__title-sub {
  font-weight: 500;
  font-size: 1.2em;
  margin-top: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .character-modal__title {
    width: 100%;
    border-radius: 4rem;
    line-height: 7.2rem;
    font-size: 4.2rem;
  }
}
.character-modal__spec {
  margin-top: 3.2rem;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .character-modal__spec {
    display: grid;
    gap: 3.2rem;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .character-modal__spec-item.character-modal__spec-item--sp-order-last {
    order: 1;
  }
}
.character-modal__spec-item + .character-modal__spec-item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .character-modal__spec-item + .character-modal__spec-item {
    margin-top: 0;
  }
}
.character-modal__spec-list {
  margin-top: 0.25em;
}
.character-modal__spec-list-item {
  padding-left: 1em;
  /* text-indent: -1em; */
  font-size: 1.55rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .character-modal__spec-list-item {
    line-height: 1.73;
    font-size: inherit;
    white-space: normal;
  }
}
.character-modal__spec-list-item + .character-modal__spec-list-item {
  margin-top: 0.125em;
}
.character-modal__spec-item-title {
  width: fit-content;
  min-width: 13rem;
  border-radius: 1.4rem;
  padding-bottom: 0.05em;
  border: 1px solid currentColor;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--g-color-green);
  letter-spacing: 0.08em;
  line-height: 2.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .character-modal__spec-item-title {
    line-height: 4.4rem;
    border-radius: 3rem;
    font-size: 2.8rem;
    min-width: 20.8rem;
  }
}
.character-modal__image {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .character-modal__image {
    margin-top: -1rem;
  }
}
.prices-conditions {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -11.2922714286vw;
  padding-top: 11.2922714286vw;
}
.prices-conditions__header {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100vw;
  height: 11.2922714286vw;
  background-image: url("../images/green-hill.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
.prices-conditions__header-peoples {
  --containerWidth: 198.1674;
  --containerHeight: 129.8939;
  position: absolute;
  top: 1.2857142857vw;
  left: 50%;
  transform: translateX(-36.7857142857vw);
  width: 14.1428571429vw;
  aspect-ratio: var(--containerWidth) / var(--containerHeight);
}
@supports not (aspect-ratio: var(--containerWidth) / var(--containerHeight)) {
  .prices-conditions__header-peoples {
    padding-top: calc(var(--containerHeight) / var(--containerWidth) * 100%);
    height: 0;
  }
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-peoples {
    --containerWidth: 323;
    --containerHeight: 361;
    top: -7.3rem;
    transform: translateX(-28.4rem);
    width: 32.3rem;
  }
}
.prices-conditions__header-peoples img {
  position: absolute;
  display: block;
}
.prices-conditions__header-peoples img[src*="people-teacher"] {
  top: 0;
  left: 0;
  width: calc((45.4977 / var(--containerWidth)) * 100%);
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-peoples img[src*="people-teacher"] {
    width: calc((96 / var(--containerWidth)) * 100%);
  }
}
.prices-conditions__header-peoples img[src*="people-kids-yellow"] {
  bottom: 0;
  left: calc((51.5531 / var(--containerWidth)) * 100%);
  width: calc((35.998 / var(--containerWidth)) * 100%);
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-peoples img[src*="people-kids-yellow"] {
    left: calc((90.723 / var(--containerWidth)) * 100%);
    width: calc((96 / var(--containerWidth)) * 100%);
  }
}
.prices-conditions__header-peoples img[src*="people-kids-pink"] {
  top: 0;
  left: calc((96.9515 / var(--containerWidth)) * 100%);
  width: calc((35.998 / var(--containerWidth)) * 100%);
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-peoples img[src*="people-kids-pink"] {
    left: calc((166.5844 / var(--containerWidth)) * 100%);
    width: calc((75.9619 / var(--containerWidth)) * 100%);
  }
}
.prices-conditions__header-peoples img[src*="people-kids-white"] {
  top: calc((9.1462 / var(--containerHeight)) * 100%);
  right: 0;
  width: calc((35.998 / var(--containerWidth)) * 100%);
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-peoples img[src*="people-kids-white"] {
    top: calc((146.7164 / var(--containerHeight)) * 100%);
    width: calc((75.9619 / var(--containerWidth)) * 100%);
  }
}
.prices-conditions__header-tower {
  position: absolute;
  top: -10.2857142857vw;
  left: 50%;
  width: 5.3571428571vw;
  transform: translateX(28.9285714286vw);
}
@media screen and (max-width: 767px) {
  .prices-conditions__header-tower {
    top: -26.7rem;
    width: 15.8rem;
    transform: translateX(12.3rem);
  }
}
.prices-conditions__inner {
  background-color: var(--g-color-green);
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .prices-conditions__inner {
    padding-top: 37rem;
    padding-bottom: 12.8rem;
  }
}
.prices-conditions__title span {
  display: block;
}
.prices-conditions__title-text {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: white;
}
@media screen and (max-width: 767px) {
  .prices-conditions__title-text {
    font-size: 8rem;
  }
}
.prices-conditions__title-en {
  width: 26.3rem;
  margin-top: 2.1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .prices-conditions__title-en {
    width: 39.4rem;
    margin-top: 2.6rem;
  }
}
.prices-conditions__footer {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .prices-conditions__footer {
    margin-top: 7.2rem;
  }
}
.prices-conditions__footer2 {
  margin-top: 6.8rem;
  color: white;
}
@media screen and (max-width: 767px) {
  .prices-conditions__footer2 {
    margin-top: 9.6rem;
  }
}
.application-process__note-list-item {
  margin-top: 3.2rem;
  padding-left: 1em;
  line-height: 1.6;
  font-size: 1.6rem;
  text-indent: -1em;
  color: white;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .application-process__note-list-item {
    line-height: inherit;
    font-size: 2.4rem;
    margin-top: 4rem;
  }
}
.application-process__note-list-item + .application-process__note-list-item {
  margin-top: 0.25em;
}
.price-list {
  width: var(--content-width);
  margin-top: 10rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .price-list {
    margin-top: 7.4rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.price-list__content {
  padding-top: 8rem;
  padding-right: 6rem;
  padding-bottom: 5.6rem;
  padding-left: 6rem;
  background-color: white;
  border-radius: var(--g-border-radius-large);
  filter: drop-shadow(0 0 1rem rgba(5, 34, 74, 0.35));
}
@media screen and (max-width: 767px) {
  .price-list__content {
    padding-top: 5rem;
    padding-right: 4rem;
    padding-bottom: 3.6rem;
    padding-left: 4rem;
    border-radius: 5rem;
  }
}
.price-list__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-weight: 700;
  white-space: nowrap;

  table-layout: fixed;
}
.price-list__table td,
.price-list__table th {
  /* padding-right: 2em;
  padding-left: 2em; */
  padding-right: 0.5em;
  padding-left: 0.5em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .price-list__table td,
  .price-list__table th {
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
}
.price-list__table td:not(.price-list__row-span-next-head):first-of-type,
.price-list__table th:not(.price-list__row-span-next-head):first-of-type {
  padding-left: 2em;
}
@media screen and (max-width: 767px) {
  .price-list__table td:not(.price-list__row-span-next-head):first-of-type,
  .price-list__table th:not(.price-list__row-span-next-head):first-of-type {
    padding-left: 1.5em;
  }
}
.price-list__table td:last-of-type,
.price-list__table th:last-of-type {
  /* padding-right: 2em; */
  padding-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .price-list__table td:last-of-type,
  .price-list__table th:last-of-type {
    padding-left: 1.5em;
  }
}
.price-list__table thead {
  background-color: var(--g-color-green);
}
.price-list__table thead tr {
  background-color: var(--g-color-green);
}
.price-list__table thead th {
  height: 4.4rem;
  line-height: 1;
  font-size: 2rem;
  text-align: center;
  color: white;
}
@media screen and (max-width: 767px) {
  .price-list__table thead th {
    height: 3.6rem;
    font-size: 1.4rem;
  }
}
.price-list__table thead th:first-of-type {
  border-top-left-radius: 2.2rem;
  border-bottom-left-radius: 2.2rem;
}
.price-list__table thead th:last-of-type {
  border-top-right-radius: 2.2rem;
  border-bottom-right-radius: 2.2rem;
}
.price-list__table tbody:before {
  content: "";
  display: block;
  width: 100%;
  height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .price-list__table tbody:before {
    height: 2.6rem;
  }
}
.price-list__table tbody td {
  font-size: 1.8rem;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .price-list__table tbody td {
    font-size: 1.3rem;
    padding-top: 0.95em;
    padding-bottom: 0.95em;
  }
}
.price-list__table tbody tr:not(:last-of-type) td {
  border-bottom: 1px dashed var(--g-color-green);
}
.price-list__table strong {
  margin-top: -0.4em;
  color: #f25900;
  font-size: 4.5rem;
  line-height: 1.4;
  transform: translateY(5%);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .price-list__table strong {
    transform: translateY(3%);
    font-size: 3.8rem;
  }
}
.price-list__row-span-image {
  width: 30.6rem;
  padding-right: 0.75em !important;
  padding-left: 0.75em !important;
  border-bottom: none !important;
}
@media screen and (max-width: 767px) {
  .price-list__row-span-image {
    padding-right: 0 !important;
    padding-left: 1.25em !important;
  }
}
.price-list__center {
  text-align: center;
}
.price-list__footer {
  margin-top: 2.4rem;
  color: white;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price-list__footer {
    margin-top: 3.6rem;
  }
}
.price-list__note-item {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .price-list__note-item {
    line-height: inherit;
    font-size: 2.4rem;
  }
}
.price-list__note-item + .price-list__note-item {
  margin-top: 0.35em;
}
@media screen and (max-width: 767px) {
  .price-list__note-item + .price-list__note-item {
    margin-top: 0.4em;
  }
}
.application-process {
  width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .application-process {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.application-process img {
  display: block;
}
.application-process img[src*="application-process"] {
  width: 109rem;
  margin-left: -7.4rem;
}
@media screen and (max-width: 767px) {
  .application-process img[src*="application-process"] {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 639.7047/1383.2103;
  }
}
.service-specification {
  padding-top: 13rem;
  padding-bottom: 29rem;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .service-specification {
    padding-top: 15.6rem;
    padding-bottom: 27rem;
  }
}
.service-specification__title span {
  display: block;
}
.service-specification__title-text {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .service-specification__title-text {
    font-size: 8rem;
  }
}
.service-specification__title-en {
  width: 25.4rem;
  margin-top: 2.1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .service-specification__title-en {
    width: 38rem;
    margin-top: 2.6rem;
  }
}
.service-specification-list {
  display: grid;
  grid-template-columns: 20.6rem 1fr;
  width: var(--content-width);
  margin-top: 12rem;
  margin-right: auto;
  margin-left: auto;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .service-specification-list {
    display: block;
    margin-top: 11rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.service-specification-list__item {
  display: contents;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item {
    display: block;
    padding-bottom: 4.8rem;
  }
  .service-specification-list__item:not(:first-of-type) {
    padding-top: 4rem;
    border-top: 1px solid #dcdcdc;
  }
  .service-specification-list__item:last-of-type {
    border-bottom: 1px solid #dcdcdc;
  }
}
.service-specification-list__item-header {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 4rem;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-header {
    display: block;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 2.8rem;
  }
}
.service-specification-list__item:not(:first-of-type)
  .service-specification-list__item-header {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item:not(:first-of-type)
    .service-specification-list__item-header {
    padding-top: 0;
  }
}
.service-specification-list__item-body {
  padding-left: 6.2rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body {
    margin-top: 1.6rem;
    padding-left: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 2.6rem;
  }
}
.service-specification-list__item:not(:first-of-type)
  .service-specification-list__item-body {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item:not(:first-of-type)
    .service-specification-list__item-body {
    padding-top: 0;
  }
}
.service-specification-list__item-body strong {
  margin-top: 0.25em;
  display: block;
  font-weight: 500;
  color: var(--g-color-green);
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body strong {
    margin-top: 0.5em;
  }
}
.service-specification-list__item-body-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(3, auto);
  gap: 0.25em 3.6rem;
  grid-auto-flow: column;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-grid {
    display: block;
  }
}

.service-specification-list__item-body-grid_v2 {
  display: flex;
}
.service-specification-list__item-body-grid-item_v2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-grid_v2 {
    display: block;
  }
  .service-specification-list__item-body-grid-item_v2 {
    width: 100%;
  }
}

.service-specification-list__item-body-note-list {
  margin-top: 1em;
  font-size: 1.3rem;
  color: var(--g-color-green);
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-note-list {
    margin-top: 0.75em;
    font-size: 2.4rem;
  }
}
.service-specification-list__item-body-note-list-item {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.7;
  text-align: justify;
}
.service-specification-list__item-body-note-list-item
  + .service-specification-list__item-body-note-list-item {
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-note-list-item
    + .service-specification-list__item-body-note-list-item {
    margin-top: 0.75em;
  }
}
.service-specification-list__item-body-title {
  width: fit-content;
  padding-right: 1em;
  padding-left: 1em;
  background-color: var(--g-color-green);
  border-radius: 1.3rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.08em;
  line-height: 2.6rem;
  white-space: nowrap;
  margin-bottom: 0.25em;
}
* + .service-specification-list__item-body-title {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-list {
    margin-top: 0.25em;
  }
}
.service-specification-list__item-body-list-item {
  text-indent: -1em;
  padding-left: 1em;
}
.service-specification-list__item-body-list-item
  + .service-specification-list__item-body-list-item {
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .service-specification-list__item-body-list-item
    + .service-specification-list__item-body-list-item {
    margin-top: 0.35em;
  }
}
.faq {
  position: relative;
  z-index: 1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 7.2rem;
  padding-bottom: 9.8rem;
  background-color: var(--g-color-light-green);
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 11rem;
    padding-bottom: 7.2rem;
  }
}
.faq:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateY(-100%) translateX(-50%) scale(-1, -1);
  display: block;
  width: 157.1428571429vw;
  height: 12.2010785714vw;
  background-image: url("../images/features-bottom-mask.svg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .faq:before {
    width: 220rem;
    height: 17.0815rem;
  }
}
.faq__title span {
  display: block;
}
.faq__title-text {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .faq__title-text {
    font-size: 8rem;
  }
}
.faq__title-en {
  width: 3.94rem;
  margin-top: 2.1rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .faq__title-en {
    width: 5.9rem;
    margin-top: 2.6rem;
  }
}
.faq__footer {
  position: relative;
  margin-top: 12rem;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  color: var(--g-color-green);
}
.faq__footer-image {
  position: absolute;
  top: -4.6rem;
  right: 0;
  width: 15.2rem;
  transform: translateX(100%);
}
@media screen and (max-width: 767px) {
  .faq__footer-image {
    display: none;
  }
}
.faq-list {
  width: var(--content-width);
  margin-top: 8rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .faq-list {
    margin-top: 8.8rem;
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }
}
.faq-list__item {
  --horizontal-margin: 6.4rem;
  position: relative;
  z-index: 1;
  border-radius: 2rem;
  overflow: hidden;
}
.faq-list__item + .faq-list__item {
  margin-top: 3.2rem;
}
.faq-list__q {
  --icon-size: 4rem;
}
@media screen and (max-width: 767px) {
  .faq-list__q {
    --icon-size: 5rem;
  }
}
.faq-list__q button {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 1.125em;
  padding-right: calc(var(--horizontal-margin) + var(--icon-size) + 1.25em);
  padding-bottom: 1.125em;
  padding-left: var(--horizontal-margin);
  background-color: var(--g-color-green);
  text-align: justify;
  line-height: 1.4;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
}
@media screen and (max-width: 767px) {
  .faq-list__q button {
    line-height: 1.5;
    font-size: 3rem;
  }
}
.faq-list__q-icon {
  position: absolute;
  top: 50%;
  right: 2em;
  width: var(--icon-size);
  height: var(--icon-size);
}
@media screen and (max-width: 767px) {
  .faq-list__q-icon {
    right: 1.75em;
  }
}
.faq-list__q-icon:after,
.faq-list__q-icon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 0.3rem;
  background-color: currentColor;
}
.faq-list__q-icon:after {
  content: "";
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.25s ease-out;
}
button.--active .faq-list__q-icon:after {
  transform: translateY(-50%) rotate(180deg);
}
.faq-list__a-inner {
  padding-top: 2em;
  padding-right: var(--horizontal-margin);
  padding-bottom: 2.25em;
  padding-left: var(--horizontal-margin);
  background-color: #a9d8c1;
  text-align: justify;
  line-height: 1.875;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
a.faq-more__a {
  font-weight: 700;
  font-size: 16px;
  color: #1f462a !important;
  line-height: 1.6;
  display: inline-block;
  margin-top: 24px;
  transition: opacity 0.3s cubic-bezier(0.67, 0.23, 0.33, 0.94);
}
a.faq-list__a-inner:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .faq-list__a-inner {
    padding-top: 1.75em;
    font-size: 2.6rem;
  }
}

.bg_dot {
  /* position: relative; */
  margin-top: var(--body-border-size);
  background-image: radial-gradient(#a6e0c9 0.16rem, transparent 0.16rem),
    radial-gradient(#a6e0c9 0.16rem, transparent 0.16rem);
  background-size: 2.6rem 2.6rem;
  background-position: 0 0, 1.3rem 1.3rem;
  /* padding-top: 8.8rem; */
  padding-bottom: 10rem;
  /* overflow: hidden; */
}
.banner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 5%;
}
.banner img {
  max-width: 900px;
}

a.btn-md_round {
  border-radius: 30px;
  padding: 10px 30px;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
/*------------------
導入ガイド
------------------*/
.footer__content {
  gap: 4rem;
}
.footer__menu {
  gap: 6rem;
}
.footer__menu-list {
  grid-template-columns: unset;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    display: block;
  }
  .footer__menu-links li,
  .footer__menu-list li {
    margin-top: 1em;
  }
  .footer__menu-list .list_in li {
    margin-top: 0.05em;
  }
}

/*------------------
動画
------------------*/
.movie_box {
  padding: 1.6rem;
  border-radius: 2rem;
  background-color: white;
  width: 80%;
  margin: 30px auto;
}
.movie_box + div {
  width: 80%;
  margin: auto;
  font-weight: 500;
}
.movie_box iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  vertical-align: bottom;
}
.movie_aspect {
  aspect-ratio: 16/9;
}
.movie_aspect iframe {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  vertical-align: bottom;
}

/*------------------
4コマ
------------------*/
@media screen and (max-width: 767px) {
.modal[class*="kadai"] .modal-content__box {
    width: 100%;
}
.modal-content__box {
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 0;
}
}

.service-specification-table tbody tr>* {
  border: 1px solid #ccc;
  width: 20%;
  padding-left: 10px;
}
.service-specification-table tbody tr th {
  background: var(--g-color-green);
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 676px) {
  .service-specification-table tbody tr>* {
      font-size: 10px;
      padding: 5px 4px;
  }
}