@charset "UTF-8";
:focus {
  outline-color: #9ed0e0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
  background: #e9f6f8;
}

.wrapper {
  overflow: hidden;
}

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

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

.heading {
  position: relative;
  padding-top: 43.3px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .heading {
    padding-top: 56px;
  }
}
.heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 37.33px;
  height: 37.33px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}

.heading__english {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .heading__english {
    font-size: 20px;
  }
}

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

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

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

.button {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    padding: 8px 37px 10px 37px;
    border-width: 3px;
  }
}

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

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

@media screen and (min-width: 900px) {
  .button--submit {
    font-size: 16px;
    padding: 4px 36px 6px 36px;
  }
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: inherit;
  }
}

.header__link {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .header__link {
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    -webkit-transition: color 0.3s, text-decoration-color 0.2s;
    transition: color 0.3s, text-decoration-color 0.2s;
  }
  .header__link:hover {
    color: #67b0c7;
    text-decoration-color: #67b0c7;
  }
}

.header__button {
  margin-left: 4px;
}

.header__open {
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

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

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background-color: #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-child(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-icon__bar:nth-child(3) {
  bottom: 0;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  border-radius: 6px;
  background-color: #4a3636;
}

.drawer-content {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 20;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  background: #ffffff;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

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

.drawer-content__button {
  margin-top: 20px;
}

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

.first-view__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .first-view__background-image {
    height: calc(100% - 140px);
    border-radius: 0px 0px 40px 40px;
  }
}
.first-view__background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  vertical-align: middle;
}

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

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

.first-view__lead {
  margin-top: 20px;
}
.first-view__lead img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__lead img {
    margin-top: 24px;
    max-width: 520px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.first-view__decoration-smart-phone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-smart-phone {
    bottom: 60px;
  }
}

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

.decoration-smart-phone__image {
  position: relative;
}

.decoration-smart-phone__wrap {
  position: absolute;
  top: calc(50% - 3px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  border-radius: 12.8px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__wrap {
    top: calc(50% - 5px);
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}

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

.decoration-smart-phone__body {
  padding-top: 12.8px;
  padding-bottom: 15.2px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__body {
    padding-top: 16px;
    padding-bottom: 20px;
  }
}

.decoration-smart-phone__sub-heaqding span {
  font-weight: 400;
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__sub-heaqding span {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
  }
}

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

.decoration-smart-phone__button {
  margin-top: 12.8px;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__button {
    margin-top: 16px;
  }
}

.first-view__decoration-english-message {
  position: absolute;
  top: 7px;
  left: 0;
  width: 142px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-english-message {
    top: 0;
    left: 37px;
    width: 244px;
  }
}

.first-view__decoration-red-circle-text {
  position: absolute;
  top: 0;
  right: 25px;
  width: 110px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-red-circle-text {
    top: 17px;
    right: 127px;
    width: 180px;
    height: 180px;
  }
}
@media screen and (min-width: 900px) {
  .first-view__decoration-red-circle-text img {
    width: 100%;
  }
}

.first-view__decoration-coffee-and-sweets {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  max-width: 100%;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-coffee-and-sweets {
    bottom: 44px;
    width: 212px;
  }
  .first-view__decoration-coffee-and-sweets img {
    width: 100%;
  }
}

.first-view__decoration-cats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}

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

.decoration-cats1__1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__1 {
    width: 170px;
    right: 63px;
  }
}

.decoration-cats1__2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__2 {
    width: 233px;
  }
}

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

.about__decoration-stripe {
  position: absolute;
  right: calc(50% + 280px);
  top: -20px;
  width: 250px;
}
@media screen and (min-width: 1200px) {
  .about__decoration-stripe {
    right: calc(50% + 527px);
  }
}

.about__decoration-picture-left {
  position: absolute;
  top: 395px;
  right: calc(50% + 125px + 3px);
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-left {
    top: 74px;
    right: calc(50% + 360px);
    width: 480px;
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-left {
    right: calc(50% + 614px);
  }
}

.about__decoration-staircase {
  position: absolute;
  bottom: 61px;
  left: 0;
  width: 138px;
}
@media screen and (min-width: 600px) {
  .about__decoration-staircase {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-staircase {
    bottom: 149px;
    left: auto;
    right: calc(50% + 150px);
    width: 427px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-staircase {
    right: calc(50% + 432px);
  }
}

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

.about__decoration-picture-right {
  position: absolute;
  top: 273px;
  left: calc(50% + 125px + 3px);
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-right {
    top: 73px;
    left: calc(50% + 360px);
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-right {
    left: calc(50% + 560px);
  }
}

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

.about__decoration-goods1 {
  position: absolute;
  bottom: 217px;
  left: calc(50% + 125px - 7px);
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__decoration-goods1 {
    left: calc(50% + 280px);
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods1 {
    bottom: 586px;
    left: calc(50% + 300px);
    width: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods1 {
    left: calc(50% + 505px);
  }
}

.about__decoration-goods2 {
  position: absolute;
  bottom: 158px;
  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 {
    bottom: 290px;
    left: calc(50% + 120px);
    width: 308px;
  }
  .about__decoration-goods2 img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods2 {
    bottom: 379px;
    left: calc(50% + 374px);
  }
}

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

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

.about-top__image-left {
  position: absolute;
  top: 32px;
  right: calc(50% + 47px);
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about-top__image-left {
    top: 35px;
    right: calc(50% + 192px);
    width: 146px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 32px;
  left: calc(50% + 59px);
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about-top__image-right {
    top: 44px;
    left: calc(50% + 192px);
    width: 146px;
  }
}

.heading--campaign::before {
  background-image: url(../img/icon_campaign.svg);
}

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

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

.about-top__text:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about-top__text {
    font-size: 16px;
  }
  .about-top__text:not(:first-child) {
    margin-top: 1.7em;
  }
}

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

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

.about__bottom {
  margin-top: 138px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__decoration-english {
  display: block;
  width: 355px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__decoration-english {
    width: 770px;
  }
  .about__decoration-english img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-english {
    width: 890px;
  }
}

.about__slider {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: -9px;
  }
}

.about-swiper__slide {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about-swiper__slide {
    width: 200px;
  }
}

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

.how-to-entry__inner {
  position: relative;
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .how-to-entry__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__inner {
    max-width: 1512px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.how-to-entry__decoration-map {
  position: absolute;
  top: 0;
  right: calc(50% + 39px);
  width: 149px;
}
@media screen and (min-width: 600px) {
  .how-to-entry__decoration-map {
    right: calc(50% + 80px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-map {
    top: -60px;
    right: calc(50% + 180px);
    width: 380px;
  }
  .how-to-entry__decoration-map img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-map {
    right: calc(50% + 260px);
    width: 460px;
  }
}

.how-to-entry__decoration-cats {
  position: absolute;
  top: 0;
  left: calc(50% + 59px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-cats {
    top: -26px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-cats {
    left: calc(50% + 288px);
  }
}

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

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

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

.how-to-entry__decoration-pawpads-1 {
  position: absolute;
  top: 74px;
  right: 20px;
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads-1 {
    top: 148px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-pawpads-1 {
    right: 36px;
    width: 100px;
  }
}

.how-to-entry__decoration-pawpads-2 {
  position: absolute;
  top: 549px;
  left: 20px;
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads-2 {
    bottom: 40px;
    left: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-pawpads-2 {
    left: 36px;
    width: 100px;
  }
}

.how-to-entry__decoration-pawpads-3 {
  position: absolute;
  top: 880px;
  right: 20px;
  width: 55px;
}

.heading--camera::before {
  background-image: url(../img/icon_camera.svg);
}

.how-to-entry__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__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-entry__steps {
    gap: 32px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 900px) {
  .how-to-entry__step {
    max-width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step {
    max-width: 320px;
  }
}
.how-to-entry__step:nth-of-type(1), .how-to-entry__step:nth-of-type(2) {
  position: relative;
}
.how-to-entry__step:nth-of-type(1)::after, .how-to-entry__step:nth-of-type(2)::after {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 34px;
  content: "";
  background-color: transparent;
  background-image: url(../img/how_deco_line.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:nth-of-type(1)::after, .how-to-entry__step:nth-of-type(2)::after {
    top: 150px;
    left: 286px;
    background-image: url(../img/how_deco_line_pc.png);
    width: 70px;
  }
  .how-to-entry__step:nth-of-type(2) {
    margin-top: 69px;
  }
  .how-to-entry__step:nth-of-type(2)::after {
    top: 100px;
    left: 286px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step:nth-of-type(1)::after, .how-to-entry__step:nth-of-type(2)::after {
    top: 204px;
    left: 312px;
    width: 113px;
  }
  .how-to-entry__step:nth-of-type(2) {
    margin-top: 69px;
  }
  .how-to-entry__step:nth-of-type(2)::after {
    top: 132px;
    left: 320px;
  }
}

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

.step-box__image {
  width: 196px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .step-box__image {
    width: 87.5%;
  }
}

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

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

.step-box__follow-button {
  margin-top: 14px;
}

.follow-button {
  position: relative;
  display: inline-block;
  padding: 8px 12px 8px 40px;
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.follow-button:hover {
  border-color: #9ed0e0;
}
.follow-button::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/icon_instagram.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .follow-button {
    font-size: 16px;
    padding-left: 44px;
  }
  .follow-button::before {
    width: 24px;
    height: 24px;
  }
}

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

.prize {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .prize {
    margin-top: 120px;
  }
}

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

.prize__contents {
  position: relative;
  z-index: 2;
  padding: 20px 20px 30px 20px;
}
@media screen and (min-width: 900px) {
  .prize__contents {
    padding: 28px 56px 53px 56px;
  }
}
.prize__contents::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% + 5px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 238px;
  height: 83px;
  background-image: url(../img/prize_bg_top_sp.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 900px) {
  .prize__contents::before {
    left: 50%;
    width: 372px;
    height: 148px;
    background-image: url(../img/prize_bg_top_pc.png);
  }
}
.prize__contents::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 83px);
  background-color: #ffffff;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prize__contents::after {
    height: calc(100% - 148px);
  }
}

.prize__decoration-triangle-left {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prize__decoration-triangle-right {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading--prize::before {
  background-image: url(../img/icon_prize.svg);
}

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

.prize__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 39px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prize__cards {
    margin-top: 82px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 80px;
    grid-column-gap: 32px;
  }
}

.prize__card {
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prize__card {
    width: 100%;
  }
  .prize__card:nth-of-type(1) {
    grid-area: 1/1/2/4;
  }
  .prize__card:nth-of-type(2) {
    grid-area: 1/4/2/7;
  }
  .prize__card:nth-of-type(3) {
    grid-area: 2/1/3/3;
    width: calc(100% - 2.6666666667px);
  }
  .prize__card:nth-of-type(4) {
    grid-area: 2/3/3/5;
    width: calc(100% - 2.6666666667px);
    margin-left: 1px;
  }
  .prize__card:nth-of-type(5) {
    grid-area: 2/5/3/7;
    width: calc(100% - 2.6666666667px);
    margin-left: 3px;
  }
}

.prize-card {
  position: relative;
  border-radius: 8px;
}
.prize-card:hover .prize-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prize-card:hover .prize-card__icon svg .background {
  fill: #9ed0e0;
}
.prize-card:hover .prize-card__butonn {
  border-color: #9ed0e0;
}

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

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__number {
    width: 100px;
    top: -50px;
  }
}

.prize-card__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prize-card__inner {
    border-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__inner {
    border-radius: 24px;
  }
}

.prize-card__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prize-card__image {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.prize-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .prize-card--large .prize-card__image img {
    width: 100%;
  }
}

.prize-card__heading {
  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;
  min-height: 56px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prize-card__heading {
    min-height: 80px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__heading {
    min-height: 120px;
    font-size: 20px;
  }
}

.prize-card__butonn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}
@media screen and (min-width: 900px) {
  .prize-card__butonn {
    border-radius: 16px;
    border-width: 4px;
  }
}
.prize-card__butonn:focus {
  border-color: #9ed0e0;
}

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__butonn {
    border-radius: 24px;
  }
}

.prize-card__icon svg {
  position: absolute;
  bottom: -2px;
  right: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prize-card__icon svg {
    right: -4px;
    bottom: -4px;
    width: 45px;
    height: 45px;
    border-bottom-right-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prize-card__icon svg {
    width: 64px;
    height: 64px;
  }
}

@media screen and (min-width: 900px) {
  .prize-card--large .prize-card__icon svg {
    width: 80px;
    height: 80px;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .prize-card--large .prize-card__icon svg {
    width: 100px;
    height: 100px;
  }
}

.prize-modal {
  position: fixed;
  inset: 0;
  width: 336px;
  max-width: calc(100% - 40px);
  height: 480px;
  max-height: calc(100% - 40px);
  padding: 0 20px;
  text-align: center;
  background: #ffffff;
  border: none;
  border-radius: 24px;
  z-index: 10;
  overflow: hidden;
}
.prize-modal::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.prize-modal::backdrop {
  opacity: 0.7;
  background: #000;
}
@media screen and (min-width: 900px) {
  .prize-modal {
    width: 480px;
    height: 650px;
    padding: 0 40px;
  }
}

.prize-modal__image {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media screen and (min-width: 900px) {
  .prize-modal__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

.prize-modal__head {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prize-modal__head {
    margin-top: 32px;
    font-size: 20px;
  }
}

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

.prize-modal__button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prize-modal__button {
    margin-top: 24px;
  }
}

.prize__button {
  margin-top: 18px;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prize__button {
    margin-top: 44px;
  }
}

.prize__cover-background {
  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__cover-background {
    display: block;
    margin-top: 0;
    text-align: center;
  }
}
.prize__cover-background img {
  min-width: 580px;
}

.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -124px;
  }
}
.spots::after, .spots::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spots::after, .spots::before {
    height: 120px;
  }
}
.spots::before {
  top: 1px;
  background-image: url(../img/spots_wave_top_sp.svg);
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/spots_wave_top_pc.svg);
  }
}
.spots::after {
  bottom: 0;
  background-image: url(../img/spots_wave_bottom_sp.svg);
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/spots_wave_bottom_pc.svg);
  }
}

.spots__decolation-pawpads {
  position: absolute;
  bottom: 120px;
  left: calc(50% - 720px);
  width: 100px;
}

.spots__outer {
  padding-bottom: 19.84px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots__outer {
    padding-bottom: 5px;
  }
}

@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: calc(50% - 512px);
  }
}

.spots__heading-wrap {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    width: 56px;
  }
}

.spots__heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  color: #ffffff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 64px;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 40px;
  }
}
.spots__heading::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  content: "";
  background-image: url(../img/icon_star.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@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: 24px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    margin-top: 0;
    width: calc(100% - 56px - 32px);
  }
}

.spots-swiper__slide {
  width: 240px;
  margin-right: 16px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .spots-swiper__slide {
    width: 344px;
    margin-right: 32px;
  }
}

.spots-card {
  height: 100%;
  padding: 0 24px 30px 24px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card {
    padding: 0 32px 40px 32px;
    border-radius: 24px;
  }
}

.spots-card__image {
  display: block;
  width: calc(100% + 49px);
  margin-left: -25px;
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}

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

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

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

.spots__arrows {
  width: 944px;
  margin-left: auto;
  margin-right: auto;
  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 {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 27px;
  border-radius: 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

.spots-swiper-arrows__prev {
  background-image: url(../img/icon_arrow-left.svg);
}
.spots-swiper-arrows__prev::after {
  content: "";
}
.spots-swiper-arrows__prev:hover {
  background-position: center left 40%;
}

.spots-swiper-arrows__next {
  background-image: url(../img/icon_arrow-right.svg);
}
.spots-swiper-arrows__next::after {
  content: "";
}
.spots-swiper-arrows__next:hover {
  background-position: center right 40%;
}

.spots__bottom {
  margin-left: auto;
  margin-right: auto;
}
@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: 40px;
  }
}

.spots__decolation-english {
  display: block;
  width: 255px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .spots__decolation-english {
    width: 360px;
    margin-top: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decolation-english {
    width: 495px;
    margin: 0;
  }
}

.spots__text-wrap {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    margin: 0;
  }
}

.spots__text {
  color: #ffffff;
  font-size: 11.444px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}

.spots__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__button {
    text-align: right;
  }
}

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

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

.heading--qa::before {
  background-image: url(../img/icon_qa.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: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 40px;
    gap: 24px;
  }
}

.qa-box {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}

.qa-box__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 14px;
}
.qa-box__heading.is-open .qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    gap: 16px;
    padding: 20px;
  }
}

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

.qa-box__heading-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-text {
    font-size: 20px;
  }
}

.qa-box__heading-toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  content: "";
  background: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__body {
  display: none;
  padding-top: 16px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 24px;
  }
}

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

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

.qa-box__answer-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__answer-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-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .entry-requirements__inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

.heading--entry-requirements::before {
  background-image: url(../img/icon_entry-requirements.svg);
}

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

.entry-requirements-table {
  table-layout: fixed;
  width: 100%;
  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;
}
@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__row:first-child {
  padding-top: 0;
}
.entry-requirements-table__row:last-child {
  padding-bottom: 0;
  border: none;
}

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

@media screen and (min-width: 900px) {
  .entry-requirements-table__data {
    font-size: 16px;
    width: calc(100% - 224px);
  }
}

.entry-requirements-table__data ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data ul li {
    line-height: 1.63;
  }
}
.entry-requirements-table__data ul li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}

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

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

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

.heading--contact::before {
  background-image: url(../img/icon_contact.svg);
}

.contact__text {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 35px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 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) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-field--top-alignment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-field__heading {
  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__heading {
    width: 180px;
  }
}

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

label.form-field__label {
  cursor: pointer;
}

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

.form-field__item {
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0;
    width: calc(100% - 180px - 40px);
  }
}

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

.form-select {
  width: 100%;
  height: 56px;
  padding: 16px;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url(../img/icon_select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.2px, center center;
  background-size: 14.9px 8.78px, cover;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  outline: none;
  border-color: #9ed0e0;
}
.form-select.is-error {
  background-image: url(../img/icon_select-arrow.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border-color: #ce2073;
}

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

.form-radio:hover .form-radio__text::before {
  border-color: #9ed0e0;
}

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

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

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

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

.form-checkbox {
  cursor: pointer;
}

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

.form-checkbox__text {
  position: relative;
  font-size: 14px;
  padding-left: 36px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 4px;
}
.form-checkbox__text::after {
  left: 5px;
  width: 14px;
  height: 9px;
  background-image: url(../img/icon_checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
}

.contact__button {
  margin-top: 26px;
  padding-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}

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

.footer__inner {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__decoration-pawpads {
  position: absolute;
  top: -40px;
  left: calc(50% + 576px);
  width: 100px;
}

.sns-links__title {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 125%;
}
@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;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.sns-button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media screen and (min-width: 900px) {
  .sns-button {
    width: 40px;
    height: 40px;
  }
  .sns-button img {
    width: 100%;
  }
}
.sns-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  content: "";
}

.footer__decoration-english {
  margin-top: 9px;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer__decoration-english {
    margin-top: 42px;
    max-width: 755px;
  }
}

.footer__address-wrap {
  margin-top: -1px;
}

.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%;
  }
}
.address-wrap__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .address-wrap__map iframe {
    aspect-ratio: 512/400;
  }
}

.address-wrap__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    padding: 10px;
  }
}

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

.address-wrap__info {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .address-wrap__info {
    margin-top: 26px;
    gap: 12px;
  }
}

.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 (min-width: 900px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}

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

@media screen and (min-width: 900px) {
  .address-wrap__info-description {
    font-size: 16px;
  }
}

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

.pagetop {
  width: 75px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.pagetop:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 80px;
    height: 83.2px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  position: relative;
  margin-top: 24px;
  padding-top: 45.7px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 120px;
    padding-top: 120px;
  }
}
.footer__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-image: url(../img/spots_wave_top_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    height: 120px;
    background-image: url(../img/spots_wave_top_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
    background-position: left center;
  }
}

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