@charset "UTF-8";
.example {
  font-size: clamp(1.5rem, 0.3636363636rem + 4.8484848485vw, 4rem);
}

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

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

figure {
  margin: 0;
}

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

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

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

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

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

.wrapper {
  overflow: hidden;
}

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

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

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

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

.header__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 12px;
  }
}

.header__button {
  font-size: 14px;
  font-weight: 700;
  margin-left: 4px;
}
@media screen and (min-width: 900px) {
  .header__button {
    padding-top: 4px;
    padding-right: 22px;
    padding-bottom: 6px;
    padding-left: 22px;
  }
}

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

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

.bounce {
  -webkit-animation: 1s;
          animation: 1s;
  -webkit-animation-iteration-count: 5;
          animation-iteration-count: 5;
}

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

.drawer-content {
  display: none;
  height: 100%;
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  z-index: 50;
  padding: 82px 114px;
  background: #fff;
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.drawer-content__link {
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.drawer-content__link:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.drawer-content__button {
  font-size: 16px;
  font-weight: 700;
  margin-top: -2px;
}

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

.first-view__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 144px);
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}
@media screen and (min-width: 900px) {
  .first-view__background-image {
    border-radius: 0 0 40px 40px;
    height: calc(100% - 95px);
  }
}
.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;
}
@media screen and (min-width: 900px) {
  .first-view__background-image img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

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

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

.first-view__lead {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .first-view__lead {
    width: 520px;
    max-width: 100%;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
.first-view__decoration-wrap {
  position: relative;
  margin-top: 113px;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 408px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-wrap {
    top: -82px;
    width: 250px;
    height: 510px;
  }
}

.first-view__decoration-smart-phone {
  position: absolute;
  z-index: 2;
}

.decoration-smart-phone {
  position: relative;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone {
    width: 250px;
  }
}

.decoration-smart-phone__image {
  position: relative;
  z-index: 10;
}

.decoration-smart-phone__wrap {
  position: absolute;
  top: 225px;
  left: 34px;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__wrap {
    top: 283px;
    left: 54px;
  }
}

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

.first-view__decoration-english-message {
  position: absolute;
  width: 142px;
  height: 80px;
  z-index: 1;
  top: -93px;
  left: -67px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-english-message {
    width: 244px;
    top: -31px;
    left: -261px;
  }
}

.first-view__decoration-red-circle-text {
  position: absolute;
  top: -102px;
  right: -41px;
  width: 110px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-red-circle-text {
    width: 180px;
    height: 180px;
    top: -14px;
    right: -173px;
  }
}

.first-view__decoration-coffee-and-sweets {
  position: absolute;
  width: 86px;
  height: 141px;
  z-index: 2;
  bottom: -17px;
  left: -66px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-coffee-and-sweets {
    width: 202px;
    bottom: 161px;
    left: -295px;
  }
}

.first-view__decoration-cats {
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-cats {
    bottom: -44px;
  }
}

.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;
  width: 62px;
  top: 12px;
  right: -68px;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__1 {
    width: 170px;
    right: -237px;
    top: 20px;
  }
}

.decoration-cats1__2 {
  position: absolute;
  width: 98px;
  bottom: -13px;
  left: 67px;
  z-index: 4;
}
@media screen and (min-width: 900px) {
  .decoration-cats1__2 {
    width: 233px;
    left: 301px;
    bottom: -17px;
  }
}

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

.about__decoration {
  position: absolute;
}

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

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

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

.about__decoration-pawpads {
  top: -9px;
  left: calc(50% + 133px);
  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 {
  top: 274px;
  left: calc(50% + 127px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__decoration-picture-right {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-right {
    top: 73px;
    left: calc(50% + 360px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-right {
    left: calc(50% + 560px);
  }
}

.about__decoration-wave {
  bottom: 632px;
  left: calc(50% + 200px);
  width: 874px;
}
@media screen and (min-width: 1200px) {
  .about__decoration-wave {
    left: calc(50% + 450px);
    top: 608px;
  }
}

.about__decoration-goods1 {
  bottom: 220px;
  left: calc(50% + 118px);
  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 {
    top: 601px;
    left: calc(50% + 300px);
    width: 101px;
    height: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods1 {
    left: calc(50% + 505px);
  }
}
.about__decoration-goods2 {
  bottom: 162px;
  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;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods2 {
    bottom: 384px;
    left: calc(50% + 374px);
  }
}

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

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

.about-top__image-left {
  position: absolute;
  top: 37.87px;
  right: calc(50% + 48.5px);
  width: 83px;
}
@media screen and (min-width: 900px) {
  .about-top__image-left {
    top: 41px;
    right: calc(50% + 190px);
    width: 150px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 35px;
  left: calc(50% + 62.15px);
  width: 83px;
}
@media screen and (min-width: 900px) {
  .about-top__image-right {
    top: 48px;
    left: calc(50% + 192px);
    width: 150px;
  }
}

@media screen and (min-width: 900px) {
  .heading--campaign {
    padding-top: 56px;
  }
}
.heading--campaign::before {
  background-image: url(../img/icon_campaign.svg);
}
@media screen and (min-width: 900px) {
  .heading--campaign::before {
    width: 48px;
    height: 48px;
  }
}

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

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

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

.about-top__text-wrap {
  margin-top: 24px;
  text-align: center;
}
@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:not(:first-child) {
    margin-top: 1.7em;
  }
}

.link-text {
  white-space: nowrap;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.link-text:hover {
  color: #67b0c7;
}

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

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

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

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

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

.about-slider {
  margin-top: -2px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about-slider {
    margin-top: -5px;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 1s linear;
  transition: -webkit-transform 1s linear;
  transition: transform 1s linear;
  transition: transform 1s linear, -webkit-transform 1s linear;
}

.swiper-slide {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .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;
}
@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-right: 30px;
    padding-left: 30px;
  }
}

.how-to-entry__decoration {
  position: absolute;
  z-index: -1;
}

.how-to-entry__decoration-map {
  top: 0;
  right: calc(50% + 52px);
  width: 135px;
}
@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);
    left: auto;
    width: 380px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-map {
    right: calc(50% + 260px);
    width: 460px;
  }
}

.how-to-entry__decoration-cats {
  top: 0;
  left: calc(50% + 58px);
  z-index: 2;
}
@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% + 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;
  top: 0;
  left: 0;
  width: 105px;
}
@media screen and (min-width: 900px) {
  .decoration-cats2__1 {
    width: 238px;
  }
}

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

.how-to-entry__decoration-pawpads1 {
  top: 74px;
  right: 20px;
  width: 55px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads1 {
    top: 148px;
    right: 0px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-pawpads1 {
    right: 36px;
    width: 100px;
  }
}

.how-to-entry__decoration-pawpads2 {
  top: 546px;
  left: 20px;
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads2 {
    bottom: 40px;
    left: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-pawpads2 {
    left: 36px;
    width: 100px;
    top: 575px;
  }
}

.how-to-entry__decoration-pawpads3 {
  right: 20px;
  bottom: 367px;
  width: 55px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (min-width: 900px) {
  .heading--camera {
    padding-top: 53px;
  }
}
.heading--camera::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 37.33px;
  height: 37.33px;
  background-image: url(../img/icon_camera.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: transparent;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading--camera::before {
    width: 48px;
    height: 48px;
  }
}

.how-to-entry__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-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 {
    width: 294px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step {
    width: 320px;
  }
}
.how-to-entry__step:first-of-type {
  position: relative;
}
.how-to-entry__step:first-of-type::after {
  content: "";
  background: url(../img/deco_how-to-entry4.webp) no-repeat center center/contain;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 34px;
  background-color: transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:first-of-type::after {
    top: 150px;
    right: -25px;
    left: auto;
    width: 70px;
    height: 16px;
    -webkit-transform: initial;
            transform: initial;
    background-image: url(../img/deco_how-to-entry4_pc.svg);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step:first-of-type::after {
    top: 204px;
    right: -50px;
    width: 114px;
    height: 24px;
  }
}
.how-to-entry__step:nth-of-type(2) {
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:nth-of-type(2) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step:nth-of-type(2) {
    margin-top: 68px;
  }
}
.how-to-entry__step:nth-of-type(2)::after {
  content: "";
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 34px;
  background-color: transparent;
  background: url(../img/deco_how-to-entry4.webp) no-repeat center center/contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:nth-of-type(2)::after {
    top: 100px;
    right: -25px;
    left: auto;
    width: 70px;
    height: 16px;
    background-image: url(../img/deco_how-to-entry4_pc.svg);
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step:nth-of-type(2)::after {
    top: 136px;
    right: -57px;
    width: 114px;
    height: 24px;
  }
}

.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__heading {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-box__heading {
    margin-top: 24px;
    font-size: 20px;
  }
}

.step-box__text {
  margin-top: 15px;
}
@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-button {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .step-box__follow-button {
    margin-top: 16px;
  }
}

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

@media screen and (min-width: 900px) {
  .step-box__heading--large {
    font-size: 24px;
    font-weight: 700;
  }
}

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

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

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

.prizes__contents {
  position: relative;
  z-index: 2;
  padding-top: 20.3px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
}
.prizes__contents::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 238px;
  height: 83px;
  background: transparent url(../img/deco_prizes1_sp.svg) no-repeat center center/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prizes__contents::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #fff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    max-width: 100%;
    padding: 30px 30px 49px 30px;
  }
  .prizes__contents::before {
    width: 372px;
    height: 148px;
    background-image: url(../img/deco_prizes1_pc.svg);
  }
  .prizes__contents::after {
    height: calc(100% - 148px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    padding-right: 56px;
    padding-left: 56px;
  }
}

.prizes__decoration-triangle-left {
  position: absolute;
  top: 0;
  display: none;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.prizes__decoration-triangle-right {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.heading--prizes::before {
  background-image: url(../img/icon_prizes.svg);
}
@media screen and (min-width: 900px) {
  .heading--prizes::before {
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 900px) {
  .heading--prizes {
    padding-top: 56px;
  }
}

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

.prizes__cards {
  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;
  margin-top: 48px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    gap: 0;
    margin-top: 82px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
.prizes__card:hover .prizes-card__button {
  border-color: #9ed0e0;
  border-width: 4px;
}
.prizes__card:hover .background {
  fill: #9ed0e0;
}
.prizes__card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(1), .prizes__card:nth-of-type(2) {
    width: calc(50% - 16px);
  }
  .prizes__card:nth-of-type(2) {
    margin-left: 32px;
  }
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: calc(33.33333333% - 24px);
    margin-top: 80px;
  }
  .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    margin-left: 36px;
  }
}

.prizes-card {
  position: relative;
  border-radius: 8px;
}

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

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

@media screen and (min-width: 1200px) {
  .prizes-card__number.special {
    top: -40px;
    left: 150px;
  }
}

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

.prizes-card__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.prizes-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;
}

.prizes-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;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .prizes-card__heading {
    min-height: 70px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__heading {
    min-height: 80px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    font-size: 16px;
  }
}

.prizes-card__button {
  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) {
  .prizes-card__button {
    border-width: 4px;
    border-radius: 16px;
  }
}

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

.prizes-modal {
  position: fixed;
  z-index: 10;
  inset: 0;
  margin: auto;
  overflow: hidden;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  border: none;
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 600px) {
  .prizes-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
    padding-right: 40px;
    padding-bottom: 23px;
    padding-left: 40px;
  }
}

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

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

.prizes-modal__text {
  margin-top: 12px;
}

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

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

.prizes__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: -43px;
}
.prizes__cover-background img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prizes__cover-background {
    display: block;
    margin-top: 0;
  }
}

.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: -120px;
  }
}
.spots:before {
  top: 1px;
  background-image: url(../img/deco_wave-top_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width: 900px) {
  .spots:before {
    background-image: url(../img/deco_wave-top_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image: url(../img/deco_wave-bottom_sp.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-position: left -6px center;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/deco_wave-bottom_pc.svg), linear-gradient(to top, transparent 33px, #67b0c7);
  }
}
.spots::before, .spots::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  background-color: transparent;
  background-repeat: repeat-X;
  background-position: left -3px center;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    height: 120px;
    background-position: left center;
  }
}

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

.spots__outer {
  padding-bottom: 14.86px;
  background-color: #67b0c7;
}
@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);
  }
}

.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;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
.spots__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  background: transparent url(../img/icon_star.svg) no-repeat center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}

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

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.spots-swiper__slide {
  height: auto;
}

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

.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
.spots-card__image img {
  width: 480px;
  aspect-ratio: 480/360;
  height: auto;
}
@media screen and (min-width: 900px) {
  .spots-card__image img {
    width: 688px;
    aspect-ratio: 688/480;
  }
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}

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

.spots-card__text {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 25px;
  }
}

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

.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 {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  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/icon_arrow-right.svg);
}

.spots-swiper-arrows__next {
  background-image: url(../img/icon_arrow-left.svg);
}

.spots__bottom {
  margin-inline: 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__decoration-english {
  display: block;
  width: 254px;
  margin-inline: auto;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .spots__decoration-english {
    width: 360px;
    margin-top: -45px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-english {
    width: 494px;
    margin: 0;
  }
}

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

.spots__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}
@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 {
  padding-bottom: 4px;
  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;
  }
}

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

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

.qa-box {
  overflow: hidden;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 12px;
}
@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;
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    gap: 16px;
    padding-top: 20.5px;
    padding-right: 22px;
    padding-bottom: 19.5px;
    padding-left: 22px;
  }
  .qa-box__heading.is-open {
    padding-bottom: 21.5px;
  }
}
.qa-box__heading.is-open .qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -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;
}

.qa-box__heading-icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
}
@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;
  line-height: 1.59;
  color: #4a3636;
  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;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@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);
  -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;
}

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

.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 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
}
@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__contents {
  padding-top: 15.5px;
  padding-right: 15.5px;
  padding-bottom: 32px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #fff;
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding-top: 32px;
    padding-right: 48px;
    padding-bottom: 44px;
    padding-left: 48px;
  }
}

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

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

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

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

.entry-requiremets-table__header,
.entry-requiremets-table__data {
  text-align: left;
  vertical-align: middle;
}

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

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

.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: 40px;
  padding-bottom: 40px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 116px;
  }
}

@media screen and (min-width: 900px) {
  .inner--narrow {
    max-width: 908px;
  }
}

.heading--mail::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: 32px;
  }
}

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

.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__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 {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  background: #CE2073;
  border-radius: 4px;
}

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

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

.form-select {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 14.5px 15px;
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/icon_select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 10.5px, center center;
  background-size: auto, cover;
  border: 1px solid transparent;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:hover, .form-select:focus {
  outline: none;
}
.form-select:focus {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    height: 56px;
    padding-left: 2px;
  }
}

.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__text {
  position: relative;
  padding-left: 32px;
  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%;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -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-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

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

.form-textarea {
  height: 160px;
}

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

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

.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;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 4px;
}
.form-checkbox__text::after {
  top: 50%;
  left: 5px;
  width: 16px;
  height: 11px;
  background-image: url(../img/icon_checked.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox {
  position: relative;
}

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

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

.privacy-error-tooltip {
  position: absolute;
  left: -50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  color: #ce2073;
}

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

@media screen and (min-width: 900px) {
  .footer--inner {
    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;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .footer__decoration-pawpads {
    top: -40px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__decoration-pawpads {
    right: auto;
    left: calc(50% + 576px);
    width: 100px;
  }
}

.sns-links__title {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
  font-style: normal;
  font-weight: normal;
}
@media screen and (min-width: 900px) {
  .sns-links__title {
    font-size: 24px;
  }
}
.sns-links__title::before {
  content: "\\ ";
}
.sns-links__title::after {
  content: " /";
}

.sns-links__nav {
  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;
  margin-top: 24px;
}

.sns-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
@media screen and (min-width: 900px) {
  .sns-button {
    width: 40px;
    height: 40px;
  }
}

.footer__decoration-english {
  display: block;
  max-width: 328px;
  margin-top: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer__decoration-english {
    max-width: 755px;
    margin-top: 40px;
  }
}

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

.address-wrap {
  overflow: hidden;
  background-color: #fff;
  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-top: 22px;
  padding-right: 26px;
  padding-bottom: 30px;
  padding-left: 27px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    padding: 10px;
    margin-top: 0;
  }
}

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

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

.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;
  min-width: 64px;
  padding-left: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
@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 {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  translate: 0 -50%;
}

.address-wrap__info-description {
  font-style: normal;
}
@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;
  }
}

a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

.pagetop {
  width: 75px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 80px;
    height: 83.2px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop {
    width: 100px;
    height: 104px;
  }
}

.pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}

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

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