@charset "UTF-8";
html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

.main {
  background-color: #e9f6f8;
  width: 100%;
  min-height: 100vh;
}

.inner {
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1072px;
    margin-inline: auto;
    padding-inline: 24px;
  }
}

.button {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 14px;
  }
}
.button:hover {
  background: #ffee56;
}

.head-content {
  text-align: center;
}

.head-icon img {
  width: 37.333px;
}
@media screen and (min-width: 900px) {
  .head-icon img {
    width: 48px;
  }
}

.head-tittle-en {
  margin-top: 6px;
  font-family: "Courgette", serif;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .head-tittle-en {
    margin-top: 8px;
    font-size: 20px;
  }
}

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

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

.hidden-sp {
  display: none;
}
@media screen and (min-width: 900px) {
  .hidden-sp {
    display: inline-block;
  }
}

.header {
  position: sticky;
  padding-block: 18px;
  top: 0;
  height: 64px;
  z-index: 20;
  width: 100%;
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .header {
    padding-block: 13px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: none;
}
@media screen and (min-width: 900px) {
  .header__inner {
    margin: 0;
  }
}

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

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

.header__nav {
  background: #ffffff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  left: 0;
  top: 64px;
  padding-block: 82px;
  padding-inline: 114px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  z-index: -1;
}
.header__nav.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 1;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}

.header__link {
  font-size: 14px;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 12px;
    padding-inline: 2px;
  }
}
.header__link:hover {
  color: #67b0c7;
  -webkit-text-decoration: #67b0c7 solid underline;
          text-decoration: #67b0c7 solid underline;
}

.header__button {
  display: none;
  height: 40px;
  width: 144px;
  padding: 4px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
@media screen and (min-width: 900px) {
  .header__button {
    display: inline-block;
    font-size: 14px;
    height: 36px;
    width: 132px;
  }
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(4) {
  top: 15px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(4) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  height: 3px;
  background: #4a3636;
  border-radius: 1.5px;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 0px;
  right: 0;
  width: 4.8px;
}
.drawer-icon__bar:nth-child(3) {
  left: 0;
  top: 12px;
  width: 32px;
}
.drawer-icon__bar:nth-child(4) {
  left: 0;
  top: 24px;
  width: 32px;
}

.fv {
  background: url(../img/sp/fv-bg-sp.jpg) no-repeat center center;
  background-size: cover;
  background-color: transparent;
  width: 100%;
  height: 554px;
  padding-top: 17px;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .fv {
    background: url(../img/fv-bg-pc.jpg) no-repeat center center;
    background-size: cover;
    height: 740px;
    padding-top: 34px;
  }
}

@media screen and (min-width: 900px) {
  .fv__content {
    width: 848px;
    margin-inline: auto;
  }
}

.fv__text {
  color: #4a3636;
  font-family: "Kiwi Maru", serif;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 125%;
  }
}

.fv__tittle {
  display: block;
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__tittle {
    margin-top: 24px;
    margin-inline: auto;
    max-width: 520px;
  }
}
.fv__tittle img {
  width: 100%;
}

.fv__body {
  position: relative;
  margin-top: 113px;
}
@media screen and (min-width: 900px) {
  .fv__body {
    margin-top: 33px;
  }
}

.fv__image-top1 {
  position: absolute;
  left: 0;
  top: -95px;
}
@media screen and (min-width: 900px) {
  .fv__image-top1 {
    left: 37px;
    top: -33px;
  }
}
.fv__image-top1 img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv__image-top1 img {
    width: auto;
    max-width: 244px;
  }
}

.fv__image-top2 {
  position: absolute;
  right: 25px;
  top: -102px;
}
@media screen and (min-width: 900px) {
  .fv__image-top2 {
    right: 127px;
    top: -16px;
  }
}
.fv__image-top2 img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv__image-top2 img {
    width: auto;
    max-width: 180px;
  }
}

.fv__image-bottom1 {
  position: absolute;
  left: 3px;
  bottom: -12px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv__image-bottom1 {
    left: 7px;
    bottom: -17px;
  }
}
.fv__image-bottom1 img {
  width: 86px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv__image-bottom1 img {
    width: auto;
    height: 332px;
    max-width: 202px;
  }
}

.fv__image-bottom2 {
  position: absolute;
  right: 0;
  bottom: -12px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv__image-bottom2 {
    right: 0;
    bottom: -60px;
  }
}
.fv__image-bottom2 img {
  width: 107px;
}
@media screen and (min-width: 900px) {
  .fv__image-bottom2 img {
    width: auto;
    height: 294px;
    max-width: 233px;
  }
}

.fv__main-image {
  position: relative;
}
.fv__main-image img {
  display: block;
  margin: 0 auto;
  width: 200px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .fv__main-image img {
    width: 250px;
  }
}

.fv__main-message {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 15px;
}
@media screen and (min-width: 900px) {
  .fv__main-message {
    width: 200px;
  }
}

.fv__main-head {
  border-radius: 15px 15px 0 0;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 7.4px 18.5px;
}

.fv__main-head-text {
  font-size: 12.8px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__main-head-text {
    font-size: 16px;
  }
}

.fv__main-body {
  padding-block: 12px 19.2px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__main-body {
    padding-block: 14px 24px;
  }
}

.fv__main-body-text1 {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .fv__main-body-text1 {
    font-size: 14px;
    padding-bottom: 0;
    border-bottom: 3px solid #ce2073;
  }
}

.fv__main-body-text2 {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .fv__main-body-text2 {
    margin-top: 4px;
    font-size: 16px;
  }
}

.fv__main-button {
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv__main-button {
    margin-top: 16px;
  }
}
.fv__main-button a {
  width: 132px;
  height: 32px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .fv__main-button a {
    width: 144px;
    height: 40px;
    font-size: 16px;
  }
}

.about {
  padding-top: 188px;
  padding-bottom: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 177px;
    padding-bottom: 460px;
  }
}

@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 1072px;
  }
}

.about__container {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about__container {
    position: initial;
  }
}

.about__image {
  position: absolute;
}

.about__content {
  padding-block: 40px;
  padding-inline: 12px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__content {
    max-width: 600px;
    margin-inline: auto;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    max-width: 848px;
    margin-inline: auto;
    padding-inline: 114px;
    border-radius: 40px;
  }
}

.about__content-arrow {
  display: block;
  text-align: center;
}
.about__content-arrow img {
  width: 100px;
}
@media screen and (min-width: 1200px) {
  .about__content-arrow img {
    width: 140px;
  }
}

.about-image1 {
  right: -20px;
  top: -10px;
}
@media screen and (min-width: 1200px) {
  .about-image1 {
    right: 166px;
    top: 95px;
  }
}
.about-image1 img {
  width: 54px;
}
@media screen and (min-width: 1200px) {
  .about-image1 img {
    width: 100px;
    height: 220px;
  }
}

.about-image2 {
  right: -160px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 1200px) {
  .about-image2 {
    top: 489px;
    right: -284px;
  }
}
.about-image2 img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .about-image2 img {
    width: 480px;
  }
}

.about-image3 {
  bottom: -24px;
  right: 1px;
}
@media screen and (min-width: 1200px) {
  .about-image3 {
    bottom: 42.2%;
    right: 150px;
    z-index: 2;
  }
}
.about-image3 img {
  width: 48px;
}
@media screen and (min-width: 1200px) {
  .about-image3 img {
    width: 101px;
  }
}

.about-image4 {
  bottom: -83px;
  right: 37px;
}
@media screen and (min-width: 1200px) {
  .about-image4 {
    bottom: 28.5%;
    right: 74px;
  }
}
.about-image4 img {
  width: 133px;
}
@media screen and (min-width: 1200px) {
  .about-image4 img {
    width: 308px;
  }
}

.about-image5 {
  padding-inline: 9px;
  bottom: 157px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .about-image5 {
    padding-inline: 0;
    bottom: 248px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 891px;
  }
}
.about-image5 img {
  width: 100%;
}
.about-image6 {
  left: 0;
  bottom: 120px;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .about-image6 {
    left: -103px;
    bottom: 13.3%;
  }
}
.about-image6 img {
  width: 138px;
}
@media screen and (min-width: 1200px) {
  .about-image6 img {
    width: 427px;
    height: 817px;
  }
}

.about-image7 {
  left: -160px;
  top: 72%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}
@media screen and (min-width: 1200px) {
  .about-image7 {
    top: 38.7%;
    left: -338px;
    z-index: 2;
  }
}
.about-image7 img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .about-image7 img {
    width: 480px;
  }
}

.about-image8 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-image8 {
    display: block;
    z-index: 1;
    top: 10.3%;
    left: -300px;
  }
}
@media screen and (min-width: 1200px) {
  .about-image8 {
    top: 10.3%;
    left: -21px;
  }
}
.about-image8 img {
  width: 250px;
}

.about-image9,
.about-image10 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .about-image9,
  .about-image10 {
    display: block;
  }
}
.about-image9 img,
.about-image10 img {
  width: 806.851px;
  height: 12.006px;
}

.about-image9 {
  right: -566px;
  bottom: 47.3%;
}
.about-image10 {
  right: -499px;
  bottom: 45.1%;
}
.content__head {
  position: relative;
}

.content__head-icon img {
  width: 37.333px;
}
@media screen and (min-width: 900px) {
  .content__head-icon img {
    width: 48px;
  }
}

.content__head-tittle-en {
  margin-top: 6px;
  font-family: "Courgette", serif;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .content__head-tittle-en {
    margin-top: 8px;
    font-size: 20px;
  }
}

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

.content__head-image1 {
  position: absolute;
  top: -9px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .content__head-image1 {
    top: -3px;
    left: -30px;
  }
}
.content__head-image1 img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .content__head-image1 img {
    width: 149px;
  }
}

.content__head-image2 {
  position: absolute;
  top: -10px;
  right: 6px;
}
@media screen and (min-width: 900px) {
  .content__head-image2 {
    top: 6px;
    right: -32px;
  }
}
.content__head-image2 img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .content__head-image2 img {
    width: 149px;
  }
}

.content__body {
  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: 25px;
}
@media screen and (min-width: 900px) {
  .content__body {
    margin-top: 32px;
    gap: 35px;
  }
}

.content__body-lead {
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .content__body-lead {
    font-size: 16px;
    font-weight: 700;
  }
}

.content__body-text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 900px) {
  .content__body-text-group {
    gap: 26px;
  }
}

.content__body-text {
  font-size: 12px;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .content__body-text {
    font-size: 16px;
  }
}

.underline-text {
  text-decoration-line: underline;
  text-underline-position: from-font;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .underline-text {
    font-size: 16px;
  }
}
.underline-text:hover {
  color: #67b0c7;
}

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

.content__body-action {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0 6px 0;
  border-bottom: 2px dashed #67b0c7;
}
@media screen and (min-width: 900px) {
  .content__body-action {
    font-size: 20px;
    padding: 13px 0;
  }
}

.about-button {
  padding: 8px 22px;
}
@media screen and (min-width: 900px) {
  .about-button {
    height: 56px;
    width: auto;
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 700;
  }
}

.about__swiper {
  position: absolute;
  bottom: 59px;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__swiper {
    bottom: 9px;
  }
}
@media screen and (min-width: 1200px) {
  .about__swiper {
    bottom: 54px;
  }
}

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

.about__swiper-slide {
  width: auto;
  min-width: 100px;
}
@media screen and (min-width: 900px) {
  .about__swiper-slide {
    min-width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .about__swiper-slide {
    min-width: 200px;
  }
}
.about__swiper-slide img {
  height: 100px;
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about__swiper-slide img {
    height: 150px;
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .about__swiper-slide img {
    height: 200px;
    width: 200px;
  }
}

.step {
  overflow: hidden;
  padding-top: 7px;
  padding-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .step {
    padding-top: 66px;
    padding-bottom: 120px;
  }
}

.step__inner {
  position: relative;
}

.step-img {
  position: absolute;
  display: block;
}

.step-img1 {
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .step-img1 {
    left: -100px;
  }
}
@media screen and (min-width: 900px) {
  .step-img1 {
    top: -60px;
    left: -40px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img1 {
    left: -184px;
  }
}
.step-img1 img {
  width: 149px;
}
@media screen and (min-width: 900px) {
  .step-img1 img {
    width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img1 img {
    width: 460px;
  }
}

.step-img2 {
  top: 0;
  right: 24px;
}
@media screen and (min-width: 768px) {
  .step-img2 {
    right: -24px;
  }
}
@media screen and (min-width: 900px) {
  .step-img2 {
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img2 {
    top: -26px;
    right: 11px;
  }
}
.step-img2 img {
  width: 105px;
}
@media screen and (min-width: 900px) {
  .step-img2 img {
    width: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img2 img {
    width: 238px;
  }
}

.step-img3 {
  top: 5px;
  right: -31px;
}
@media screen and (min-width: 768px) {
  .step-img3 {
    right: -80px;
  }
}
@media screen and (min-width: 900px) {
  .step-img3 {
    right: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img3 {
    top: -16px;
    right: -115px;
  }
}
.step-img3 img {
  width: 94px;
}
@media screen and (min-width: 900px) {
  .step-img3 img {
    width: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img3 img {
    width: 214px;
  }
}

.step-img4 {
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .step-img4 {
    right: -70px;
  }
}
@media screen and (min-width: 900px) {
  .step-img4 {
    top: 150px;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step-img4 {
    top: 148px;
    right: -183px;
  }
}
.step-img4 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .step-img4 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img4 img {
    width: 100px;
  }
}

.step-img5 {
  top: 550px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .step-img5 {
    left: -50px;
  }
}
@media screen and (min-width: 900px) {
  .step-img5 {
    top: 583px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step-img5 {
    top: 581px;
    left: -185px;
  }
}
.step-img5 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .step-img5 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img5 img {
    width: 100px;
  }
}

.step-img6 {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  bottom: 360px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .step-img6 {
    right: -50px;
  }
}
@media screen and (min-width: 900px) {
  .step-img6 {
    display: none;
  }
}
.step-img6 img {
  width: 55px;
}

.step__boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step__boxes {
    margin-top: 40px;
    min-width: 800px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .step__boxes {
    min-width: 1024px;
    gap: 32px;
  }
}

@media screen and (min-width: 900px) {
  .step__box:nth-child(3) {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

.step__line {
  text-align: center;
  display: block;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .step__line {
    position: absolute;
  }
}
.step__line img {
  height: 34px;
}
@media screen and (min-width: 900px) {
  .step__line img {
    height: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .step__line img {
    height: 25px;
  }
}

@media screen and (min-width: 900px) {
  .step-line1 {
    top: 105px;
    left: calc(50% - 200px);
  }
}
@media screen and (min-width: 1200px) {
  .step-line1 {
    top: 186px;
    left: 253px;
  }
}

@media screen and (min-width: 900px) {
  .step-line2 {
    top: 105px;
    right: calc(50% - 170px);
  }
}
@media screen and (min-width: 1200px) {
  .step-line2 {
    top: 186px;
    right: 293px;
  }
}

.step__button {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step__button {
    margin-top: 60px;
  }
}
.step__button a {
  padding: 8px 22px;
}
@media screen and (min-width: 900px) {
  .step__button a {
    font-size: 20px;
    padding-inline: 38px;
    padding-block: 13px;
  }
}

.box-item {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .box-item {
    max-width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .box-item {
    min-width: 320px;
  }
}

.box-image {
  display: block;
}
.box-image img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .box-image img {
    width: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .box-image img {
    width: 280px;
  }
}

.box-content {
  width: 100%;
  margin-top: 19px;
}
@media screen and (min-width: 1200px) {
  .box-content {
    margin-top: 28px;
  }
}

.box-tittle {
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 1200px) {
  .box-tittle {
    font-size: 20px;
  }
}

.box-text {
  font-size: 12px;
  font-weight: 400;
  margin-top: 19px;
}
@media screen and (min-width: 1200px) {
  .box-text {
    font-size: 16px;
  }
}

.box-button {
  display: block;
  margin-inline: auto;
  background-color: #fff;
  width: 226px;
  padding: 8px;
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .box-button {
    width: 254px;
  }
}
.box-button img {
  width: 20px;
  margin-top: -4px;
}
@media screen and (min-width: 1200px) {
  .box-button img {
    width: 24px;
  }
}
.box-button a {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .box-button a {
    font-size: 16px;
  }
}

.prizes {
  overflow: hidden;
  position: relative;
  background: url(../img/prizes-bg.png) no-repeat bottom center/contain;
  background-size: 155%;
  padding-bottom: 239px;
}
@media screen and (min-width: 900px) {
  .prizes {
    background-size: 100%;
    padding-bottom: 687px;
  }
}

.prizes__inner {
  max-width: 600px;
  padding-inline: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    max-width: 640px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 840px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    max-width: 1224px;
    padding-inline: 100px;
  }
}

.prizes__content {
  position: relative;
  padding-top: 39px;
  padding-bottom: 5px;
  min-height: unset;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    padding-top: 34px;
  }
}
.prizes__content::before {
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  height: calc(100% - 70px);
  min-height: auto;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .prizes__content::before {
    top: 153px;
    max-width: 1024px;
    height: calc(100% - 105px);
  }
}
.prizes__content::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 250px;
  height: 83px;
  background: url(../img/sp/prizes-top-bg-sp.png) no-repeat center/contain;
}
@media screen and (min-width: 900px) {
  .prizes__content::after {
    top: 0;
    left: 50%;
    width: 380px;
    height: 155px;
    background: url(../img/prizes-top-bg-pc.png) no-repeat center/contain;
  }
}

.prizes__layout-left {
  display: none;
  position: absolute;
  top: 33px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .prizes__layout-left {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .prizes__layout-left img {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__layout-left img {
    width: 315px;
    height: 86px;
  }
}

.prizes__layout-right {
  display: none;
  position: absolute;
  top: 33px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .prizes__layout-right {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .prizes__layout-right img {
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__layout-right img {
    width: 315px;
    height: 86px;
  }
}

.prizes__head-image {
  display: none;
}
.prizes__head {
  position: relative;
  z-index: 1;
}

.prizes__body {
  position: relative;
  margin-top: 16px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__body {
    margin-top: 40px;
    padding-inline: 56px;
  }
}

.prizes__lead {
  text-align: center;
}

.prizes__cards {
  margin-top: 48px;
  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;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 82px;
    gap: 32px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
.prizes__card:nth-child(n+3) {
  margin-top: 24px;
}
.prizes__card:nth-child(5) {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(1), .prizes__card:nth-child(2) {
    width: calc(50% - 16px);
    max-width: 440px;
    max-height: 510px;
  }
  .prizes__card:nth-child(1) .prizes-card__content, .prizes__card:nth-child(2) .prizes-card__content {
    width: 100%;
    height: 120px;
    border-radius: 0 0 24px 24px;
    padding-block: 32px;
  }
  .prizes__card:nth-child(1) .prizes-card__content::before, .prizes__card:nth-child(2) .prizes-card__content::before {
    border-radius: 0 0 24px 0;
    width: 100px;
    height: 100px;
  }
  .prizes__card:nth-child(1) .prizes-card__content::after, .prizes__card:nth-child(2) .prizes-card__content::after {
    width: 32px;
    height: 32px;
    bottom: 15px;
    right: 13px;
  }
  .prizes__card:nth-child(1) .prizes-card-head, .prizes__card:nth-child(2) .prizes-card-head {
    top: -50px;
  }
  .prizes__card:nth-child(1) .prizes-card-head img, .prizes__card:nth-child(2) .prizes-card-head img {
    width: 100px;
  }
  .prizes__card:nth-child(1) .prizes-card__text, .prizes__card:nth-child(2) .prizes-card__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
  }
  .prizes__card:nth-child(n+3) {
    margin-top: 47px;
  }
  .prizes__card:nth-child(3), .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    width: calc(33.33% - 21.5px);
  }
}

.prizes__button {
  position: relative;
  text-align: center;
  margin-top: 19px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
  }
}
.prizes__button a {
  padding: 8px 22px;
}
@media screen and (min-width: 900px) {
  .prizes__button a {
    padding: 13px 38px;
    font-size: 20px;
  }
}

.prizes__background {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.prizes__background img {
  width: 580px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes-card {
  position: relative;
  -webkit-transition: border 0.3s, border-radius 0.3s;
  transition: border 0.3s, border-radius 0.3s;
}
.prizes-card:hover {
  border: 4px solid #9ed0e0;
  border-radius: 24px;
}
.prizes-card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes-card:hover .prizes-card__content::before {
  background-color: #9ed0e0;
}

.prizes-card-head {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .prizes-card-head {
    top: -40px;
  }
}
.prizes-card-head img {
  width: 48px;
}
@media screen and (min-width: 900px) {
  .prizes-card-head img {
    width: 80px;
  }
}

.prizes-card__image {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    border-radius: 16px 16px 0 0;
  }
}
.prizes-card__image img {
  min-height: 140px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.prizes-card__content {
  background-color: #f5f5f5;
  border-radius: 0 0 8px 8px;
  padding-block: 9px;
  min-height: 56px;
  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;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes-card__content {
    width: 100%;
    height: 80px;
    border-radius: 0 0 16px 16px;
    padding-block: 27px;
  }
}
.prizes-card__content::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  background-color: #67b0c7;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 0 0 8px 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .prizes-card__content::before {
    border-radius: 0 0 16px 0;
    width: 64px;
    height: 64px;
  }
}
.prizes-card__content::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: url(../img/prizes-zoom-icon.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
}
@media screen and (min-width: 900px) {
  .prizes-card__content::after {
    width: 20.48px;
    height: 20.48px;
    right: 10px;
    bottom: 10px;
  }
}

.prizes-card__text {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-card__text {
    font-size: 16px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 336px;
  max-height: 480px;
  border-radius: 24px;
  padding: 0 0 23px 0;
  overflow: auto;
  background: #fff;
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    max-width: 480px;
    max-height: 650px;
    padding: 0 0 54px 0;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.5;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.5;
  background: #000;
}
.prizes-modal:focus {
  outline: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.prizes-modal__image img {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image img {
    height: 300px;
  }
}

.prizes-modal__body {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body {
    padding-inline: 40px;
  }
}

.prizes-modal__tittle {
  margin-top: 39px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-modal__tittle {
    margin-top: 32px;
    font-size: 20px;
  }
}

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

.prizes-modal__close-button {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__close-button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal__close-button a {
    padding: 6px 24px;
    font-size: 16px;
  }
}

.spots {
  position: relative;
  background-color: #67b0c7;
  overflow: visible !important;
  padding-top: 6px;
  padding-bottom: 22px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 0;
  }
}
.spots::before {
  content: "";
  position: absolute;
  top: -41px;
  left: -4px;
  background: url(../img/sp/spots-wave-top-sp.png) repeat-x;
  width: calc(100vw + 4px);
  height: 47px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    top: -119px;
    left: 0;
    height: 120px;
    width: 100vw;
    background: url(../img/spots-wave-top-pc.png) repeat-x;
  }
}
.spots::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: -4px;
  background: url(../img/sp/spots-wave-bottom-sp.png) repeat-x;
  width: calc(100vw + 4px);
  height: 47px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    left: -5px;
    bottom: -100px;
    height: 120px;
    width: calc(100vw + 5px);
    background: url(../img/spots-wave-bottom-pc.png) repeat-x;
  }
}

.spots__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 50px;
    padding-bottom: 64px;
    gap: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 246px;
    padding-bottom: 64px;
  }
}

.spots__tittle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots__tittle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 17px;
  }
}
.spots__tittle img {
  margin-top: 3px;
  width: 28px;
}
@media screen and (min-width: 900px) {
  .spots__tittle img {
    width: 56px;
    margin-top: 2px;
  }
}

.spots__text {
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    letter-spacing: 10px;
    margin-bottom: 0;
  }
}

.spots__swiper {
  -ms-touch-action: pan-x;
      touch-action: pan-x; /* 垂直スクロールを無効化 */
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.spots__swiper-slide {
  width: 240px;
  height: 402px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 900px) {
  .spots__swiper-slide {
    width: 344px;
    height: 542px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

@media screen and (min-width: 900px) {
  .swiper-button-prev {
    background: url(../img/spots-button-prev.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    z-index: 10;
    left: 85px;
    top: 535px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev {
    left: 283px;
    top: 508px;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-next {
    background: url(../img/spots-button-next.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    z-index: 10;
    top: 535px;
    left: 745px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-next {
    top: 508px;
    left: 1120px;
  }
}
@media screen and (min-width: 1500px) {
  .swiper-button-next {
    top: 508px;
    left: 1148px;
  }
}

.spots-slide__image img {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots-slide__image img {
    height: 240px;
    border-radius: 24px 24px 0 0;
  }
}

.spots-slide__body {
  background-color: #fff;
  height: 222px;
  padding-top: 20px;
  padding-bottom: 36px;
  padding-inline: 24px;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 900px) {
  .spots-slide__body {
    height: 302px;
    padding-top: 28px;
    padding-bottom: 40px;
    padding-inline: 32px;
    border-radius: 0 0 24px 24px;
  }
}

.spots-slide__tittle {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots-slide__tittle {
    font-size: 20px;
  }
}

.spots-slide__text {
  margin-top: 19px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .spots-slide__text {
    margin-top: 28px;
    font-size: 16px;
  }
}

.spots__inner {
  position: relative;
}

.spots__body {
  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: 1200px) {
  .spots__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
  }
}

.spots__logo {
  text-align: center;
  display: block;
}
.spots__logo img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 1200px) {
  .spots__logo img {
    width: 495px;
    height: 107px;
  }
}

.spots__body-content {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots__body-content {
    margin-top: 0;
  }
}

.spots__body-text {
  font-size: 11.444px;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .spots__body-text {
    font-size: 16px;
  }
}

.spots__body-button {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .spots__body-button {
    margin-top: 25px;
  }
}
.spots__body-button a {
  padding: 8px 22px;
}
@media screen and (min-width: 900px) {
  .spots__body-button a {
    font-size: 20px;
    padding: 13px 38px;
    margin-left: 10px;
  }
}

.spots__item {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__item {
    display: block;
    position: absolute;
    left: -184px;
    bottom: -3px;
  }
}
.spots__item img {
  width: 100px;
  height: 220px;
}

.qa {
  margin-top: 85px;
  padding-bottom: 29px;
}
@media screen and (min-width: 768px) {
  .qa {
    margin-top: 221px;
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 600px) {
  .qa__inner {
    max-width: none;
  }
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    max-width: 1072px;
  }
}

.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: 11px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 40px;
    gap: 23px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .qa-box {
    border-radius: 16px;
  }
}

.qa-box__head {
  background-color: #fff;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 15px;
  padding-inline: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding-top: 21px;
    padding-bottom: 20px;
    padding-inline: 21px;
    gap: 17px;
  }
}

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

.qa-box__head-text {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-button {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .qa-box__head-button {
    margin-left: auto;
  }
}
.qa-box__head-button img {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-button img {
    width: 48px;
  }
}

.qa-box__boxy {
  background-color: #f5f5f5;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .qa-box__boxy {
    padding-top: 24px;
    padding-bottom: 22px;
    padding-inline: 23px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

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

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

.info {
  background: url(../img/sp/info-bg-sp.png) no-repeat bottom center/contain;
  padding-bottom: 132px;
}
@media screen and (min-width: 600px) {
  .info {
    padding-bottom: 300px;
  }
}
@media screen and (min-width: 900px) {
  .info {
    padding-bottom: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .info {
    background: url(../img/info-bg-pc.png) no-repeat bottom center/contain;
    padding-bottom: 520px;
  }
}

@media screen and (min-width: 600px) {
  .info__inner {
    max-width: none;
  }
}
@media screen and (min-width: 900px) {
  .info__inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .info__inner {
    max-width: 1072px;
  }
}

.info__content {
  border: 8px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  padding-block: 16px;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .info__content {
    padding-block: 25px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 900px) {
  .info__content {
    padding-block: 31px;
    padding-inline: 49px;
  }
}

.info__boxes {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .info__boxes {
    margin-top: 40px;
    gap: 12px;
  }
}

.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
.info-box:nth-child(5) {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .info-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding-bottom: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.info-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .info-box__head {
    width: 150px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 900px) {
  .info-box__head {
    padding-left: 15px;
    width: 239px;
  }
}

.info-box__item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #9ed0e0;
}

.info-box__tittle {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .info-box__tittle {
    font-size: 16px;
  }
}

.info-box__text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .info-box__text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
  }
}

.info-box__text-group {
  list-style: disc;
  padding-left: 19px;
}
@media screen and (min-width: 768px) {
  .info-box__text-group {
    padding-left: 24px;
  }
}

.info-box__text-item {
  display: list-item;
  font-size: 12px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .info-box__text-item {
    font-size: 16px;
    line-height: 26px;
  }
}

.contact {
  background-color: #fff;
  padding-top: 41px;
  padding-bottom: 43px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 120px;
  }
}

.contact__inner {
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 895px;
  }
}

.contact__lead {
  margin-block: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__lead {
    margin-block: 32px;
    font-size: 16px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    margin-top: 41px;
  }
}

@media screen and (min-width: 900px) {
  .contact__field:last-of-type .form-field__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 1px;
  }
}

.contact__privacy {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 41px;
  }
}

.contact__button {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}

.form-field {
  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;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 211px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background-color: #ce2073;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .form-field__tag {
    padding: 1px 8px;
  }
}

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-field__select {
  position: relative;
}
.form-field__select::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: #9ed0e0;
  width: 52px;
  height: 55px;
  border-radius: 0 8px 8px 0;
}
@media screen and (min-width: 900px) {
  .form-field__select::before {
    height: 55px;
  }
}
.form-field__select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/form-item.svg) no-repeat center/contain;
  width: 32px;
  height: 32px;
}

.form-text {
  width: 100%;
  padding-inline: 16px;
  padding-top: 16px;
  padding-bottom: 19px;
  border-radius: 8px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding-bottom: 13px;
  }
}
.form-text:hover, .form-text:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}

.form-select {
  width: 100%;
  padding-inline: 15px;
  padding-top: 16px;
  padding-bottom: 19px;
  border-radius: 8px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 14px;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding-bottom: 12px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    padding-block: 12px;
    gap: 22px;
  }
}

.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__input:hover + .from-radio__text::before, .from-radio__input:focus + .from-radio__text::before {
  outline: 1px solid #9ed0e0;
}

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

.form-textarea {
  width: 100%;
  height: 161px;
  border: 1px solid transparent;
  padding-block: 16px;
  padding-inline: 15px;
  border-radius: 8px;
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
    height: 160px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}

.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__text {
  font-size: 14px;
  position: relative;
  padding-left: 35px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
    padding-left: 36px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: none;
  background-color: #f5f5f5;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/form-check-icon.svg) no-repeat center center/contain;
  opacity: 0;
}

.link-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .link-text {
    font-size: 16px;
  }
}

.form-button {
  font-size: 16px;
  padding: 9px 22px;
}
@media screen and (min-width: 900px) {
  .form-button {
    padding: 6px 38px;
  }
}

/* エラー時のスタイル */
.form-text.error,
.form-select.error,
.form-textarea.error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.form-field__select.error::before {
  background: #ce2073;
}

/* エラー時でも hover, focus のスタイルを適用 */
.form-text.error:hover,
.form-text.error:focus,
.form-textarea.error:hover,
.form-textarea.error:focus,
.form-select.error:hover,
.form-select.error:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}

.form-field__select.error:hover::before,
.form-field__select.error:focus::before {
  background: #9ed0e0;
}

.footer {
  padding-top: 40px;
  padding-bottom: 24px;
  overflow: hidden;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 240px;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -2px;
  background: url(../img/sp/spots-wave-top-sp.png) repeat-x;
  width: calc(100vw + 5px);
  height: 47px;
}
@media screen and (min-width: 900px) {
  .footer::before {
    background: url(../img/spots-wave-top-pc.png) repeat-x;
    height: 120px;
    bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .footer::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 10px;
    background: url(../img/about-footprints.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .footer::after {
    top: 80px;
    right: 80px;
  }
}

.footer__inner {
  max-width: 550px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1096px;
  }
}

.footer__lead {
  text-align: center;
  font-size: 20px;
  font-family: "Josefin Sans", serif;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer__lead {
    font-size: 24px;
  }
}

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

.footer__item a img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .footer__item a img {
    width: 40px;
    height: 40px;
  }
}

.footer__logo {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    margin-top: 41px;
  }
}
.footer__logo img {
  width: 330px;
}
@media screen and (min-width: 900px) {
  .footer__logo img {
    width: 755px;
  }
}

.footer__button {
  margin-top: 23px;
  margin-bottom: 43px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__button {
    display: none;
  }
}
.footer__button a img {
  width: 77px;
  height: 81px;
}

.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -3px;
}
@media screen and (min-width: 900px) {
  .footer-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1035px;
    margin-top: -5px;
  }
}

@media screen and (min-width: 900px) {
  .footer-content__head,
  .footer-content__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.footer-content__head {
  max-width: 512px;
}

.footer-content__map iframe {
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer-content__map iframe {
    width: 100%;
    max-width: 512px;
    height: 400px;
    aspect-ratio: 512/400;
    border-radius: 0 16px 16px 0;
  }
}

.footer-content__body {
  background-color: #fff;
  padding-top: 23px;
  padding-bottom: 28px;
  padding-inline: 28px;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 900px) {
  .footer-content__body {
    padding-inline: 20px;
    padding-block: 90px;
    border-radius: 16px 0 0 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-content__body {
    padding-block: 102px;
    padding-inline: 61.5px;
    border-radius: 16px 0 0 16px;
    max-width: 511px;
  }
}

.footer-content__logo {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer-content__logo {
    text-align: left;
  }
}
.footer-content__logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer-content__logo img {
    width: 183px;
  }
}

.footer-content__info {
  margin-top: 30px;
  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;
}
@media screen and (min-width: 900px) {
  .footer-content__info {
    gap: 12px;
    margin-top: 26px;
  }
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-info__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 900px) {
  .footer-info__head {
    width: 120px;
  }
}

.footer-info__item {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}

.footer-info__tittle {
  font-weight: 700;
  padding-left: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .footer-info__tittle {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .footer-info__text {
    font-size: 16px;
  }
}

.copyright {
  text-align: center;
  background: #67b0c7;
  padding-top: 0;
  padding-bottom: 24px;
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .copyright {
    padding-bottom: 32px;
  }
}
.copyright small {
  font-size: 10px;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .copyright small {
    font-size: 14px;
  }
}

.pagetop {
  display: none;
}
@media screen and (min-width: 900px) {
  .pagetop {
    display: block;
    position: fixed;
    right: 40px;
    bottom: 145px;
    width: 100px;
    height: 104px;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop img {
  width: 100px;
  height: 104px;
}