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

.wrapper {
  overflow: hidden;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.button {
  display: inline-block;
  padding: 5px 22px 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    padding: 8px 37px 9px;
    border: 3px solid #4a3636;
  }
}
.button:hover {
  background: #ffee56;
}

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

.heading {
  text-align: center;
}
.heading-en {
  font-family: "Courgette";
  line-height: 1.25;
  display: block;
}
@media screen and (min-width: 768px) {
  .heading-en {
    font-size: 20px;
    margin-top: 1px;
  }
}
.heading-jp {
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin-top: 5px;
  display: block;
}
@media screen and (min-width: 900px) {
  .heading-jp {
    font-size: 32px;
    margin-top: 8px;
  }
}
.heading-jp_deco {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(86%, transparent), color-stop(0%, #ffee56));
  background: linear-gradient(transparent 86%, #ffee56 0%);
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .heading-jp_deco {
    padding-bottom: 13px;
  }
}

.link-deco {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-deco:hover {
  color: #67b0c7;
}

.no-scroll {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 55;
}
.header__inner {
  padding: 18px 20px;
  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;
  height: 64px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding: 18px 24px;
  }
}
.header__logo img {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header__logo img {
    width: 183px;
  }
}
.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__nav-link {
  font-size: 12px;
}
.header__nav-link + .header__nav-link {
  margin-left: 12px;
}
.header__nav-button {
  margin-left: 16px;
}
.header__nav-button .button {
  font-size: 14px;
  padding: 5px 22px 6px;
  border: 2px solid #4a3636;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 14px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1)::after {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  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;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -6.4px;
  width: 4.8px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 13px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 25px;
}

.drawer-content {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 64px;
  left: 0;
  background: #fff;
  z-index: 555;
  text-align: center;
}
.drawer-content__menu {
  margin-top: 82px;
}
.drawer-content__link {
  display: block;
  font-size: 14px;
}
.drawer-content__link + .drawer-content__link {
  margin-top: 40px;
}
.drawer-content__button {
  margin-top: 40px;
}

.fv {
  position: relative;
  background: url(../img/sp/sp_fv_bg.png) lightgray 50%/cover no-repeat;
  height: 554px;
  background-position: center;
  border-radius: 0 0 24px 24px;
  margin-top: 64px;
  margin-bottom: 178px;
}
@media screen and (min-width: 768px) {
  .fv {
    margin-bottom: 208px;
  }
}
@media screen and (min-width: 900px) {
  .fv {
    background: url(../img/pc/pc_fv_bg.png) lightgray 50%/cover no-repeat;
    border-radius: 0 0 40px 40px;
    height: 740px;
    margin-bottom: 96px;
  }
}
.fv__inner {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 888px;
  margin-left: auto;
  margin-right: auto;
}
.fv__bg-image img {
  margin-top: 64px;
}
.fv__text-content {
  text-align: center;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .fv__text-content {
    margin-top: 34px;
  }
}
.fv__text {
  display: block;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
  }
}
.fv__heading {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__heading {
    margin-top: 24px;
  }
}
.fv__heading-item-top {
  display: block;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .fv__heading-item-top {
    width: 520px;
  }
}
.fv__heading-item-bottom {
  display: block;
  background: #fff;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .fv__heading-item-bottom {
    width: 356px;
    margin-top: 17px;
  }
}
.fv__decoration {
  width: 375px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  margin-top: 114px;
}
@media screen and (min-width: 900px) {
  .fv__decoration {
    width: 848px;
    margin-top: 34px;
  }
}
.fv__decoration picture img {
  width: 200px;
  height: 408px;
  position: relative;
  margin-left: 1px;
}
@media screen and (min-width: 900px) {
  .fv__decoration picture img {
    width: 250px;
    height: 510px;
  }
}
.fv__decoration-top {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.fv__decoration-top picture img {
  width: 142px;
  height: 80px;
  position: absolute;
  top: -96px;
  left: 18px;
}
@media screen and (min-width: 768px) {
  .fv__decoration-top picture img {
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .fv__decoration-top picture img {
    top: -32px;
    left: 36px;
    width: 244px;
    height: 130px;
  }
}
.fv__decoration-top img {
  width: 110px;
  height: 110px;
  position: absolute;
  top: -103px;
  right: 45px;
}
@media screen and (min-width: 768px) {
  .fv__decoration-top img {
    right: 0;
  }
}
@media screen and (min-width: 900px) {
  .fv__decoration-top img {
    top: -16px;
    right: 127px;
    width: 180px;
    height: 180px;
  }
}
.fv__decoration-bottom {
  z-index: 50;
}
.fv__decoration-bottom img:nth-child(1) {
  position: absolute;
  width: 62px;
  bottom: 47px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .fv__decoration-bottom img:nth-child(1) {
    width: 171px;
    bottom: 45px;
    right: 63px;
  }
}
.fv__decoration-bottom img:nth-child(2) {
  position: absolute;
  width: 98px;
  bottom: -11px;
  right: 29px;
}
@media screen and (min-width: 900px) {
  .fv__decoration-bottom img:nth-child(2) {
    width: 233px;
    bottom: -59px;
    right: 0;
  }
}
.fv__decoration-bottom img:nth-child(3) {
  position: absolute;
  width: 90px;
  bottom: -11px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .fv__decoration-bottom img:nth-child(3) {
    bottom: -16px;
    left: 0px;
    width: 212px;
  }
}

.about {
  position: relative;
  padding-top: 10px;
  padding-bottom: 278px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 458px;
  }
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 82px;
    padding-bottom: 459px;
  }
}
.about__inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 540px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 830px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 888px;
  }
}
.about__content {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 40px 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__content {
    border-radius: 40px;
  }
}
.about__content-img-pic1 {
  position: absolute;
  top: 31px;
  left: 33px;
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about__content-img-pic1 {
    top: 37px;
    left: 84px;
    width: 149px;
  }
}
.about__content-img-pic2 {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about__content-img-pic2 {
    top: 46px;
    right: 85px;
    width: 147px;
  }
}
.about__text-bold-top, .about__text-bold-bottom {
  font-size: 14px;
  font-weight: 700;
}
.about__text-bold-top {
  margin-top: 36px;
}
@media screen and (min-width: 900px) {
  .about__text-bold-top {
    font-size: 16px;
    margin-top: 48px;
  }
}
.about__text-bold-bottom {
  display: inline-block;
  position: relative;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .about__text-bold-bottom {
    font-size: 20px;
    margin-top: 45px;
  }
}
.about__text-bold-bottom::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -8px;
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: linear-gradient(to right, #9ed0e0, #9ed0e0 4px, transparent 4px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 900px) {
  .about__text-bold-bottom::before {
    bottom: -12px;
  }
}
.about__text-content {
  font-size: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__text-content {
    font-size: 16px;
    margin-top: 33px;
  }
}
.about__text p:nth-of-type(n + 2) {
  margin-top: 18.5px;
}
@media screen and (min-width: 900px) {
  .about__text p:nth-of-type(n + 2) {
    margin-top: 27px;
  }
}
.about__button {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 44px;
  }
}
.about-bg-item__left, .about-bg-item__right {
  display: inline-block;
}
.about-bg-item__left img, .about-bg-item__right img {
  width: 200px;
}
@media screen and (min-width: 900px) {
  .about-bg-item__left img, .about-bg-item__right img {
    width: 480px;
  }
}
.about-bg-item__left {
  position: absolute;
  top: 395px;
  left: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-bg-item__left {
    top: 73px;
    left: -670px;
  }
}
.about-bg-item__right {
  position: absolute;
  top: 273px;
  right: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-bg-item__right {
    top: 72px;
    right: -616px;
  }
}
.about-bg-item__arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-bg-item__arrow {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}
.about-bg-item__wavyline1, .about-bg-item__wavyline2 {
  position: absolute;
  width: 807px;
  height: auto;
  z-index: -2;
}
.about-bg-item__wavyline1 {
  bottom: 208px;
  right: -897px;
}
.about-bg-item__wavyline2 {
  bottom: 175px;
  right: -830px;
}
.about-bg-item__stripe {
  position: absolute;
  top: -21px;
  left: -353px;
  width: 250px;
  z-index: -2;
}
.about-decoration-item__sakamichi {
  position: absolute;
  top: 719px;
  left: 0;
  width: 139px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-decoration-item__sakamichi {
    width: 427px;
    top: 401px;
    left: -103px;
  }
}
.about-decoration-item__goods1 {
  position: absolute;
  bottom: 159px;
  right: 57px;
  width: 133px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-decoration-item__goods1 {
    bottom: 320px;
  }
}
@media screen and (min-width: 900px) {
  .about-decoration-item__goods1 {
    width: 308px;
    bottom: 380px;
    right: 74px;
  }
}
.about-decoration-item__goods2 {
  position: absolute;
  bottom: 218px;
  right: 21px;
  width: 48px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-decoration-item__goods2 {
    bottom: 388px;
  }
}
@media screen and (min-width: 900px) {
  .about-decoration-item__goods2 {
    width: 101px;
    bottom: 587px;
    right: 150px;
  }
}
.about-decoration-item__footprints_default {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-decoration-item__footprints_default {
    right: 0;
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about-decoration-item__footprints_default {
    right: 167px;
  }
}
.about-decoration-item__onomichi {
  width: 94.9333333333%;
  position: absolute;
  bottom: 99px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: 1px;
}
@media screen and (min-width: 768px) {
  .about-decoration-item__onomichi {
    bottom: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about-decoration-item__onomichi {
    max-width: 890px;
    min-width: 742px;
    width: 59.1931216931%;
    bottom: 195px;
    margin-left: -2px;
  }
}

/* コンテナー */
.about__swiper-container {
  position: absolute;
  bottom: 0;
}

/* スライダーのwrapper */
.infinite-slider .about__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* スライド */
.infinite-slider .about__swiper-slide {
  height: 100px;
  width: auto !important;
}
@media screen and (min-width: 768px) {
  .infinite-slider .about__swiper-slide {
    height: 200px;
  }
}

/* スライド内の画像 */
.infinite-slider .about__swiper-slide img {
  width: 100px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .infinite-slider .about__swiper-slide img {
    width: 200px;
  }
}

.how-to-enter {
  padding-top: 64px;
  padding-bottom: 38px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-top: 85px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    padding-top: 119px;
  }
}
.how-to-enter__inner {
  position: relative;
}
.how-to-enter__bg-items img:nth-of-type(1) {
  position: absolute;
  top: 5px;
  right: -31px;
  width: 25.0666666667%;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(1) {
    top: -18px;
    right: -75px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg-items img:nth-of-type(1) {
    right: -45px;
    width: 214px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__bg-items img:nth-of-type(1) {
    top: -17px;
    right: 105px;
  }
}
.how-to-enter__bg-items img:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 24px;
  width: 28%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(2) {
    top: -28px;
    right: 50px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg-items img:nth-of-type(2) {
    right: 80px;
    width: 238px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__bg-items img:nth-of-type(2) {
    top: -27px;
    right: 231px;
  }
}
.how-to-enter__bg-items img:nth-of-type(3) {
  position: absolute;
  bottom: 361px;
  right: 20px;
  width: 14.6666666667%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(3) {
    display: none;
    bottom: 434px;
  }
}
.how-to-enter__bg-items img:nth-of-type(4) {
  position: absolute;
  top: 73px;
  right: 20px;
  width: 14.6666666667%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(4) {
    top: 147px;
    right: 36px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg-items img:nth-of-type(4) {
    top: 147px;
    right: 36px;
    width: 100px;
  }
}
.how-to-enter__bg-items img:nth-of-type(5) {
  position: absolute;
  top: 548px;
  left: 20px;
  width: 14.6666666667%;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(5) {
    top: 578px;
    left: 36px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg-items img:nth-of-type(5) {
    top: 578px;
    left: 36px;
    width: 100px;
  }
}
.how-to-enter__bg-items img:nth-of-type(6) {
  position: absolute;
  top: 0;
  left: 0;
  width: 39.7333333333%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .how-to-enter__bg-items img:nth-of-type(6) {
    top: -61px;
    left: -90px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg-items img:nth-of-type(6) {
    top: -61px;
    left: 36px;
    width: 460px;
  }
}
.how-to-enter__icon {
  width: 37px;
  height: 37px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__icon {
    width: 48px;
    height: 48px;
  }
}
.how-to-enter__steps {
  padding-left: 8px;
  padding-right: 8px;
  max-width: 351px;
  margin-inline: auto;
  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;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__steps {
    padding-left: 0;
    padding-right: 0;
    max-width: 1024px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    gap: 32px;
    margin-top: 13px;
  }
}
.how-to-enter__step {
  position: relative;
  text-align: center;
  max-width: 320px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 48px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 68px;
  }
}
.how-to-enter .step-box {
  width: 100%;
}
.how-to-enter .step-box__head {
  color: #fff;
  font-family: "Josefin Sans";
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head {
    top: 44px;
  }
}
.how-to-enter .step-box__head-text {
  position: absolute;
  top: 31px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head-text {
    top: 44px;
  }
}
.how-to-enter .step-box__head-text-en {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head-text-en {
    font-size: 20px;
  }
}
.how-to-enter .step-box__head-text-namber {
  font-style: italic;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head-text-namber {
    font-size: 56px;
  }
}
.how-to-enter .step-box__head-image-cattype {
  width: 196px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head-image-cattype {
    width: 280px;
    height: 300px;
  }
}
.how-to-enter .step-box__head-image-illust {
  width: 112px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__head-image-illust {
    width: 160px;
    bottom: 17px;
  }
}
.how-to-enter .step-box__body {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body {
    margin-top: 68px;
  }
}
.how-to-enter .step-box__body-text-main {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body-text-main {
    font-size: 20px;
  }
}
.how-to-enter .step-box__body-text-sub {
  font-size: 12px;
  margin-top: 17px;
  line-height: 1.583;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body-text-sub {
    font-size: 16px;
    margin-top: 16px;
    line-height: 1.625;
  }
}
.how-to-enter .step-box__body-text-sub span {
  font-weight: 700;
}
.how-to-enter .step-box__body-links {
  display: inline-block;
  background: #fff;
  margin-top: 16px;
  padding: 8px 12px 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body-links {
    padding: 9px 12px 4px;
  }
}
.how-to-enter .step-box__body-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.how-to-enter .step-box__body-link a {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body-link a {
    font-size: 16px;
  }
}
.how-to-enter .step-box__body-link a svg {
  display: inline-block;
  width: 21px;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__body-link a svg {
    width: 24px;
  }
}
.how-to-enter .step-box__button {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__button {
    margin-top: 48px;
  }
}
.how-to-enter .step-box__decoration-item {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .how-to-enter .step-box__decoration-item {
    width: 113px;
    height: 24px;
  }
}
.how-to-enter .step-box__deco1, .how-to-enter .step-box__deco2 {
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .how-to-enter .step-box__deco1 {
    top: 30%;
    left: -30px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__deco1 {
    top: 177px;
    left: -41px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter .step-box__deco2 {
    top: 37%;
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter .step-box__deco2 {
    top: 245px;
    left: -32px;
  }
}

.prizes {
  padding-top: 83px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes {
    padding-top: 187px;
    padding-bottom: 65px;
  }
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 237px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1064px;
    margin-inline: auto;
  }
}
.prizes__content {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 35px;
  position: relative;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 53px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__content {
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 53px;
  }
}
.prizes__decoration {
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__decoration {
    display: block;
    position: absolute;
    width: 25.4120879121%;
    top: -80px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__decoration {
    width: 30.76171875%;
    top: -120px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__decoration-left {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .prizes__decoration-right {
    right: 0;
  }
}
.prizes__head-deco {
  position: absolute;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 83px;
}
@media screen and (min-width: 768px) {
  .prizes__head-deco {
    top: -149px;
    height: 149px;
  }
}
.prizes__heading {
  position: absolute;
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .prizes__heading {
    top: -120px;
  }
}
.prizes__text {
  font-size: 12px;
  color: #4a3636;
  margin-top: 29px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .prizes__text {
    font-size: 16px;
    margin-top: 57px;
  }
}
.prizes__cards {
  padding-top: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px 15px;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    padding-top: 173px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 80px 0;
  }
}
.prizes__card {
  position: relative;
  width: calc(50% - 7.5px);
}
.prizes__card:hover .card-body {
  outline: 4px solid #9ed0e0;
}
.prizes__card:hover .card-body-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.prizes__card:hover .card-body-triangle span {
  border-top: 36px solid transparent;
  border-right: 36px solid #9ed0e0;
}
@media screen and (min-width: 768px) {
  .prizes__card:hover .card-body-triangle span {
    border-top: 80px solid transparent;
    border-right: 80px solid #9ed0e0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:hover .card-body-triangle span {
    border-top: 100px solid transparent;
    border-right: 100px solid #9ed0e0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:hover:nth-of-type(n + 3) .card-body-triangle span {
    border-top: 64px solid transparent;
    border-right: 64px solid #9ed0e0;
  }
}
.prizes__card:nth-of-type(5) {
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: calc(50% - 16px);
  }
  .prizes__card:nth-of-type(n + 3) {
    width: calc(33.3333% - 23.999px);
  }
  .prizes__card:nth-of-type(n + 3) .card-head {
    background-size: 76px;
    width: 76px;
    height: 76px;
    top: -38px;
  }
  .prizes__card:nth-of-type(n + 3) .card-head-text-content {
    margin-top: 1px;
  }
  .prizes__card:nth-of-type(n + 3) .card-head-text {
    font-size: 13px;
  }
  .prizes__card:nth-of-type(n + 3) .card-head-number {
    font-size: 38px;
    margin-top: 1px;
  }
  .prizes__card:nth-of-type(n + 3) .card-body {
    border-radius: 16px;
  }
  .prizes__card:nth-of-type(n + 3) .card-body-text {
    height: 80px;
  }
  .prizes__card:nth-of-type(n + 3) .card-body p {
    font-size: 16px;
  }
  .prizes__card:nth-of-type(n + 3) .card-body-triangle span {
    border-top: 64px solid transparent;
    border-right: 64px solid #67b0c7;
  }
  .prizes__card:nth-of-type(n + 3) .card-body-triangle .triangle-icon {
    bottom: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
  }
  .prizes__card:nth-of-type(5) {
    margin: 0;
  }
}
.prizes__button {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    margin-top: 40px;
  }
}
.prizes__bg-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -45px;
}
@media screen and (min-width: 768px) {
  .prizes__bg-item {
    margin-top: 2px;
  }
}
.prizes__bg-item img {
  width: 100%;
  min-width: 580px;
}

.card-head {
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/prizes_icon.png) no-repeat center center;
  background-size: 47px;
  width: 47px;
  height: 47px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .card-head {
    top: -48px;
    background-size: 95px;
    width: 95px;
    height: 95px;
  }
}
@media screen and (min-width: 768px) {
  .card-head-text-content {
    margin-top: 2px;
  }
}
.card-head-text, .card-head-number {
  color: #fff;
  font-weight: 700;
}
.card-head-text {
  font-size: 7.68px;
  margin-bottom: 2px;
}
@media screen and (min-width: 768px) {
  .card-head-text {
    font-size: 16px;
  }
}
.card-head-number {
  font-family: "Josefin Sans";
  font-size: 23.04px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .card-head-number {
    font-size: 48px;
    margin-top: 2px;
  }
}

.card-body {
  position: relative;
  text-align: center;
  border-radius: 8px;
  background: #f5f5f5;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card-body {
    border-radius: 24px;
  }
}
.card-body-image {
  overflow: hidden;
}
.card-body-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease; /* ゆっくり変化させる */
}
@media screen and (min-width: 768px) {
  .card-body-image img {
    height: auto;
  }
}
.card-body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
}
@media screen and (min-width: 768px) {
  .card-body-text {
    height: 120px;
  }
}
.card-body-text p {
  color: #4a3636;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .card-body-text p {
    font-size: 20px;
  }
}
.card-body-triangle span {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top: 36px solid transparent;
  border-right: 36px solid #67b0c7;
}
@media screen and (min-width: 768px) {
  .card-body-triangle span {
    border-top: 80px solid transparent;
    border-right: 80px solid #67b0c7;
  }
}
@media screen and (min-width: 900px) {
  .card-body-triangle span {
    border-top: 100px solid transparent;
    border-right: 100px solid #67b0c7;
  }
}
.card-body-triangle .triangle-icon {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .card-body-triangle .triangle-icon {
    bottom: 12px;
    right: 11px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (min-width: 900px) {
  .card-body-triangle .triangle-icon {
    bottom: 12px;
    right: 11px;
    width: 35px;
    height: 35px;
  }
}

.prize-modal__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 9999;
}
.prize-modal__content {
  display: none;
  border: none;
  border-radius: 24px;
  padding: 0;
  width: 336px;
  height: 480px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  z-index: 10000;
}
@media screen and (min-width: 900px) {
  .prize-modal__content {
    width: 480px;
    height: 650px;
  }
}
.prize-modal__picture {
  width: 100%;
}
.prize-modal__picture img {
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prize-modal__picture img {
    height: 300px;
  }
}
.prize-modal__text {
  margin-top: 39px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prize-modal__text {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.prize-modal__text p:nth-of-type(1) {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prize-modal__text p:nth-of-type(1) {
    font-size: 20px;
  }
}
.prize-modal__text p:nth-of-type(2) {
  font-size: 12px;
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .prize-modal__text p:nth-of-type(2) {
    font-size: 16px;
  }
}
.prize-modal__close-button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prize-modal__close-button {
    margin-top: 24px;
  }
}

body.modal-open {
  overflow: hidden;
}

.spots {
  position: relative;
  margin-top: -46px;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .spots {
    margin-top: -160px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .spots {
    margin-top: -186px;
  }
}
.spots::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 45px;
  background-image: url(../img/sp/sp_wave-top.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: repeat-x;
  top: 1px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots::before {
    height: 120px;
    background-image: url(../img/pc/pc_wave-top.png);
  }
}
.spots::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 45px;
  background-image: url(../img/sp/sp_wave-bottom.png);
  background-position: top center;
  background-size: contain;
  background-repeat: repeat-x;
  bottom: 1px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots::after {
    height: 120px;
    background-image: url(../img/pc/pc_wave-bottom.png);
  }
}
.spots__inner {
  background: #67b0c7;
  padding-bottom: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots__inner {
    padding-bottom: 3px;
  }
}
@media screen and (min-width: 768px) {
  .spots__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__content-top {
    padding-left: calc(50vw - 509px);
  }
}
@media screen and (min-width: 768px) {
  .spots__content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1024px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 64px;
    margin-bottom: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__content-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}
.spots__title {
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 2px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .spots__title {
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title {
    margin-top: -48px;
  }
}
.spots__title span {
  position: relative;
  padding-left: 36px;
}
@media screen and (min-width: 768px) {
  .spots__title span {
    padding-left: 0;
    padding-top: 70px;
  }
}
.spots__title span::before {
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/spots_staricon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .spots__title span::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
    height: 56px;
  }
}
.spots__logo {
  width: 255px;
  height: 55px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .spots__logo {
    width: 495px;
    height: 107px;
    margin-left: 0;
    margin-right: 0;
  }
}
.spots__logo img {
  width: 100%;
}
.spots__text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__text {
    padding-left: 0;
    padding-right: 0;
    white-space: nowrap;
  }
}
.spots__text p {
  font-size: 11.444px;
  color: #fff;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .spots__text p {
    font-size: 16px;
    margin-top: 0px;
  }
}
.spots__button {
  margin-top: 22px;
}
@media screen and (min-width: 1200px) {
  .spots__button {
    margin-top: 24px;
    margin-left: 10px;
  }
}
.spots__bg-items {
  display: none;
}
@media screen and (min-width: 1200px) {
  .spots__bg-items {
    display: block;
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 36px;
  }
}
@media screen and (min-width: 768px) {
  .spots__slider {
    width: 100%;
    overflow: hidden;
  }
}

.spots__swiper {
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .spots__swiper {
    overflow: visible;
  }
}
.spots__swiper-wrapper {
  height: auto;
}
@media screen and (min-width: 768px) {
  .spots__swiper-wrapper {
    width: 100%;
  }
}

.spots__slide {
  width: 64% !important;
  height: auto;
  min-width: 210px;
}
@media screen and (min-width: 768px) {
  .spots__slide {
    width: 29.1525423729% !important;
    max-width: 344px;
    min-width: 300px;
  }
}

.slide-item {
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .slide-item {
    border-radius: 24px;
    padding-bottom: 41px;
  }
}
.slide-item_img img {
  width: 100%;
  max-height: 48%;
}
.slide-item_content {
  margin-top: 17px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .slide-item_content {
    margin-top: 24px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.slide-item_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .slide-item_title {
    font-size: 20px;
  }
}
.slide-item_text {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .slide-item_text {
    margin-top: 26px;
    font-size: 16px;
  }
}

.spots__navigation {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots__navigation {
    display: block;
    width: clamp(500px, 65vw, 700px);
    height: 80px;
    position: absolute;
    bottom: 140px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .spots__navigation {
    width: 944px;
    bottom: 168px;
  }
}
@media screen and (min-width: 768px) {
  .spots__navigation-prev, .spots__navigation-next {
    width: 80px;
    height: 80px;
    display: block;
  }
}
.spots__navigation-prev::after, .spots__navigation-next::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots__navigation-prev {
    background: url(../img/arrow-icon_prev.png) no-repeat center center/contain;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .spots__navigation-next {
    background: url(../img/arrow-icon_next.png) no-repeat center center/contain;
    right: 0;
  }
}

.qa {
  padding-top: 38px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 85px;
  }
}
@media screen and (min-width: 1200px) {
  .qa {
    padding-top: 120px;
  }
}
@media screen and (min-width: 900px) {
  .qa__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 830px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    max-width: 1064px;
  }
}
.qa__boxes {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 56px;
  }
}
.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  color: #4a3636;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.qa-box.is-open .qa-box__toggle-button-icon::after {
  top: 25%;
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.qa-box:nth-of-type(n + 2) {
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .qa-box:nth-of-type(n + 2) {
    margin-top: 22px;
  }
}
.qa-box__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px 12px 14px;
  text-align: left;
  width: 100%;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 25px 22px 25px 22px;
  }
}
.qa-box__head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}
.qa-box__head-text {
  padding-left: 12px;
  padding-right: 32px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 863px;
    font-size: 20px;
  }
}
.qa-box__toggle-button-icon {
  display: inline-block;
  position: relative;
  position: absolute;
  right: 14px;
  background: #9ed0e0;
  width: 26.18px;
  height: 26.18px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle-button-icon {
    right: 20px;
    width: 48px;
    height: 48px;
  }
}
.qa-box__toggle-button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 10.18px;
  height: 1.45px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 1px;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle-button-icon::before {
    left: 14.67px;
    width: 18.66px;
    height: 2.66px;
  }
}
.qa-box__toggle-button-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12.81px;
  width: 1.45px;
  height: 10.18px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 1px;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle-button-icon::after {
    left: 22.67px;
    width: 2.66px;
    height: 18.66px;
  }
}
.qa-box__body {
  background: #f5f5f5;
  display: none;
}
.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 14px 12px 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding: 24px 22px 22px 22px;
  }
}
.qa-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}
.qa-box__a-text {
  padding-left: 16px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    padding-left: 16px;
    font-size: 16px;
  }
}

.entry {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-top: 122px;
  }
}
@media screen and (min-width: 900px) {
  .entry__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 830px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .entry__inner {
    max-width: 1064px;
  }
}
.entry__content {
  padding: 16px 15.5px 31px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .entry__content {
    padding: 32px 48px 43px;
  }
}
.entry table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .entry table {
    margin-top: 44px;
  }
}
.entry tr {
  display: block;
  border-top: solid 1px #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 14.5px;
}
@media screen and (min-width: 768px) {
  .entry tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 11.5px;
  }
}
.entry tr:nth-of-type(1) {
  border-top: none;
}
.entry tr:nth-of-type(5) {
  padding-bottom: 0;
}
.entry th,
.entry td {
  display: block;
  width: 100%;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .entry th,
  .entry td {
    display: inline-block;
  }
}
.entry th {
  text-align: start;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .entry th {
    width: 26.3157894737%;
    font-size: 16px;
    padding-left: 16px;
  }
}
.entry th::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  margin-right: 8px;
  margin-bottom: 1px;
}
.entry td {
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.585;
}
@media screen and (min-width: 768px) {
  .entry td {
    margin-top: 0;
    font-size: 16px;
    width: 73.6842105263%;
  }
}
.entry td ul {
  padding-left: 17px;
}
@media screen and (min-width: 768px) {
  .entry td ul {
    padding-left: 22px;
  }
}
.entry td li {
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .entry td li {
    line-height: 1.63;
    padding-left: 2px;
  }
}
.entry td li::marker {
  font-size: 0.7em;
  display: inline-block;
}
.entry__bg-items {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .entry__bg-items {
    margin-top: 120px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 44px;
  background: #fff;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 121px;
    padding-bottom: 120px;
  }
}
.contact__inner {
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 830px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__inner {
    max-width: 888px;
  }
}
.contact__text {
  font-size: 12px;
  text-align: center;
  margin-top: 37px;
}
@media screen and (min-width: 900px) {
  .contact__text {
    font-size: 16px;
    margin-top: 49px;
    margin-top: 36px;
  }
}
.contact__form {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
  }
}
.contact__field:nth-of-type(2), .contact__field:nth-of-type(3), .contact__field:nth-of-type(5) {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__field:nth-of-type(3) {
    margin-top: 24px;
  }
}
.contact__field:nth-of-type(4) {
  margin-top: 22px;
}
@media screen and (min-width: 900px) {
  .contact__field:nth-of-type(4) {
    margin-top: 39px;
  }
}
.contact__field:nth-of-type(4) .form-field__head {
  margin-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .contact__field:nth-of-type(5) {
    margin-top: 36px;
  }
}
@media screen and (min-width: 900px) {
  .contact__field:nth-of-type(5) .form-field {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.contact__privacy {
  text-align: center;
  margin-top: 22px;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}
.contact__button {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .contact__button .button {
    padding: 5px 38px 6px;
    border: 2px solid #4a3636;
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form-field__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    width: 25.94%;
    margin-bottom: 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 {
  display: inline-block;
  width: 40px;
  height: 27px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #ce2073;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 9px;
}
@media screen and (min-width: 900px) {
  .form-field__tag {
    font-size: 12px;
    margin-left: 8px;
  }
}
@media screen and (min-width: 900px) {
  .form-field__item {
    width: 74.04%;
  }
}
.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    margin-left: 2px;
    margin-top: -3px;
  }
}
.form-text {
  background: #f5f5f5;
  padding: 12px 16px 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
  height: 56px;
}
@media screen and (min-width: 900px) {
  .form-text {
    padding: 16px;
  }
}
.form-text:focus {
  outline: 2px solid #9ed0e0;
  background: #e9f6f8;
}

.form-select {
  background: #f5f5f5;
  padding: 12px 16px 16px 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
  height: 56px;
  font-size: 14px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding: 16px 16px 16px 12px;
  }
}
.form-select:focus {
  outline: 2px solid #9ed0e0;
  background: #e9f6f8;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::before {
  border: 2px solid #9ed0e0;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form-radio__text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
}
.form-radio__text::after {
  width: 14px;
  height: 14px;
  background: #9ed0e0;
  left: 5px;
  opacity: 0;
}

.form-textarea {
  background: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
  height: 160px;
}
.form-textarea:focus {
  outline: 2px solid #9ed0e0;
  background: #e9f6f8;
}

.form-checkbox:hover .form-checkbox__text {
  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;
  font-size: 14px;
  padding-left: 36px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.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;
  background: url(../img/contact_privasy.png) no-repeat center center/contain;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: 0;
  margin-top: -1.2px;
  background: url(../img/contact_privacy-check.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
}
.form-checkbox__text a:hover {
  color: #9ed0e0;
}

.selectbox {
  position: relative;
}
.selectbox::before, .selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
}
.selectbox::before {
  display: inline-block;
  right: 0;
  width: 52px;
  height: 56px;
  border-radius: 0 8px 8px 0;
  background-color: #9ed0e0;
}
.selectbox::after {
  position: absolute;
  top: 46%;
  right: 26px;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}
.selectbox select:focus {
  outline: 2px solid #9ed0e0;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::placeholder {
  font-size: 14px;
  color: #cccccc;
}
@media screen and (min-width: 900px) {
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
  ::-moz-placeholder {
    font-size: 16px;
  }
  :-ms-input-placeholder {
    font-size: 16px;
  }
  ::-ms-input-placeholder {
    font-size: 16px;
  }
  ::placeholder {
    font-size: 16px;
  }
}

.footer {
  padding-top: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 37px;
    padding-top: 117px;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__text {
  font-size: 20px;
  font-family: "Josefin Sans";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 24px;
  }
}
.footer__content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    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;
    margin-top: 120px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 295px;
  }
}
@media screen and (min-width: 900px) {
  .footer__content {
    height: 400px;
  }
}
.footer-map {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer-map {
    width: 50%;
  }
}
.footer-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-cards {
  padding: 19px 7.1641791045% 29px;
}
@media screen and (min-width: 768px) {
  .footer-cards {
    width: 50%;
    padding: 42px 21.5px;
  }
}
@media screen and (min-width: 900px) {
  .footer-cards {
    padding: 102px 61.5px;
  }
}
.footer-cards a {
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-cards a {
    text-align: left;
    margin-top: -5px;
  }
}
.footer-logo {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer-logo {
    width: 183px;
  }
}
.footer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer-card {
    margin-top: 25px;
  }
}
.footer-card:nth-of-type(n + 2) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .footer-card:nth-of-type(n + 2) {
    margin-top: 12px;
  }
}
.footer-title {
  font-size: 12px;
  font-weight: 700;
  width: 29.2%;
}
@media screen and (min-width: 768px) {
  .footer-title {
    font-size: 16px;
    width: 31.2%;
  }
}
.footer-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  margin-left: 4.7734405766%;
  margin-right: 9.5468811533%;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .footer-title::before {
    margin-left: 0;
    margin-right: 8px;
  }
}
.footer-text {
  font-size: 12px;
  width: 70.8%;
}
@media screen and (min-width: 768px) {
  .footer-text {
    font-size: 16px;
    width: 70%;
  }
}
.footer__bg-item-onomichi {
  width: 327px;
  position: absolute;
  top: 134px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  margin-left: -1px;
}
@media screen and (min-width: 768px) {
  .footer__bg-item-onomichi {
    width: 742px;
    top: 255px;
  }
}
@media screen and (min-width: 768px) {
  .footer__bg-item_footprints-default {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 100px;
  }
}

.sns-icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .sns-icon {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .sns-icon_youtube, .sns-icon_instagram, .sns-icon_twitter {
    width: 40px;
  }
}

.copyright {
  margin-top: 125px;
  padding-top: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .copyright {
    padding-top: 112px;
  }
}
.copyright::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 45px;
  background-image: url(../img/sp/sp_wave-top.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: repeat-x;
  top: 1px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .copyright::before {
    height: 120px;
    background-image: url(../img/pc/pc_wave-top.png);
    top: -6px;
  }
}
.copyright small {
  font-size: 10px;
  padding-top: 2px;
  padding-bottom: 25px;
  background: #67b0c7;
  color: #fff;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .copyright small {
    font-size: 14px;
    padding-bottom: 32px;
  }
}
.copyright__bg-item_wave-top {
  background: url(../img/sp/sp_wave-top.png) repeat-x;
  background-size: 96px 45.71px;
  position: absolute;
  top: -39px;
  width: 100%;
  height: 45.71px;
}
@media screen and (min-width: 768px) {
  .copyright__bg-item_wave-top {
    background: url(../img/pc/pc_wave-top.png) repeat-x;
    background-size: 252px 120px;
    top: -119px;
    height: 120px;
  }
}

.pagetop {
  position: fixed;
  right: 50%;
  bottom: 111px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: min(20.5333333333%, 77px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 37px;
    bottom: 35px;
    -webkit-transform: none;
            transform: none;
    width: 105px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.form-error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

/* カスタムアラートのスタイル */
.custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  text-align: center;
  width: 335px;
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.custom-alert button {
  padding: 10px 40px;
  background: #67b0c7;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

.custom-alert button:hover {
  background: #9ed0e0;
}