@charset "UTF-8";
body {
  font-family: "Noto Sans JP";
  color: #4a3636;
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
}

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

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

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

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

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.link {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.link:hover {
  color: #67b0c7;
}

.font-weight {
  font-weight: 700;
}

.head {
  text-align: center;
}

.head__icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 1025px) {
  .head__icon img {
    width: 48px;
    height: 48px;
  }
}

.head__text-en {
  margin-top: 6px;
  font-family: "Courgette";
  line-height: 125%;
}
@media screen and (min-width: 1025px) {
  .head__text-en {
    margin-top: 8px;
    font-size: 20px;
  }
}

.head__text-ja {
  margin-top: 6px;
  display: inline-block;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 1025px) {
  .head__text-ja {
    margin-top: 8px;
    font-size: 32px;
  }
}

.button {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 22px 6px;
  border-radius: 40px;
  border: 2px solid currentColor;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background-color: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.button:hover {
  background: #ffee56;
}

.button-type2 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 22px 6px;
  border-radius: 40px;
  border: 2px solid currentColor;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background-color: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .button-type2 {
    font-size: 20px;
    border: 3px solid currentColor;
    padding: 7px 37px 9px;
  }
}
.button-type2:hover {
  background: #ffee56;
}

.header {
  padding-top: 16px;
  padding-bottom: 16px;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.header__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1560px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  display: block;
  width: 210px;
}
@media screen and (min-width: 1025px) {
  .header__logo img {
    width: 183px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__nav {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.header__nav-item {
  font-size: 12px;
  -webkit-transition: color 0.3s, border-bottom 0.3s;
  transition: color 0.3s, border-bottom 0.3s;
}
.header__nav-item:hover {
  text-decoration: underline;
  color: #67b0c7;
}

.header__nav-button {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 700;
}

.header__drawer-icon {
  position: relative;
  width: 32px;
  height: 32px;
}
.header__drawer-icon.is-checked span:nth-child(1) {
  opacity: 0;
}
.header__drawer-icon.is-checked span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}
.header__drawer-icon.is-checked span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}
@media screen and (min-width: 1025px) {
  .header__drawer-icon {
    display: none;
  }
}

.header__drawer-icon-bar {
  width: 32px;
  height: 3px;
  position: absolute;
  top: 2.5px;
  left: 0;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, opacity 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, opacity 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, opacity 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, opacity 0.3s linear, -webkit-transform 0.3s linear;
}

.header__drawer-icon-bar:nth-of-type(1) {
  width: 25.6px;
}
.header__drawer-icon-bar:nth-of-type(1)::after {
  content: "";
  width: 4.8px;
  height: 3px;
  position: absolute;
  top: 0;
  right: -6.5px;
  border-radius: 6px;
  background: #4a3636;
}

.header__drawer-icon-bar:nth-of-type(2) {
  top: 14.5px;
}

.header__drawer-icon-bar:nth-of-type(3) {
  top: 26.5px;
}

.header__drawer {
  margin-top: 64px;
  padding-top: 82px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: #fff;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
}
.header__drawer.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
}

.header__drawer-nav-item {
  font-size: 14px;
}

.fv {
  background-color: #e9f6f8;
  padding-bottom: 145px;
}
@media screen and (min-width: 1025px) {
  .fv {
    padding-bottom: 97px;
  }
}

.fv__inner {
  height: 556px;
  border-radius: 0px 0px 24px 24px;
  background: url("../img/fv-bg-sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 1025px) {
  .fv__inner {
    height: 740px;
    border-radius: 0px 0px 40px 40px;
    background: url(../img/fv-bg-pc.jpg) no-repeat center center/cover;
  }
}

.fv__boxes {
  text-align: center;
  padding-top: 18px;
}
@media screen and (min-width: 1025px) {
  .fv__boxes {
    padding-top: 35px;
  }
}

.fv__box-head__text {
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 125%;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 121%;
  }
}

.fv__box-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__title {
    gap: 16px;
  }
}
.fv__box-head__title :nth-child(1) {
  margin-top: 20px;
  width: 89.3333333333%;
  max-width: 335px;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__title :nth-child(1) {
    margin-top: 24px;
    width: 520px;
    max-width: none;
  }
}
.fv__box-head__title :nth-child(2) {
  width: 64%;
  max-width: 240px;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__title :nth-child(2) {
    width: 356px;
    max-width: none;
  }
}

.fv__box-head__fukidashi-box {
  position: absolute;
  top: -90px;
  left: -45px;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__fukidashi-box {
    top: -24px;
    left: -226px;
  }
}

.fv__box-head__fukidashi {
  color: #ce2073;
  text-align: right;
  font-family: "Josefin Sans";
  font-size: 18.361px;
  font-weight: 400;
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__fukidashi {
    font-size: 32px;
  }
}
.fv__box-head__fukidashi::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -36px;
  width: 142.672px;
  height: 77.519px;
  background: url("../img/fv-fukidashi-Vector.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .fv__box-head__fukidashi::before {
    top: -6px;
    right: -63px;
    width: 240px;
    height: 125.969px;
  }
}

.fv__box-body {
  position: relative;
}

.fv__box-body__main {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 113px;
  width: 200px;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__main {
    width: 250px;
    top: 34px;
  }
}

.fv__box-body__sub {
  position: relative;
}
.fv__box-body__sub :nth-child(1) {
  position: absolute;
  bottom: 6px;
  left: -25px;
  width: 47.257px;
  height: 124.012px;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__sub :nth-child(1) {
    width: 111px;
    height: 292px;
    bottom: 23px;
    left: -198px;
  }
}
.fv__box-body__sub :nth-child(2) {
  position: absolute;
  bottom: -10px;
  left: -68px;
  width: 54.069px;
  height: 52.238px;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__sub :nth-child(2) {
    width: 127px;
    height: 123px;
    bottom: -15px;
    left: -298px;
  }
}
.fv__box-body__sub :nth-child(3) {
  position: absolute;
  bottom: 47px;
  right: -67px;
  width: 62px;
  height: 69px;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__sub :nth-child(3) {
    width: 170px;
    height: 190px;
    bottom: 44px;
    right: -236px;
  }
}
.fv__box-body__sub :nth-child(4) {
  position: absolute;
  bottom: -11px;
  right: -58px;
  width: 98px;
  height: 72px;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__sub :nth-child(4) {
    width: 233px;
    height: 174px;
    bottom: -60px;
    right: -299px;
  }
}
.fv__box-body__sub :nth-child(5) {
  position: absolute;
  bottom: 401px;
  right: -42px;
  width: 110px;
  height: 110px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .fv__box-body__sub :nth-child(5) {
    width: 180px;
    height: 180px;
    bottom: 346px;
    right: -172px;
  }
}

.about {
  padding-top: 41px;
  padding-bottom: 32.8px;
  background-color: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .about {
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.about__inner {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .about__inner {
    max-width: 908px;
    padding-right: 30px;
    padding-left: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__box {
  display: block;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .about__box {
    padding-top: 40px;
    padding-bottom: 41px;
    padding-left: 114px;
    padding-right: 114px;
    border-radius: 40px;
  }
}

.about__head__text-ja {
  position: relative;
}
.about__head__text-ja::before {
  content: "";
  position: absolute;
  top: -78px;
  left: -36px;
  width: 90px;
  height: 71px;
  background: url("../img/about__img-top1.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .about__head__text-ja::before {
    width: 146px;
    height: 124px;
    top: -94px;
    left: -180px;
  }
}
.about__head__text-ja::after {
  content: "";
  position: absolute;
  top: -79px;
  right: -48px;
  width: 90px;
  height: 71px;
  background: url("../img/about__img-top2.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .about__head__text-ja::after {
    width: 146px;
    height: 124px;
    top: -86px;
    right: -180px;
  }
}

.about__body {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .about__body {
    margin-top: 36px;
  }
}

.about__body-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .about__body-title {
    font-size: 16px;
    letter-spacing: -0.3px;
  }
}

.about__body-text {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .about__body-text {
    font-size: 16px;
  }
}

.about-text1 {
  margin-top: 23px;
}
@media screen and (min-width: 1025px) {
  .about-text1 {
    margin-top: 32px;
  }
}

.about-text2 {
  margin-top: 19px;
}
@media screen and (min-width: 1025px) {
  .about-text2 {
    margin-top: 28px;
  }
}

.about-text3 {
  margin-top: 18px;
}
@media screen and (min-width: 1025px) {
  .about-text3 {
    margin-top: 25px;
  }
}

.about-text4 {
  margin-top: 18px;
}
@media screen and (min-width: 1025px) {
  .about-text4 {
    margin-top: 28px;
  }
}

.about__body-textsub {
  margin-top: 23px;
  margin-bottom: 31.5px;
  font-size: 14px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 2px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .about__body-textsub {
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 32px;
    margin-bottom: 33px;
  }
}
.about__body-textsub::after {
  content: "";
  height: 3px;
  width: 249px;
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-size: 8px 2px;
  background-image: linear-gradient(to right, #9ed0e0, #9ed0e0 2px, transparent 3px, transparent 6px, #9ed0e0 7px, #9ed0e0 8px);
  background-repeat: repeat-x;
}
@media screen and (min-width: 1025px) {
  .about__body-textsub::after {
    width: 356px;
    bottom: 0;
  }
}

.about__button {
  display: block;
}

.about__images :nth-child(1) {
  width: 54px;
  height: 120px;
  position: absolute;
  top: -10px;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(1) {
    width: 100px;
    height: 220px;
    top: -80px;
    right: -137px;
  }
}
.about__images :nth-child(2) {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 274px;
  right: -140px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(2) {
    width: 480px;
    height: 480px;
    top: 73px;
    right: -586px;
  }
}
.about__images :nth-child(3) {
  position: absolute;
  width: 224px;
  height: auto;
  bottom: -238px;
  left: -59px;
  z-index: -2;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(3) {
    width: 427px;
    height: auto;
    bottom: -259px;
    left: -404px;
  }
}
.about__images :nth-child(4) {
  width: 133px;
  height: 65.003px;
  position: absolute;
  bottom: -82px;
  right: 57px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(4) {
    width: 308px;
    height: 150.604px;
    bottom: -29px;
    right: -228px;
  }
}
.about__images :nth-child(5) {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: -23px;
  right: 21px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(5) {
    width: 101px;
    height: 100.047px;
    bottom: 178px;
    right: -151px;
  }
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(6) {
    width: 250px;
    height: 250px;
    position: absolute;
    top: -20px;
    left: -323px;
    z-index: -2;
  }
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(7) {
    width: 806.851px;
    height: 12.006px;
    position: absolute;
    bottom: 260px;
    right: -867px;
    z-index: -2;
  }
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(8) {
    width: 806.851px;
    height: 12.006px;
    position: absolute;
    bottom: 227px;
    right: -800px;
    z-index: -2;
  }
}
.about__images :nth-child(9) {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 395px;
  left: -140px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .about__images :nth-child(10) {
    position: absolute;
    top: 73px;
    left: -639px;
    z-index: -1;
    width: 480px;
    height: 480px;
  }
}

.about__arrow {
  margin-bottom: 140.87px;
}
@media screen and (min-width: 1025px) {
  .about__arrow {
    margin-bottom: 208px;
  }
}
.about__arrow img {
  width: 100px;
  height: 36px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .about__arrow img {
    width: 140px;
    height: 50px;
  }
}

.about__swiper-box {
  position: relative;
}
.about__swiper-box::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 95.4666666667%;
  max-width: 358px;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/about-img_onomichi.png") no-repeat center center/contain;
  z-index: 11;
}
@media screen and (min-width: 1025px) {
  .about__swiper-box::before {
    width: 890.604px;
    height: 97px;
    top: -94px;
    max-width: none;
  }
}

.about__swiper {
  overflow: unset;
  z-index: 10;
}

.about__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about__swiper-slide img {
  width: 100px;
}
@media screen and (min-width: 1025px) {
  .about__swiper-slide img {
    width: 200px;
  }
}

.step {
  background: #e9f6f8;
  padding-top: 31px;
  padding-bottom: 37.67px;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .step {
    padding-top: 120px;
  }
}

.step__head {
  position: relative;
}
.step__head::before {
  content: "";
  position: absolute;
  top: 0px;
  right: calc(50% - 163px);
  width: 105px;
  height: 63px;
  background: url("../img/step-img-cat1.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .step__head::before {
    width: 238px;
    height: 141px;
    top: -26px;
    right: -12px;
  }
}
.step__head::after {
  content: "";
  position: absolute;
  top: 5px;
  right: calc(50% - 218px);
  width: 94px;
  height: 80px;
  background: url("../img/step-img-cat2.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .step__head::after {
    width: 214px;
    height: 181.104px;
    top: -17px;
    right: -138px;
  }
}

.step__boxes {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .step__boxes {
    margin-top: 45px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.step__box {
  padding-top: 30.8px;
  padding-bottom: 16px;
}
@media screen and (min-width: 1025px) {
  .step__box {
    width: 320px;
    padding-top: 44px;
    padding-bottom: 17.37px;
  }
}

.step__box1 {
  position: relative;
  z-index: 10;
}
.step__box1::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 196px;
  height: 210.519px;
  margin: 0 auto;
  background: url("../img/step-bg-cat1.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .step__box1::before {
    width: 280px;
    height: 300.741px;
  }
}

.step__box2 {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .step__box2 {
    margin-top: 69px;
  }
}
.step__box2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 196px;
  height: 210.519px;
  margin: 0 auto;
  background: url("../img/step-bg-cat2.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .step__box2::before {
    width: 280px;
    height: 300.741px;
  }
}

.step__box3 {
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.step__box3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 196px;
  height: 210.519px;
  margin: 0 auto;
  background: url("../img/step-bg-cat3.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .step__box3::before {
    width: 280px;
    height: 300.741px;
  }
}

.step-text2 {
  padding-left: 4px;
}
@media screen and (min-width: 1025px) {
  .step-text2 {
    margin-bottom: 18px;
  }
}

.step__box-head-text {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 14px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 1025px) {
  .step__box-head-text {
    font-size: 20px;
  }
}

.step__box-head-num {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .step__box-head-num {
    font-size: 56px;
  }
}

.box__head-img {
  display: block;
  margin-top: -2px;
}
.box__head-img img {
  width: 112px;
  height: 112px;
}
@media screen and (min-width: 1025px) {
  .box__head-img img {
    width: 160px;
    height: 160px;
  }
}

.box__head-img1 {
  position: relative;
}
.box__head-img1::before {
  content: "";
  position: absolute;
  top: -225px;
  left: calc(50% - 189px);
  width: 149px;
  height: 223px;
  background: url("../img/step-img-map.png") no-repeat center center/contain;
  z-index: -2;
}
@media screen and (min-width: 1025px) {
  .box__head-img1::before {
    background: url("../img/step-img-map-pc.png") no-repeat center center/contain;
    width: 420px;
    height: 628.496px;
    top: -369px;
    left: -209px;
  }
}
.box__head-img1::after {
  content: "";
  position: absolute;
  top: -152px;
  right: calc(50% - 167px);
  width: 55px;
  height: 120px;
  background: url("../img/step-img-ashiato-leftup.png") no-repeat center center/contain;
  z-index: -2;
}
@media screen and (min-width: 1025px) {
  .box__head-img1::after {
    width: 100px;
    height: 220px;
    -webkit-transform: scale(-1, -1);
            transform: scale(-1, -1);
    top: 271px;
    left: -208px;
  }
}

.box__head-img2 {
  position: relative;
}
.box__head-img2::before {
  content: "";
  position: absolute;
  top: -143px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 78px;
  background: url("../img/step-img-line.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .box__head-img2::before {
    width: 113px;
    background: url("../img/step-img-line-pc.png") no-repeat center center/contain;
    top: -16px;
    left: -40px;
  }
}
.box__head-img2::after {
  content: "";
  position: absolute;
  bottom: -217px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 78px;
  background: url("../img/step-img-line.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .box__head-img2::after {
    width: 113px;
    background: url("../img/step-img-line-pc.png") no-repeat center center/contain;
    top: -16px;
    left: 320px;
  }
}

.box__head-img3 {
  position: relative;
}
.box__head-img3::before {
  content: "";
  position: absolute;
  top: -499px;
  left: calc(50% - 168px);
  width: 55px;
  height: 120.12px;
  background: url("../img/step-img-ashiato-leftup.png") no-repeat center center/contain;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
@media screen and (min-width: 1025px) {
  .box__head-img3::before {
    display: none;
  }
}
.box__head-img3::after {
  content: "";
  position: absolute;
  top: -170px;
  right: calc(50% - 167px);
  width: 55px;
  height: 120.12px;
  background: url("../img/step-img-ashiato-leftup.png") no-repeat center center/contain;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 1025px) {
  .box__head-img3::after {
    width: 100px;
    height: 220px;
    top: -163px;
    right: -207px;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.step__box-body {
  margin-top: 27.2px;
}
@media screen and (min-width: 1025px) {
  .step__box-body {
    margin-top: 41px;
  }
}

.step__box-body-title {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .step__box-body-title {
    font-size: 20px;
  }
}

.step__box-body-text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .step__box-body-text {
    font-size: 16px;
  }
}

.step__box-body-link {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  padding: 8px 12px 8px 40px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .step__box-body-link {
    margin-top: 18px;
    font-size: 16px;
    padding: 8px 12px 8px 44px;
  }
}
.step__box-body-link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  width: 20px;
  height: 20px;
  background: url("../img/step-insta-icon.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .step__box-body-link::before {
    width: 24px;
    height: 24px;
  }
}

.step__button {
  display: block;
}
@media screen and (min-width: 1025px) {
  .step__button {
    margin-top: 31px;
  }
}

.prizes {
  padding-top: 83px;
  background-color: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .prizes {
    padding-top: 239.97px;
  }
}

.prizes__inner {
  padding-top: 58.33px;
  padding-bottom: 34.67px;
  border-radius: 24px;
  background: #fff;
  position: relative;
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .prizes__inner {
    max-width: 1024px;
    padding-right: 56px;
    padding-left: 56px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 60.33px;
    padding-bottom: 53px;
  }
  .prizes__inner::before {
    content: "";
    position: absolute;
    top: -122px;
    left: -355px;
    width: 1024px;
    height: 86px;
    background: url("../img/prizes-head-img.png") no-repeat center center/contain;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
  .prizes__inner::after {
    content: "";
    position: absolute;
    top: -122px;
    right: -355px;
    width: 1024px;
    height: 86px;
    background: url("../img/prizes-head-img.png") no-repeat center center/contain;
  }
}

.prizes__head {
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .prizes__head {
    top: -122px;
  }
}
.prizes__head::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 237.6px;
  height: 83px;
  background: url("../img/prizes-head.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .prizes__head::before {
    background: url(../img/prizes-head-pc.png) no-repeat center center/contain;
    width: 365.624px;
    height: 148.967px;
    top: -27px;
  }
}

.prizes__text {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .prizes__text {
    font-size: 16px;
    margin-top: 1px;
  }
}

.prizes__boxes {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .prizes__boxes {
    max-width: 510px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes {
    max-width: 930px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}
.prizes__boxes .prizes__box {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
  position: relative;
  border-radius: 8px;
  -webkit-transition: outline 0.3s;
  transition: outline 0.3s;
}
.prizes__boxes .prizes__box:hover {
  outline: 4px solid #9ed0e0;
}
.prizes__boxes .prizes__box:hover .prizes__box-body-img img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.prizes__boxes .prizes__box:hover .prizes__box-body-text::before {
  background: url("../img/prizes-Rectangle-hover.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes .prizes__box {
    border-radius: 12px;
    width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box {
    border-radius: 24px;
    margin-top: 50px;
    width: 440px;
  }
}
.prizes__boxes .prizes__box-head {
  text-align: center;
  z-index: 10;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-head {
    top: -35px;
  }
}
.prizes__boxes .prizes__box-head::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: url("../img/prizes-star.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-head::before {
    width: 100px;
    height: 100px;
    top: -16px;
  }
}
.prizes__boxes .prizes__box-head-text {
  color: #fff;
  font-size: 7.68px;
  font-weight: 700;
  line-height: 7px;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-head-text {
    font-size: 16px;
    line-height: 160%;
  }
}
.prizes__boxes .prizes__box-head-num {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 23.04px;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-head-num {
    font-size: 48px;
    line-height: 48px;
  }
}
.prizes__boxes .prizes__box-body {
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes .prizes__box-body {
    border-radius: 12px 12px 0px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-body {
    border-radius: 24px 24px 0px 0px;
  }
}
.prizes__boxes .prizes__box-body-img img {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes .prizes__box-body-img img {
    border-radius: 12px 12px 0px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-body-img img {
    border-radius: 24px 24px 0px 0px;
    width: 440px;
    height: 340px;
  }
}
.prizes__boxes .prizes__box-body-text {
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #f5f5f5;
  height: 56px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  line-height: 160%;
  border-radius: 0px 0px 8px 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes .prizes__box-body-text {
    border-radius: 0px 0px 12px 12px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-body-text {
    padding-top: 31px;
    padding-bottom: 32px;
    font-size: 20px;
    border-radius: 0px 0px 24px 24px;
    height: 120px;
  }
}
.prizes__boxes .prizes__box-body-text::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-radius: 0px 0px 8px 0px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: url("../img/prizes-Rectangle.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes .prizes__box-body-text::before {
    border-radius: 0px 0px 12px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-body-text::before {
    border-radius: 0px 0px 24px 0px;
    width: 100px;
    height: 100px;
  }
}
.prizes__boxes .prizes__box-body-text::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 5px;
  width: 11.52px;
  height: 11.52px;
  background: url("../img/prizes-zoom_icon.png") no-repeat center center/contain;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes .prizes__box-body-text::after {
    width: 32px;
    height: 32px;
    bottom: 15px;
    right: 13px;
  }
}

.prizes__boxes2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 7px;
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 {
    margin-top: 40px;
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
    row-gap: 46px;
  }
}
.prizes__boxes2 .prizes__box {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 160px;
  border-radius: 8px;
  position: relative;
  -webkit-transition: outline 0.3s;
  transition: outline 0.3s;
}
.prizes__boxes2 .prizes__box:hover {
  outline: 4px solid #9ed0e0;
}
.prizes__boxes2 .prizes__box:hover .prizes__box-body-img img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
.prizes__boxes2 .prizes__box:hover .prizes__box-body-text::before {
  background: url("../img/prizes-Rectangle-hover.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes2 .prizes__box {
    width: 300px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box {
    border-radius: 16px;
    margin-top: 40px;
    width: 280px;
  }
}
.prizes__boxes2 .prizes__box-head {
  text-align: center;
  z-index: 10;
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-head {
    top: -24px;
  }
}
.prizes__boxes2 .prizes__box-head::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: url("../img/prizes-star.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-head::before {
    width: 80px;
    height: 80px;
    top: -16px;
  }
}
.prizes__boxes2 .prizes__box-head-text {
  color: #fff;
  font-size: 7.68px;
  font-weight: 700;
  line-height: 7px;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-head-text {
    font-size: 12.8px;
  }
}
.prizes__boxes2 .prizes__box-head-num {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 23.04px;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-head-num {
    font-size: 38.4px;
    line-height: 1.6;
  }
}
.prizes__boxes2 .prizes__box-body {
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes2 .prizes__box-body {
    border-radius: 12px 12px 0px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-body {
    border-radius: 16px 16px 0px 0px;
  }
}
.prizes__boxes2 .prizes__box-body-img img {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes2 .prizes__box-body-img img {
    border-radius: 12px 12px 0px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-body-img img {
    border-radius: 16px 16px 0px 0px;
    height: 240px;
  }
}
.prizes__boxes2 .prizes__box-body-text {
  padding-top: 9px;
  padding-bottom: 9px;
  background-color: #f5f5f5;
  height: 56px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  line-height: 160%;
  border-radius: 0px 0px 8px 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes2 .prizes__box-body-text {
    border-radius: 0px 0px 12px 12px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-body-text {
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 0px 0px 16px 16px;
    height: 80px;
  }
}
.prizes__boxes2 .prizes__box-body-text::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  border-radius: 0px 0px 8px 0px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  background: url("../img/prizes-Rectangle.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prizes__boxes2 .prizes__box-body-text::before {
    border-radius: 0px 0px 12px 0px;
  }
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-body-text::before {
    border-radius: 0px 0px 16px 0px;
    width: 64px;
    height: 64px;
  }
}
.prizes__boxes2 .prizes__box-body-text::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 5px;
  width: 11.52px;
  height: 11.52px;
  background: url("../img/prizes-zoom_icon.png") no-repeat center center/contain;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .prizes__boxes2 .prizes__box-body-text::after {
    width: 20.48px;
    height: 20.48px;
    bottom: 10px;
    right: 8px;
  }
}

.prizes__button {
  margin-top: 19px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .prizes__button {
    margin-top: 41px;
  }
}

.prizes__bg {
  height: 216px;
  position: relative;
}
.prizes__bg img {
  width: 96px;
  height: 45.714px;
  position: absolute;
}
.prizes__bg img:nth-child(1) {
  bottom: 0;
  left: 0;
}
.prizes__bg img:nth-child(2) {
  bottom: 0;
  left: 95px;
}
.prizes__bg img:nth-child(3) {
  bottom: 0;
  left: 190px;
}
.prizes__bg img:nth-child(4) {
  bottom: 0;
  left: 285px;
}
.prizes__bg img:nth-child(5) {
  bottom: 0;
  left: 380px;
}
.prizes__bg img:nth-child(6) {
  bottom: 0;
  left: 475px;
}
.prizes__bg img:nth-child(7) {
  bottom: 0;
  left: 570px;
}
.prizes__bg img:nth-child(8) {
  bottom: 0;
  left: 665px;
}
.prizes__bg img:nth-child(9) {
  bottom: 0;
  left: 760px;
}
.prizes__bg img:nth-child(10) {
  bottom: 0;
  left: 855px;
}
.prizes__bg img:nth-child(11) {
  bottom: 0;
  left: 950px;
}
.prizes__bg:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 580px;
  height: 260px;
  background: url(../img/prizes-bg.jpg) no-repeat center center/contain;
}

.prizes__bg-pc {
  height: 640px;
  position: relative;
}
.prizes__bg-pc img {
  width: 251px;
  height: 120px;
  position: absolute;
}
.prizes__bg-pc img:nth-child(1) {
  bottom: 0;
  left: 0;
}
.prizes__bg-pc img:nth-child(2) {
  bottom: 0;
  left: 251px;
}
.prizes__bg-pc img:nth-child(3) {
  bottom: 0;
  left: 502px;
}
.prizes__bg-pc img:nth-child(4) {
  bottom: 0;
  left: 753px;
}
.prizes__bg-pc img:nth-child(5) {
  bottom: 0;
  left: 1004px;
}
.prizes__bg-pc img:nth-child(6) {
  bottom: 0;
  left: 1255px;
}
.prizes__bg-pc img:nth-child(7) {
  bottom: 0;
  left: 1506px;
}
.prizes__bg-pc img:nth-child(8) {
  bottom: 0;
  left: 1757px;
}
.prizes__bg-pc:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .prizes__bg-pc:before {
    background: url(../img/prizes-bg-pc.jpg) no-repeat center center/contain;
    width: 1512px;
    height: 640px;
    bottom: 0px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  padding: 0;
  border: none;
  border-radius: 24px;
  background: #fff;
  overflow: auto;
  overscroll-behavior-y: none;
}
.modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.modal::backdrop {
  opacity: 0.7;
  background: #000;
}

.modal1 {
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal1 {
    padding-bottom: 106px;
  }
}

.modal2 {
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal2 {
    padding-bottom: 106px;
  }
}

.modal3 {
  padding-bottom: 42px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal3 {
    padding-bottom: 80px;
  }
}

.modal4 {
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal4 {
    padding-bottom: 54px;
  }
}

.modal5 {
  padding-bottom: 23px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal5 {
    padding-bottom: 54px;
  }
}

.modal__head-img img {
  border-radius: 24px 24px 0px 0px;
}
.modal__body {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal__body {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.modal__body-title {
  margin-top: 39px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal__body-title {
    margin-top: 32px;
    font-size: 20px;
  }
}

.modal__body-text {
  margin-top: 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal__body-text {
    font-size: 16px;
  }
}

.modal__close-button {
  margin-top: 16px;
}

.spots {
  background-color: #67b0c7;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .spots {
    padding-bottom: 0;
  }
}

.spots__inner {
  padding-bottom: 19.84px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .spots__inner {
    padding-bottom: 4px;
  }
}

@media screen and (min-width: 1025px) {
  .spots__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    max-width: 1024px;
    padding-left: calc(50% - 512px);
  }
}

.spots__head-text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  padding-left: 36px;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .spots__head-text {
    font-size: 40px;
    text-orientation: upright;
    padding-top: 64px;
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 0;
  }
}
.spots__head-text::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background: url(../img/spots-star.png) no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .spots__head-text::before {
    background: url(../img/spots-star-pc.png) no-repeat center center/contain;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 28px;
    width: 39.932px;
    height: 38.164px;
  }
}

.spots__head-slider {
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .spots__head-slider {
    margin-top: 0;
    position: relative;
  }
}

@media screen and (min-width: 1025px) {
  .spots__swiper {
    width: 100vw;
    padding-bottom: 25px;
  }
}

.slide__card {
  border-radius: 12px;
  width: 240px;
  height: 402.16px;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .slide__card {
    border-radius: 24px;
    height: 542px;
    width: 344px;
  }
}

.slide__card-img img {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 1025px) {
  .slide__card-img img {
    height: 240px;
    border-radius: 24px 24px 0 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.slide__card-text {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 1025px) {
  .slide__card-text {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.slide__card-text-title {
  margin-top: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .slide__card-text-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.slide__card-text-sub {
  margin-top: 16px;
  font-size: 12px;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  .slide__card-text-sub {
    margin-top: 24px;
    font-size: 16px;
  }
}

.spots__swiper-button-prev {
  display: none;
}
@media screen and (min-width: 1025px) {
  .spots__swiper-button-prev {
    display: block;
    width: 80px;
    height: 80px;
    background: url(../img/spots-swiper-icon.png) no-repeat center center/contain;
    left: -49px;
    top: 510px;
  }
}
.spots__swiper-button-prev::after {
  display: none;
}

.spots__swiper-button-next {
  display: none;
}
@media screen and (min-width: 1025px) {
  .spots__swiper-button-next {
    display: block;
    width: 80px;
    height: 80px;
    background: url(../img/spots-swiper-icon.png) no-repeat center center/contain;
    left: 815px;
    top: 510px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.spots__swiper-button-next::after {
  display: none;
}

.spots__body {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1025px) {
  .spots__body {
    margin-top: 40px;
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .spots__body ::before {
    content: "";
    position: absolute;
    top: -111px;
    left: -189px;
    width: 100px;
    height: 220px;
    background: url(../img/spots-img-ashiato.png) no-repeat center center/cover;
  }
}

.spots__body-img img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 1025px) {
  .spots__body-img img {
    width: 495px;
    height: 107px;
  }
}

.spots__body-text {
  margin-top: 16px;
  color: #fff;
  font-size: 11.444px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1025px) {
  .spots__body-text {
    margin-top: 0;
    font-size: 16px;
  }
}

.spots__button {
  display: block;
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .spots__button {
    margin-right: 0;
  }
}

.spots__bg {
  background-color: #e9f6f8;
  position: relative;
  overflow: hidden;
  height: 45.714px;
}
.spots__bg img {
  width: 96px;
  height: 45.714px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  position: absolute;
}
.spots__bg img:nth-child(1) {
  top: 0;
  left: 0;
}
.spots__bg img:nth-child(2) {
  top: 0;
  left: 95px;
}
.spots__bg img:nth-child(3) {
  top: 0;
  left: 190px;
}
.spots__bg img:nth-child(4) {
  top: 0;
  left: 285px;
}
.spots__bg img:nth-child(5) {
  top: 0;
  left: 380px;
}
.spots__bg img:nth-child(6) {
  top: 0;
  left: 475px;
}
.spots__bg img:nth-child(7) {
  top: 0;
  left: 570px;
}
.spots__bg img:nth-child(8) {
  top: 0;
  left: 665px;
}
.spots__bg img:nth-child(9) {
  top: 0;
  left: 760px;
}
.spots__bg img:nth-child(10) {
  top: 0;
  left: 855px;
}
.spots__bg img:nth-child(11) {
  top: 0;
  left: 950px;
}

.spots__bg-pc {
  background-color: #e9f6f8;
  position: relative;
  overflow: hidden;
  height: 120px;
  z-index: 10;
}
.spots__bg-pc img {
  width: 252px;
  height: 120px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  position: absolute;
  z-index: -1;
}
.spots__bg-pc img:nth-child(1) {
  top: 0px;
  left: 0;
}
.spots__bg-pc img:nth-child(2) {
  top: 0px;
  left: 251px;
}
.spots__bg-pc img:nth-child(3) {
  top: 0px;
  left: 502px;
}
.spots__bg-pc img:nth-child(4) {
  top: 0px;
  left: 753px;
}
.spots__bg-pc img:nth-child(5) {
  top: 0px;
  left: 1004px;
}
.spots__bg-pc img:nth-child(6) {
  top: 0px;
  left: 1255px;
}
.spots__bg-pc img:nth-child(7) {
  top: 0px;
  left: 1506px;
}
.spots__bg-pc img:nth-child(8) {
  top: 0px;
  left: 1757px;
}

.qa {
  background-color: #e9f6f8;
  padding-top: 40px;
  padding-bottom: 30.67px;
}
@media screen and (min-width: 1025px) {
  .qa {
    padding-top: 119px;
    padding-bottom: 120px;
  }
}

.qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11.4px;
}
@media screen and (min-width: 1025px) {
  .qa__boxes {
    margin-top: 44px;
    gap: 25px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box.is-open .qa-box__head {
  padding-bottom: 12px;
}
@media screen and (min-width: 1025px) {
  .qa__box.is-open .qa-box__head {
    padding-bottom: 24px;
  }
}
.qa__box.is-open .qa-box__head::after {
  background: url("../img/qa-close-icon.png") no-repeat center center/contain;
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 50px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .qa-box__head {
    gap: 16px;
    padding-top: 25px;
    padding-bottom: 22px;
    padding-left: 22px;
    padding-right: 82px;
  }
}
.qa-box__head:hover {
  cursor: pointer;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 13px;
  width: 26.182px;
  height: 26.182px;
  background: url("../img/qa-open-icon.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    right: 22px;
  }
}

.qa-box__head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 1025px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__body {
  background: #f5f5f5;
  padding-top: 16px;
  padding-bottom: 14px;
  padding-left: 14px;
  padding-right: 14px;
  display: none;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 1025px) {
  .qa-box__body {
    padding-top: 24px;
    padding-bottom: 22px;
    padding-left: 22px;
    padding-right: 22px;
    border-radius: 0 0 16px 16px;
  }
}

.qa-box__body1 {
  display: block;
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .qa-box__a {
    gap: 16px;
  }
}

.qa-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 1025px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
  line-height: 1.55;
}
@media screen and (min-width: 1025px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry {
  background-color: #e9f6f8;
}

.entry-container {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  padding-bottom: 31px;
  padding-left: 15.5px;
  padding-right: 15.5px;
}
@media screen and (min-width: 1025px) {
  .entry-container {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

.entry__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .entry__boxes {
    margin-top: 45px;
    gap: 10px;
  }
}

.entry__box {
  border-bottom: 1px solid #cccccc;
}
.entry__box:nth-child(1) {
  padding-bottom: 13px;
}
.entry__box:nth-child(2) {
  padding-bottom: 15px;
}
.entry__box:nth-child(3) {
  padding-bottom: 14px;
}
@media screen and (min-width: 1025px) {
  .entry__box:nth-child(3) {
    padding-bottom: 13px;
  }
}
.entry__box:nth-child(4) {
  padding-bottom: 14px;
}
.entry__box:nth-child(5) {
  border-bottom: none;
}
@media screen and (min-width: 1025px) {
  .entry__box {
    display: grid;
    grid-template-columns: 240px 1fr;
    padding-bottom: 12px;
  }
}

.entry__box-head {
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .entry__box-head {
    padding-left: 32px;
  }
}
.entry__box-head::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: url("../img/entry-img.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .entry__box-head::before {
    left: 16px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 7px;
  }
}

.entry__box-head-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .entry__box-head-text {
    font-size: 16px;
  }
}

.entry__box-body {
  margin-top: 8px;
}
@media screen and (min-width: 1025px) {
  .entry__box-body {
    margin-top: 0;
  }
}

.entry__box-body-text {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .entry__box-body-text {
    font-size: 16px;
  }
}

.entry__box-body-textーnotes {
  font-size: 12px;
  padding-left: 18px;
  position: relative;
}
.entry__box-body-textーnotes::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 3.6px;
  height: 3.6px;
  border-radius: 50%;
  background-color: #4a3636;
}
@media screen and (min-width: 1025px) {
  .entry__box-body-textーnotes::before {
    top: 13px;
    left: 11px;
  }
}
.entry__box-body-textーnotes:nth-child(2) {
  margin-top: -1px;
}
.entry__box-body-textーnotes:nth-child(3) {
  margin-top: -1px;
}
.entry__box-body-textーnotes:nth-child(4) {
  margin-top: -1px;
}
.entry__box-body-textーnotes:nth-child(5) {
  margin-top: -1px;
}
.entry__box-body-textーnotes:nth-child(6) {
  margin-top: -1px;
}
.entry__box-body-textーnotes:nth-child(9) {
  margin-top: -1px;
}
@media screen and (min-width: 1025px) {
  .entry__box-body-textーnotes {
    font-size: 16px;
    padding-left: 25px;
  }
  .entry__box-body-textーnotes:nth-child(2) {
    margin-top: 1px;
  }
  .entry__box-body-textーnotes:nth-child(3) {
    margin-top: 1px;
  }
  .entry__box-body-textーnotes:nth-child(4) {
    margin-top: 2px;
  }
  .entry__box-body-textーnotes:nth-child(5) {
    margin-top: 1px;
  }
  .entry__box-body-textーnotes:nth-child(6) {
    margin-top: 1px;
  }
  .entry__box-body-textーnotes:nth-child(7) {
    margin-top: 1px;
  }
  .entry__box-body-textーnotes:nth-child(8) {
    margin-top: -1px;
  }
  .entry__box-body-textーnotes:nth-child(9) {
    margin-top: 3px;
  }
}

.entry__bg {
  margin-top: 31px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry__bg img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .entry__bg {
    margin-top: 120px;
    max-width: 1900px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.contact__inner {
  max-width: 908px;
  margin-left: auto;
  margin-right: auto;
}

.contact__head-text {
  margin-top: 23px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .contact__head-text {
    font-size: 16px;
    margin-top: 36px;
  }
}

.contact__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 1025px) {
  .contact__boxes {
    margin-top: 40px;
    gap: 22px;
  }
}

.contact__form {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .contact__form {
    max-width: 848px;
    display: grid;
    grid-template-columns: 220px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__form:nth-child(4) {
    margin-top: 17px;
  }
  .contact__form:nth-child(5) {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-top: 18px;
  }
}

.form__head:nth-child(4) {
  margin-top: -1px;
}
@media screen and (min-width: 1025px) {
  .form__head:nth-child(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .form__head:nth-child(5) {
    margin-top: 20px;
  }
}

.form__head-label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .form__head-label {
    font-size: 16px;
  }
}

.form__head-tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #ce2073;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 8px;
  padding-left: 8px;
  margin-left: 8px;
  line-height: 19.2px;
}
@media screen and (min-width: 1025px) {
  .form__head-tag {
    margin-left: 8px;
    padding-top: 6px;
  }
}

.form__item [type=text] {
  margin-top: 9px;
  font-size: 14px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
}
.form__item [type=text]:focus {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
@media screen and (min-width: 1025px) {
  .form__item [type=text] {
    font-size: 16px;
    margin-top: 0;
  }
}
.form__item [type=text]::-webkit-input-placeholder {
  color: #cccccc;
}
.form__item [type=text]::-moz-placeholder {
  color: #cccccc;
}
.form__item [type=text]:-ms-input-placeholder {
  color: #cccccc;
}
.form__item [type=text]::-ms-input-placeholder {
  color: #cccccc;
}
.form__item [type=text]::placeholder {
  color: #cccccc;
}
.form__item [type=email] {
  margin-top: 9px;
  font-size: 14px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
}
.form__item [type=email]:focus {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
@media screen and (min-width: 1025px) {
  .form__item [type=email] {
    font-size: 16px;
    margin-top: 0;
  }
}
.form__item [type=email]::-webkit-input-placeholder {
  color: #cccccc;
}
.form__item [type=email]::-moz-placeholder {
  color: #cccccc;
}
.form__item [type=email]:-ms-input-placeholder {
  color: #cccccc;
}
.form__item [type=email]::-ms-input-placeholder {
  color: #cccccc;
}
.form__item [type=email]::placeholder {
  color: #cccccc;
}

.form__select-box {
  position: relative;
}
.form__select-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 54px;
  border-radius: 0px 8px 8px 0px;
  background: #9ed0e0;
}
@media screen and (min-width: 1025px) {
  .form__select-box::before {
    height: 58px;
  }
}
.form__select-box::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 11px;
  width: 32px;
  height: 32px;
  background: url("../img/contact-select-icon.png") no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .form__select-box::after {
    bottom: 12px;
  }
}
.form__select-box.error-icon::before {
  background: #ce2073;
}

.form__select {
  margin-top: 10px;
  font-size: 14px;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 12px;
  padding-right: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
}
.form__select:focus {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
@media screen and (min-width: 1025px) {
  .form__select {
    font-size: 16px;
    margin-top: 0;
  }
}

.form__item-radios {
  margin-top: 5px;
}
@media screen and (min-width: 1025px) {
  .form__item-radios {
    margin-top: 0;
  }
}

.form__radio-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form__radio-input:checked + .form__radio-text::after {
  opacity: 1;
}
.form__radio-input:focus + .form__radio-text::before {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}

.form__radio-text {
  padding-left: 32px;
  position: relative;
  font-size: 14px;
}
@media screen and (min-width: 1025px) {
  .form__radio-text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form__radio-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
}
.form__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  opacity: 0;
}

.type-2 {
  margin-left: 20px;
}

.form__textarea {
  margin-top: 8px;
  height: 160px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
}
.form__textarea:focus {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
@media screen and (min-width: 1025px) {
  .form__textarea {
    font-size: 16px;
    margin-top: 0;
  }
}
.form__textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form__textarea::-moz-placeholder {
  color: #cccccc;
}
.form__textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form__textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form__textarea::placeholder {
  color: #cccccc;
}

.contact__privacy {
  text-align: center;
  font-size: 14px;
  margin-top: -2px;
}
@media screen and (min-width: 1025px) {
  .contact__privacy {
    font-size: 16px;
    margin-top: 17px;
  }
}

.form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form__checkbox-input:focus + .form__checkbox-text::before {
  outline: none;
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form__checkbox-input:checked + .form__checkbox-text::after {
  opacity: 1;
}
.form__checkbox-input.error + .form__checkbox-text::before {
  background: #fff0f7;
}

.form__checkbox-text {
  position: relative;
  padding-left: 36px;
}
.form__checkbox-text a {
  text-decoration: underline;
}
.form__checkbox-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
.form__checkbox-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("../img/contact-privacy-icon.png") no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  text-align: center;
  margin-top: 1px;
}
@media screen and (min-width: 1025px) {
  .contact__button {
    margin-top: 17px;
  }
  .contact__button .button {
    padding-left: 38px;
    padding-right: 38px;
  }
}

.error {
  outline: 1px solid #ce2073 !important;
  background: #fff0f7 !important;
}

.error-text {
  color: #ce2073 !important;
}

.footer {
  padding-top: 44px;
  background: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .footer {
    padding-top: 120px;
  }
}

.footer__head-logo {
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 125%;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer__head-logo {
    font-size: 24px;
  }
  .footer__head-logo::before {
    content: "";
    position: absolute;
    top: -40px;
    right: calc(50% - 676px);
    width: 100px;
    height: 220px;
    background: url("../img/spots-img-ashiato.png") no-repeat center center/contain;
  }
}

.footer__head-icon {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.sns-icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1025px) {
  .sns-icon {
    width: 40px;
    height: 40px;
  }
}

.footer__body {
  margin-top: 13px;
}
@media screen and (min-width: 1025px) {
  .footer__body {
    margin-top: 38px;
  }
}

.footer__body-img {
  text-align: center;
}
.footer__body-img img {
  width: 327px;
}
@media screen and (min-width: 1025px) {
  .footer__body-img img {
    width: 748px;
  }
}

.footer__body-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .footer__body-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.footer__body-box:nth-child(2) {
  margin-top: -6px;
  padding-top: 17px;
  padding-bottom: 24px;
  padding-left: 0.064;
  padding-right: 0.064;
  background: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 1025px) {
  .footer__body-box:nth-child(2) {
    margin-top: -2px;
    width: 512px;
    height: 400px;
    border-radius: 16px 0 0 16px;
    display: grid;
    place-content: center;
    padding: 0;
  }
}

.footer__body-map {
  width: 100%;
  height: 271px;
  border-radius: 16px 16px 0 0;
  outline: none;
}
@media screen and (min-width: 1025px) {
  .footer__body-map {
    width: 512px;
    height: 400px;
    border-radius: 0 16px 16px 0;
  }
}

.footer__body-logo {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .footer__body-logo {
    text-align: left;
  }
}
.footer__body-logo img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 1025px) {
  .footer__body-logo img {
    width: 183px;
    height: 24px;
  }
}

.footer__body-contents {
  margin-top: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .footer__body-contents {
    gap: 12px;
    max-width: 389px;
    margin-top: 24px;
  }
}

.footer__body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__body-text-main {
  width: 84px;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer__body-text-main {
    font-size: 16px;
    width: 120px;
    padding-left: 15px;
  }
}
.footer__body-text-main::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
}
@media screen and (min-width: 1025px) {
  .footer__body-text-main::before {
    left: 0;
    top: 10px;
  }
}

.footer__body-text-sub {
  font-size: 12px;
}
@media screen and (min-width: 1025px) {
  .footer__body-text-sub {
    font-size: 16px;
  }
}

.footer__tail {
  text-align: center;
  margin-top: 28px;
}
.footer__tail img {
  width: 75px;
  height: 78px;
}

.footer__tail-bg {
  overflow: hidden;
  position: relative;
  height: 62px;
}
@media screen and (min-width: 1025px) {
  .footer__tail-bg {
    height: 150px;
  }
}

.footer__small-bg {
  background: #67b0c7;
  height: 50px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer__small-bg {
    height: 136px;
  }
}
.footer__small-bg .footer__bg img {
  position: absolute;
  left: 0;
  top: -38px;
  width: 96px;
  height: 45.714px;
}
.footer__small-bg .footer__bg img:nth-child(1) {
  top: -38px;
  left: 0;
}
.footer__small-bg .footer__bg img:nth-child(2) {
  top: -38px;
  left: 95px;
}
.footer__small-bg .footer__bg img:nth-child(3) {
  top: -38px;
  left: 190px;
}
.footer__small-bg .footer__bg img:nth-child(4) {
  top: -38px;
  left: 285px;
}
.footer__small-bg .footer__bg img:nth-child(5) {
  top: -38px;
  left: 380px;
}
.footer__small-bg .footer__bg img:nth-child(6) {
  top: -38px;
  left: 475px;
}
.footer__small-bg .footer__bg img:nth-child(7) {
  top: -38px;
  left: 570px;
}
.footer__small-bg .footer__bg img:nth-child(8) {
  top: -38px;
  left: 665px;
}
.footer__small-bg .footer__bg img:nth-child(9) {
  top: -38px;
  left: 760px;
}
.footer__small-bg .footer__bg img:nth-child(10) {
  top: -38px;
  left: 855px;
}
.footer__small-bg .footer__bg img:nth-child(11) {
  top: -38px;
  left: 950px;
}
.footer__small-bg .footer__bg-pc {
  height: 100px;
  position: relative;
}
.footer__small-bg .footer__bg-pc img {
  width: 252px;
  height: 120px;
  position: absolute;
}
.footer__small-bg .footer__bg-pc img:nth-child(1) {
  top: -38px;
  left: 0;
}
.footer__small-bg .footer__bg-pc img:nth-child(2) {
  top: -38px;
  left: 251px;
}
.footer__small-bg .footer__bg-pc img:nth-child(3) {
  top: -38px;
  left: 502px;
}
.footer__small-bg .footer__bg-pc img:nth-child(4) {
  top: -38px;
  left: 753px;
}
.footer__small-bg .footer__bg-pc img:nth-child(5) {
  top: -38px;
  left: 1004px;
}
.footer__small-bg .footer__bg-pc img:nth-child(6) {
  top: -38px;
  left: 1255px;
}
.footer__small-bg .footer__bg-pc img:nth-child(7) {
  top: -38px;
  left: 1506px;
}
.footer__small-bg .footer__bg-pc img:nth-child(8) {
  top: -38px;
  left: 1757px;
}

.footer__copyright {
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 1025px) {
  .footer__copyright {
    font-size: 14px;
    position: absolute;
    top: 83px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.pagetop {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    width: 75px;
    height: 78px;
  }
}
@media screen and (min-width: 1025px) {
  .pagetop {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 20;
    width: 100px;
    height: 104px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}