@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

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

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

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

.inner {
  padding-inline: 15px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 6px 24px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
}
.button:hover {
  background: #ffee56;
}
@media screen and (max-width: 374px) {
  .button {
    font-size: 12px;
    padding: 6px 12px 8px;
  }
}
@media screen and (min-width: 900px) {
  .button {
    padding: 8px 37px 10px;
    font-size: 20px;
    border-width: 3px;
    height: 56px;
  }
}

.heading {
  position: relative;
  padding-top: 43.33px;
  text-align: center;
}
.heading::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 37.333px;
  height: 37.333px;
  content: "";
  background: transparent no-repeat center/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading::before {
    top: -8px;
    width: 43.333px;
    height: 43.333px;
  }
}

.heading-en {
  font-family: "Courgette", cursive;
}
@media screen and (min-width: 900px) {
  .heading-en {
    font-size: 20px;
  }
}

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

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
    max-width: 100%;
    margin-inline: auto;
  }
}

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

.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;
    height: 28px;
  }
  .header__nav .header__link:last-of-type {
    margin-right: 4px;
  }
}

.header__link {
  font-size: 12px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

@media screen and (min-width: 900px) {
  .button-nav-small {
    height: 36px;
    padding: 6px 22px 8px;
    font-size: 14px;
    border-width: 2px;
  }
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1)::after {
  display: none; /* ドットを非表示にする */
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 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: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(1)::after {
  content: "";
  position: absolute;
  left: calc(100% + 0.1em);
  top: 0;
  width: 4.8px;
  height: 100%;
  background: #4a3636;
  border-radius: 6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}
.drawer-icon__bar.is-checked .drawer-icon__bar:nth-of-type(1)::after {
  display: none;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  top: 64px;
  right: 0;
  background: #ffffff;
  z-index: 50;
  padding: 60px 100px;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -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__link {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.drawer-content__button {
  margin-top: 20px;
  text-align: center;
}
.drawer-content__button:hover {
  background: none;
}

.fv {
  position: relative;
  margin-top: 64px;
  padding-top: 17px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 34px;
  }
}

.fv__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 155px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
.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 {
    height: calc(100% - 60px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
@media screen and (min-width: 1500px) {
  .fv__background-image img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}

.fv__inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 848px;
  }
}

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

.img__title {
  margin-top: 20px;
}
.img__title img {
  width: min(89.333333333vw, 335px);
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 900px) {
  .img__title img {
    width: 520px;
  }
}
@media screen and (min-width: 900px) {
  .img__title {
    margin-top: 24px;
    padding-bottom: 0.885px;
    margin-inline: auto;
  }
}

.fv__picture {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fv__content {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .fv__content {
    margin-top: 0;
  }
}

.fv__content-smartphone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv__content-smartphone {
    top: 33px;
  }
}

.content__smartphone {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .content__smartphone {
    width: 250px;
  }
}

.content__smartphone__image {
  position: relative;
}
.content__smartphone__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.content__smartphone__wrap {
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  width: calc(100% - 40px);
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border-radius: 12.8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .content__smartphone__wrap {
    top: calc(50% + 10px);
    width: calc(100% - 48px);
  }
}

.content__smartphone__heading {
  padding: 6px 9.2px;
  font-size: 12.8px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .content__smartphone__heading {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.content__smartphone__body {
  padding-top: 12.8px;
  padding-bottom: 12.8px;
}
@media screen and (min-width: 900px) {
  .content__smartphone__body {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.content__smartphone__sub-heading {
  font-size: 12px;
}
.content__smartphone__sub-heading span {
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .content__smartphone__sub-heading {
    font-size: 14px;
  }
}

.content__smartphone__text {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .content__smartphone__text {
    font-size: 16px;
  }
}

.content__smartphone__button {
  height: 22px;
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .content__smartphone__button {
    height: 32px;
    margin-bottom: 32px;
  }
}

.button-small {
  height: 32px;
  padding: 4px 22px 6px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .button-small {
    height: 40px;
    padding: 6px 24px 8px;
    font-size: 16px;
    border-width: 2px;
  }
}

.fv__content-en-message {
  position: absolute;
  top: 8px;
  left: 0;
  width: 142px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-en-message {
    width: 240px;
    top: 0;
    left: auto;
    right: calc(50% + 145px);
  }
}

.fv__content-circle-text {
  position: absolute;
  top: 0;
  right: 25px;
  width: 110px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__content-circle-text {
    width: 180px;
    left: calc(50% + 118px);
    top: 16px;
  }
}

.fv__content-coffee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  max-width: 100%;
  z-index: 4;
}
.fv__content-coffee img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .fv__content-coffee {
    width: 212px;
    bottom: -36px;
  }
}

.fv__content-cats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
}
@media screen and (min-width: 900px) {
  .fv__content-cats {
    left: 600px;
  }
}

.fv__content-cat {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 900px) {
  .fv__content-cat {
    width: 233px;
    height: 294px;
  }
}

.content-cats1 {
  position: absolute;
  bottom: 58px;
  right: 0;
  width: 62px;
}
.content-cats1 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .content-cats1 {
    width: 170px;
    height: 190px;
    bottom: 24px;
    right: 48px;
  }
}

.content-cats2 {
  position: absolute;
  bottom: 0;
  right: 9px;
  z-index: 4;
  width: 98px;
}
.content-cats2 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .content-cats2 {
    width: 233px;
    height: 174px;
    bottom: -80px;
    right: -16px;
  }
}

.about {
  position: relative;
  margin-top: 32px;
  padding-bottom: 144px;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 118px;
  }
}

.about__decoration {
  position: absolute;
}

.about__decoration-stripe-pattern {
  top: -20px;
  right: calc(50% + 280px);
  width: 250px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 1200px) {
  .about__decoration-stripe-pattern {
    right: calc(50% + 527px);
  }
}

.about__decoration-picture-ropeway {
  top: 395px;
  right: calc(50% + 128px);
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__decoration-picture-ropeway {
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-ropeway {
    top: 73px;
    right: calc(50% + 360px);
    z-index: 2;
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-ropeway {
    right: calc(50% + 615px);
  }
}

.about__decoration-2lady {
  position: absolute;
  top: 710px;
  left: 0;
  width: 138px;
}
@media screen and (min-width: 600px) {
  .about__decoration-2lady {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-2lady {
    width: 427px;
    top: 320px;
    right: calc(50% + 150px);
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-2lady {
    right: calc(50% + 432px);
  }
}
@media screen and (min-width: 1720px) {
  .about__decoration-2lady {
    right: calc(50% + 532px);
  }
}

.about__decoration-pawpad {
  top: -9px;
  left: calc(50% + 133px);
  width: 54px;
}
@media screen and (min-width: 600px) {
  .about__decoration-pawpad {
    top: -20px;
    left: calc(50% + 205px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-pawpad {
    top: -60px;
    left: calc(50% + 300px);
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-pawpad {
    top: -80px;
    left: calc(50% + 490px);
    width: 100px;
  }
}

.about__decoration-ship {
  top: 274px;
  left: calc(50% + 128px);
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__decoration-ship {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-ship {
    top: 73px;
    width: 480px;
    left: calc(50% + 360px);
    right: auto;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-ship {
    left: calc(50% + 560px);
  }
}

@media screen and (min-width: 900px) {
  .about__decoration-wave {
    bottom: 627px;
    left: calc(50% + 200px);
    width: 874px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-wave {
    bottom: 616px;
    left: calc(50% + 448px);
  }
}

.about__decoration-goods1 {
  bottom: 223px;
  left: calc(50% + 118px);
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__decoration-goods1 {
    left: calc(50% + 280px);
    width: 80px;
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods1 {
    left: calc(50% + 300px);
    width: 101px;
    display: block;
    bottom: 572px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods1 {
    left: calc(50% + 506px);
    bottom: 568px;
  }
}

.about__decoration-goods2 {
  bottom: 164px;
  left: calc(50% - 3px);
  width: 133px;
}
@media screen and (min-width: 600px) {
  .about__decoration-goods2 {
    left: calc(50% + 97px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods2 {
    left: calc(50% + 120px);
    width: 308px;
    bottom: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods2 {
    left: calc(50% + 373px);
    width: 308px;
    bottom: 361px;
  }
}

.about__inner {
  max-width: 375px;
  padding-inline: 20px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

.about__top {
  position: relative;
  padding: 40px 20px 16px;
  background: #ffffff;
  border-radius: 24px;
}
.about__top::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 36px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #cce1e4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__top::after {
    width: 140px;
    height: 50px;
  }
}
@media screen and (min-width: 900px) {
  .about__top {
    padding-top: 49px;
    border-radius: 40px;
  }
}

.about__top-left {
  position: absolute;
  width: 88px;
  -webkit-transform: rotate(-1deg);
          transform: rotate(-1deg);
  top: 31px;
  right: calc(50% + 46.5px);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media screen and (min-width: 900px) {
  .about__top-left {
    top: 37px;
    right: calc(50% + 191px);
    width: 150px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.about__top-right {
  position: absolute;
  width: 88px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 30px;
  left: calc(50% + 60.15px);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media screen and (max-width: 374px) {
  .about__top-right {
    left: calc(50% + 45.15px);
  }
}
@media screen and (min-width: 900px) {
  .about__top-right {
    top: 45px;
    left: calc(50% + 193px);
    width: 150px;
  }
}

.heading-megahon::before {
  background-image: url(../img/2_about/Icon=campaign.svg);
}

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

.about-top__text-wrap {
  font-size: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about-top__text-wrap {
    margin-top: 32px;
  }
}

.about-top__text {
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .about-top__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__text {
    font-size: 16px;
  }
}
.about-top__text:nth-child(1) {
  margin-top: 0em;
}
.about-top__text:nth-child(2), .about-top__text:nth-child(3), .about-top__text:nth-child(4) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about-top__text:nth-child(2), .about-top__text:nth-child(3), .about-top__text:nth-child(4) {
    margin-top: 1.7em;
  }
}

.link-text {
  font-style: normal;
  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: auto;
  text-underline-position: from-font;
}

.font-weight-bold {
  font-style: normal;
  font-weight: 700;
}

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

.about__button {
  margin-top: 24px;
  padding-bottom: 24px;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 32px;
  }
}

.about__bottom__about-logo {
  position: relative;
  bottom: -140px;
  z-index: 2;
  display: block;
  width: 355px;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__bottom__about-logo {
    width: 888px;
    bottom: -164px;
  }
}

.slider {
  position: relative;
  bottom: -138px;
}
@media screen and (min-width: 900px) {
  .slider {
    bottom: -160px;
  }
}

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

.how-to-enter {
  padding-top: 56px;
  padding-bottom: 17.67px;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 90px;
  }
}

.how-to-enter__inner {
  position: relative;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .how-to-enter__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    max-width: 1512px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__inner {
    padding-inline: 30px;
  }
}

.how-to-enter__decoration {
  position: absolute;
}

.how-to-enter__decoration-map {
  top: 0;
  right: calc(50% + 52px);
  width: 139px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__decoration-map {
    right: calc(50% + 108px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-map {
    top: -72px;
    right: calc(50% + 180px);
    width: 380px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-map {
    right: calc(50% + 296px);
    width: 424px;
  }
}

.how-to-enter__decoration-cats {
  top: 2px;
  left: calc(50% + 58px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-cats {
    top: -36px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-cats {
    left: calc(50% + 287px);
  }
}

.decoration-cats2 {
  position: relative;
  width: 160px;
  height: 85px;
}
@media screen and (min-width: 900px) {
  .decoration-cats2 {
    width: 364px;
    height: 191.08px;
  }
}

.decoration-cats2__1 {
  position: absolute;
  width: 105px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .decoration-cats2__1 {
    width: 238px;
  }
}

.decoration-cats2__2 {
  position: absolute;
  width: 94px;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 900px) {
  .decoration-cats2__2 {
    width: 214px;
  }
}

.how-to-enter__decoration-pawpats-1 {
  width: 55px;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-pawpats-1 {
    top: 140px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-pawpats-1 {
    right: 36px;
    width: 100px;
  }
}

.how-to-enter__decoration-pawpats-2 {
  width: 55px;
  top: 552px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-pawpats-2 {
    top: 572px;
    left: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-pawpats-2 {
    left: 36px;
    width: 100px;
  }
}

.how-to-enter__decoration-pawpats-3 {
  width: 55px;
  bottom: 367px;
  right: 20px;
}

.heading-camera::before {
  background-image: url(../img/3_how-to-enter/Icon=camera.png);
}

.how-to-enter-steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 900px) {
  .how-to-enter-steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-steps {
    margin-top: 40px;
    gap: 32px;
  }
}

.how-to-enter-step {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step {
    max-width: 320px;
  }
}
.how-to-enter-step:nth-of-type(1)::after, .how-to-enter-step:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent no-repeat center/contain;
  background-image: url(../img/3_how-to-enter/sp/img_step_line_sp.png);
  width: 8px;
  height: 33px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(1)::after, .how-to-enter-step:nth-of-type(2)::after {
    left: auto;
    width: 70px;
    background-image: url(../img/3_how-to-enter/img_step_line_pc.png);
    -webkit-transform: initial;
            transform: initial;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step:nth-of-type(1)::after, .how-to-enter-step:nth-of-type(2)::after {
    width: 114px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(1)::after {
    top: 172px;
    right: -25px;
    max-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step:nth-of-type(1)::after {
    top: 204px;
    right: -50px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(2) {
    margin-top: 68px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(2)::after {
    top: 100px;
    right: -25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step:nth-of-type(2)::after {
    top: 136px;
    right: -57px;
  }
}

.step-box {
  text-align: center;
}

.step-box__image {
  width: 196px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .step-box__image {
    width: 87.5%;
  }
}
.step-box__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.step-box__title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .step-box__title {
    margin-top: 26px;
    font-size: 20px;
  }
}

.step-box__text {
  margin-top: 16px;
  line-height: 1.59;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__text {
    margin-top: 17px;
    font-size: 16px;
  }
}

.step-box__follow {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .step-box__follow {
    font-size: 26px;
    margin-top: 12px;
  }
}

.follow {
  width: 224px;
  display: inline-block;
  padding: 9px 11px 7px 39px;
  margin-inline: auto;
  background: #ffffff;
  position: relative;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .follow {
    width: 254px;
    padding-top: 10px;
    padding-left: 42px;
    font-size: 16px;
  }
}
.follow::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 18px;
  height: 18px;
  content: "";
  background: transparent no-repeat center/contain;
  background-image: url(../img/3_how-to-enter/Icon=instagram.png);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .follow::before {
    left: 13px;
    width: 22px;
    height: 22px;
  }
}

.step-box__button {
  margin-top: 16px;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .step-box__button {
    margin-top: 48px;
  }
}

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

.prizes__inner {
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

.prizes__content {
  position: relative;
  z-index: 2;
  padding: 20px 20px 30px;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    max-width: 100%;
    padding: 30px 30px 42px;
  }
}
.prizes__content::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: 50%;
  width: 238px;
  height: 83px;
  background: transparent no-repeat center/contain;
  background-image: url(../img/4_prizes/sp/arch_sp.png);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__content::before {
    width: 372px;
    height: 152px;
    top: 1px;
    background-image: url(../img/4_prizes/arch_pc.png);
  }
}
.prizes__content::after {
  position: absolute;
  content: "";
  background: #ffffff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__content::after {
    height: calc(100% - 152px);
  }
}

.prizes_decoration_left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_decoration_left {
    position: absolute;
    left: 0;
    top: 32px;
    display: block;
    width: calc((100% - 390px) / 2);
  }
}

.prizes_decoration_right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes_decoration_right {
    position: absolute;
    right: 0;
    top: 32px;
    display: block;
    width: calc((100% - 390px) / 2);
  }
}

.heading-gift::before {
  background-image: url(../img/4_prizes/icon_gift.svg);
}
@media screen and (min-width: 900px) {
  .heading-gift::before {
    top: 4px;
  }
}
@media screen and (min-width: 900px) {
  .heading-gift {
    padding-top: 56px;
  }
}

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

.prizes__benefits {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  row-gap: 16px;
}
@media screen and (min-width: 900px) {
  .prizes__benefits {
    margin-top: 82px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 32px;
    row-gap: 12px;
    padding-inline: 28px;
  }
}

.prizes__benefit {
  display: grid;
  -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: 900px) {
  .prizes__benefit:nth-of-type(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .prizes__benefit:nth-of-type(2) {
    grid-column: 4/7;
    grid-row: 1/2;
  }
  .prizes__benefit:nth-of-type(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .prizes__benefit:nth-of-type(4) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .prizes__benefit:nth-of-type(5) {
    grid-column: 5/7;
    grid-row: 2/3;
  }
}

.benefit-box {
  padding-top: 24px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .benefit-box {
    padding-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .benefit-box .benefit-card__icon svg {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  .benefit-box__large .benefit-box__head {
    top: -48px;
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .benefit-box__large .benefit-box__text {
    font-size: 20px;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .benefit-box__large .benefit-card__icon svg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}

#last-item {
  grid-column: 1/span 2;
  margin: 0 auto;
  width: 48%;
}
@media screen and (min-width: 900px) {
  #last-item {
    margin: 0;
    grid-column: 5/7;
    grid-row: 2/3;
    width: 100%;
  }
}

.benefit-box__head {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .benefit-box__head {
    top: -36px;
    width: 80px;
  }
}

.benefit-box__body {
  position: relative;
  border-radius: 8px;
  background: #f5f5f5;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .benefit-box__body {
    border-radius: 24px;
  }
}

.benefit-box__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-left-radius: 8px;
}
.benefit-box__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.benefit-box__text {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  min-height: 54px;
  padding: 4px;
  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;
}
@media screen and (min-width: 900px) {
  .benefit-box__text {
    font-size: 16px;
    padding-block: 29px;
    height: 80px;
  }
  .benefit-box__text:nth-child(n+3) {
    height: 79px;
    padding-block: 14px;
    font-size: 16px;
  }
}

.benefit-box__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}

.benefit-card__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}

.prizes__button {
  margin-top: 21px;
  padding-bottom: 6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    padding: 10px 40px 12px;
    font-size: 20px;
    margin-top: -38px;
  }
}

.prizes-button {
  padding: 6px 23px 8px;
}
@media screen and (min-width: 900px) {
  .prizes-button {
    padding: 6px 37px 8px;
  }
}

.prizes-modal {
  width: 90%;
  position: fixed;
  padding: 0;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  border-radius: 24px;
  background: #ffffff;
  border: none;
  z-index: 3;
}
@media screen and (min-width: 600px) {
  .prizes-modal {
    width: 70%;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 55%;
    height: 78%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-modal {
    width: 40%;
    height: 70%;
  }
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.prizes-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.prizes-modal__body {
  padding: 39px 20px 12px;
}

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

.prizes-modal__body-text {
  margin-top: 12px;
  color: #000;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .prizes-modal__body-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal__body-text {
    font-size: 16px;
  }
}

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

.prizes__background {
  margin-top: -46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prizes__background img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prizes__background {
    margin-top: 0;
  }
}

.spots {
  position: relative;
  padding-top: 51px;
  padding-bottom: 46px;
  margin-top: -50px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 128px;
    padding-bottom: 108px;
    margin-top: -130px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.spots::before {
  background-image: url(../img/5_spots/sp/img_wave_before.png);
  height: 52.7px;
  top: 4px;
  background-position: left -32px center;
}
@media screen and (max-width: 374px) {
  .spots::before {
    top: 7px;
  }
}
@media screen and (min-width: 900px) {
  .spots::before {
    height: 123px;
    top: 7px;
    background-position: left -12px center;
  }
  @supports (-moz-appearance: none) {
    .spots::before {
      top: 14px;
    }
  }
}
.spots::after {
  background-image: url(../img/5_spots/sp/img_wave_after.png);
  height: 45.7px;
  bottom: 1px;
  background-position: left 8px center;
}
@media screen and (max-width: 374px) {
  .spots::after {
    bottom: 4px;
  }
}
@media screen and (min-width: 900px) {
  .spots::after {
    height: 120px;
    bottom: 3px;
  }
}

.spots__decoration-pawpad {
  position: absolute;
  width: 11%;
  bottom: 120px;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .spots__decoration-pawpad {
    left: calc(50% - 720px);
    width: 100px;
    height: 220px;
    bottom: 126px;
  }
}

.spots__outer {
  background: #67b0c7;
  overflow: visible;
}
@media screen and (min-width: 900px) {
  .spots__outer {
    padding-bottom: 0;
  }
}

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

@supports (-webkit-hyphens: none) {
  @media screen and (min-width: 900px) {
    .spots__top {
      -webkit-column-gap: 72px;
         -moz-column-gap: 72px;
              column-gap: 72px;
    }
  }
}
.spots__heading-wrap {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    width: 56px;
    margin: 0;
  }
}

.spots__heading {
  position: relative;
  color: #ffffff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  display: inline-block;
  padding-left: 36px;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    font-size: 40px;
    padding-top: 72px;
    padding-left: 3px;
    letter-spacing: 0.25em;
    margin: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  @supports (-moz-appearance: none) {
    .spots__heading {
      letter-spacing: 0.15em;
      padding-left: 12px;
    }
  }
}
.spots__heading::before {
  position: absolute;
  content: "";
  left: 0; /*アイコンの位置*/
  top: 50%; /*アイコンの位置*/
  z-index: 1;
  width: 28px;
  height: 28px;
  background: transparent no-repeat center/contain;
  background: url(../img/5_spots/title-icon-star.png);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
    height: 56px;
  }
}

.spots__slider {
  margin-top: 21px;
  overflow: visible;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__slider {
    width: 100%;
  }
}

.spots__slide {
  height: auto;
}

.spots-card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  border: none;
  border-radius: min(3.2vw, 12px);
  padding-inline: 25px;
  padding-bottom: 28px;
  overflow: hidden;
  height: 100%;
  width: auto;
}
@media screen and (min-width: 900px) {
  .spots-card {
    padding-inline: 34px;
    padding-bottom: 40px;
  }
}

.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 68px);
    margin-left: -34px;
  }
}

.spots-card__title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots-card__title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.spots-card__text {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.spots__inner {
  max-width: 1084px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    padding-inline: 30px;
  }
}

.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
  }
}

.spots-swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  font-size: 0;
  color: transparent;
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 64px 48px;
  border-radius: 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}
.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "";
}

.spots-swiper-arrows__prev {
  background-image: url(../img/5_spots/icon-arrow-left.svg);
}

.spots-swiper-arrows__next {
  background-image: url(../img/5_spots/icon-arrow-right.svg);
}

@media screen and (min-width: 1200px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 16px;
  }
}

.spots__decoration-english {
  width: 68vw;
  display: block;
  margin: auto;
}
@media screen and (min-width: 600px) {
  .spots__decoration-english {
    width: 40vw;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-english {
    width: 495px;
    margin: 0;
  }
}

.spots__text-wrap {
  margin-top: 17px;
}
@media screen and (min-width: 900px) {
  .spots__text-wrap {
    margin-top: 14px;
  }
}

.spots__text {
  color: #ffffff;
  text-align: center;
  font-size: 11.444px;
  line-height: 1.6;
  margin-top: 12px;
}
@media screen and (min-width: 600px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}

.spots__button {
  margin-top: 26px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__button {
    padding-left: 8px;
    margin-top: 24px;
  }
}

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

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

.heading-speech::before {
  background-image: url(../img/5_spots/icon_speech.svg);
}

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px 22px;
    gap: 16px;
  }
}

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

.qa-box__head-text {
  display: block;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before, .qa-box__head-toggle::after {
  position: absolute;
  content: "";
  background: #ffffff; /* 線の色 */
  height: 2px; /* 線の太さ */
  left: 50%;
  top: 50%; /* 線の位置を縦中央に */
  width: 10px; /* 線の幅 */
  border-radius: 50px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before, .qa-box__head-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg); /* 線を縦に */
}
.qa-box__head-toggle::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  background: #f5f5f5;
  padding: 18px 16px 13px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding: 27px 24px 22px;
  }
}

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

.qa-box__a-text {
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

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

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

.entry-requirements__contents {
  padding: 15.5px 15.5px 32px 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding: 41px 48px 44px;
  }
}

.heading-memo::before {
  background-image: url(../img/6_entry-requirements/Icon.svg);
}

.entry-requirements__table {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 40px;
  }
}

.entry-requirements-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.entry-requirements-table__row {
  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-top: 12px;
  padding-bottom: 14px;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.entry-requirements-table__row:first-child {
  padding-top: 0;
}
.entry-requirements-table__row:last-child {
  padding-bottom: 0;
  border: none;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    padding-bottom: 12px;
    padding-left: 16px;
  }
}

.entry-requirements-table__header {
  position: relative;
  height: 100%;
  padding-left: 16px;
  font-weight: 700;
  display: block;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .entry-requirements-table__header {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__header {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 188px;
  }
}
.entry-requirements-table__header::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.entry-requirements-table__data {
  font-size: 12px;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data ul li {
    line-height: 26px;
  }
}
.entry-requirements-table__data li {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
.entry-requirements-table__data li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
@media screen and (min-width: 600px) {
  .entry-requirements-table__data {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data {
    width: calc(100% - 224px);
    font-size: 16px;
  }
}

.entry-requirements__cover-background {
  display: block;
  margin-top: 32px;
}
.entry-requirements__cover-background img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .entry-requirements__cover-background {
    margin-top: 120px;
  }
}

.contact {
  padding-top: 38px;
  padding-bottom: 20px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}

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

.contact__box {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .contact__box {
    padding-inline: 30px;
  }
}

.heading-mail::before {
  background-image: url(../img/7_contact/Icon.svg);
}

.contact__txt {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .contact__txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .contact__txt {
    padding-top: 32px;
    font-size: 16px;
  }
}

.inline-block {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}

.contact__form {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

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

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

@media screen and (min-width: 900px) {
  .form-field__mail {
    margin-top: 16px;
  }
}

@media screen and (min-width: 900px) {
  .form-field__message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 14px;
  }
}

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

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

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.form-field__item {
  margin-top: 6px;
  -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 {
  border-radius: 8px;
  border: 1px solid transparent;
  background: #f5f5f5;
  color: #cccccc;
  padding: 14px 15px 16px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .form-text {
    padding: 16px 15px 14px 20px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #aaa;
  font-size: 14px;
}
.form-text::-moz-placeholder {
  color: #aaa;
  font-size: 14px;
}
.form-text:-ms-input-placeholder {
  color: #aaa;
  font-size: 14px;
}
.form-text::-ms-input-placeholder {
  color: #aaa;
  font-size: 14px;
}
.form-text::placeholder {
  color: #aaa;
  font-size: 14px;
}
.form-text:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

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

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

.form-radio__text {
  padding-left: 32px;
  position: relative;
  font-size: 14px;
}
@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 {
  background: #f5f5f5;
  width: 24px;
  height: 24px;
  border: none;
  left: 0;
}
.form-radio__text::after {
  background: #9ed0e0;
  width: 12px;
  height: 12px;
  left: 6px;
  opacity: 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;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    gap: 26px;
  }
}

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

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

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-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: 14px;
  height: 9px;
  top: 50%;
  left: 5px;
  background: url(../img/7_contact/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}

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

.contact-button {
  padding: 6px 22px 8px;
}
@media screen and (min-width: 900px) {
  .contact-button {
    font-size: 16px;
    height: 40px;
    padding-inline: 38px;
  }
}

.footer {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
  }
}

.fotter__inner {
  padding-inline: 20px;
}

@media screen and (min-width: 900px) {
  .fotter__decoration-pawpads {
    top: 82px;
    right: 82px;
    width: 98px;
    position: absolute;
    z-index: -1;
  }
}

.sns-links {
  text-align: center;
}

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

.sns-links__nav {
  margin-top: 24px;
  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: 40px;
}
@media screen and (min-width: 900px) {
  .sns-links__nav {
    margin-top: 8px;
  }
}

@media screen and (min-width: 900px) {
  .sns-button {
    margin-top: 20px;
    width: 40px;
    height: 40px;
  }
}

.fotter__decoration {
  display: block;
  max-width: 328px;
  margin-top: 14px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fotter__decoration {
    max-width: 755px;
    margin-top: 40px;
  }
}
.fotter__decoration img {
  width: 100%;
}

.fotter__address-wrap {
  margin-top: -3px;
}
@media screen and (min-width: 900px) {
  .fotter__address-wrap {
    max-width: 1024px;
    margin-inline: auto;
    margin-top: -6px;
  }
}

.address-wrap {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    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;
  }
}

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

.address-wrap__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 26px 30px;
  margin-inline: auto;
}
@media screen and (max-width: 374px) {
  .address-wrap__body {
    padding: 20px 20px 30px;
  }
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    margin-top: 30px;
    margin-left: 0;
    padding-top: 0px;
    padding-bottom: 36px;
    padding-left: 61px;
  }
}

.address-wrap__logo {
  width: 153px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__logo {
    display: inline-block;
    width: 183px;
    margin: 0;
  }
}

.assress-wrap__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 28px;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .assress-wrap__info {
    gap: 12px;
    margin-top: 24px;
  }
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 374px) {
  .address-wrap__info-row {
    gap: 12px;
  }
}
@media screen and (min-width: 900px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}

.address-wrap__info-term {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  padding-left: 16px;
  min-width: 64px;
}
@media screen and (max-width: 374px) {
  .address-wrap__info-term {
    font-size: 10px;
  }
}
@media screen and (min-width: 600px) {
  .address-wrap__info-term {
    width: 80px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap__info-term {
    font-size: 16px;
  }
}
.address-wrap__info-term::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address-wrap__info-description {
  font-size: 12px;
}
@media screen and (max-width: 374px) {
  .address-wrap__info-description {
    font-size: 10px;
  }
}
@media screen and (min-width: 600px) {
  .address-wrap__info-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap__info-description {
    font-size: 16px;
  }
}

.fotter__page-top {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fotter__page-top {
    right: 40px;
    bottom: 40px;
    position: fixed;
    z-index: 10;
    margin-top: 0;
  }
}

.pagetop {
  display: inline-block;
  width: 75px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.footer__bottom {
  position: relative;
  margin-top: 24px;
  padding-top: 45.7px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    padding-top: 120px;
    margin-top: 119px;
  }
}

.fotter__copyright {
  background: #67b0c7;
  color: #ffffff;
  font-size: 10px;
  text-align: center;
  display: block;
  padding-bottom: 25px;
}
@media screen and (min-width: 900px) {
  .fotter__copyright {
    padding-bottom: 32px;
    font-size: 14px;
  }
}
.fotter__copyright::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background: url(../img/8_fotter/bg_wavearea.png), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .fotter__copyright::before {
    top: -1px;
    height: 124px;
    background-image: url(../img/8_fotter/bg_wavearea.png), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
    background-position: left -6px center;
  }
}