@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-tb {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .hidden-pc {
    display: none;
  }
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .inner {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}

.heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.heading__en {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
  color: #686868;
}
@media screen and (min-width: 992px) {
  .heading__en {
    font-size: 20px;
    letter-spacing: 5px;
  }
}

.heading__ja {
  font-size: 25px;
  color: #00a5c3;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .heading__ja {
    font-size: 40px;
    letter-spacing: 5px;
  }
}

@media screen and (min-width: 992px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

.button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  color: #00a5c3;
  min-width: 150px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #00a5c3;
  color: #fff;
}
.button--type2 {
  background-color: #00a5c3;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (min-width: 992px) {
  .button--type2 {
    font-size: 35px;
  }
}
.button--type2:hover {
  background-color: #fff;
  color: #00a5c3;
}

.header__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-top: 0;
  }
}
.header__logo img {
  width: 150px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .header__logo img {
    width: 250px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header__link {
  font-weight: 700;
  letter-spacing: 0.48px;
  transition: color 0.3s;
  color: #00a5c3;
  text-decoration: none;
  font-size: 15px;
}
.header__link:hover {
  color: #000000;
}
@media screen and (min-width: 992px) {
  .header__link {
    font-size: 17px;
  }
}

.header__open {
  margin-top: 3px;
  background: transparent;
  border: none;
}
@media screen and (min-width: 992px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-30deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #00a5c3;
  z-index: 50;
  padding: 86px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.3s linear;
}
@media screen and (min-width: 768px) {
  .drawer-content {
    width: 520px;
    text-align: left;
  }
}
.drawer-content.is-checked {
  transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .drawer-content__link {
    text-align: left;
  }
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .drawer-content__button {
    text-align: left;
  }
}

.intro {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .intro {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}

.intro-heading__ja {
  font-size: 22px;
  color: #000000;
  font-weight: 700;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .intro-heading__ja {
    font-size: 30px;
    letter-spacing: 5px;
    margin-top: 15px;
  }
}

.intro-box__decoration-coments {
  overflow: hidden;
}

.intro-box__mainimage {
  margin-top: 400px;
}
.intro-box__mainimage img {
  display: block;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .intro-box__mainimage img {
    width: 400px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__mainimage {
    margin-top: 350px;
  }
  .intro-box__mainimage img {
    display: block;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.intro-box__decoration-coment1 {
  position: absolute;
  top: 190px;
  left: 0;
}
.intro-box__decoration-coment1 img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .intro-box__decoration-coment1 {
    top: 190px;
    left: 350px;
    overflow: none;
  }
  .intro-box__decoration-coment1 img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__decoration-coment1 {
    position: absolute;
    top: 270px;
    left: 350px;
    overflow: none;
  }
  .intro-box__decoration-coment1 img {
    width: 300px;
  }
}

.intro-box__decoration-coment2 {
  position: absolute;
  top: 210px;
  left: 190px;
}
.intro-box__decoration-coment2 img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .intro-box__decoration-coment2 {
    top: 190px;
    left: 150px;
  }
  .intro-box__decoration-coment2 img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__decoration-coment2 {
    top: 250px;
    left: 650px;
  }
  .intro-box__decoration-coment2 img {
    width: 300px;
  }
}

.intro-box__decoration-coment3 {
  position: absolute;
  top: 310px;
  left: 140px;
}
.intro-box__decoration-coment3 img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .intro-box__decoration-coment3 {
    top: 310px;
    left: 350px;
  }
  .intro-box__decoration-coment3 img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__decoration-coment3 {
    top: 440px;
    left: 530px;
  }
  .intro-box__decoration-coment3 img {
    width: 300px;
  }
}

.intro-box__decoration-coment4 {
  position: absolute;
  top: 310px;
  left: 10px;
}
.intro-box__decoration-coment4 img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .intro-box__decoration-coment4 {
    top: 310px;
    left: 100px;
  }
  .intro-box__decoration-coment4 img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__decoration-coment4 {
    top: 400px;
    left: 820px;
  }
  .intro-box__decoration-coment4 img {
    width: 300px;
  }
}

.intro-box__decoration-coment5 {
  position: absolute;
  top: 430px;
  left: 80px;
}
.intro-box__decoration-coment5 img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .intro-box__decoration-coment5 {
    top: 430px;
    left: 200px;
  }
  .intro-box__decoration-coment5 img {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .intro-box__decoration-coment5 {
    top: 430px;
    left: 250px;
  }
  .intro-box__decoration-coment5 img {
    width: 300px;
  }
}

.intro-box__decoration-coment1,
.intro-box__decoration-coment2 {
  animation: floating-x 4.2s ease-in-out infinite alternate-reverse;
}

.intro-box__decoration-coment3,
.intro-box__decoration-coment4 {
  animation: floating-x 7.2s ease-in-out infinite alternate-reverse;
}

.intro-box__decoration-coment5 {
  animation: floating-x 5.2s ease-in-out infinite alternate-reverse;
}

.target {
  animation: floating-y 9.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(5%);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.intro__answer {
  background-color: #00a5c3;
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  .intro__answer {
    padding: 60px 0px;
  }
}

.intro-answer__title {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-align: center;
  padding: 25px 5px;
}
.intro-answer__title img {
  width: 350px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .intro-answer__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .intro-answer__title {
    font-size: 40px;
  }
}

.intro-answer__img {
  margin-top: 0px;
  text-align: center;
}
.intro-answer__img img {
  width: 100px;
}
.intro-answer__img.yazirushi img {
  width: 40px;
}
@media screen and (min-width: 992px) {
  .intro-answer__img.yazirushi img {
    width: 590px;
  }
}

.intro-answer__button {
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 8px 28px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  font-size: 10px;
  line-height: 1.7;
  color: #00a5c3;
  min-width: 150px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  margin-left: auto;
  margin-right: auto;
}
.intro-answer__button:hover {
  background-color: #00a5c3;
  color: #fff;
}
.intro-answer__button--type2 {
  background-color: #00a5c3;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  font-size: 35px;
  line-height: 1.7;
}
.intro-answer__button--type2:intro__answer__button {
  background-color: #fff;
  color: #00a5c3;
  font-weight: 700;
  letter-spacing: 0.48px;
  padding: 15px 35px;
  display: inline-block;
  border-radius: 60px;
  border: 2px solid currentColor;
  font-size: 35px;
  line-height: 1.7;
}
.intro-answer__button--type2:hover {
  background-color: #fff;
  color: #00a5c3;
}

.intro-answer__content {
  text-align: center;
}

.intro-answer__img-sub {
  margin-top: 100px;
  text-align: center;
  margin-top: 105px;
  margin-bottom: 105px;
  position: relative;
}
.intro-answer__img-sub img {
  width: 100px;
}
@media screen and (min-width: 992px) {
  .intro-answer__img-sub img {
    width: 170px;
  }
}

.mv {
  border-radius: 20px;
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .mv {
    border-radius: 30px;
    max-width: calc(100% - 60px);
  }
}

.mv__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    overflow: hidden;
  }
}
.mv-content__top {
  display: block;
}

.mv-content__top {
  display: block;
}

.mv__pop {
  margin-left: auto;
  margin-right: auto;
  margin-top: 170px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__pop {
    display: inline-block;
    text-align: center;
    margin-top: 100px;
    width: 311px;
  }
}
@media screen and (min-width: 992px) {
  .mv__pop {
    display: none;
  }
}

.mv__lead1 {
  font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  color: #ffffff;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .mv__lead1 {
    margin-left: 0;
    margin-right: 0;
    font-size: 45px;
    letter-spacing: 3.8px;
    padding: 12px 0px;
    margin-top: 10px;
  }
}

.mv__description-text {
  font-size: 25px;
}

.mv__lead1-text1 {
  background: #00a5c3;
  border-radius: 5px;
  font-weight: 900;
}
@media screen and (min-width: 992px) {
  .mv__lead1-text1 {
    font-size: 60px;
  }
}

.mv__lead1-text2 {
  color: #000;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .mv__lead1-text2 {
    font-size: 30px;
  }
}

.mv__lead2 {
  font-feature-settings: "palt" on;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .mv__lead2 {
    margin-left: 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .mv__lead2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 20px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}

@media screen and (min-width: 768px) {
  .mv__lead2_pc {
    display: none;
  }
}

.mv__lead3 {
  font-feature-settings: "palt" on;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  color: #ffffff;
  background: #00a5c3;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .mv__lead3 {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .mv__lead3 {
    margin-left: 0;
    margin-right: 0;
    font-size: 55px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}

.mv__lead4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  color: #00a5c3;
  background: #fff;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .mv__lead4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2.2px;
    border-radius: 5px;
    color: #00a5c3;
    background: #fff;
    padding: 10px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    margin-top: 15px;
  }
}

.mv__lead5 {
  font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  border-radius: 5px;
  color: #00a5c3;
  padding: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: -17px;
}
@media screen and (min-width: 768px) {
  .mv__lead5 {
    margin-left: 0;
  }
}
@media screen and (min-width: 992px) {
  .mv__lead5 {
    margin-left: 0;
    margin-right: 0;
    font-size: 45px;
    letter-spacing: 3.8px;
  }
}

.mv__lead3-sub {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .mv__lead3-sub {
    font-size: 35px;
  }
}

@media screen and (min-width: 992px) {
  .mv__lead4-sub {
    font-size: 20px;
  }
}

.mv__lead4-sub2 {
  display: inline-block;
  position: relative;
  font-size: 21px;
}
@media screen and (min-width: 992px) {
  .mv__lead4-sub2 {
    font-size: 40px;
  }
}

.mv__lead4-sub2::before {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translate(-50%, 0);
  color: #00a5c3;
  font-size: 0.8em;
  content: "・";
}

.mv__lead2 {
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .mv__lead2 {
    margin-top: 14px;
  }
}

.mv__description {
  text-align: center;
  letter-spacing: 0.48px;
  font-weight: 700;
  margin-top: 26px;
}
@media screen and (min-width: 992px) {
  .mv__description {
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.54px;
    margin-top: 20px;
  }
}

.mv__deco {
  position: absolute;
  top: 540px;
  text-align: center;
}
.mv__deco img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .mv__deco {
    top: 230px;
    text-align: center;
  }
  .mv__deco img {
    width: 100px;
  }
}
@media screen and (min-width: 992px) {
  .mv__deco {
    top: 290px;
    text-align: center;
  }
  .mv__deco img {
    width: 180px;
  }
}

.mv__deco2 {
  position: absolute;
}
@media screen and (min-width: 992px) {
  .mv__deco2 {
    position: absolute;
    top: 450px;
    right: 330px;
    z-index: 50;
  }
  .mv__deco2 img {
    width: 180px;
  }
}

.mv__deco3 {
  position: absolute;
}
@media screen and (min-width: 992px) {
  .mv__deco3 {
    position: absolute;
    top: 140px;
    right: -460px;
    z-index: 50;
  }
  .mv__deco3 img {
    width: 180px;
  }
}

.mv__deco4 {
  position: absolute;
}
@media screen and (min-width: 992px) {
  .mv__deco4 {
    position: absolute;
    top: 150px;
    right: -200px;
    z-index: 50;
  }
  .mv__deco4 img {
    width: 180px;
  }
}

.mv__deco-sub {
  position: absolute;
  top: 0px;
  left: 150px;
}
.mv__deco-sub img {
  width: 450px;
}

.mv__button {
  margin-top: 0px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__button {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .mv__button {
    margin-right: 550px;
    margin-top: 165px;
  }
}
.mv__image {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__image {
    position: absolute;
    right: -200px;
    top: 60px;
    overflow: hidden;
  }
}
@media screen and (min-width: 992px) {
  .mv__image {
    position: absolute;
    text-align: right;
    bottom: 70px;
    right: -20px;
    top: 20px;
  }
}
.mv__image img {
  width: 345px;
  transform: scale(-1, 1);
  border-radius: 0px 420px 420px 0px;
}
@media screen and (min-width: 768px) {
  .mv__image img {
    width: 450px;
  }
}
@media screen and (min-width: 992px) {
  .mv__image img {
    width: 600px;
  }
}

.mv__image2 {
  position: absolute;
  right: 0px;
  top: 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .mv__image2 {
    width: 57.6923076923%;
    text-align: right;
    top: 0;
    right: -70px;
  }
}
.mv__image2 img {
  width: 345px;
}
@media screen and (min-width: 992px) {
  .mv__image2 img {
    width: 300px;
  }
}

.answer__inner {
  overflow: hidden;
  padding: 20px;
}

.answer-text {
  margin-top: 30px;
  position: relative;
}

.answer-text__bottom {
  background: #00a5c3;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 2px 0 2px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .answer-text__bottom {
    font-size: 23px;
  }
}
@media screen and (min-width: 992px) {
  .answer-text__bottom {
    font-size: 30px;
  }
}

@media screen and (min-width: 992px) {
  .answer-text__bottom-sp {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .answer-text__content {
    display: flex;
    flex-direction: row;
  }
  .answer-text__content img {
    display: block;
    width: 550px;
  }
}

.answer-text__title {
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .answer-text__title {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .answer-text__title {
    font-size: 35px;
    font-weight: 700;
  }
}

.answer-text__title2 {
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .answer-text__title2 {
    margin-top: 100px;
    font-size: 35px;
    font-weight: 700;
  }
}

.answer-text__title-fukidashi {
  position: absolute;
  top: 35px;
  left: 10px;
}
@media screen and (min-width: 992px) {
  .answer-text__title-fukidashi {
    top: 35px;
    left: 30px;
  }
}
.answer-text__title-fukidashi img {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .answer-text__title-fukidashi img {
    width: 170px;
  }
}
@media screen and (min-width: 992px) {
  .answer-text__title-fukidashi img {
    width: 200px;
  }
}

@media screen and (min-width: 768px) {
  .answer-text__img {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .answer-text__img {
    margin-left: auto;
  }
}
.answer-text__img img {
  width: 470px;
}
@media screen and (min-width: 992px) {
  .answer-text__img img {
    width: 600px;
  }
}

.answer-text__des-inner {
  position: relative;
}

.answer-text__des {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  .answer-text__des {
    font-size: 20px;
    margin-top: 40px;
  }
}

.answer-text__des-title {
  font-weight: 700;
  font-size: 25px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .answer-text__des-title {
    font-size: 30px;
  }
}

.answer-text__des-title-sub {
  font-size: 33px;
  color: #00a5c3;
}

.answer-text__des-title-sub2 {
  color: #00a5c3;
  font-weight: bold;
}

.answer-text__title-deco {
  color: #00a5c3;
  font-size: 50px;
}
@media screen and (min-width: 992px) {
  .answer-text__title-deco {
    font-size: 50px;
  }
}

.answer-text__title-deco2 {
  color: #00a5c3;
}

.answer-text__title-deco3 {
  border-bottom: solid;
  border-color: #00a5c3;
  border-width: 6px;
}

.answer__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 768px) {
  .answer__boxes {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .answer__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.answer__box {
  border-radius: 30px;
  background: #cbcbcb;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 992px) {
  .answer__box {
    border-radius: 40px;
    padding: 44px 40px 56px;
    gap: 15px;
  }
}

.review__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .review__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.review__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .review__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .review__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .review__box-title img {
    right: auto;
    left: 0;
  }
}

.answer__steps {
  display: block;
}
@media screen and (min-width: 992px) {
  .answer__steps {
    display: flex;
    margin-top: 15px;
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .answer__step {
    flex: 1;
  }
}

.answer__box-title {
  color: #000;
  font-weight: 700;
  position: relative;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .answer__box-title {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .answer__box-title {
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
  }
}
.answer__box-title img {
  width: 190px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 1px);
}
@media screen and (min-width: 992px) {
  .answer__box-title img {
    right: 8%;
    transform: translateX(0);
    bottom: -50px;
  }
}

.answer__box-title-sub {
  color: #000;
  font-weight: 700;
  font-size: 23px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .answer__box-title-sub {
    font-size: 30px;
  }
}

.answer__box-title-sub4 {
  font-size: 22px;
}

.answer-stepbox__image.answer-left img {
  width: 225px;
}
.answer-stepbox__image.answer-center img {
  width: 260px;
}

.answer-stepbox-box {
  padding-top: 45px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.answer-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.answer-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.answer-stepbox__body {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__body {
    padding: 47px 30px 23px;
  }
}

.answer-stepbox__image {
  text-align: center;
}
.answer-stepbox__image.answer-center {
  width: 100%;
}
.answer-stepbox__image.answer-left {
  text-align: end;
}
@media screen and (min-width: 768px) {
  .answer-stepbox__image.answer-left {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .answer-stepbox__image.answer-left {
    text-align: center;
  }
}
.answer-stepbox__image.answer-left2 img {
  width: 200px;
}
.answer-stepbox__image.answer-right img {
  width: 200px;
}
.answer-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__image img {
    width: 200px;
  }
}

.answer-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 19px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px #000, -2px 3px 3px #000;
}

.answer-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .answer-stepbox__text {
    font-weight: 350;
  }
}

.answer-text__title-small {
  display: block;
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .answer-text__title-small {
    margin-top: 60px;
    font-size: 30px;
  }
}

.answer-text-img {
  position: absolute;
  top: -120px;
  left: 0px;
  display: none;
}
.answer-text-img img {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .answer-text-img {
    top: -130px;
    left: 90px;
  }
  .answer-text-img img {
    width: 170px;
  }
}
@media screen and (min-width: 992px) {
  .answer-text-img {
    top: -90px;
    left: 40px;
  }
  .answer-text-img img {
    width: 200px;
  }
}

.answer-text__title-bold {
  background: #00a5c3;
  color: #fff;
}

.answer-text__title-sub {
  border-bottom: solid;
  border-color: #00a5c3;
  border-width: 5px;
}

.comparison__steps {
  display: block;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .comparison__steps {
    display: flex;
    gap: 20px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .comparison__steps {
    display: flex;
    text-align: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
  }
}

@media screen and (min-width: 992px) {
  .comparison__step {
    flex: 1;
    margin-top: 15px;
    gap: 50px;
  }
}

.comparison__box-title {
  color: #000;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 992px) {
  .comparison__box-title {
    text-align: center;
    font-size: 35px;
    margin-top: 20px;
  }
}
.comparison__box-title img {
  width: 190px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 1px);
}
@media screen and (min-width: 992px) {
  .comparison__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: -10px;
  }
}

.comparison-stepbox__image.answer-left img {
  width: 225px;
}
.comparison-stepbox__image.answer-center img {
  width: 260px;
}

.comparison-stepbox-box {
  padding-top: 45px;
  position: relative;
}

.comparison-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.comparison-stepbox__text-deco {
  border-bottom: solid;
  border-color: #00a5c3;
  border-width: 3px;
}

.comparison-stepbox__text-deco2 {
  border-bottom: solid;
  border-color: rgba(250, 0, 0, 0.6705882353);
  border-width: 3px;
}

.comparison-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.comparison-stepbox__body {
  margin-top: 30px;
  border-radius: 30px;
  border: 3px solid rgba(250, 0, 0, 0.6705882353);
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.comparison-stepbox__body.right {
  border: 3px solid #00a5c3;
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__body {
    width: 300px;
  }
}

.comparison-stepbox__image.answer-left img {
  width: 300px;
}
.comparison-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__image img {
    width: 200px;
  }
}

.comparison-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: #00a5c3;
}
.comparison-stepbox__title.wrong {
  color: rgba(250, 0, 0, 0.6705882353);
}

.comparison-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .comparison-stepbox__text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    padding-left: 30px;
  }
}

.review__boxes {
  margin-top: 34px;
  display: flex;
  flex-direction: row;
}
@media screen and (min-width: 992px) {
  .review__boxes {
    display: flex;
    flex-direction: column;
    gap: 112px;
    margin-top: 89px;
    gap: 75px;
  }
}

.review__box {
  border-radius: 30px;
  padding: 0px;
}
@media screen and (min-width: 768px) {
  .review__box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .review__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.review__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .review__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.review__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .review__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .review__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .review__box-title img {
    right: auto;
    left: 0;
  }
}

.review__steps {
  display: block;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .review__steps {
    display: flex;
    gap: 10px;
  }
}

.review__step {
  margin-top: 10px;
}
@media screen and (min-width: 992px) {
  .review__step {
    flex: 1;
  }
}

.review__box-title {
  color: #000;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .review__box-title {
    text-align: center;
    font-size: 35px;
  }
}

.review-stepbox__image.left img {
  width: 225px;
}
.review-stepbox__image.right img {
  width: 242px;
}
.review-stepbox__image img {
  width: 300px;
}

.review-stepbox-box {
  position: relative;
  padding-top: 5px;
}
@media screen and (min-width: 992px) {
  .review-stepbox-box {
    padding-top: 45px;
  }
}

.review-stepbox__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.review-stepbox__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .review-stepbox__body {
    padding: 47px 30px 23px;
  }
}

.review-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .review-stepbox__image img {
    width: 200px;
  }
}

.review-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: #00a5c3;
}

.review-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .review-stepbox__text {
    font-weight: 500;
  }
}

.review-stepbox_job {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.review-stepbox_job img {
  display: block;
  width: 10px;
  height: 10px;
}

.review-stepbox_job-img {
  display: block;
}
.review-stepbox_job-img img {
  width: 10px;
  height: 10px;
}

.review-stepbox_job-before {
  padding: 10px;
  background: #ddfaff;
  border-radius: 3px;
  font-size: 20px;
  width: 80px;
}

.review-stepbox_job-after {
  padding: 10px;
  background: rgba(255, 243, 135, 0.6431372549);
  border-radius: 3px;
  font-size: 20px;
  width: 80px;
}

.about {
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .about {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.about__title {
  text-align: center;
  padding-bottom: 50px;
  margin-top: 50px;
}
.about__title img {
  margin-top: 70px;
  width: 180px;
}
@media screen and (min-width: 992px) {
  .about__title img {
    width: 400px;
  }
}

.about-name_deco {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
  color: #00a5c3;
  background: #ffffff;
  padding: 10px;
  display: block;
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 8px 5px -5px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  margin-top: -234px;
}
@media screen and (min-width: 992px) {
  .about-name_deco {
    font-family: "Noto Sans JP", sans-serif;
    margin-left: 0;
    margin-right: 0;
    font-size: 32px;
    letter-spacing: 3.8px;
    padding: 12px 16px;
    margin-top: -130px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 8px 5px -5px rgba(0, 0, 0, 0.1);
  }
}

.about-name_deco2 {
  font-size: 18px;
  color: #000;
}

.about__content {
  margin-top: 150px;
  padding-top: 288px;
  padding-bottom: 105px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .about__content {
    margin-top: 146px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
}
.about__content::before {
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: #ddfaff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .about__content::before {
    width: 800px;
    height: 800px;
  }
}

.about__image {
  position: absolute;
  text-align: center;
  top: -250px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .about__image {
    top: -160px;
  }
}
.about__image img {
  width: 320px;
}
@media screen and (min-width: 992px) {
  .about__image img {
    width: 330px;
  }
}

.about__text-title {
  color: #00a5c3;
  font-weight: 700;
  font-size: 20px;
  padding: 0px 20px;
  text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
@media screen and (min-width: 992px) {
  .about__text-title {
    font-size: 25px;
  }
}

.about__text {
  font-weight: 700;
  line-height: 2.3;
  color: 0;
  margin-top: 50px;
}

.about__pop {
  margin-top: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 992px) {
  .about__pop {
    margin-top: 42px;
  }
}

.about__button {
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .about__button {
    margin-top: 16px;
  }
}
.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.how-to-use {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .how-to-use {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.how-to-use__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 992px) {
  .how-to-use__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.how-to-use__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .how-to-use__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
    width: 100%;
  }
}

.how-to-use__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.how-to-use__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .how-to-use__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .how-to-use__box-title img {
    right: auto;
    left: 0;
  }
}

.how-to-use__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .how-to-use__steps {
    margin-top: 40px;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
    gap: 3px;
  }
}

@media screen and (min-width: 992px) {
  .how-to-use__step {
    flex: 1;
  }
}

.step-box {
  padding-top: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-box {
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .step-box {
    height: 100%;
  }
}

.step-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  background: #00a5c3;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.is-type2 .step-box__head {
  background-color: #fabe00;
}

.step-box__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.3px;
}

.step-box__head-number {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}

.step-box__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}

.step-box__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .step-box__image img {
    width: 200px;
  }
}

.step-box__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: #fff;
  background: #00a5c3;
}

.step-box__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .step-box__text {
    font-weight: 350;
    text-align: left;
  }
}

.merit {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .merit {
    padding-top: 100px;
    padding-bottom: 98px;
  }
}

.merit-heading__en {
  font-size: 5px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.8px;
  color: #00a5c3;
}
@media screen and (min-width: 992px) {
  .merit-heading__en {
    font-size: 20px;
    letter-spacing: 5px;
  }
}

.merit-heading__ja {
  font-size: 25px;
  color: #00a5c3;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .merit-heading__ja {
    font-size: 40px;
    letter-spacing: 5px;
  }
}

.merit__boxes {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .merit__boxes {
    margin-top: 60px;
    gap: 40px;
  }
}

.merit__boxes-sub {
  gap: 25px;
  padding: 10px;
  text-align: center;
}

.merit-box-sub {
  background: #fff;
}

.merit__box-sub {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .merit__box-sub {
    margin-top: 60px;
    display: flex;
    gap: 40px;
  }
}

.merit-box {
  border-radius: 20px;
  background: #fff;
  padding: 10px 20px 24px;
}
@media screen and (min-width: 768px) {
  .merit-box {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .merit-box {
    padding: 20px 18px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .merit-box.is-reverse {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .merit-box__content {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .is-reverse .merit-box__content {
    flex-direction: row;
  }
}

@media screen and (min-width: 992px) {
  .merit-box__content-sub {
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .is-reverse .merit-box__content-sub {
    flex-direction: row;
  }
}

.merit-box__text-deco {
  color: #00a5c3;
  font-weight: 700;
}

.merit-box__image {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .merit-box__image {
    width: 38.0434782609%;
  }
}
.merit-box__image img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .merit-box__image img {
    width: 300px;
  }
}
@media screen and (min-width: 992px) {
  .merit-box__image img {
    width: 350px;
  }
}

.merit-box__body {
  margin-top: 18px;
}
@media screen and (min-width: 992px) {
  .merit-box__body {
    margin-top: 0;
    width: 56.5217391304%;
  }
}

.merit-box__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (min-width: 992px) {
  .merit-box__head {
    gap: 28px;
  }
}

.merit-box__number {
  color: #00a5c3;
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 992px) {
  .merit-box__number {
    font-size: 60px;
  }
}

.merit-box__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 992px) {
  .merit-box__title {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

.merit-box__title-sub {
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .merit-box__title-sub {
    font-size: 24px;
  }
}

.merit-box__title-sub2 {
  font-size: 23px;
}
@media screen and (min-width: 992px) {
  .merit-box__title-sub2 {
    font-size: 35px;
  }
}

.merit-box__title-border {
  font-size: 28px;
  border-bottom: solid;
  border-color: #00a5c3;
  border-width: 8px;
}
@media screen and (min-width: 768px) {
  .merit-box__title-border {
    font-size: 35px;
  }
}
@media screen and (min-width: 992px) {
  .merit-box__title-border {
    font-size: 35px;
  }
}

.merit-box__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 200%;
}
@media screen and (min-width: 992px) {
  .merit-box__text {
    margin-top: 16px;
    font-size: 17px;
  }
}

.plan {
  background: #fff;
}

.how-to-use__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 992px) {
  .how-to-use__boxes {
    margin-top: 89px;
    gap: 5px;
  }
}

.how-to-use__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 992px) {
  .how-to-use__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.how-to-use__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.how-to-use__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .how-to-use__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .how-to-use__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .how-to-use__box-title img {
    right: auto;
    left: 0;
  }
}

.benefits__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .benefits__steps {
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .benefits__steps {
    margin-top: 40px;
    max-width: 948px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 992px) {
  .benefits__step {
    flex: 1;
  }
}

.benefits-stepbox {
  padding-top: 45px;
  position: relative;
}

.benefits-stepbox__body {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 30px 23px;
  text-align: center;
}

.benefits-stepbox__image img {
  width: 160px;
}
@media screen and (min-width: 992px) {
  .benefits-stepbox__image img {
    width: 200px;
  }
}

.benefits-stepbox__head {
  background: #00a5c3;
  color: #f5f5f5;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}

.benefits-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
  font-size: 20px;
  color: #00a5c3;
}

.benefits-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .benefits-stepbox__text {
    font-weight: 350;
  }
}

.compare {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .compare {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.compare__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .compare__title {
    font-size: 24px;
  }
}

.compare__content {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 38px;
}
@media screen and (min-width: 992px) {
  .compare__content {
    margin-top: 60px;
    padding-bottom: 0;
  }
}

.compare__table {
  width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 992px) {
  .compare__table {
    width: 1000px;
  }
}
.compare__table th,
.compare__table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
}
@media screen and (min-width: 992px) {
  .compare__table th,
  .compare__table td {
    height: 100px;
  }
}
.compare__table th:nth-child(1),
.compare__table td:nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(1),
  .compare__table td:nth-child(1) {
    width: 250px;
  }
}
.compare__table th:nth-child(2),
.compare__table td:nth-child(2) {
  width: 150px;
  background: #ddfaff;
  font-size: 16px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(2),
  .compare__table td:nth-child(2) {
    width: 300px;
    font-size: 45px;
    letter-spacing: 0.75px;
    color: #00a5c3;
  }
}
.compare__table th:nth-child(2) img,
.compare__table td:nth-child(2) img {
  width: 70px;
}
@media screen and (min-width: 992px) {
  .compare__table th:nth-child(2) img,
  .compare__table td:nth-child(2) img {
    width: 123px;
  }
}
.compare__table th {
  letter-spacing: 0.48px;
}
@media screen and (min-width: 992px) {
  .compare__table th {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}
.compare__table td {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 992px) {
  .compare__table td {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.compare__table thead th {
  letter-spacing: 1.6px;
}
@media screen and (min-width: 992px) {
  .compare__table thead th {
    letter-spacing: 2px;
  }
}
.compare__table tbody tr {
  border-top: 1.5px solid #000;
}
@media screen and (min-width: 992px) {
  .compare__table tbody tr {
    border-top-width: 3px;
  }
}
.compare__table tbody th,
.compare__table tbody td {
  height: 58.5px;
}
@media screen and (min-width: 992px) {
  .compare__table tbody th,
  .compare__table tbody td {
    height: 100px;
  }
}

@media screen and (min-width: 992px) {
  .compare-tr__td {
    font-size: 20px;
    color: #00a5c3;
    font-weight: 300;
  }
}

.compare__attention {
  margin-top: 11px;
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .compare__attention {
    display: none;
  }
}

.qa {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .qa {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 992px) {
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
}

.qa__boxes {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 992px) {
  .qa__boxes {
    margin-top: 74px;
  }
}

.qa-box {
  border-radius: 4px;
  border: 3px solid #111;
  background: #fff;
}
.qa-box.is-open .qa-box__head::after {
  transform: rotate(0deg);
}

.qa-box__head {
  padding: 29px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .qa-box__head {
    padding: 29px 77px 17px 17px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa-arrow.png) no-repeat center center/contain;
  transform: rotate(180deg);
  margin-top: 3px;
}
@media screen and (min-width: 992px) {
  .qa-box__head::after {
    right: 22px;
    right: 18px;
    margin-top: 2px;
  }
}

.qa-box__head-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #00a5c3;
  position: absolute;
  top: -26px;
  left: 12px;
  color: #000;
}
@media screen and (min-width: 992px) {
  .qa-box__head-icon {
    left: 17px;
  }
}

.qa-box__head-text {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  color: #000;
}
@media screen and (min-width: 992px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media screen and (min-width: 992px) {
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
}

.qa-box__a {
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 992px) {
  .qa-box__a {
    gap: 10px;
  }
}

.qa-box__a-icon {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #ddfaff;
  flex-shrink: 0;
}

.qa-box__a-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  flex-grow: 1;
  padding-top: 10px;
}
@media screen and (min-width: 992px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
}

.contact {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__box {
  border-radius: 30px;
  background: #fff;
  padding: 60px 20px;
}
@media screen and (min-width: 992px) {
  .contact__box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.contact__form {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  .contact__form {
    margin-top: 50px;
    max-width: 612px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__privacy {
  margin-top: 29px;
  text-align: center;
}

.contact__button {
  margin-top: 29px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .contact__button {
    margin-top: 38px;
  }
}

@media screen and (min-width: 992px) {
  .form-field {
    display: flex;
    gap: 32px;
  }
}

.form-field__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 992px) {
  .form-field__head {
    width: 180px;
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.form-field__label {
  font-weight: 700;
  line-height: 1.4375;
}

.form-field__tag {
  display: inline-block;
  border-radius: 2px;
  background: #00a5c3;
  padding: 6px 8px 5px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.98px;
}

.form-field__item {
  margin-top: 15px;
  flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 12px 13px 11px;
  transition: border-color 0.3s;
}
.form-text:hover, .form-text:focus {
  border-color: #00a5c3;
  outline: none;
}

.from-radio {
  line-height: 1.4375;
}
.from-radio:hover .from-radio__text::before {
  border-color: #00a5c3;
}

.from-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}

.from-radio__text {
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  left: 0;
  transition: border-color 0.3s;
}
.from-radio__text::after {
  width: 10px;
  height: 10px;
  background: #00a5c3;
  left: 7px;
  opacity: 0;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 12px 43px 11px 13px;
  background: url(../img/select-arrow.png) no-repeat center right 14px/13.217px 10.182px;
  transition: border-color 0.3s;
}
.form-select:hover, .form-select:focus {
  border-color: #00a5c3;
  outline: none;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  width: 100%;
  height: 180px;
  padding: 13px;
  transition: border-color 0.3s;
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #00a5c3;
  outline: none;
}

.form-field__radios {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 992px) {
  .form-field__radios {
    flex-direction: row;
    gap: 30px;
  }
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #00a5c3;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #00a5c3;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  transition: border-color 0.3s;
}
@media screen and (min-width: 992px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 992px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: 700;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #00a5c3;
}

.cta {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 992px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cta-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.cta-content__text {
  position: relative;
  z-index: 50;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .cta-content__text {
    padding-top: 40px;
    text-align: center;
  }
}

.cta-content__img img {
  width: 300px;
}

.cta-content__text {
  z-index: -1;
}
.cta-content__text img {
  max-width: 1500px;
  display: block;
  filter: brightness(0.4);
}

.cat__text {
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.48px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 800px;
}
@media screen and (min-width: 992px) {
  .cat__text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cat__button {
  margin-top: 16px;
}

.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
}

.footer__copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.96px;
}

.pagetop {
  position: fixed;
  right: -100px;
  bottom: 10px;
  width: min(13.3333333333%, 50px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop img {
  width: 175px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 200px;
    bottom: 30px;
    width: 20px;
  }
}
@media screen and (min-width: 992px) {
  .pagetop {
    right: 200px;
    bottom: 30px;
    width: 20px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow: auto;
  padding: 16px 15px 64px;
  border-radius: 20px;
  background: #fff;
  border: none;
  z-index: 60;
}
@media screen and (min-width: 992px) {
  .about-modal {
    width: 1140px;
    padding: 49px 70px 75px;
  }
}
.about-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.about-modal__head {
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
}

.about-modal__close-icon img {
  width: 37px;
}

.about-modal__body {
  margin-top: 12px;
}
@media screen and (min-width: 992px) {
  .about-modal__body {
    margin-top: 43px;
  }
}
.about-modal__body p {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .about-modal__body p {
    font-size: 16px;
  }
}
.about-modal__body p:nth-child(n+2) {
  margin-top: 20px;
}

.about-modal__close-button {
  margin-top: 30px;
  text-align: center;
}

.fade-in-up {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-down {
  opacity: 1;
  transform: translateY(-24px);
  transition: opacity 1s, transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}

@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before,
.spots::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}

@media screen and (min-width: 900px) {
  .spots::before,
  .spots::after {
    height: 120px;
    background-position: left center;
  }
}
.spots::before {
  top: 1px;
  background-image: url(../img/deco_wave-top_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}

@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/deco_wave-top_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image: url(../img/deco_wave-bottom_sp.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-position: left -6px center;
}

@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/deco_wave-bottom_pc.svg), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}
.spots__decoration-pawpads {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 80px;
}

@media screen and (min-width: 1200px) {
  .spots__decoration-pawpads {
    bottom: 120px;
    left: calc(50% - 720px);
    width: 100px;
  }
}
.spots__outer {
  padding-bottom: 14.86px;
  background-color: #67b0c7;
}

@media screen and (min-width: 900px) {
  .spots__outer {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .spots__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 900px) {
  .spots__top {
    display: flex;
    -moz-column-gap: 32px;
    column-gap: 32px;
    padding-left: max(30px, 50% - 512px);
  }
}
.spots__heading-wrap {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    width: 56px;
  }
}
.spots__heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
    writing-mode: vertical-lr;
  }
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/icon_star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translateX(-50%);
  }
}
.spots__slider {
  margin-top: 25px;
}

@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}
.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
  }
}
.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .spots__bottom {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    margin-top: 40px;
  }
}
.spots__decoration-english {
  display: block;
  width: 254px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

@media screen and (min-width: 900px) {
  .spots__decoration-english {
    width: 360px;
    margin-top: -45px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-english {
    width: 494px;
    margin: 0;
  }
}
.spots__text-wrap {
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    margin-top: 0;
  }
}
.spots__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}
.spots__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 1200px) {
  .spots__button {
    text-align: right;
  }
}
.spots-swiper__slide {
  height: auto;
}

.spots-swiper-arrows {
  display: flex;
  justify-content: space-between;
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 27px;
  border-radius: 50%;
  transition: background-position 0.3s;
}

.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "";
}

.spots-swiper-arrows__prev {
  background-image: url(../img/icon_arrow-left.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__prev:hover {
    background-position: center left 40%;
  }
}
.spots-swiper-arrows__next {
  background-image: url(../img/icon_arrow-right.svg);
}

@media (hover: hover) {
  .spots-swiper-arrows__next:hover {
    background-position: center right 40%;
  }
}
.spots-card {
  height: 100%;
  padding-right: 24px;
  padding-bottom: 30px;
  padding-left: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

@media screen and (min-width: 900px) {
  .spots-card {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}
.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}

@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots-card__heading {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots-card__heading {
    margin-top: 25px;
    font-size: 20px;
  }
}
.spots-card__text {
  margin-top: 16px;
}

@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 25px;
  }
}
.spots-text-decoration-english {
  font-family: "Josefin Sans", sans-serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  letter-spacing: 7.2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1.14px;
}

@media screen and (min-width: 900px) {
  .spots-text-decoration-english {
    -webkit-text-stroke-width: 2px;
    font-size: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-text-decoration-english {
    font-size: 140px;
  }
}
.plan {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 992px) {
  .plan {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.plan-title__text-under {
  border-bottom: 6px solid #00a5c3;
}

.plan__boxes {
  margin-top: 104px;
  display: flex;
  flex-direction: column;
  gap: 112px;
}
@media screen and (min-width: 768px) {
  .plan__boxes {
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .plan__boxes {
    margin-top: 89px;
    gap: 75px;
  }
}

.plan__box {
  border-radius: 30px;
  background: #ddfaff;
  padding: 54px 40px 48px;
}
@media screen and (min-width: 992px) {
  .plan__box {
    border-radius: 40px;
    padding: 44px 10px 56px;
  }
}

.plan-title__text-bold {
  color: #00a5c3;
  font-weight: 1000;
}

.plan-title__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-top: 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-title__text {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .plan-title__text {
    font-size: 25px;
    margin-bottom: 50px;
    text-align: center;
  }
}

.plan__box-title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .plan__box-title {
    font-size: 25px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.plan__box-title img {
  width: 110px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: calc(100% + 16px);
}
@media screen and (min-width: 992px) {
  .plan__box-title img {
    right: 0;
    transform: translateX(0);
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .is-type2 .plan__box-title {
    padding-right: 0;
    padding-left: 95px;
  }
  .is-type2 .plan__box-title img {
    right: auto;
    left: 0;
  }
}

.plan__steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .plan__steps {
    width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-inline: auto;
  }
}
@media screen and (min-width: 992px) {
  .plan__steps {
    display: flex;
    margin-top: 40px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    gap: 30px;
  }
}

.plan__step {
  border-radius: 9px;
}
.plan__step.left {
  border: 6px solid rgba(0, 204, 255, 0.4470588235);
}
.plan__step.center {
  border: 6px solid #00ccff;
}
.plan__step.right {
  border: 6px solid #00a5c3;
}
.plan__step.right2 {
  border: 6px solid #003366;
}
@media screen and (min-width: 768px) {
  .plan__step {
    max-width: 500px;
  }
}
@media screen and (min-width: 992px) {
  .plan__step {
    max-width: 900px;
    flex: 1;
  }
}

.plan-stepbox {
  position: relative;
}
@media screen and (min-width: 992px) {
  .plan-stepbox {
    max-width: 900px;
  }
}

.plan-stepbox__head {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  padding: 20px 10px 20px;
}
.plan-stepbox__head.left {
  background: rgba(0, 204, 255, 0.4470588235);
}
.plan-stepbox__head.center {
  background: #00ccff;
}
.plan-stepbox__head.right {
  background: #00a5c3;
}
.plan-stepbox__head.right2 {
  background: #003366;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head {
    height: 30px;
  }
}

.plan-stepbox__head-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 3.4px;
  color: #fff;
  margin-top: 3px;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head-text {
    font-size: 31px;
  }
}

@media screen and (min-width: 992px) {
  .plan-stepbox__body3 img {
    width: 10px;
  }
}

.plan-stepbox__head-text3 {
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .plan-stepbox__head-text3 {
    font-size: 15px;
  }
}
@media screen and (min-width: 992px) {
  .plan-stepbox__head-text3 {
    font-size: 19px;
  }
}

@media screen and (min-width: 992px) {
  .plan-stepbox__head-text3-sub {
    font-size: 13px;
  }
}

.plan-stepbox__body {
  padding: 47px 30px 23px;
  text-align: center;
}
.plan-stepbox__body img {
  width: 150px;
}

.plan-stepbox__title {
  font-weight: 700;
  letter-spacing: 0.48px;
  font-size: 35px;
  color: #000;
}
.plan-stepbox__title.left {
  color: rgba(0, 204, 255, 0.4470588235);
}
.plan-stepbox__title.center {
  color: #00ccff;
}
.plan-stepbox__title.right {
  color: #00a5c3;
}
.plan-stepbox__title.right2 {
  color: #003366;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__title {
    font-size: 50px;
  }
}

.plan-stepbox__title-text {
  font-style: 100;
  color: #000;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .plan-stepbox__title-text {
    font-size: 20px;
  }
}

.plan-stepbox__text {
  font-weight: 300;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: left;
}

/* 前への矢印 */
.swiper-button-prev {
  left: -30px;
}

/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}

/* ページネーション */
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -25px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  position: relative;
}

.swiper {
  max-width: 500px;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}/*# sourceMappingURL=style.css.map */