@charset "UTF-8";
body {
  font-size: 14px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3636;
  background-color: #e9f6f8;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

.heading {
  padding-inline: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading {
    padding-inline: 20px;
    gap: 8px;
  }
}

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

.heading__title {
  color: var(--LP-Blown, #4a3636);
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 20px;
  }
}

.heading__text {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .heading__text {
    font-size: 32px;
    gap: 8px;
  }
}
.heading__text::after {
  content: "";
  width: 100%;
  height: 6px;
  background: #ffee56;
}
@media screen and (min-width: 768px) {
  .heading__text::after {
    width: 100%;
    height: 8px;
  }
}

.button {
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  padding: 4px 22px 6px;
  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-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}

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

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

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

.space {
  display: block; /* ブロック要素にして改行 */
  height: 1.5em; /* 1行分の高さを確保 */
}
@media screen and (min-width: 768px) {
  .space {
    height: 1.7em; /* 1行分の高さを確保 */
  }
}

.Bold {
  font-weight: 700;
}

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

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

.link {
  text-decoration: underline;
}
.link:hover {
  color: #67b0c7;
}

.header {
  height: 64px;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header__inner {
  height: 100%;
  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;
  padding-block: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1512px;
    padding: 0 24px;
  }
}

.header__logo {
  position: relative;
  z-index: 100;
}
.header__logo img {
  width: 210px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 183px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: relative;
    z-index: 100;
  }
}
@media screen and (min-width: 1050px) {
  .header__nav {
    gap: 13px;
  }
}

@media screen and (min-width: 768px) {
  .header__link {
    font-size: 12px;
    font-weight: 400;
  }
  .header__link:hover {
    color: #67b0c7;
  }
}

@media screen and (min-width: 768px) {
  .header__button {
    width: 132px;
  }
}

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

.drawer-icon {
  margin-top: 3px;
  width: 32px;
  height: 32px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  z-index: 51;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.middle {
  background: none;
  /* 背景を消す */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 左右に分割 */
}
.middle::before, .middle::after {
  content: "";
  height: 100%;
  background-color: #4a3636;
  border-radius: 6px;
  /* 丸みをつける */
}
.middle::before {
  width: 80%;
  /* 両端の幅 */
}
.middle::after {
  width: 15%;
}

.drawer-content {
  text-align: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 64px;
  right: 0;
  background-color: #ffffff;
  padding-block: 82px;
  z-index: 50;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  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;
}

.drawer-content__link {
  color: var(--LP-Blown, #4a3636);
  font-weight: 400;
}

.drawer-content__button {
  text-align: center;
}
.drawer-content__button .button {
  font-size: 16px;
  width: 144px;
}

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

.fv__inner {
  padding-block: 17px 376px;
  position: relative;
  max-width: 409px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 866px;
    margin-left: auto;
    margin-right: auto;
    padding-block: 35px 463px;
    height: 740px;
  }
}

.fv__content {
  text-align: center;
}

.fv__description {
  text-shadow: 0px 0px 30px #ffffff;
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .fv__description {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title-images {
  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;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .fv__title-images {
    margin-top: 24px;
    gap: 16px;
  }
}

.fv__title-image1 img {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .fv__title-image1 img {
    width: 520px;
  }
}

.fv__title-image2 img {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .fv__title-image2 img {
    width: 356px;
  }
}

.fv__main-image {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  top: 291px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .fv__main-image {
    top: 310px;
    max-width: 28.8683602771%;
  }
}
.fv__main-image img {
  min-width: 200px;
}
@media screen and (min-width: 768px) {
  .fv__main-image img {
    width: 100%;
  }
}

.fv__sub-images {
  position: relative;
}

.fv__sub-image1 {
  position: absolute;
  z-index: 5;
  top: 17px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image1 {
    top: 0;
    left: 37px;
  }
}
.fv__sub-image1 img {
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image1 img {
    width: 244px;
    height: 130px;
  }
}

.fv__sub-image2 {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image2 {
    top: 17px;
    right: 127px;
    max-width: 21.2765957447%;
  }
}
.fv__sub-image2 img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image2 img {
    width: 100%;
  }
}

.fv__sub-image3 {
  position: absolute;
  z-index: 11;
  top: 391px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image3 {
    top: 227px;
    left: 0;
  }
}
.fv__sub-image3 img {
  width: 89px;
  height: 141px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image3 img {
    width: 202px;
    height: 332px;
  }
}

.fv__sub-image4 {
  position: absolute;
  z-index: 11;
  top: 405px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image4 {
    top: 309px;
    right: 63px;
  }
}
.fv__sub-image4 img {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image4 img {
    width: 170px;
  }
}

.fv__sub-image5 {
  position: absolute;
  z-index: 12;
  top: 460px;
  right: 9px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image5 {
    top: 429px;
    right: 0;
  }
}
.fv__sub-image5 img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__sub-image5 img {
    width: 233px;
    height: 174px;
  }
}

.about {
  overflow: hidden;
}

.about__inner {
  padding-inline: 20px;
  margin-top: 156px;
  padding-top: 32px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 888px;
    padding-top: 80px;
    margin-top: 97px;
  }
}

.about__contents {
  text-align: center;
  padding-block: 40px;
  padding-inline: 12px;
  border-radius: 24px;
  background-color: #ffffff;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .about__contents {
    border-radius: 40px;
  }
}
.about__contents::before {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/about/about-arrow.png) no-repeat center/contain;
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .about__contents::before {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}

.about__title {
  display: inline-block;
  width: 230px;
}
@media screen and (min-width: 768px) {
  .about__title {
    width: 360px;
  }
}

.about__bg-images {
  position: relative;
  z-index: 1;
}
.about__bg-images .about__bg-image1 {
  position: absolute;
  width: 200px;
  top: -273px;
  left: -181px;
}

.about__inner-image1,
.about__inner-image2 {
  position: absolute;
  top: 32px;
  width: 88px;
}
@media screen and (min-width: 768px) {
  .about__inner-image1,
  .about__inner-image2 {
    width: 149px;
    top: 45px;
  }
}
.about__inner-image1 img,
.about__inner-image2 img {
  width: 100%;
}

.about__inner-image1 {
  left: 33px;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .about__inner-image1 {
    top: 35px;
    left: 60px;
  }
}
@media screen and (min-width: 1050px) {
  .about__inner-image1 {
    top: 35px;
    left: 85px;
  }
}

.about__inner-image2 {
  right: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .about__inner-image2 {
    right: 56px;
  }
}
@media screen and (min-width: 1050px) {
  .about__inner-image2 {
    right: 84px;
  }
}

.about-content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .about-content {
    gap: 32px;
  }
}

.about-content__title {
  margin-top: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about-content__title {
    margin-top: 32px;
  }
}

.about-content__explanation {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .about-content__explanation {
    font-size: 16px;
  }
}

.about-content__pop {
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  padding-top: 8px;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .about-content__pop {
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.about__button a {
  font-size: 16px;
  width: 192px;
}
@media screen and (min-width: 768px) {
  .about__button a {
    font-size: 20px;
    width: 260px;
    border: 3px solid #4a3636;
    padding: 7px 37px 9px;
  }
}

.about__bg-images {
  position: relative;
}
.about__bg-images .about__bg-image1,
.about__bg-images .about__bg-image2,
.about__bg-images .about__bg-image3,
.about__bg-images .about__bg-image4,
.about__bg-images .about__bg-image5,
.about__bg-images .about__bg-image6,
.about__bg-images .about__bg-image7,
.about__bg-images .about__bg-image8,
.about__bg-images .about__bg-image9 {
  position: absolute;
}
.about__bg-images .about__bg-image1 {
  width: 200px;
  top: -313px;
  left: -160px;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image1 {
    width: 480px;
    height: 480px;
    top: -755px;
    left: -670px;
    z-index: 5;
  }
}
.about__bg-images .about__bg-image2 {
  width: 200px;
  top: -435px;
  right: -160px;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image2 {
    width: 480px;
    height: 480px;
    top: -756px;
    right: -616px;
  }
}
.about__bg-images .about__bg-image3 {
  width: 138px;
  height: 215px;
  top: 0px;
  left: -20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image3 {
    width: 427px;
    height: 817px;
    top: -506px;
    left: -436px;
  }
}
.about__bg-images .about__bg-image4 {
  z-index: 5;
  width: 48px;
  top: 11px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image4 {
    width: 100px;
    height: 100px;
    top: -224px;
    right: -184px;
  }
}
.about__bg-images .about__bg-image5 {
  width: 133px;
  top: 54px;
  right: 37px;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image5 {
    width: 308px;
    top: -69px;
    right: -258px;
  }
  .about__bg-images .about__bg-image5 img {
    width: 100%;
  }
}
.about__bg-images .about__bg-image6 {
  width: 54px;
  height: 120px;
  top: -717px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image6 {
    width: 100px;
    height: 220px;
    top: -909px;
    right: -166px;
  }
}
.about__bg-images .about__bg-image7 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image7 {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    top: -849px;
    left: -353px;
  }
}
.about__bg-images .about__bg-image8 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image8 {
    display: block;
    width: 806px;
    height: 12px;
    right: -898px;
    top: -229px;
  }
}
.about__bg-images .about__bg-image9 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__bg-images .about__bg-image9 {
    display: block;
    width: 806px;
    height: 12px;
    right: -831px;
    top: -196px;
  }
}

.about__gallery {
  margin-top: 140px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__gallery {
    margin-top: 167px;
  }
}

.about__gallery-logo {
  display: block;
  margin-inline: auto;
  position: relative;
  z-index: 20;
}
.about__gallery-logo img {
  width: 354px;
}
@media screen and (min-width: 768px) {
  .about__gallery-logo img {
    width: 891px;
    height: 97px;
  }
}

.about-gallery__swiper {
  overflow-x: clip;
  /* 横スクロールを防ぐ */
  overflow-y: visible;
  /* 縦方向のスクロールは許可 */
}

.about-gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 20;
}

.about-gallery__slide {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about-gallery__slide {
    width: 200px;
    margin-top: -4px;
  }
  .about-gallery__slide img {
    width: 100%;
  }
}

.how-to-enter {
  padding-top: 31px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-top: 120px;
    padding-bottom: 60px;
    max-width: 1460px;
    margin-inline: auto;
    padding-inline: 10px;
  }
}

.how-to-enter__inner {
  padding-block: 32px 32px;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .how-to-enter__inner {
    padding-block: 0;
    max-width: 1024px;
    padding-inline: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.how-to-enter__content {
  text-align: center;
  position: relative;
  z-index: 20;
}

.how-to-enter__title {
  display: inline-block;
  width: 130px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__title {
    width: 200px;
  }
}

.how-to-enter__items {
  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;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .how-to-enter__items {
    height: 553px;
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
@media screen and (min-width: 1050px) {
  .how-to-enter__items {
    height: 553px;
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .how-to-enter__item:nth-child(2) {
    margin-top: 69px;
  }
}

.step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .step-item {
    gap: 16px;
    width: 320px;
  }
}

.step-item__image {
  position: relative;
}
.step-item__image img {
  width: 196px;
}
@media screen and (min-width: 768px) {
  .step-item__image img {
    width: 280px;
  }
}

.how-to-enter__item-line1 {
  position: absolute;
  top: 533px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.how-to-enter__item-line1 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__item-line1 {
    top: 48%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 25%;
  }
  .how-to-enter__item-line1 img {
    width: 113px;
    height: 24px;
  }
}

.how-to-enter__item-line2 {
  position: absolute;
  top: 927px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.how-to-enter__item-line2 img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__item-line2 {
    top: 48%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 60.2%;
  }
  .how-to-enter__item-line2 img {
    width: 113px;
    height: 24px;
  }
}

.step-item__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .step-item__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1050px) {
  .step-item__title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.step-item__text {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .step-item__text {
    font-size: 11px;
  }
}
@media screen and (min-width: 1050px) {
  .step-item__text {
    font-size: 16px;
  }
}

.step-item__button {
  padding: 8px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  background-color: #ffffff;
  width: 226px;
  margin-inline: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .step-item__button {
    width: 180px;
  }
}
@media screen and (min-width: 1050px) {
  .step-item__button {
    width: 254px;
  }
}

.step-item__button-icon {
  width: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .step-item__button-icon {
    width: 20px;
  }
}
@media screen and (min-width: 1050px) {
  .step-item__button-icon {
    width: 24px;
  }
}
.step-item__button-icon img {
  width: 100%;
}

.step-item__button-text {
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .step-item__button-text {
    font-size: 10px;
  }
}

.how-to-enter__button {
  margin-top: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .how-to-enter__button {
    margin-top: 0;
  }
}
@media screen and (min-width: 1050px) {
  .how-to-enter__button {
    margin-top: 39px;
  }
}
.how-to-enter__button a {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .how-to-enter__button a {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__button a {
    width: 437px;
    font-size: 20px;
    border: 3px solid #4a3636;
    padding: 7px 37px 9px;
  }
}

.how-to-enter__bg-images {
  position: relative;
}
.how-to-enter__bg-images .how-to-enter__bg-image1,
.how-to-enter__bg-images .how-to-enter__bg-image2,
.how-to-enter__bg-images .how-to-enter__bg-image3,
.how-to-enter__bg-images .how-to-enter__bg-image4,
.how-to-enter__bg-images .how-to-enter__bg-image5,
.how-to-enter__bg-images .how-to-enter__bg-image6 {
  position: absolute;
}
.how-to-enter__bg-images .how-to-enter__bg-image1 img,
.how-to-enter__bg-images .how-to-enter__bg-image2 img,
.how-to-enter__bg-images .how-to-enter__bg-image3 img,
.how-to-enter__bg-images .how-to-enter__bg-image4 img,
.how-to-enter__bg-images .how-to-enter__bg-image5 img,
.how-to-enter__bg-images .how-to-enter__bg-image6 img {
  width: 100%;
  height: 100%;
}
.how-to-enter__bg-images .how-to-enter__bg-image1 {
  width: 149px;
  height: 223px;
  top: -1361px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image1 {
    width: 460px;
    height: 689px;
    top: -894px;
    left: -208px;
  }
}
.how-to-enter__bg-images .how-to-enter__bg-image2 {
  width: 105px;
  height: 63px;
  top: -1361px;
  right: 4px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image2 {
    width: 238px;
    height: 141px;
    top: -860px;
    right: -13px;
  }
}
.how-to-enter__bg-images .how-to-enter__bg-image3 {
  width: 94px;
  height: 80px;
  top: -1356px;
  right: -51px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image3 {
    width: 214px;
    height: 181px;
    top: -850px;
    right: -139px;
  }
}
.how-to-enter__bg-images .how-to-enter__bg-image4 {
  width: 55px;
  height: 120px;
  top: -1287px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image4 {
    width: 100px;
    height: 220px;
    top: -686px;
    right: -208px;
  }
}
.how-to-enter__bg-images .how-to-enter__bg-image5 {
  width: 55px;
  height: 120px;
  top: -811px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image5 {
    width: 100px;
    height: 220px;
    top: -254px;
    left: -208px;
  }
}
.how-to-enter__bg-images .how-to-enter__bg-image6 {
  width: 55px;
  height: 120px;
  top: -481px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-images .how-to-enter__bg-image6 {
    display: none;
  }
}

.prizes {
  padding-top: 88px;
  position: relative;
  overflow: hidden;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 60px;
    padding-top: 155px;
  }
}

.prizes__inner {
  padding-bottom: 216px;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    padding-bottom: 640px;
  }
}

.prizes__content {
  max-width: 500px;
  border-radius: 24px;
  background: #ffffff;
  margin-inline: auto;
  padding: 59px 20px 34px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .prizes__content {
    max-width: 1024px;
    padding-top: 67px;
    padding-bottom: 54px;
    padding-inline: 55px;
  }
}

.prizes__deco-center {
  width: 253.6px;
  height: 83px;
  position: absolute;
  top: -80px;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__deco-center {
    width: 379px;
    height: 149px;
    top: -125px;
    left: 50.5%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1050px) {
  .prizes__deco-center {
    width: 379px;
    height: 149px;
    top: -146px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.prizes__deco-left,
.prizes__deco-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__deco-left,
  .prizes__deco-right {
    display: block;
    max-width: 30.76171875%;
    position: absolute;
    top: -120px;
  }
}

.prizes__deco-left {
  left: 0;
}

.prizes__deco-right {
  right: 0;
}

.prizes__title {
  display: inline-block;
  width: 190px;
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__title {
    top: -119px;
    width: 296px;
  }
}

.prizes__text {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 374px) {
  .prizes__text {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__text {
    font-size: 16px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 39px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 48px;
  padding-bottom: 18px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    gap: 0;
    padding-top: 83px;
    padding-bottom: 40px;
  }
}

.prizes__card-wrapper {
  position: relative;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper {
    margin-right: 32px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(1), .prizes__card-wrapper:nth-of-type(2) {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(2), .prizes__card-wrapper:nth-of-type(5) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(3), .prizes__card-wrapper:nth-of-type(4) {
    margin-right: 36px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) {
    width: calc(33.3% - 24px);
    margin-top: 80px;
    border-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) .prizes-card__number {
    width: 80px;
    height: 80px;
    top: -39px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) .prizes-card__image img {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) .prizes-card__text {
    height: 80px;
    font-size: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) .prizes-card__triangle {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__card-wrapper:nth-of-type(n + 3) .prizes-card__icon {
    width: 20.48px;
    height: 20.48px;
    bottom: 10px;
    right: 8px;
  }
}

.prizes__card {
  border-radius: 8px;
  border: none;
  position: relative;
  border: 2px solid transparent;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  border: 4px solid #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .prizes__card {
    border-radius: 24px;
  }
}
.prizes__card:hover {
  border: 4px solid #9ed0e0;
}
.prizes__card:hover .prizes-card__triangle-path {
  fill: #9ed0e0;
}
.prizes__card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes-card__number {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes-card__number {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}
.prizes-card__number img {
  width: 100%;
}

.prizes-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.prizes-card__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  -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: 768px) {
  .prizes-card__image img {
    border-top-right-radius: 21px;
    border-top-left-radius: 21px;
    margin-bottom: -2px;
  }
}

.prizes-card__text {
  height: 56px;
  font-size: 12px;
  font-weight: 700;
  background: #f5f5f5;
  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;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-block: 9px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes-card__text {
    height: 120px;
    font-size: 20px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }
}

.prizes-card__triangle {
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .prizes-card__triangle {
    width: 100px;
    height: 100px;
    right: 0px;
    bottom: 0px;
  }
}
.prizes-card__triangle svg path {
  fill: #67b0c7;
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.prizes-card__triangle-svg {
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 768px) {
  .prizes-card__triangle-svg {
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 24px;
  }
}

.prizes-card__icon {
  width: 11.52px;
  height: 11.52px;
  position: absolute;
  bottom: 6px;
  right: 5px;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .prizes-card__icon {
    width: 32px;
    height: 32px;
    bottom: 16px;
    right: 16px;
  }
}
.prizes-card__icon img {
  display: block;
  width: 100%;
}

.prizes__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prizes__button a {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .prizes__button a {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__button a {
    width: 437px;
    border: 3px solid #4a3636;
    font-size: 20px;
    padding: 7px 37px 9px;
  }
}

.prizes-bg-images {
  position: relative;
  z-index: -1;
}
.prizes-bg-images .prizes-bg-image1,
.prizes-bg-images .prizes-bg-image2 {
  position: absolute;
}
.prizes-bg-images .prizes-bg-image1 img,
.prizes-bg-images .prizes-bg-image2 img {
  width: 100%;
  height: 100%;
}
.prizes-bg-images .prizes-bg-image1 {
  width: 580px;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes-bg-images .prizes-bg-image1 {
    top: 0;
    width: 1512px;
    height: 640px;
  }
}
.prizes-bg-images .prizes-bg-image2 {
  width: 100%;
  height: 45.714px;
  top: 170.286px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .prizes-bg-images .prizes-bg-image2 {
    width: 100%;
    height: 120px;
    top: 520px;
  }
}

.prizes-modal {
  width: 336px;
  position: fixed;
  border-radius: 24px;
  border: none;
  background: #ffffff;
  margin: auto;
  padding: 0;
  text-align: center;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .prizes-modal {
    width: 480px;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.6;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.6;
  background: #000;
}

.prizes-modal__image img {
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.prizes-modal__body {
  padding-top: 39px;
  height: 270px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes-modal__body {
    padding-top: 32px;
    height: 350px;
  }
}

.prizes-modal__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prizes-modal__title {
    font-size: 20px;
  }
}

.prizes-modal__text {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__text {
    font-size: 16px;
    padding-inline: 40px;
  }
}

.prizes-modal__button {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__button {
    margin-top: 24px;
  }
}
.prizes-modal__button a {
  width: 96px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__button a {
    font-size: 16px;
  }
}

.spots {
  padding-bottom: 85px;
}
@media screen and (min-width: 768px) {
  .spots {
    padding-bottom: 232px;
    overflow-x: clip;
    /* 横スクロールを防ぐ */
  }
}

.spots__inner {
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .spots__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    position: relative;
  }
}

.spots__title-ja {
  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: 8px;
}
@media screen and (min-width: 768px) {
  .spots__title-ja {
    -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;
    padding-left: 244px;
  }
}

.spots__title-ja-icon {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .spots__title-ja-icon {
    width: 56px;
    height: 56px;
  }
}

.spots__title-ja-text {
  font-family: "Kiwi Maru", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .spots__title-ja-text {
    font-size: 40px;
    width: 40px;
  }
}

.spots__slider {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .spots__slider {
    margin-top: 0;
    width: calc(100% - 56px - 32px);
  }
}

.spots__slide {
  background: #ffffff;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .spots__slide {
    border-radius: 24px;
  }
}

.spots-card__image img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .spots-card__image img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    height: 240px;
  }
}

.spots-card__body {
  height: 222px;
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .spots-card__body {
    height: 302px;
    padding-inline: 32px;
  }
}

.spots-card__title {
  text-align: center;
  padding-top: 15px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    padding-top: 26px;
    font-size: 20px;
  }
}

.spots-card-text {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .spots-card-text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.spots-button-prev::after,
.spots-button-next::after {
  display: none;
}
@media screen and (min-width: 1050px) {
  .spots-button-prev,
  .spots-button-next {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 510px;
  }
}

@media screen and (min-width: 1050px) {
  .spots-button-prev {
    background: url(../img/spots/spots_prev-icon.png) no-repeat center center/contain;
    left: 284px;
  }
}

@media screen and (min-width: 1050px) {
  .spots-button-next {
    background: url(../img/spots/spots_next-icon.png) no-repeat center center/contain;
    left: 690px;
  }
}
@media screen and (min-width: 1230px) {
  .spots-button-next {
    left: 1148px;
  }
}

@media screen and (min-width: 1050px) {
  .spots__box {
    margin-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 10px;
  }
}

.spots__title-en-image {
  text-align: center;
}
.spots__title-en-image img {
  width: 254.439px;
}
@media screen and (min-width: 1050px) {
  .spots__title-en-image img {
    width: 495px;
  }
}

.spots__title-text {
  color: #ffffff;
  font-size: 11.444px;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 1050px) {
  .spots__title-text {
    font-size: 16px;
    margin-top: 0;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.spots__button {
  margin-top: 24px;
  padding-bottom: 19.84px;
  text-align: center;
}
@media screen and (min-width: 1050px) {
  .spots__button {
    padding-bottom: 0;
    text-align: right;
    margin-top: 26px;
  }
}
.spots__button a {
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .spots__button a {
    font-size: 12px;
  }
}
@media screen and (min-width: 1050px) {
  .spots__button a {
    font-size: 20px;
    border: 3px solid #4a3636;
    padding: 7px 37px 9px;
  }
}

.spots-bg-images {
  position: relative;
}

.spots-bg-image1 {
  position: absolute;
  width: 100%;
  height: 45.71px;
  bottom: -45px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots-bg-image1 {
    height: 120px;
    bottom: -112px;
    left: 0;
  }
}
.spots-bg-image1 img {
  width: 100%;
}

.spots-bg-image2 {
  display: none;
  position: absolute;
}
@media screen and (min-width: 1230px) {
  .spots-bg-image2 {
    display: inline-block;
    width: 100px;
    height: 220px;
    left: 36px;
    bottom: 8px;
  }
}

.qa__inner {
  text-align: center;
}

.qa__title {
  display: inline-block;
  width: 170px;
}
@media screen and (min-width: 768px) {
  .qa__title {
    width: 264px;
  }
}

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
}
@media screen and (min-width: 768px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
@media screen and (min-width: 768px) {
  .qa-box.is-open .qa-box__head {
    padding-bottom: 24px;
  }
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/qa/qa-minus.png) no-repeat center center/contain;
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: start;
  gap: 12px;
  background-color: #ffffff;
  width: 100%;
  border-radius: 12px;
  padding: 10px 52px 10px 14px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    border-radius: 16px;
    padding: 24px 86px 23px 22px;
    gap: 16px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: url(../img/qa/qa-plus.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    top: 19px;
    right: 23px;
  }
}

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

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

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

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

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

.qa-box__a-text {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry-requirements {
  margin-top: 29px;
}
@media screen and (min-width: 768px) {
  .entry-requirements {
    margin-top: 120px;
  }
}

.entry-requirements__content {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  padding-inline: 15.5px;
  padding-block: 16px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__content {
    padding-inline: 48px;
    padding-block: 32px;
  }
}

.entry-requirements__title {
  width: 169px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry-requirements__title {
    width: 214px;
  }
}
.entry-requirements__title .heading__text {
  width: 80px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry-requirements__title .heading__text {
    width: 128px;
  }
}

.entry-requirements__lists {
  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) {
  .entry-requirements__lists {
    margin-top: 40px;
    gap: 12.5px;
  }
}

.info-list {
  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;
  text-align: start;
}
@media screen and (min-width: 768px) {
  .info-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding-bottom: 12px;
    position: relative;
  }
  .info-list::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #cccccc;
  }
  .info-list.type-2::after {
    display: none;
  }
}

.info-list__title {
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .info-list__title {
    width: 240px;
    font-size: 16px;
    padding-left: 33px;
  }
}
.info-list__title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .info-list__title::before {
    left: 16px;
    top: 13px;
  }
}

.info-list__text {
  font-size: 12px;
  font-weight: 400;
  padding-bottom: 15.5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .info-list__text {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.info-list__text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #cccccc;
}
@media screen and (min-width: 768px) {
  .info-list__text::after {
    display: none;
  }
}
.info-list__text.type2 {
  padding-left: 18px;
  padding-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 {
    padding-left: 24px;
    padding-bottom: 0;
  }
}
.info-list__text.type2 span:nth-of-type(2) {
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(2) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(3) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(3) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(4) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(4) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(5) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(5) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(6) {
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(6) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(7) {
  margin-top: -1px;
}
.info-list__text.type2 span:nth-of-type(8) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(8) {
    margin-top: 0;
  }
}
.info-list__text.type2 span:nth-of-type(9) {
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 span:nth-of-type(9) {
    margin-top: 0;
  }
}
.info-list__text.type2::after {
  display: none;
}
.info-list__text.type2 .bullet::before {
  content: "・";
  position: absolute;
  left: 3px;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .info-list__text.type2 .bullet::before {
    left: 5px;
  }
}

.entry-requirements__bg-img {
  margin-top: 32px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .entry-requirements__bg-img {
    margin-top: 120px;
  }
}

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

@media screen and (min-width: 768px) {
  .contact__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 908px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__title {
  width: 150px;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__title {
    width: 232px;
  }
}
.contact__title .heading__text {
  width: 120px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__title .heading__text {
    width: 192px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 33px;
  }
}

.contact__form-text {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .contact__form-text {
    font-size: 16px;
  }
}

.contact__fields {
  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: 768px) {
  .contact__fields {
    margin-top: 40px;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 56px;
  }
  .form-field.type-textarea {
    height: 160px;
  }
}

.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: 768px) {
  .form-field__head.type-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.form-field__label {
  font-weight: 700;
}
.form-field__label.error {
  color: #ce2073;
}

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    margin-top: 0;
    width: 74.0566037736%;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

.form-text {
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px;
  outline: none;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-text::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-text::placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-text:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-text.error {
  border: 1px solid #ce2073 !important;
  background-color: #fff0f7 !important;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  font-weight: 400;
  padding: 16px 52px 16px 16px;
  background: #f5f5f5 url(../img/contact/contact-control.png) no-repeat center right;
  background-size: 52px 56px;
  background-clip: padding-box;
  border: 1px solid transparent;
  outline: none;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-select:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-select.error {
  border: 1px solid #ce2073;
  background: #fff0f7 url(../img/contact/error-control.png) no-repeat center right;
  background-size: 52px 57px;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    padding-top: 17px;
    padding-left: 2px;
  }
}

.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 {
  border: 1px solid #9ed0e0;
}

.from-radio__text {
  font-weight: 400;
  padding-left: 32px;
  position: relative;
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #f5f5f5;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  left: 0;
}
.from-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  font-weight: 400;
  border-radius: 8px;
  background-color: #f5f5f5;
  width: 100%;
  height: 160px;
  padding: 16px;
  border: 1px solid transparent;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-textarea::placeholder {
  color: #cccccc;
  opacity: 1;
}
.form-textarea:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-textarea:not(:focus) {
  background-color: #f5f5f5;
}
.form-textarea.error {
  border: 1px solid #ce2073 !important;
  background-color: #fff0f7 !important;
}

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

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #9ed0e0;
}

.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 {
  position: relative;
  padding-left: 36px;
  font-weight: 400;
}
.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;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 6px;
  background: url(../img/contact/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}

.contact__button {
  margin-top: 27px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 42px;
  }
}
.contact__button input {
  outline: none;
}
.contact__button .button {
  font-size: 16px;
  width: 208px;
}
@media screen and (min-width: 768px) {
  .contact__button .button {
    width: 240px;
  }
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer__inner {
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 120px;
  }
}

.footer__text {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 24px;
  }
}

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

.footer__sns-item img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .footer__sns-item img {
    width: 40px;
    height: 40px;
  }
}

.footer__image {
  margin-top: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer__image {
    margin-top: 41px;
  }
}
.footer__image img {
  width: 328px;
}
@media screen and (min-width: 768px) {
  .footer__image img {
    width: 755px;
  }
}

.footer-card {
  background-color: #ffffff;
  border-radius: 16px;
  margin-bottom: 121px;
}
@media screen and (min-width: 768px) {
  .footer-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 126px;
    margin-top: -6px;
    position: relative;
    z-index: 5;
  }
}

.footer-card__map {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer-card__map {
    width: 50%;
    height: 400px;
    border-top-left-radius: 0px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}

.footer-card__body {
  padding: 12px 24px 30px 27px;
}
@media screen and (max-width: 374px) {
  .footer-card__body {
    padding: 12px 8px 10px 8px;
  }
}
@media screen and (min-width: 768px) {
  .footer-card__body {
    padding-block: 0;
    padding-left: 17px;
    padding-right: 0;
    width: 50%;
    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;
    gap: 24px;
    height: 400px;
  }
}
@media screen and (min-width: 1050px) {
  .footer-card__body {
    padding-block: 0;
    padding-left: 61.5px;
    padding-right: 0;
    width: 50%;
    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;
    gap: 24px;
    height: 400px;
  }
}

.footer-card__title-image {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-card__title-image {
    text-align: start;
  }
}
.footer-card__title-image img {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer-card__title-image img {
    width: 183px;
  }
}

.footer-card__lists {
  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: 768px) {
  .footer-card__lists {
    margin-top: 0;
    gap: 12px;
  }
}

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

.footer-card__list-title {
  width: 80px;
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-card__list-title {
    width: 120px;
    font-size: 16px;
  }
}
.footer-card__list-title::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #9ed0e0;
}

.footer-card__list-text {
  font-size: 12px;
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 374px) {
  .footer-card__list-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1049px) {
  .footer-card__list-text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1050px) {
  .footer-card__list-text {
    font-size: 16px;
  }
}

.footer__copyright {
  padding-top: 45.714px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-top: 113px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45.714px;
  left: 0;
  top: 5px;
  background: url(../img/footer/img-bg-wave.png) repeat;
  background-size: 93.75px auto;
}
@media screen and (min-width: 768px) {
  .footer__copyright::before {
    background-size: 254px auto;
    height: 125px;
    top: -5px;
  }
}

.footer__copyright-text {
  text-align: center;
  padding-bottom: 24px;
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .footer__copyright-text {
    padding-bottom: 32px;
  }
}
.footer__copyright-text small {
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__copyright-text small {
    font-size: 14px;
  }
}

.footer__bg {
  position: relative;
}

.footer__bg-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__bg-image {
    display: block;
    position: absolute;
    width: 100px;
    height: 220px;
    right: -165px;
    top: -778px;
  }
}

.pagetop {
  position: absolute;
  width: 75px;
  height: 78px;
  bottom: 111px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    width: 103px;
    height: 106px;
    right: 40px;
    bottom: 22px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 100;
    opacity: 0;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}