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

html:has(dialog[open]) {
  overflow: hidden;
}

.button {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  text-align: 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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .button {
    border: 3px solid #4a3636;
    padding: 7px 37px 9px 37px;
  }
}
.button:hover {
  background-color: #ffee56;
}
.button a {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .button a {
    font-size: 20px;
  }
}

.underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: 1px;
  text-underline-position: from-font;
}
.underline:hover {
  color: #67b0c7;
}

.inline-block {
  display: inline-block;
}

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

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

.common__title {
  padding: 0 15px;
  text-align: center;
  line-height: 1.25;
}
.common__icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .common__icon img {
    width: 48px;
    height: 48px;
  }
}

.common__en {
  font-family: "Courgette", serif;
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .common__en {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

.common__ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .common__ja {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-top: 14px;
  }
}

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

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .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 {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 12px;
  }
}

.header__button {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
}
@media screen and (min-width: 900px) {
  .header__button {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-left: 6px;
  }
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 32px;
  top: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.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: 11px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3.5px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.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;
  right: 0;
  left: 28px;
  width: 3.8px;
  height: 3.5px;
  border-radius: 6px;
  background: #4a3636;
}

.drawer-content {
  position: fixed;
  width: 100%;
  top: 64px;
  height: calc(100% - 64px);
  left: 0;
  background-color: #fff;
  z-index: 70;
  padding-top: 82px;
  padding-bottom: 2px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.drawer-content__link {
  display: block;
  text-align: center;
  font-size: 14px;
  padding-bottom: 40px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.drawer-content__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  text-underline-offset: 4px;
}

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

.wrapper {
  overflow: hidden;
}

.fv {
  margin-top: 63px;
  position: relative;
  padding-top: 19px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 35px;
  }
}

.fv__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0px 0px 24px 24px;
  overflow: hidden;
  height: calc(100% - 145px);
}
@media screen and (min-width: 900px) {
  .fv__background-image {
    height: calc(100% - 72px);
  }
}
.fv__background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 900px) {
  .fv__background-image img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media screen and (min-width: 900px) {
  .fv__background-image {
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  position: relative;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 1024px;
  }
}

.fv__heading-description {
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 900px) {
  .fv__heading-description {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 334px;
}
@media screen and (min-width: 900px) {
  .fv__title {
    max-width: 520px;
    margin-top: 24px;
  }
}

.fv__decoration {
  position: relative;
  height: 522px;
}
@media screen and (min-width: 900px) {
  .fv__decoration {
    height: 536px;
  }
}

.fv__fukidashi {
  position: absolute;
  width: 143px;
  top: 17px;
  left: 0px;
}
@media screen and (min-width: 900px) {
  .fv__fukidashi {
    width: 240px;
    top: 1px;
    right: calc(50% + 146px);
    left: auto;
  }
}

.fv__present {
  position: absolute;
  z-index: 50;
  width: 110px;
  top: 10px;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__present {
    width: 180px;
    left: calc(50% + 117px);
    top: 17px;
  }
}

.fv__smartphone {
  position: relative;
}

.fv__smartphone-image {
  position: absolute;
  z-index: 51;
  top: 113px;
  width: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv__smartphone-image {
    width: 250px;
    top: 33px;
  }
}
.fv__content {
  left: 50%;
  width: 160px;
  text-align: center;
  border-radius: 12.8px;
  background: #fff;
  position: absolute;
  z-index: 52;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 237px;
}
@media screen and (min-width: 600px) {
  .fv__content {
    gap: 12px;
  }
}
@media screen and (min-width: 900px) {
  .fv__content {
    width: 200px;
    gap: 14px;
    height: 194px;
    top: 186px;
  }
}

.fv__content-box1 {
  width: 100%;
  height: 32.8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6.4px 9.6px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  border-top-left-radius: 12.8px;
  border-top-right-radius: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv__content-box1 {
    padding: 8px 12px;
    height: auto;
  }
}

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

.fv__content-box2 {
  padding-top: 12.8px;
  text-align: center;
  padding-bottom: 19.2px;
}

.fv__apply {
  display: inline-block;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .fv__apply {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv__period {
  margin-top: 3.2px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv__period {
    font-size: 16px;
    margin-top: 6px;
  }
}

.fv__button {
  margin-top: 12.8px;
  margin-left: auto;
  margin-right: auto;
  width: 132px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 22px 6px 22px;
  border: 2px solid #4a3636;
}
@media screen and (min-width: 900px) {
  .fv__button {
    font-size: 16px;
    height: auto;
    width: 144px;
    margin-top: 17px;
  }
}

.fv__food {
  position: absolute;
  z-index: 52;
  width: 90px;
  top: 392px;
}
@media screen and (min-width: 900px) {
  .fv__food {
    width: 212px;
    height: 332px;
    top: 228px;
    left: 87px;
  }
}

.fv__cat-brown {
  position: absolute;
  z-index: 52;
  right: 9px;
  bottom: -11px;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv__cat-brown {
    width: 233px;
    height: 174px;
    top: 431px;
    right: 88px;
  }
}

.fv__cat-black {
  position: absolute;
  z-index: 51;
  width: 62px;
  right: 0px;
  bottom: 48px;
}
@media screen and (min-width: 900px) {
  .fv__cat-black {
    width: 170px;
    height: 190px;
    top: 310px;
    right: 151px;
  }
}

.about {
  margin-top: 44px;
  position: relative;
  padding-bottom: 276px;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 104px;
  }
}

.about__paws {
  position: absolute;
  z-index: 54;
  width: 54px;
  left: calc(50% + 133px);
  top: -11px;
}
@media screen and (min-width: 600px) {
  .about__paws {
    left: calc(50% + 205px);
    top: -24px;
  }
}
@media screen and (min-width: 900px) {
  .about__paws {
    width: 70px;
    top: -60px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__paws {
    width: 100px;
    left: calc(50% + 489px);
    top: -81px;
  }
}

@media screen and (min-width: 900px) {
  .about__diagonal {
    position: absolute;
    z-index: 53;
    width: 250px;
    top: -19px;
    right: calc(50% + 276.5px);
  }
}
@media screen and (min-width: 1200px) {
  .about__diagonal {
    right: calc(50% + 527.5px);
  }
}

.about__photo-left {
  position: absolute;
  z-index: 54;
  width: 200px;
  height: 200px;
  border-radius: 24px;
  top: 395px;
  right: calc(50% + 127.5px);
}
@media screen and (min-width: 600px) {
  .about__photo-left {
    right: calc(50% + 180.5px);
  }
}
@media screen and (min-width: 900px) {
  .about__photo-left {
    width: 480px;
    top: 74px;
    right: calc(50% + 358.5px);
  }
}
@media screen and (min-width: 1200px) {
  .about__photo-left {
    right: calc(50% + 614.5px);
  }
}

.about__photo-right {
  position: absolute;
  z-index: 54;
  width: 200px;
  height: 200px;
  border-radius: 24px;
  top: 273px;
  left: calc(50% + 127px);
}
@media screen and (min-width: 600px) {
  .about__photo-right {
    left: calc(50% + 179px);
  }
}
@media screen and (min-width: 900px) {
  .about__photo-right {
    width: 480px;
    top: 73px;
    left: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about__photo-right {
    left: calc(50% + 560px);
  }
}

.about__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 620px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 890px;
  }
}

.about__items {
  position: relative;
  z-index: 54;
  padding: 39px 12px 40px;
  border-radius: 24px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .about__items {
    padding-top: 41px;
    border-radius: 40px;
  }
}
.about__items::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 36px;
  background: url(../img/about/about__arrow.png) no-repeat center center/contain;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__items::after {
    width: 140px;
    height: 50px;
    bottom: -51px;
  }
}

.about__left {
  position: absolute;
  z-index: 57;
  top: 30px;
  right: calc(50% + 47.5px);
  width: 86.5px;
}
@media screen and (min-width: 900px) {
  .about__left {
    top: 38px;
    right: calc(50% + 192.5px);
    width: 147px;
  }
}

.about__right {
  position: absolute;
  z-index: 57;
  top: 29px;
  left: calc(50% + 60px);
  width: 86.5px;
}
@media screen and (min-width: 900px) {
  .about__right {
    left: calc(50% + 192px);
    top: 48px;
    width: 147px;
  }
}

.about__heading {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .about__heading {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__heading {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__text-box {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .about__text-box {
    margin-top: 26px;
  }
}
@media screen and (min-width: 900px) {
  .about__text-box {
    margin-top: 32px;
  }
}

.about__text {
  margin-bottom: 18px;
}
@media screen and (min-width: 600px) {
  .about__text {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    font-size: 16px;
    margin-bottom: 27px;
  }
}

.text-retro {
  padding-top: 1px;
}

.about__bold {
  font-weight: 700;
}

.about__pop {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-top: 13px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about__pop {
    font-size: 20px;
    padding-top: 3px;
    padding-bottom: 12px;
  }
}

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

.about__slope {
  position: absolute;
  width: 138px;
  bottom: 60px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .about__slope {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__slope {
    position: absolute;
    width: 427px;
    left: auto;
    right: calc(50% + 150px);
    top: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__slope {
    right: calc(50% + 431px);
    top: 321px;
  }
}

.about__goods1 {
  position: absolute;
  width: 48px;
  bottom: 216px;
  left: calc(50% + 119px);
  z-index: 52;
}
@media screen and (min-width: 600px) {
  .about__goods1 {
    width: 80px;
    top: 743px;
    left: calc(50% + 279px);
  }
}
@media screen and (min-width: 900px) {
  .about__goods1 {
    width: 101px;
    top: 601px;
    left: calc(50% + 301px);
  }
}
@media screen and (min-width: 1200px) {
  .about__goods1 {
    left: calc(50% + 505px);
  }
}

.about__goods2 {
  position: absolute;
  width: 133px;
  bottom: 157px;
  left: calc(50% - 3px);
}
@media screen and (min-width: 600px) {
  .about__goods2 {
    width: 200px;
    top: 76%;
    left: calc(50% + 95px);
  }
}
@media screen and (min-width: 900px) {
  .about__goods2 {
    width: 308px;
    top: 75%;
    left: calc(50% + 119px);
  }
}
@media screen and (min-width: 1200px) {
  .about__goods2 {
    top: calc(68% + 7px);
    left: calc(50% + 374px);
  }
}

@media screen and (min-width: 900px) {
  .about__wavyline {
    position: absolute;
    z-index: 51;
    width: 847px;
    left: calc(50% + 200px);
    bottom: 463px;
  }
}
@media screen and (min-width: 1200px) {
  .about__wavyline {
    left: calc(50% + 450px);
    bottom: 450px;
  }
}

.about__english {
  position: absolute;
  width: 354.642px;
  bottom: 97px;
  left: calc(50% + 1px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__english {
    width: 770px;
    bottom: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .about__english {
    width: 890px;
    bottom: 11px;
    left: calc(50% - 2px);
  }
}

.about__slider {
  position: absolute;
  bottom: -1px;
}
@media screen and (min-width: 900px) {
  .about__slider {
    bottom: -170px;
  }
}
@media screen and (min-width: 1200px) {
  .about__slider {
    top: calc(96% + 28px);
  }
}

.about__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about__slide {
  width: auto !important;
  height: 100px !important;
}
@media screen and (min-width: 900px) {
  .about__slide {
    height: 200px !important;
  }
}
.about__slide img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .about__slide img {
    width: 200px;
  }
}

.how-to-enter {
  margin-top: 67px;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 288px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter {
    margin-top: 305px;
  }
}

.how-to-enter__inner {
  text-align: center;
  padding-inline: 20px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-to-enter__map {
  position: absolute;
  top: -1px;
  right: calc(50% + 52px);
  width: 136px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__map {
    right: calc(50% + 95px);
    width: 162px;
    top: 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__map {
    width: 350px;
    right: calc(50% + 210px);
    top: -55px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__map {
    width: 460px;
    right: calc(50% + 282px);
    top: -60px;
  }
}

.how-to-enter__cat-tabby {
  position: absolute;
  top: 0;
  left: calc(50% + 58px);
  width: 105px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-tabby {
    width: 238px;
    left: calc(50% + 200px);
    top: -25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat-tabby {
    left: calc(50% + 286px);
    top: -28px;
  }
}

.how-to-enter__cat-gray {
  position: absolute;
  top: 4px;
  left: calc(50% + 124px);
  width: 94px;
  z-index: 54;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-gray {
    width: 214px;
    left: calc(50% + 351px);
    top: -13px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat-gray {
    left: calc(50% + 437px);
    top: -15px;
  }
}

.how-to-enter__paws-right1 {
  position: absolute;
  left: calc(50% + 112px);
  width: 55px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  top: 72px;
  z-index: 51;
}
@media screen and (min-width: 600px) {
  .how-to-enter__paws-right1 {
    left: calc(50% + 175px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__paws-right1 {
    width: 70px;
    left: calc(50% + 440px);
    top: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__paws-right1 {
    width: 100px;
    left: 91%;
    top: 147px;
  }
}

.how-to-enter__paws-left,
.how-to-enter__paws-right2 {
  position: absolute;
  width: 55px;
}

.how-to-enter__paws-left {
  top: 548px;
  right: calc(50% + 113px);
}
@media screen and (min-width: 600px) {
  .how-to-enter__paws-left {
    top: 516px;
    right: calc(50% + 177px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__paws-left {
    width: 70px;
    left: 0;
    top: 565px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__paws-left {
    width: 100px;
    top: 580px;
    left: 36px;
  }
}

.how-to-enter__paws-right2 {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  top: 878px;
  left: calc(50% + 112px);
}
@media screen and (min-width: 600px) {
  .how-to-enter__paws-right2 {
    top: 914px;
    left: calc(50% + 175px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__paws-right2 {
    display: none;
  }
}

.how-to-enter__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
    margin-left: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__boxes {
    gap: 41px;
    margin-top: 40px;
    margin-left: 0;
  }
}

@media screen and (min-width: 900px) {
  .how-to-enter__box {
    max-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__box {
    max-width: 320px;
  }
}

.box-step1 {
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .box-step1 {
    padding-left: 16px;
  }
}

.box-step2 {
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .box-step2 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .box-step2 {
    margin-top: 68px;
    margin-left: 15px;
  }
}

.box-step3 {
  margin-top: -1px;
}
.how-to-enter__image img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__image img {
    width: 257px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__image img {
    width: 280px;
  }
}

.how-to-enter__body {
  margin-top: 17px;
  margin-bottom: 15.5px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__body {
    margin-top: 23px;
  }
}

.box-body3 {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .box-body3 {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .box-body3 {
    margin-top: 22px;
  }
}

.how-to-enter__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__title {
    font-size: 20px;
  }
}

.title-3 {
  padding-left: 5px;
}

.how-to-enter__text {
  margin-top: 16px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__text {
    font-size: 16px;
    margin-top: 17px;
  }
}

.how-to-enter__follow {
  margin-top: 16px;
}

.how-to-enter__link {
  position: relative;
  display: inline-block;
  padding-top: 6px;
  padding-right: 14px;
  padding-left: 41px;
  padding-bottom: 6px;
  border: 1px solid transparent;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__link {
    font-size: 16px;
    padding-top: 7px;
    padding-right: 10px;
    padding-left: 45px;
    padding-bottom: 7px;
  }
}
.how-to-enter__link::before {
  content: "";
  position: absolute;
  background: url(../img/Icon=instagram.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-enter__link::before {
    width: 24px;
    height: 24px;
  }
}
.how-to-enter__link:hover {
  border-color: #9ed0e0;
}

.how-to-enter__step-line {
  margin-left: auto;
  margin-right: auto;
}
.how-to-enter__step-line img {
  width: 7px;
  height: 34px;
}

@media screen and (min-width: 900px) {
  .how-to-enter__step-line-pc1 {
    position: absolute;
    width: 70px;
    height: 16px;
    right: calc(50% + 138px);
    top: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step-line-pc1 {
    position: absolute;
    width: 113px;
    right: calc(50% + 145px);
    top: 202px;
  }
}

@media screen and (min-width: 900px) {
  .how-to-enter__step-line-pc2 {
    position: absolute;
    width: 70px;
    height: 16px;
    left: calc(50% + 96px);
    top: 140px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step-line-pc2 {
    position: absolute;
    width: 113px;
    left: calc(50% + 104px);
    top: 202px;
  }
}

@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 34px;
  }
}

.prizes {
  margin-top: 38px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 127px;
  }
}

.prizes__inner {
  text-align: center;
  position: relative;
  padding-top: 83px;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 149px;
  }
}
.prizes__inner::before {
  content: "";
  position: absolute;
  background: url(../img/prize/prizes-head-sp.svg) no-repeat center center/contain;
  width: 245px;
  height: 81px;
  top: 2px;
  left: 50%;
  -webkit-transform: translateX(-48%);
          transform: translateX(-48%);
}
@media screen and (min-width: 900px) {
  .prizes__inner::before {
    background: url(../img/prize/prizes-head-pc.svg) no-repeat center center/contain;
    width: 366px;
    height: 151px;
    top: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (min-width: 900px) {
  .prizes-head-left,
  .prizes-head-right {
    position: absolute;
    width: 315px;
    top: 30px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-head-left {
    padding-left: 30px;
    right: calc(50% + 196px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes-head-left {
    padding-left: 0;
  }
}

@media screen and (min-width: 900px) {
  .prizes-head-right {
    padding-right: 30px;
    left: calc(50% + 196px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes-head-right {
    padding-right: 0;
  }
}

.prizes__body {
  background: #fff;
  border-radius: 24px;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .prizes__body {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) {
  .prizes__body {
    max-width: 1024px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__body {
    padding-inline: 56px;
  }
}

.prizes__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 21px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .prizes__title {
    top: 30px;
  }
}

.prizes__contents {
  padding-top: 61px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    padding-top: 65px;
  }
}

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

.prize__cards {
  margin-top: 22px;
  margin-bottom: 19px;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .prize__cards {
    margin-top: 32px;
    gap: 32px;
  }
}

.prize__card {
  padding-top: 24px;
  text-align: center;
  position: relative;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prize__card:nth-child(1), .prize__card:nth-child(2) {
    width: calc(50% - 16px);
    padding-top: 51px;
  }
}
@media screen and (min-width: 900px) {
  .prize__card:nth-child(3), .prize__card:nth-child(4), .prize__card:nth-child(5) {
    width: calc(33% - 19px);
    padding-top: 47px;
  }
}

.prize__card__number {
  position: absolute;
  width: 48px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 54;
}
@media screen and (min-width: 900px) {
  .prize__card__number {
    width: 60px;
    top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card__number {
    width: 80px;
    top: 8px;
  }
}

@media screen and (min-width: 900px) {
  .large-number {
    width: 80px;
    position: absolute;
    top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 54;
  }
}
@media screen and (min-width: 1200px) {
  .large-number {
    width: 100px;
    top: 1px;
  }
}

.prize__card-body {
  border-radius: 8px;
  background: #f5f5f5;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 52;
}
@media screen and (min-width: 900px) {
  .prize__card-body {
    border-radius: 16px;
  }
}
.prize__card-body:hover {
  border: 4px solid #9ed0e0;
}
.prize__card-body:hover .prize__card__image img {
  scale: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.prize__card-body:hover .triangle-path {
  fill: #9ed0e0;
}

@media screen and (min-width: 900px) {
  .body-pc {
    border-radius: 24px;
  }
}

.prize__card__image {
  overflow: hidden;
  max-height: 340px;
  display: block;
}
.prize__card-triangle1,
.prize__card-triangle2 {
  position: absolute;
  width: 36px;
  height: 36px;
  bottom: 1px;
  right: 63px;
  z-index: 53;
}

@media screen and (min-width: 900px) {
  .prize__card-triangle1 {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card-triangle1 {
    width: 100px;
    height: 100px;
    right: -1px;
    bottom: -1px;
  }
}

@media screen and (min-width: 900px) {
  .prize__card-triangle2 {
    width: 45px;
    height: 45px;
    right: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card-triangle2 {
    width: 64px;
    height: 64px;
    right: 35px;
  }
}

.prize__card-zoom1,
.prize__card-zoom2 {
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  bottom: 12px;
  right: 5px;
  z-index: 54;
}

@media screen and (min-width: 900px) {
  .prize__card-zoom1 {
    width: 25px;
    height: 25px;
    right: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card-zoom1 {
    width: 32px;
    height: 32px;
    right: 12px;
  }
}

@media screen and (min-width: 900px) {
  .prize__card-zoom2 {
    width: 14px;
    height: 14px;
    right: 5px;
    bottom: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card-zoom2 {
    width: 20.48px;
    height: 20.48px;
    right: 9px;
    bottom: 14px;
  }
}

.prize__card__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;
  font-weight: 700;
  padding-top: 6px;
  padding-bottom: 5px;
  min-height: 56px;
}
@media screen and (min-width: 600px) {
  .prize__card__text {
    min-height: 70px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prize__card__text {
    min-height: 79px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .text-pc {
    min-height: 120px;
    font-size: 20px;
    padding-top: 5px;
  }
}

.prize__button {
  margin-bottom: 36px;
}
@media screen and (min-width: 900px) {
  .prize__button {
    margin-top: 21px;
    margin-bottom: 54px;
  }
}

.prize__bg-pic {
  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;
  margin-top: -44px;
}
@media screen and (min-width: 900px) {
  .prize__bg-pic {
    margin-top: 0px;
  }
}
.prize__bg-pic img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prize__bg-pic img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media screen and (min-width: 1200px) {
  .prize__bg-pic img {
    min-width: 600px;
  }
}

.prize-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  height: 480px;
  max-height: calc(100% - 20px);
  padding-bottom: 56px;
  border-radius: 24px;
  background: #fff;
  border: none;
  overflow: hidden;
  padding-top: 0;
  padding-inline: 0;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 600px) {
  .prize-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prize-modal {
    width: 480px;
    height: 650px;
    padding-bottom: 106px;
  }
}
.prize-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.prize-modal::backdrop {
  opacity: 0.7;
  background: #000;
}

.prize-modal__image img {
  width: 100%;
}
.prize-modal__body {
  padding-top: 39px;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prize-modal__body {
    padding-top: 25px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .prize-modal__body {
    padding-top: 40px;
  }
}
.prize-modal__title {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .prize-modal__title {
    font-size: 20px;
  }
}

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

.prize-modal__close-button {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prize-modal__close-button {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prize-modal__close-button {
    margin-top: 24px;
  }
}

.spots {
  position: relative;
  margin-top: -47px;
  padding-top: 44px;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: -120px;
    padding-top: 118px;
  }
}
.spots::before {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  background-image: url(../img/spots/spots-wave-top.svg);
  background-repeat: repeat-x;
  left: 0;
  top: 0;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/spots/spots-wave-top-pc.svg);
    height: 120px;
  }
}
.spots::after {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  background-image: url(../img/spots/spots-wave-bottom.svg);
  background-repeat: repeat-x;
  left: 0;
  bottom: -44px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/spots/spots-wave-bottom-pc.svg);
    height: 120px;
    bottom: -104px;
  }
}
@media screen and (min-width: 1200px) {
  .spots::after {
    bottom: -117px;
  }
}

.spots__inner {
  background: #67b0c7;
}

@media screen and (min-width: 900px) {
  .spots__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 30px;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__contents {
    padding-left: max(30px, 50% - 509px);
  }
}

.spots__head {
  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: 3px;
}
@media screen and (min-width: 900px) {
  .spots__head {
    -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: 12px;
  }
}

.spots__head-icon img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots__head-icon img {
    width: 56px;
    height: 56px;
  }
}

.spots__head-title {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", serif;
}
@media screen and (min-width: 900px) {
  .spots__head-title {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    letter-spacing: 10.5px;
  }
}

.spots__slider {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    margin-top: 4px;
    width: calc(100% - 31px - 23px);
  }
}

.spots__slide {
  height: auto;
}

.spots__card {
  padding-bottom: 29px;
  background: #fff;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding-inline: 26px;
}
@media screen and (min-width: 900px) {
  .spots__card {
    border-radius: 24px;
    padding-bottom: 40px;
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__card {
    padding-inline: 33px;
    padding-bottom: 42px;
  }
}

.spots__card-image {
  display: block;
  width: calc(100% + 53px);
  margin-left: -27px;
}
@media screen and (min-width: 900px) {
  .spots__card-image {
    width: calc(100% + 66px);
    margin-left: -33px;
  }
}
.spots__card-box {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .spots__card-box {
    margin-top: 23px;
  }
}

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

.spots__card-text {
  margin-top: 16px;
}
@media screen and (min-width: 600px) {
  .spots__card-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots__card-text {
    font-size: 16px;
    margin-top: 25px;
  }
}

.spots__items {
  padding-bottom: 22px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__items {
    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;
    gap: 81px;
    margin-top: 65px;
    padding-bottom: 5px;
  }
}

.spots__logo img {
  width: 254.439px;
  height: 55px;
}
@media screen and (min-width: 900px) {
  .spots__logo img {
    width: 360px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo img {
    width: 495px;
    height: 107px;
  }
}

.spots__bottom {
  margin-top: 17px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    padding-inline: 0;
    margin-top: -3px;
  }
}

.spots__text {
  font-size: 11.444px;
  color: #fff;
}
@media screen and (min-width: 600px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
  }
}

.spots__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-left: 10px;
    margin-top: 25px;
  }
}

@media screen and (min-width: 900px) {
  .spots__paws {
    position: absolute;
    width: 80px;
    bottom: 13px;
    left: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__paws {
    width: 100px;
    height: 220px;
    bottom: 3px;
    left: calc(50% - 720px);
  }
}

.spots__prev,
.spots__next {
  width: 80px;
  height: 80px;
  top: 525px;
}
@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    top: 660px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev,
  .spots__next {
    top: 628px;
  }
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

.spots__prev {
  left: calc(50% - 356px);
  background: url(../img/spots/prev.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1200px) {
  .spots__prev {
    left: calc(50% - 473px);
  }
}

.spots__next {
  background: url(../img/spots/next.svg) no-repeat center center/contain;
  left: calc(50% + 260px);
}
@media screen and (min-width: 1200px) {
  .spots__next {
    left: calc(50% + 391px);
  }
}

.qa {
  margin-top: 44px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 238px;
  }
}

.qa__inner {
  padding-top: 42px;
  padding-inline: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 1063px;
    padding-top: 0;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    padding-inline: 20px;
  }
}

.qa__boxes {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    padding-top: 40px;
    gap: 24px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  overflow: hidden;
}
.qa__box.is-open .qa-box__head::after {
  background: url(../img/qa/qa__-.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 52px 11px 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 22px 22px 24px;
    gap: 16px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  background: url(../img/qa/qa__+.png) no-repeat center center/contain;
  width: 27.182px;
  height: 26.182px;
  right: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    right: 21px;
  }
}

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

.qa-box__head-icon {
  display: block;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    margin-top: 3px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  display: block;
  text-align: left;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__body {
  padding: 16px 14px 14px;
  background: #f5f5f5;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 26px 40px 22px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__body {
    padding: 26px 22px 22px;
  }
}

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

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

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

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

.entry-requirements__items {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .entry-requirements__items {
    padding-top: 40px;
    padding-left: 41px;
    padding-right: 32px;
    padding-bottom: 6px;
  }
}

.entry-requirements__title {
  margin-top: 19px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__title {
    margin-top: -9px;
    padding-right: 25px;
  }
}

.entry-requirements__boxes {
  margin-top: 24px;
  padding-left: 15px;
  padding-right: 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: 11px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__boxes {
    margin-top: 40px;
    padding-left: 7px;
    padding-right: 17px;
    padding-bottom: 9px;
    gap: 12px;
  }
}

.entry-requirements__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
  }
}

.box-last {
  padding-bottom: 31px;
  border-bottom: none;
  line-height: 1.59;
}

.entry-requirements__box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-head {
    width: 237px;
    padding-left: 16px;
  }
}

@media screen and (min-width: 900px) {
  .entry-requirements__box-point {
    margin-top: -1px;
  }
}
.entry-requirements__box-point img {
  width: 8px;
  height: 8px;
}

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

@media screen and (min-width: 600px) {
  .entry-requirements__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements__text {
    font-size: 16px;
    width: calc(100% - 224px);
    line-height: 1.63;
  }
}

li::marker {
  font-size: 8px;
}
@media screen and (min-width: 900px) {
  li::marker {
    font-size: 10px;
  }
}

.entry-requirements__lists {
  list-style: disc;
  padding-left: 18px;
}
@media screen and (min-width: 600px) {
  .entry-requirements__lists {
    padding-left: 21px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements__lists {
    width: calc(100% - 224px);
    padding-left: 23px;
    line-height: 1.62;
  }
}

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

.entry-requirements__image {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__image {
    margin-top: 117px;
  }
}
.entry-requirements__image img {
  width: 100%;
}

.contact {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 44px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 122px;
    padding-bottom: 120px;
  }
}

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

.contact__lead {
  padding-top: 25px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .contact__lead {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .contact__lead {
    padding-top: 33px;
    padding-bottom: 31px;
    font-size: 16px;
  }
}

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

@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

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

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

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .form-field__tag {
    font-size: 12px;
  }
}

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

.form-text {
  height: 56px;
  padding: 14.5px 15px;
  border-radius: 8px;
  background-color: #f5f5f5;
  width: 100%;
  border: none;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-text {
    padding: 16px;
    font-size: 16px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder {
  color: #ccc;
}
.form-text:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 56px;
  padding: 16px 60px 16px 16px;
  border-radius: 8px;
  width: 100%;
  border: none;
  font-size: 14px;
  background: #f5f5f5 url(../img/contact-arrow.png) no-repeat center right/52px 55px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
  background-image: url(../img/error-arrow.png);
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 2px;
  }
}

.form-field__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 900px) {
  .field-message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
}
@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;
  left: 0;
  background: #f5f5f5;
}
.form-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  height: 160px;
  padding: 16.5px 15px;
  font-size: 14px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-textarea::-moz-placeholder {
  color: #ccc;
}
.form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-textarea::placeholder {
  color: #ccc;
}
.form-textarea:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-textarea.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

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

.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__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
@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;
  border-radius: 4px;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  width: 24px;
  height: 24px;
  background: url(../img/contact-checkbox.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  text-underline-offset: 2px;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}

.contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 27px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 39px;
  }
}

@media screen and (min-width: 900px) {
  .button-submit {
    padding: 4px 38px 6px 38px;
    border: 2px solid #4a3636;
  }
}

.footer {
  position: relative;
}

@media screen and (min-width: 900px) {
  .footer__paws {
    position: absolute;
    width: 70px;
    right: 0;
    top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__paws {
    width: 100px;
    left: calc(50% + 577px);
  }
}

.footer__inner {
  padding-top: 39px;
  padding-bottom: 24px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 640px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-top: 120px;
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 0;
  }
}

.footer__head {
  font-size: 20px;
  font-family: "Josefin Sans", serif;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .footer__head {
    font-size: 24px;
  }
}

.footer__sns-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  margin-bottom: 13px;
}
@media screen and (min-width: 600px) {
  .footer__sns-items {
    margin-bottom: 20px;
  }
}

.is-youtube,
.is-instagram,
.is-twitter {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .is-youtube,
  .is-instagram,
  .is-twitter {
    width: 40px;
    height: 40px;
  }
}

.footer__image {
  max-width: 328px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer__image {
    max-width: 755px;
    margin-top: 42px;
  }
}
.footer__image img {
  width: 100%;
}

.footer__box {
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -4px;
  }
}

.footer__box-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 900px) {
  .footer__box-map iframe {
    aspect-ratio: 512/400;
    vertical-align: top;
  }
}
@media screen and (min-width: 900px) {
  .footer__box-map {
    width: 50%;
  }
}

.footer__box-overview {
  padding-inline: 28px;
  padding-top: 18px;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .footer__box-overview {
    padding-inline: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__box-overview {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (min-width: 900px) {
  .footer__box-logo {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.footer__box-logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer__box-logo img {
    width: 183px;
  }
}

.footer__box-lists {
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer__box-lists {
    margin-top: 22px;
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__box-lists {
    margin-top: 24px;
    gap: 12px;
  }
}

.footer__box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .footer__box-list {
    gap: 23px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__box-list {
    gap: 40px;
  }
}

.footer__link-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 600px) {
  .footer__link-meta {
    width: 95px;
  }
}
@media screen and (min-width: 900px) {
  .footer__link-meta {
    width: 73px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__link-meta {
    width: 80px;
  }
}

.footer__link-point img {
  width: 8px;
  height: 8px;
}

.footer__link-head {
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .footer__link-head {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__link-head {
    font-size: 16px;
  }
}

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

.footer__pagetop {
  margin-top: 23px;
}

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

.footer__bottom {
  background: #67b0c7;
  text-align: center;
  padding-bottom: 27px;
  position: relative;
  margin-top: 44px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 237px;
    padding-bottom: 38px;
  }
}
.footer__bottom::before {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  background-image: url(../img/spots/spots-wave-top.svg);
  background-repeat: repeat-x;
  left: 0;
  top: -45px;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    background-image: url(../img/spots/spots-wave-top-pc.svg);
    height: 120px;
    background-position: left center;
    top: -118px;
  }
}

.footer__copylight {
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 900px) {
  .footer__copylight {
    font-size: 14px;
  }
}