.c-content-main img {
  height: auto !important;
  max-width: 100% !important;
}

h1 {
  margin: 0;
}

a {
  color: #333;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  body {
    font-size: 13px;
    line-height: 1.8;
  }
}

.site-wrapper {
  padding-top: 96px;
}

.heading--1 {
  font-size: 48px;
  font-weight: 400;
}
@media screen and (max-width: 999px) {
  .heading--1 {
    font-size: 28px;
  }
}
.heading--2 {
  font-size: 32px;
}
@media screen and (max-width: 999px) {
  .heading--2 {
    font-size: 24px;
  }
}
.heading--3 {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .heading--3 {
    font-size: 18px;
  }
}

.text--note {
  font-size: 10px;
  color: #888888;
  font-weight: 400;
}

@media screen and (max-width: 999px) {
  .site-wrapper {
    padding-top: 68px;
  }
}

.pc-dn {
  display: none;
}
@media screen and (max-width: 999px) {
  .pc-dn {
    display: block;
  }
}

.sp-dn {
  display: block;
}
@media screen and (max-width: 999px) {
  .sp-dn {
    display: none;
  }
}

.img-fluid {
  width: 100%;
  height: auto;
}

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

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

.header {
  width: 100%;
  position: fixed;
  top: 24px;
  z-index: 20;
  padding: 0 22px;
}
.header__container {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0px 4px 12px 0px rgba(218, 222, 235, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 25px 64px 0;
}
.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__logo {
  position: absolute;
  left: 64px;
  top: 19px;
}

.gnav__container {
  margin-top: -2px;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease-in-out;
}
.gnav__inner {
  border-top: 2px solid #e7e7e7;
}
.gnav__list {
  display: flex;
  gap: 30px;
}
.gnav__button {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  padding-bottom: 25px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.1s linear, color 0.1s linear;
}
.gnav__button--skyblue:hover, .gnav__button--skyblue.is-active {
  color: #0aceec;
  border-color: #0aceec;
}
.gnav__button--green:hover, .gnav__button--green.is-active {
  color: #00d564;
  border-color: #00d564;
}
.gnav__button--red:hover, .gnav__button--red.is-active {
  color: #ff5432;
  border-color: #ff5432;
}
.gnav__button--blue:hover, .gnav__button--blue.is-active {
  color: #3381dd;
  border-color: #3381dd;
}
.gnav__content {
  padding: 64px 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  display: none;
}
.gnav__content.is-active {
  display: block;
}
.gnav__content.is-visible {
  opacity: 1;
}
.gnav__content-list {
  display: flex;
  gap: 16px;
  padding: 0 70px;
}
.gnav__content-list > li {
  width: 25%;
}
.gnav__link {
  color: #888888;
  font-size: 15px;
  opacity: 1 !important;
  transition: color 0.1s linear;
}
.gnav__link img {
  transition: opacity 0.1s linear;
}
.gnav__link:hover img {
  opacity: 0.8;
}
.gnav__link--skyblue:hover {
  color: #0aceec;
}
.gnav__link--green:hover {
  color: #00d564;
}
.gnav__link--red:hover {
  color: #ff5432;
}
.gnav__link--blue:hover {
  color: #3381dd;
}
.gnav__link-text {
  display: inline-block;
  margin-top: 20px;
}
.gnav__link-icon {
  margin-bottom: 2px;
}

.menubar {
  display: block;
  position: relative;
  width: 68px;
  height: 68px;
  cursor: pointer;
}
.menubar > span {
  position: absolute;
  background-color: #000;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
  border-radius: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.menubar > span:first-child {
  top: 27px;
}
.menubar > span:last-child {
  bottom: 27px;
}

.header-sp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  height: 68px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px rgba(218, 222, 235, 0.5019607843);
}
.header-sp__container {
  padding-left: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-sp.is-active .menubar > span:first-child {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.header-sp.is-active .menubar > span:last-child {
  transform: translate(-50%, -6px) rotate(45deg);
}

.menu-sp {
  position: fixed;
  z-index: 20;
  top: 68px;
  width: 100%;
  height: calc(100dvh - 68px);
  background-color: #fff;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.menu-sp.is-active {
  visibility: visible;
  opacity: 1;
  overflow-y: auto;
  pointer-events: auto;
  transform: translateX(0);
}
.menu-sp__list {
  padding: 56px 48px;
}
.menu-sp__list > li + li {
  margin-top: 32px;
}
.menu-sp__heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.menu-sp__inner-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 2px solid #e7e7e7;
  margin-top: 8px;
  padding-top: 16px;
}
.menu-sp__inner-list a {
  font-size: 13px;
  color: #888;
}

.kv {
  padding: 104px 80px 80px;
}
@media screen and (max-width: 999px) {
  .kv {
    padding: 56px 22px;
  }
}
.kv__container {
  max-width: 1000px;
  margin: 0 auto;
}
.kv__content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 88px;
  align-items: flex-start;
}
@media screen and (max-width: 999px) {
  .kv__content {
    flex-direction: column;
    margin-top: 24px;
  }
}
.kv__lead {
  width: 560px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (max-width: 999px) {
  .kv__lead {
    width: 100%;
    font-size: 16px;
  }
}
.kv__pre-heading {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 999px) {
  .kv__pre-heading {
    font-size: 20px;
  }
}

.section {
  position: relative;
  z-index: 10;
  padding-top: 64px;
  padding-bottom: 114px;
  padding-left: 56px;
}
@media screen and (max-width: 999px) {
  .section {
    padding: 0;
  }
}
.section::before {
  content: "";
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 6px;
  width: 56px;
  height: 100%;
  border-right: 1px solid #0ddcfc;
  padding-top: 64px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
}
@media screen and (max-width: 999px) {
  .section::before {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    padding: 16px 0;
  }
}
.section__wrapper {
  padding: 0 80px;
}
@media screen and (max-width: 999px) {
  .section__wrapper {
    padding: 0 22px;
  }
}
.section__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 999px) {
  .section__head {
    display: block;
    padding-top: 40px;
    border-top: 1px solid #333;
  }
}
.section__pre-heading {
  color: #888888;
}
.section__heading {
  width: 440px;
}
@media screen and (max-width: 999px) {
  .section__heading {
    width: 100%;
  }
}
.section__lead {
  width: calc(100% - 440px);
  max-width: 400px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
}
@media screen and (max-width: 999px) {
  .section__lead {
    width: 100%;
    max-width: none;
    font-size: 16px;
  }
}
.section__body {
  margin-top: 88px;
}
@media screen and (max-width: 999px) {
  .section__body {
    margin-top: 56px;
  }
}

.button-container {
  display: flex;
  justify-content: center;
}
.button-container--right {
  justify-content: flex-end;
}
.button-container--left {
  justify-content: flex-start;
}

.button {
  transition: opacity 0.1s linear;
}
@media screen and (min-width: 999px) {
  .button:hover {
    opacity: 0.8;
  }
}
.button--beginner {
  border: 2px solid #017b63;
  border-radius: 24px;
  padding: 16px 14px 16px 24px;
  font-size: 20px;
  font-weight: 700;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 999px) {
  .button--beginner {
    font-size: 16px;
    padding: 12px 22px 12px 18px;
  }
}
.button--beginner::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  background-image: url("../assets/images/common/icon_beginner.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.button--beginner::after {
  content: "";
  width: 8px;
  height: 13px;
  display: block;
  background-image: url("../assets/images/common/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.button--beginner .button__text {
  padding-left: 12px;
  padding-right: 26px;
}
@media screen and (max-width: 999px) {
  .button--beginner .button__text {
    padding-right: 5px;
  }
}

.lp-button {
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  color: #017b63;
  background-color: #fff;
  text-align: center;
  border-radius: 26px;
  border: 2px solid #333;
  box-shadow: 0px 4px 0px 0px #333;
  max-width: 320px;
  padding: 15px 30px;
  line-height: 1.1;
  position: relative;
  transition: background-color 0.1s ease;
}
@media screen and (min-width: 999px) {
  .lp-button:hover {
    background-color: #d3f3e6;
  }
}
.lp-button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../assets/images/common/icon_arrow_green.svg");
}
.lp-button--primary {
  max-width: 440px;
  background-color: #017b63;
  color: #fff;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  border-radius: 62px;
  padding: 15px 80px;
  transition: background-color transform 0.1s ease;
}
@media screen and (max-width: 999px) {
  .lp-button--primary {
    font-size: 20px;
  }
}
.lp-button--primary .button__pretext {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .lp-button--primary .button__pretext {
    font-size: 13px;
  }
}
.lp-button--primary::before {
  content: "";
  display: block;
  width: 71px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../assets/images/icon_mobile.png");
}
.lp-button--primary::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background-image: url("../assets/images/icon_arrow_white.svg");
}
@media screen and (min-width: 999px) {
  .lp-button--primary:not(:disabled):hover {
    background-color: #50b2a6;
  }
  .lp-button--primary:not(:disabled):hover::before {
    transform: translateY(-50%) rotate(-10deg);
  }
}
.lp-button--primary:disabled {
  background-color: #b0b0b0;
  border: 2px solid #888888;
  box-shadow: 0px 4px 0px 0px #888888;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.lp-button--primary:disabled::after {
  background-image: url("../assets/images/icon_arrow_white.svg");
}
.lp-button--primary:disabled .button__pretext {
  font-size: 13px;
  font-weight: 700;
}
.lp-button--secondary {
  color: #017b63;
  border: 2px solid #017b63;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 12px;
  box-shadow: none;
}
.lp-button--secondary::after {
  content: none;
}
.lp-button--more {
  font-size: 14px;
  border-radius: 40px;
  padding: 8px 36px 8px 24px;
  border: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: none;
}
.lp-button--more::after {
  width: 16px;
  height: 16px;
  background-image: url("../assets/images/icon_arrow_more.svg");
}
.lp-button--white {
  background-color: #fff;
  color: #017b63;
}
@media screen and (min-width: 999px) {
  .lp-button--white:hover {
    background-color: #d3f3e6;
  }
}
.lp-button--white::after {
  background-image: url("../assets/images/icon_arrow_green.svg");
}
.lp-button-container {
  display: flex;
  justify-content: center;
}

a {
  cursor: pointer;
  transition: opacity 0.1s linear;
}
@media screen and (min-width: 999px) {
  a:hover {
    opacity: 0.8;
  }
}

.link {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (min-width: 999px) {
  .link:hover {
    opacity: 0.5;
  }
}
.link--pdf::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../assets/images/common/icon_pdf.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.link--arrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("../assets/images/common/icon_link_arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.overlay {
  display: none;
  background-color: rgba(51, 51, 51, 0.2);
  width: 100vw;
  height: 100dvh;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 30;
}
.overlay.is-active {
  display: block;
}

.modal {
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  max-width: 692px;
  max-height: 632px;
  border-radius: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  transition: opacity 0.3s ease-out;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 56px 36px;
}
.modal__inner {
  position: relative;
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  padding-right: 8px;
}
.modal__content {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.modal__content-inner {
  width: 100%;
  padding: 43px 40px 43px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal__lead {
  font-size: 33px;
  color: #008c64;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}
.modal__text {
  text-align: center;
  font-weight: 800;
  margin-top: 32px;
}
.modal__button-container {
  width: 100%;
  padding: 80px 24px;
  background-color: #fcebc8;
  border-radius: 24px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 999px) {
  .modal__button-container {
    padding: 40px 24px;
  }
}
.modal__button-container .button {
  max-width: 226px;
  height: 52px;
}
.modal__qr-container {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.modal__qr-code {
  padding: 24px;
  background-color: #fcebc8;
  border-radius: 24px;
}
.modal__qr {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.modal__qr-text {
  font-weight: 14px;
  font-weight: 800;
  color: #017b63;
  text-align: center;
}
.modal__qr-text strong {
  font-weight: 900;
  font-size: 18px;
}
.modal__close, .modal__polygon, .modal__man, .modal__woman {
  position: absolute;
}
.modal__close {
  top: 0;
  right: 36px;
}
.modal__man {
  bottom: 0;
  left: -4px;
}
.modal__woman {
  bottom: 0;
  right: 0;
}
.modal__polygon--1 {
  top: 80px;
  right: 0;
}
.modal__polygon--2 {
  left: 0;
  bottom: 210px;
}
.modal__polygon--3 {
  top: 30px;
  left: 30px;
}
.modal__polygon--4 {
  top: 44px;
  right: 76px;
  z-index: 10;
}
.modal .modal__button-container .button {
  font-size: 16px;
  padding: 15px 20px;
}
.modal .modal__button-container .button::after {
  right: 10px;
}

.video-modal {
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 40;
  transition: opacity 0.3s ease-out;
  width: 100%;
  max-width: 560px;
}
.video-modal.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.video-modal__close {
  margin: 0 0 15px auto;
  display: block;
}
@media screen and (max-width: 999px) {
  .video-modal iframe {
    aspect-ratio: 16/9;
    height: 100%;
    width: 100%;
  }
}

.site-footer {
  background-color: #007c64;
  padding: 64px 40px 32px;
}
@media screen and (max-width: 999px) {
  .site-footer {
    padding: 56px 24px 32px;
  }
}
.site-footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .site-footer__inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.site-footer__logo {
  width: 256px;
}
@media screen and (max-width: 999px) {
  .site-footer__logo {
    margin-top: 56px;
  }
}
.site-footer__logo > img {
  width: 100%;
  height: auto;
}
.site-footer__link {
  display: flex;
  gap: 64px;
}
.site-footer__link > li {
  position: relative;
}
.site-footer__link > li::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
}
.site-footer__link > li:last-child::after {
  content: none;
}
.site-footer__link a {
  font-size: 12px;
  color: #fff;
}
.site-footer__copyright {
  display: block;
  font-size: 12px;
  color: #8ec4b1;
  text-align: right;
  margin-top: 64px;
}
@media screen and (max-width: 999px) {
  .site-footer__copyright {
    margin-top: 24px;
    text-align: center;
  }
}

/*# sourceMappingURL=common.css.map */
