@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  font-family: "Courgette", cursive;
  color: #4a3636;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
body a {
  cursor: pointer;
}
body a:hover {
  text-decoration: underline;
  cursor: pointer;
  color: #9ed0e0;
}

@media screen and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.inner {
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1104px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.heading {
  text-align: center;
}

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

.heading__en {
  font-size: 16px;
  font-weight: 400;
  line-height: 125%; /* 20px */
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 20px;
    margin-top: 8px;
  }
}

.heading__ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%; /* 25px */
  text-align: center;
  display: inline-block;
  border-bottom: 6px solid #ffee56;
  padding-bottom: 6px;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    font-size: 32px;
    margin-top: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.btn {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 1px 22px 0px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 16px;
    padding: 6px 22px 4px;
  }
}
.btn:hover {
  background-color: #ffee56;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.btn-middle {
  display: inline-block;
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%; /* 32px */
  padding: 4px 22px 6px;
  border-radius: 40px;
  text-align: center;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .btn-middle {
    padding: 4px 38px 6px;
  }
}
.btn-middle:hover {
  background-color: #ffee56;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.btn--large {
  display: inline-block;
  padding: 6px 22px 3px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .btn--large {
    font-size: 20px;
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
  }
  .btn--large:hover {
    background-color: #ffee56;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  height: 64px;
}

.header__inner {
  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: inherit;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo a 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: 12px;
  }
}

.header__link {
  display: inline-block;
  color: #4a3636;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}

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

.header__btn {
  margin-left: 4px;
  font-size: 14px;
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 51;
}
.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: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -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) {
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  left: 27.2px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -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;
  width: 4.8px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 64px;
  right: 0;
  background: #fff;
  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;
  padding: 82px 114px;
}

.drawer-content__link {
  font-family: "Kiwi Maru", serif;
  display: block;
  color: #4a3636;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  text-decoration: none;
}

.drawer-content__btn {
  text-align: center;
}

.fv {
  padding-top: 64px;
  padding-bottom: 156px;
  background: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 97px;
  }
}

.fv__inner {
  padding-top: 17px;
  padding-bottom: 367px;
  background: url(../img/bg_fv-sp.webp) no-repeat top center/cover;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    background: url(../img/bg_fv-pc.webp) no-repeat top center/cover;
    border-radius: 0px 0px 40px 40px;
    padding-top: 37px;
    padding-bottom: 460px;
  }
}

.fv__lead {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%; /* 17.5px */
  text-shadow: 0px 0px 30px #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    font-size: 16px;
    font-weight: 500;
  }
}
@media screen and (min-width: 900px) {
  .fv__lead {
    font-size: 20px;
    font-weight: 500;
  }
}
@media screen and (min-width: 1200px) {
  .fv__lead {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__lead-img {
  display: block;
  margin-top: 20px;
  text-align: center;
}
.fv__lead-img img {
  width: 100%;
  max-width: 335px;
}
@media screen and (min-width: 768px) {
  .fv__lead-img img {
    max-width: 520px;
  }
}

.fv__deco {
  position: relative;
  margin-top: 10px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__deco {
    margin-top: 0px;
    max-width: 848px;
  }
}

.fv__deco-text1 {
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .fv__deco-text1 {
    top: -2px;
    left: 35px;
  }
}
.fv__deco-text1 img {
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv__deco-text1 img {
    width: 244px;
  }
}

.fv__deco-text2 {
  position: absolute;
  top: 0px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .fv__deco-text2 {
    top: 13px;
    right: 127px;
  }
}
.fv__deco-text2 img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__deco-text2 img {
    width: 180px;
  }
}

.fv__deco-sp {
  position: absolute;
  top: 103px;
  left: 68px;
}
@media screen and (min-width: 768px) {
  .fv__deco-sp {
    top: 29px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.fv__deco-sp img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .fv__deco-sp img {
    width: 250px;
  }
}

.fv__deco-img1 {
  position: absolute;
  top: 382px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .fv__deco-img1 {
    top: 225px;
    left: 2px;
  }
}
.fv__deco-img1 img {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .fv__deco-img1 img {
    width: 209px;
  }
}

.fv__deco-img2 {
  position: absolute;
  top: 450px;
  right: 9px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .fv__deco-img2 {
    top: 426px;
    right: 1px;
  }
}
.fv__deco-img2 img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__deco-img2 img {
    width: 233px;
  }
}

.fv__deco-img3 {
  position: absolute;
  top: 395px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .fv__deco-img3 {
    top: 305px;
    right: 63px;
  }
}
.fv__deco-img3 img {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__deco-img3 img {
    width: 170px;
  }
}

.fv__textarea {
  border-radius: 12.8px;
  background: #fff;
  position: absolute;
  overflow: hidden;
  top: 225.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  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;
  padding-bottom: 19.2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__textarea {
    width: 200px;
    gap: 16px;
    padding-bottom: 24px;
    top: 183px;
  }
}

.fv__textarea-title {
  border-radius: 12.8px 12.8px 0 0;
  color: #fff;
  font-size: 12.8px;
  font-weight: 700;
  padding-block: 4.4px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 768px) {
  .fv__textarea-title {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.textarea-content-title {
  margin-top: -1px;
  font-size: 12px;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .textarea-content-title {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}

.textarea-content-time {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
@media screen and (min-width: 768px) {
  .textarea-content-time {
    margin-top: 2px;
    font-size: 16px;
  }
}

.about {
  background: #e9f6f8;
  padding-top: 32px;
  padding-bottom: 32.8px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.footprints1 {
  position: absolute;
  top: 22px;
  left: calc(50% + 134px);
}
@media screen and (min-width: 768px) {
  .footprints1 {
    top: 0;
    left: calc(50% + 490px);
  }
}
.footprints1 img {
  width: 54px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .footprints1 img {
    width: 100px;
  }
}

.about__diagonal {
  position: absolute;
  top: 60px;
  right: calc(50% + 523px);
}
.about__diagonal img {
  width: 250px;
  max-width: none;
}

.about__photo-l {
  position: absolute;
  top: 427px;
  right: calc(50% + 128px);
}
@media screen and (min-width: 768px) {
  .about__photo-l {
    top: 153px;
    right: calc(50% + 614px);
  }
}
.about__photo-l img {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .about__photo-l img {
    width: 480px;
    height: 480px;
    border-radius: 40px;
  }
}

.about__photo-r {
  position: absolute;
  top: 305px;
  left: calc(50% + 128px);
}
@media screen and (min-width: 768px) {
  .about__photo-r {
    top: 153px;
    left: calc(50% + 560px);
  }
}
.about__photo-r img {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .about__photo-r img {
    width: 480px;
    height: 480px;
    border-radius: 40px;
  }
}

.about__deco1 {
  position: absolute;
  top: 752px;
  left: calc(50% + 119px);
}
@media screen and (min-width: 768px) {
  .about__deco1 {
    top: 681px;
    left: calc(50% + 505px);
  }
}
.about__deco1 img {
  width: 48px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .about__deco1 img {
    width: 101px;
  }
}

.about__deco2 {
  position: absolute;
  top: 794px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .about__deco2 {
    top: 837px;
    left: calc(50% + 374px);
  }
}
.about__deco2 img {
  width: 133px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .about__deco2 img {
    width: 308px;
  }
}

.about__deco3 {
  position: absolute;
  top: 687px;
  left: calc(50% + 448px);
}
.about__deco3 img {
  max-width: none;
  width: 806px;
}

.about__slope {
  position: absolute;
  top: 740px;
}
@media screen and (min-width: 768px) {
  .about__slope {
    top: 401px;
    right: calc(50% + 432px);
  }
}
.about__slope img {
  width: 139px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .about__slope img {
    width: 427px;
  }
}

.about__deco4 {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: calc(100% - 20px);
  margin-top: 103px;
}
@media screen and (min-width: 768px) {
  .about__deco4 {
    top: 10px;
  }
}
.about__deco4 img {
  width: 355px;
}
@media screen and (min-width: 768px) {
  .about__deco4 img {
    width: 885px;
  }
}

.about__content {
  max-width: 335px;
  border-radius: 24px;
  background: #fff;
  padding: 40px 12px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__content {
    border-radius: 40px;
    padding: 40px 114px;
    max-width: 848px;
  }
}

.about__content-img1 {
  position: absolute;
  top: 36.87px;
  left: 36px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (min-width: 768px) {
  .about__content-img1 {
    top: 49.35px;
    left: 91px;
  }
}
.about__content-img1 img {
  width: 80px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .about__content-img1 img {
    width: 134px;
    height: 100px;
  }
}

.about__content-img2 {
  position: absolute;
  top: 35px;
  right: 23.78px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .about__content-img2 {
    top: 56px;
    right: 91px;
  }
}
.about__content-img2 img {
  width: 80px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .about__content-img2 img {
    width: 134px;
    height: 100px;
  }
}

.about__text-box {
  text-align: center;
  margin-top: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about__text-box {
    margin-top: 35px;
    gap: 30px;
  }
}

.about__title-sp {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__title-sp {
    display: none;
  }
}

.about__title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__title-pc {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }
}

.about__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 165%; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
    line-height: 1.6;
  }
}

.about__text + .about__text {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .about__text + .about__text {
    margin-top: 27px;
  }
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2.5px;
}

.bold {
  font-weight: 700;
}

.about__text-end {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ed0e0;
  display: inline-block;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .about__text-end {
    padding-top: 13px;
    font-size: 20px;
    padding-bottom: 15px;
  }
}

.about-content__btn {
  font-size: 16px;
  height: 40px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .about-content__btn {
    margin-bottom: 16px;
  }
}

.about__content-end {
  text-align: center;
}
.about__content-end img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about__content-end img {
    width: 140px;
  }
}

@media screen and (min-width: 768px) {
  .about__swiper-box {
    margin-top: 5px;
  }
}

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

.gallery__swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.gallery-card__image {
  width: 100%;
}
.gallery-card__image img {
  width: 100px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .gallery-card__image img {
    width: 200px;
    border-radius: 24px;
  }
}

.how-to-enter {
  padding-top: 30px;
  padding-bottom: 6px;
  background: #e9f6f8;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-top: 60px;
  }
}
.how-to-enter::before, .how-to-enter::after {
  position: absolute;
  display: block;
}
.how-to-enter::before {
  content: "";
  width: 149px;
  height: 223px;
  background: url(../img/img_map.webp) no-repeat center center/contain;
  top: 32px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .how-to-enter::before {
    top: 0px;
    left: 36px;
    width: 460px;
    height: 689px;
    width: 30.4232804233%;
  }
}
.how-to-enter::after {
  content: "";
  width: 160px;
  height: 194px;
  background: url(../img/img_step_right.webp) no-repeat center center/contain;
  right: -31px;
  top: -22px;
}
@media screen and (min-width: 768px) {
  .how-to-enter::after {
    width: 24.0740740741%;
    height: 394px;
    left: 69%;
    top: -68px;
    background: url(../img/img_step_right-md.webp) no-repeat center center/contain;
  }
}

.deco-footprints1 {
  position: absolute;
  top: 106px;
  left: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .deco-footprints1 {
    top: 208px;
    left: calc(50% + 620px);
  }
}
.deco-footprints1 img {
  width: 55px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .deco-footprints1 img {
    width: 100px;
  }
}

.deco-footprints2 {
  position: absolute;
  top: 581px;
  right: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .deco-footprints2 {
    top: 640px;
    right: calc(50% + 620px);
  }
}
.deco-footprints2 img {
  width: 55px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .deco-footprints2 img {
    width: 100px;
  }
}

.deco-footprints3 {
  position: absolute;
  top: 911px;
  left: calc(50% + 113px);
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 768px) {
  .deco-footprints3 {
    display: none;
  }
}
.deco-footprints3 img {
  width: 55px;
  max-width: none;
}

.deco-step1 {
  position: absolute;
  top: 565px;
  left: 50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .deco-step1 {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.deco-step1 img {
  width: 8px;
}
@media screen and (min-width: 768px) {
  .deco-step1 img {
    width: 20px;
  }
}

.deco-step2 {
  position: absolute;
  top: 959px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .deco-step2 {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.deco-step2 img {
  width: 8px;
}

.how-to-enter__steps {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__steps {
    max-width: 1024px;
    width: 100%;
    margin-top: 43px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .how-to-enter__step.is-type2 {
    margin-top: 69px;
  }
}

.step-box {
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .step-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.step-line {
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-line:nth-child(2)::after {
    top: 18%;
    left: 100%;
    width: 113px;
    height: 113px;
    background: url(../img/img_step_line.webp) no-repeat center center/contain;
  }
}
.step-line::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: url(../img/img_step_line-sp.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .step-line::after {
    top: 29%;
    left: 97%;
    width: 113px;
    height: 113px;
    background: url(../img/img_step_line.webp) no-repeat center center/contain;
  }
}

.step-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  padding: 0 20px;
}

.step-box__head-img img {
  width: 195px;
}
@media screen and (min-width: 768px) {
  .step-box__head-img img {
    width: 280px;
  }
}

.step-box__head-itm {
  position: absolute;
  top: 33px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-box__head-itm {
    top: 46px;
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__head-itm {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.step-box__head-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 125%; /* 17.5px */
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .step-box__head-text {
    font-size: 20px;
  }
}

.step-box__head-number {
  font-size: 40px;
  font-weight: 600;
  line-height: 90%;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .step-box__head-number {
    font-size: 40px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__head-number {
    font-size: 56px;
  }
}

.how-to-enter__img img {
  width: 112px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img img {
    width: 160px;
  }
}

.step-box__body {
  margin-top: 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: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-box__body {
    margin-top: 24px;
    gap: 20px;
  }
}

.step-box__title {
  font-weight: 700;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .step-box__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__title {
    font-size: 20px;
  }
}

.step-box__text {
  font-size: 12px;
  font-family: "Noto Sans JP";
  line-height: 176%; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .step-box__text {
    font-size: 10px;
    line-height: 165%;
  }
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__text {
    font-size: 16px;
  }
}

.step__botton {
  text-align: center;
}

.step__btn {
  margin-top: 13px;
  display: inline-block;
  color: #4a3636;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 8px 12px 8px 42px;
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 768px) {
  .step__btn {
    margin-top: 14px;
    font-size: 12px;
    padding: 8px 12px 8px 44px;
    background-position: left 12px center;
    background-size: 24px 24px;
  }
}
@media screen and (min-width: 900px) {
  .step__btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step__btn {
    font-size: 16px;
  }
}
.step__btn.inst {
  background-image: url(../img/icon-inst.webp);
}

.how-to-enter__btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-enter__btn {
    margin-top: 34px;
  }
}

.prizes {
  padding-top: 30px;
  background: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .prizes {
    padding-top: 125px;
  }
}

.prizes__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    padding-inline: 20px;
  }
}

.prizes__content {
  border-radius: 24px;
  background: #fff;
  margin: 0 auto;
  z-index: 20;
  position: relative;
  padding: 20px 20px 35px;
  width: 100%;
  background: url(../img/bg_white-sp.webp) no-repeat center top/cover;
}
@media screen and (min-width: 768px) {
  .prizes__content {
    max-width: 1024px;
    background: url(../img/bg_white-pc.webp) no-repeat center top/cover;
    padding-right: 53px;
    padding-left: 53px;
    padding-bottom: 60px;
  }
}

.prizes__heading {
  margin-top: 1px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes__heading {
    margin-top: 8px;
  }
  .prizes__heading::before {
    content: "";
    position: absolute;
    width: 34%;
    height: 90%;
    background: url(../img/deco-prizes-l.webp) no-repeat center center/contain;
    top: -21px;
    right: 72%;
  }
  .prizes__heading::after {
    content: "";
    position: absolute;
    width: 34%;
    height: 90%;
    background: url(../img/deco-prizes-r.webp) no-repeat center center/contain;
    top: -21px;
    left: 72%;
  }
}

.prizes__title {
  font-size: 12px;
  margin-top: 15px;
  text-align: center;
  font-family: "Noto Sans JP";
  line-height: 160%; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .prizes__title {
    font-size: 16px;
    margin-top: 44px;
  }
}

.prizes__cards {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    margin-top: 55px;
  }
}

.prizes__card {
  position: relative;
  margin-top: 24px;
  border-radius: 8px;
}
.prizes__card:nth-child(1), .prizes__card:nth-child(2) {
  width: calc(50% - 7.5px);
}
.prizes__card:nth-child(3), .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
  margin-top: 39px;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 768px) {
  .prizes__card:nth-child(3), .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    margin-top: 40px;
  }
}
.prizes__card:nth-child(2), .prizes__card:nth-child(4) {
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .prizes__card:hover {
    text-decoration: none;
  }
  .prizes__card:hover .prizes__card-body-img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__card:hover .zoom-bg__path {
    fill: #9ed0e0;
  }
  .prizes__card:nth-child(-n+2) {
    width: calc(50% - 13px);
  }
  .prizes__card:nth-child(n+3) {
    width: calc(33.3333333333% - 20px);
    margin-top: 72px;
  }
  .prizes__card:nth-child(2) {
    margin-left: 26px;
  }
  .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    margin-left: 30px;
  }
}

.prizes__card-head {
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  width: 48px;
  height: 48px;
  background: url(../img/icon-prizes__card-head.webp) no-repeat center center/contain;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .prizes__card-head {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .is-type2 .prizes__card-head {
    width: 80px;
    height: 80px;
    top: -38px;
  }
}

.prizes__card__head-text {
  font-size: 7.68px;
}
@media screen and (min-width: 768px) {
  .prizes__card__head-text {
    font-size: 16px;
    margin-top: 12px;
  }
  .is-type2 .prizes__card__head-text {
    font-size: 12.8px;
    margin-top: 6px;
  }
}

.prizes__card__head-number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  line-height: 100%; /* 23.04px */
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prizes__card__head-number {
    font-size: 48px;
  }
  .is-type2 .prizes__card__head-number {
    font-size: 38.4px;
  }
}

.prizes__card-body {
  position: relative;
  border-radius: 8px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .prizes__card-body {
    border-radius: 24px;
    border: 4px solid transparent;
    overflow: hidden;
  }
  .prizes__card-body:hover {
    border: 4px solid #9ed0e0;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
  }
}

.prizes__card-body-img img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .prizes__card-body-img img {
    width: 440px;
    height: auto;
    aspect-ratio: 440/340;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .is-type2 .prizes__card-body-img img {
    width: 280px;
    height: auto;
    aspect-ratio: 280/240;
  }
}

.prizes__card-body-textarea {
  position: relative;
  background-color: #f5f5f5;
  text-align: center;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .prizes__card-body-textarea {
    height: 120px;
  }
  .is-type2 .prizes__card-body-textarea {
    height: 80px;
  }
}

.prizes__card-body-text {
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  line-height: 160%; /* 19.2px */
}
.is-type3 .prizes__card-body-text {
  padding: 18.5px;
}
@media screen and (min-width: 768px) {
  .prizes__card-body-text {
    font-size: 17px;
    padding: 29px;
  }
  .is-type2 .prizes__card-body-text {
    font-size: 13px;
    padding: 18px;
  }
  .is-type3 .prizes__card-body-text {
    padding: 30px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card-body-text {
    font-size: 20px;
    padding: 29px;
  }
  .is-type2 .prizes__card-body-text {
    font-size: 16px;
    padding: 18px;
  }
  .is-type3 .prizes__card-body-text {
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__card-body-text2 {
    padding: 44px;
  }
}

.zoom-bg {
  position: absolute;
  width: 36px;
  height: 36px;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .zoom-bg {
    width: 100px;
    height: 100px;
  }
  .is-type2 .zoom-bg {
    width: 64px;
    height: 64px;
  }
}

.zoom-bg__path {
  fill: #67b0c7;
}

.icon-zoom {
  position: absolute;
  right: 5.22px;
  bottom: 0px;
}
@media screen and (min-width: 768px) {
  .icon-zoom {
    right: 12.5px;
    bottom: 14px;
  }
  .is-type2 .icon-zoom {
    right: 8px;
    bottom: 8.96px;
  }
}
.icon-zoom img {
  width: 11.52px;
}
@media screen and (min-width: 768px) {
  .icon-zoom img {
    width: 32px;
  }
  .is-type2 .icon-zoom img {
    width: 20.48px;
  }
}

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

.prizes__bottom-bg {
  position: relative;
  width: 100%;
  height: 216px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .prizes__bottom-bg {
    height: 640px;
  }
}
.prizes__bottom-bg::before, .prizes__bottom-bg::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
}
.prizes__bottom-bg::before {
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 260px;
  aspect-ratio: 580/260;
  background: url(../img/bg-prizes-sp.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .prizes__bottom-bg::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 0;
    height: 640px;
    aspect-ratio: 1512/640;
    background: url(../img/bg-prizes-pc.webp) no-repeat center center/cover;
  }
}
.prizes__bottom-bg::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  aspect-ratio: 384/45.7;
  height: auto;
  background: url(../img/bg_wave1.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .prizes__bottom-bg::after {
    height: auto;
    aspect-ratio: 1512/120;
    background: url(../img/bg_wave1-pc.webp) no-repeat center center/cover;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 40px);
  padding: 0 0 50px;
  border-radius: 24px;
  background: #fff;
  border: none;
  z-index: 60;
}
.prizes-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.7;
  background: #000;
}

.prizes-modal__img {
  width: 100%;
}

.prizes-modal__body {
  padding-inline: 20px;
  margin-top: 39px;
  text-align: center;
  line-height: 160%; /* 19.2px */
}
.prizes-modal__body p {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prizes-modal__body p {
    font-size: 20px;
  }
}
.prizes-modal__body p:nth-child(n+2) {
  margin-top: 12px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .prizes-modal__body p:nth-child(n+2) {
    font-size: 16px;
  }
}

.prizes-modal__button {
  margin-top: 16px;
  text-align: center;
}

.spots {
  background: #67b0c7;
  overflow: hidden;
  position: relative;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .spots::before {
    position: absolute;
    content: "";
    bottom: 120px;
    left: 36px;
    width: 100px;
    height: 220px;
    background: url(../img/deco_bg_pawpads.webp) no-repeat center center/contain;
  }
}

.spots__inner {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .spots__inner {
    margin-left: calc(50% - 512px);
  }
}

@media screen and (min-width: 768px) {
  .spots__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .spots__heading {
    -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: flex-start;
    gap: 19px;
  }
}

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

.spots__title-text {
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
}
@media screen and (min-width: 768px) {
  .spots__title-text {
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl; /* 縦書きになる */
    letter-spacing: 10px;
  }
}

.spots__slider {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .spots__slider {
    margin-top: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .spots-swiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 24px;
  }
}

.swiper {
  margin-left: 0;
}

.spots-swiper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.spots-slide-card {
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .spots-slide-card {
    width: 344px;
    max-width: none;
  }
}

.spots-card {
  border-radius: 12px;
  background: #fff;
  max-width: 240px;
  height: auto;
  aspect-ratio: 240/402;
}
@media screen and (min-width: 768px) {
  .spots-card {
    border-radius: 24px;
    width: 344px;
    max-width: none;
    height: 542px;
  }
}

.spots-card__img {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .spots-card__img {
    width: 344px;
  }
}
.spots-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/180;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media screen and (min-width: 768px) {
  .spots-card__img img {
    width: 344px;
    height: auto;
    aspect-ratio: 344/240;
  }
}

.spots-card__body {
  padding-inline: 24px;
  padding-top: 16px;
  padding-bottom: 31.16px;
  text-align: center;
}
.spots-card__body p:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .spots-card__body {
    padding-inline: 32px;
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .spots-card__body p:nth-child(n+2) {
    margin-top: 24px;
  }
}

.spots-card__title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    font-size: 20px;
  }
}

.spots-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  text-align: left;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .spots-card__text {
    font-size: 16px;
  }
}

.spots__prev,
.spots__next {
  width: 80px;
  height: 80px;
  top: 506px;
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

.spots__prev {
  left: 280px;
  background: url(../img/img_prev.webp) no-repeat center center/contain;
}

.spots__next {
  right: 280px;
  background: url(../img/img_next.webp) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 4px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .spots__bottom {
    gap: 81px;
  }
}

.spots__logo {
  text-align: center;
}
.spots__logo img {
  width: 255px;
}
@media screen and (min-width: 768px) {
  .spots__logo img {
    width: 280px;
  }
}
@media screen and (min-width: 900px) {
  .spots__logo img {
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo img {
    width: 495px;
  }
}

.spots__log-sub-area {
  margin-top: 16px;
  text-align: center;
}

.spots__text {
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .spots__text {
    margin-top: -6px;
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
  }
}

.spots__bottom-bg {
  margin-top: 21px;
  background: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .spots__bottom-bg {
    margin-top: 0;
  }
}

.spots__btn {
  margin-top: 24px;
}

.qa {
  background: #e9f6f8;
  padding-top: 40px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-block: 120px;
  }
}

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

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
.qa__box.is-open .qa-box__head::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 13px;
  width: 26.182px;
  height: 26.182px;
  background: url(../img/icon_qa-m.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .qa__box.is-open .qa-box__head::after {
    width: 48px;
    height: 48px;
    right: 24px;
    top: 24%;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa-box {
  overflow: hidden;
}

.qa-box__head {
  padding: 10px 52px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  width: 100%;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 27px 82px 22px 22px;
    gap: 16px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 15px;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: url(../img/icon_qa-p.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    right: 20px;
    top: 24%;
  }
}

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

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

.qa-box__body {
  padding: 14px;
  background: #f5f5f5;
  margin-top: 2px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 23px 22px;
    margin-top: 0;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}

.qa-box__a-icon {
  font-family: "Josefin Sans", sans-serif;
  color: #9ed0e0;
  font-size: 24px;
  line-height: 125%; /* 30px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    margin-top: 9px;
    font-size: 16px;
  }
}

.entry {
  background: #e9f6f8;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-top: 0;
  }
}

.entry__content {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .entry__content {
    padding: 32px 48px;
  }
}

.entry__lists {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .entry__lists {
    margin-top: 41px;
    padding-inline: 0;
    gap: 12px;
  }
}

.entry__list-body {
  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;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .entry__list-body {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
  }
}
.entry__list-body:nth-child(5) {
  border-bottom: none;
}

.entry__list-title {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .entry__list-title {
    font-size: 16px;
    padding-left: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 232px;
  }
}
.entry__list-title::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .entry__list-title::before {
    width: 8px;
    height: 8px;
    left: 16px;
    top: 8px;
  }
}

.entry__lists-text {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 159%; /* 19.2px */
}
@media screen and (min-width: 768px) {
  .entry__lists-text {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    line-height: 163%; /* 19.2px */
  }
}

.list-text-dot {
  position: relative;
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .list-text-dot {
    padding-left: 24px;
  }
}
.list-text-dot::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 2px;
}
@media screen and (min-width: 768px) {
  .list-text-dot::before {
    top: 1px;
    left: 4px;
  }
}

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

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

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

.contact__title {
  font-size: 12px;
  text-align: center;
  margin-top: 25px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 16px;
    margin-top: 37px;
  }
}

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

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    gap: 22px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .contact__field-email {
    padding-block: 15px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .field__head-msg {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

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

.form-field__tag {
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 165%; /* 22.4px */
}

.form-field__item {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}
.form-field__item.is-radio {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  background: #f5f5f5;
  border-radius: 8px;
  width: 100%;
  padding: 16px;
  border: none;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  border: 1px solid transparent;
}
.form-text:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}
.form-text.is-error {
  background-color: #fff0f7;
  outline: none;
  border: 1px solid #ce2073;
}

.select-arrow-parent {
  position: relative;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 16px;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select.is-error {
  background-color: #fff0f7;
  outline: none;
  border: 1px solid #ce2073;
}
.form-select.is-error + div {
  background-color: #ce2073;
}

.select-arrow {
  position: absolute;
  width: 52px;
  height: 55px;
  background: url(../img/icon-arrow.webp) no-repeat center center/contain;
  background-color: #9ed0e0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  border-radius: 0 8px 8px 0;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  opacity: 0;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border-color: #9ed0e0;
}

.form-radio__text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  left: 6px;
  background: #9ed0e0;
  opacity: 0;
}

.form-textarea {
  font-size: 14px;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid transparent;
}
.form-textarea:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}
.form-textarea.is-error {
  background-color: #fff0f7;
  outline: none;
  border: 1px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}

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

.form-checkbox__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  opacity: 0;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
}

.form-checkbox__text {
  font-size: 14px;
  position: relative;
  padding-left: 36px;
  line-height: 160%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  left: 5px;
  width: 14px;
  height: 9px;
  background: url(../img/icon_check.webp) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
}

.contact__btn {
  text-align: center;
  margin-top: 23px;
  padding-inline: 40px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 40px;
  }
}

.error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.filled {
  background: #f5f5f5;
}

.footer {
  padding-top: 45px;
  background: #e9f6f8;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 120px;
  }
  .footer::before {
    position: absolute;
    content: "";
    top: 80px;
    right: 80px;
    width: 100px;
    height: 220px;
    background: url(../img/deco_bg_pawpads.webp) no-repeat center center/contain;
  }
}

.footer__deco {
  position: absolute;
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__deco {
    top: 0;
    left: calc(50% + 490px);
  }
}
@media screen and (min-width: 768px) {
  .footer__deco img {
    width: 100px;
  }
}

.footer__head {
  text-align: center;
}

.footer__head-title {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 125%; /* 25px */
}
@media screen and (min-width: 768px) {
  .footer__head-title {
    font-size: 24px;
  }
}

.footer__sns-items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  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;
}
@media screen and (min-width: 768px) {
  .footer__sns-item img {
    width: 38px;
  }
}

.is-X img {
  width: 29px;
}
@media screen and (min-width: 768px) {
  .is-X img {
    width: 36px;
  }
}

.footer__head-logo {
  margin-top: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__head-logo {
    margin-top: 42px;
  }
}
.footer__head-logo img {
  width: 350px;
}
@media screen and (min-width: 768px) {
  .footer__head-logo img {
    width: 754px;
  }
}

.footer__box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -2px;
}
@media screen and (min-width: 768px) {
  .footer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1024px;
    margin-top: -4px;
    gap: 0;
    border-radius: 16px;
  }
}

.footer__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__map {
    width: 50%;
  }
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 768px) {
  .footer__map iframe {
    aspect-ratio: 512/400;
    border-radius: 0px 16px 16px 0;
  }
}

.footer__info {
  text-align: center;
  padding: 0 24px 24px 24px;
}
@media screen and (min-width: 768px) {
  .footer__info {
    width: 50%;
    padding: 50px 0px 35px 20px;
  }
}
@media screen and (min-width: 900px) {
  .footer__info {
    padding: 85px 0px 45px 35px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__info {
    padding: 106px 61.5px;
  }
}

@media screen and (min-width: 768px) {
  .footer__info-logo {
    text-align: left;
  }
}
.footer__info-logo img {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer__info-logo img {
    width: 183px;
  }
}

.footer__info-content {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .footer__info-content {
    margin-top: 23px;
    gap: 12px;
  }
}

.footer__info-list {
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-list-title {
  display: block;
  text-align: left;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 83px;
}
@media screen and (min-width: 768px) {
  .info-list-title {
    font-size: 16px;
    padding-left: 16px;
    width: 85px;
  }
}
@media screen and (min-width: 900px) {
  .info-list-title {
    font-size: 16px;
    width: 105px;
  }
}
@media screen and (min-width: 1200px) {
  .info-list-title {
    width: 120px;
  }
}
.info-list-title::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .info-list-title::before {
    top: 25%;
  }
}

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

.page-top {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-top {
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 40;
  }
}
.page-top a {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-top a {
    padding: 5px;
  }
}
.page-top img {
  width: 79px;
}
@media screen and (min-width: 768px) {
  .page-top img {
    width: 100px;
  }
}

.footer__copyright {
  background: #e9f6f8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 120px;
  }
}

.footer__copyright-bg img {
  width: 100%;
}

.footer__copyright-area {
  background: #67b0c7;
  text-align: center;
  overflow: hidden;
  padding-bottom: 24px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .footer__copyright-area {
    padding-bottom: 30px;
    margin-top: -2px;
  }
}

.footer__copyright-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__copyright-text {
    font-size: 14px;
  }
}