@charset "UTF-8";
@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.hidden-sp {
  display: none;
}
@media screen and (min-width: 900px) {
  .hidden-sp {
    display: block;
  }
}

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

*:focus {
  outline-color: #9ed0e0;
}

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;
  }
}

body.is-fixed {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  body.is-fixed {
    overflow: auto;
  }
}

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

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

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

.heading {
  position: relative;
  padding-top: 43px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .heading {
    padding-top: 56px;
  }
}
.heading::before {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 67px;
  height: 37px;
  content: "";
  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;
  }
}

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

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

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

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

.header__nav {
  display: none;
  height: inherit;
}
@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;
    margin-left: auto;
  }
}

.header__link {
  position: relative;
  font-size: 12px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__link:focus {
  color: #67b0c7;
}
@media (any-hover: hover) {
  .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: transparent;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
  }
  .header__link:hover {
    color: #67b0c7;
  }
  .header__link:hover::after {
    background-color: #67b0c7;
  }
  .header__link:hover {
    color: #67b0c7;
    border-color: #67b0c7;
  }
}

.header__button {
  margin-left: 4px;
}

.header__open {
  margin-left: auto;
  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;
  padding: 20px;
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
}

.header__open.is-checked .drawer-icon__bar .drawer-icon__dot {
  display: none;
}

.header__open.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 100%;
}

.header__open.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.header__open.is-checked .drawer-icon__bar:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.drawer-content {
  position: fixed;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  left: 0;
  z-index: 20;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  overflow-y: auto;
}
@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content.is-checked {
  -webkit-transform: translateY(64px);
          transform: translateY(64px);
}

.drawer-content__menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer-content__link {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 8px;
  margin: auto;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer-content__link::after {
  content: "";
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.drawer-content__link:focus {
  color: #67b0c7;
}
@media (any-hover: hover) {
  .drawer-content__link:hover {
    color: #67b0c7;
  }
  .drawer-content__link:hover::after {
    background-color: #67b0c7;
  }
}

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

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

.first-view__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: calc(100% - 156px);
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .first-view__background-image {
    height: calc(100% - 96px);
    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;
}
@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;
  margin-right: auto;
  margin-left: 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;
  font-weight: 400;
}
@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 {
    margin-top: 24px;
    margin-right: auto;
    margin-left: auto;
    max-width: 520px;
  }
}
.first-view__lead img {
  width: 100%;
}

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

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

.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: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  text-align: center;
  background: #ffffff;
  border-radius: 13px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__wrap {
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}

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

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

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

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

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

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

.first-view__decoration-red-circle-text {
  width: 110px;
  max-width: 100%;
  position: absolute;
  top: 10px;
  left: calc(50% + 32.5px);
}
@media screen and (min-width: 900px) {
  .first-view__decoration-red-circle-text {
    width: 180px;
    left: calc(50% + 117px);
  }
}

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

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

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

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

.decoration-cats1__2 {
  width: 98px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@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: 80px;
  }
}

.about__decoration {
  position: absolute;
}

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

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

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

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

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

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

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

.about__decoration-goods2 {
  width: 133px;
  left: calc(50% - 3px);
  bottom: 157px;
}
@media screen and (min-width: 600px) {
  .about__decoration-goods2 {
    left: calc(50% + 97px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods2 {
    width: 308px;
    bottom: 290px;
    left: calc(50% + 120px);
  }
}
.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: 620px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

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

.about-top__image-left {
  position: absolute;
  top: 32px;
  right: calc(50% + 47px);
  width: 80px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
@media screen and (min-width: 900px) {
  .about-top__image-left {
    top: 40px;
    right: calc(50% + 192px);
    width: 134px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 32px;
  left: calc(50% + 47px);
  width: 80px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
@media screen and (min-width: 900px) {
  .about-top__image-right {
    top: 40px;
    left: calc(50% + 192px);
    width: 134px;
  }
}

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

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

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

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

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

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

.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 {
  margin-top: 6px;
  display: inline-block;
  padding-bottom: 6px;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .heading__japanese {
    margin-top: 8px;
    padding-bottom: 8px;
    font-size: 32px;
    border-bottom-width: 8px;
  }
}

.about-top__sub-heading {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@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 {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (any-hover: hover) {
  .link-text:hover {
    color: #67b0c7;
  }
}

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

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

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

.about-top__button {
  margin-top: 24px;
  text-align: center;
}

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

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

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

/* Swiperの基本的なスタイルに加えて */
#js-about-swiper .swiper-wrapper {
  /* !important を付けて Swiper のスタイルを上書きしてみる */
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.about-swiper__slide {
  width: 100px; /* または適切な幅 */
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (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-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: 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;
  }
}

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

.how-to-entry__decoration-map {
  width: 149px;
  top: 0;
  right: calc(50% + 38px);
}
@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;
  }
}
@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;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .decoration-cats2 {
    width: 364px;
    height: 191px;
  }
}

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

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

.how-to-entry__decoration-pawpads-1 {
  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 {
  top: 516px;
  left: 20px;
  width: 55px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@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 {
  width: 55px;
  bottom: 367px;
  right: 20px;
}

.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: 50px;
  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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__steps {
    gap: 32px;
    margin-top: 40px;
  }
}

.how-to-entry__step {
  position: relative;
}
@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;
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:nth-of-type(2) {
    margin-top: 50px;
  }
}
.how-to-entry__step:first-of-type::after, .how-to-entry__step:nth-of-type(2)::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 7px;
  height: 34px;
  content: "";
  background-color: transparent;
  background-image: url(../img/deco_how-to-entry4_sp.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:first-of-type::after, .how-to-entry__step:nth-of-type(2)::after {
    width: 70px;
    height: 16px;
    background-image: url(../img/deco_how-to-entry4_pc.svg);
    top: 150px;
    left: auto;
    right: -25px;
  }
}

.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 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}

.step-box__text {
  margin-top: 16px;
}

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

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

.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;
  }
}

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

.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: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    max-width: 1000px;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    padding-right: 56px;
    padding-left: 56px;
  }
}
.prizes__contents::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 238px;
  height: 83px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
  background-image: url(../img/deco_prizes1_sp.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    width: 372px;
    height: 148px;
    background-image: url(../img/deco_prizes1_pc.svg);
  }
}
.prizes__contents::after {
  position: absolute;
  content: "";
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__contents::after {
    height: calc(100% - 148px);
  }
}

.prizes__decoration-triangle-left {
  position: absolute;
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(50% - 195px);
    min-height: 148px;
  }
}

.prizes__decoration-triangle-right {
  position: absolute;
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(50% - 195px);
    min-height: 148px;
  }
}

.prizes__text {
  text-align: center;
  margin-top: 16px;
}
@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% - 8px);
}
@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.333333% - 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 (any-hover: hover) {
  .prizes-card:hover .prizes-card__image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.prizes-card .prizes-card__image img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: block;
  width: 100%;
  height: auto;
}

.prizes-card--large .prizes-card__number {
  top: -50px;
  width: 100px;
}

.prizes-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) {
  .prizes-card__number {
    top: -30px;
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__number {
    top: -40px;
    width: 80px;
  }
}

.prizes-card__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__inner {
    border-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--large .prizes-card__inner {
    border-radius: 24px;
  }
}

.prizes-card__image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    border-radius: 16px 16px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--large .prizes-card__image {
    border-radius: 24px 24px 0 0;
  }
}

.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;
  padding: 5px;
  font-size: 12px;
  font-weight: 700;
  min-height: 56px;
}
@media screen and (min-width: 600px) {
  .prizes-card__heading {
    font-size: 14px;
    min-height: 70px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__heading {
    font-size: 16px;
    min-height: 80px;
    padding: 7px 5px 5px 5px;
  }
  .prizes-card--large .prizes-card__heading {
    min-height: 120px;
    font-size: 20px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  z-index: 2;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-card__button {
    border-width: 4px;
    border-radius: 16px;
  }
}
.prizes-card__button:focus {
  border-color: #9ed0e0;
}
@media (any-hover: hover) {
  .prizes-card__button:hover {
    border-color: #9ed0e0;
  }
  .prizes-card__button:hover .prizes-card__icon-zoom {
    --icon-bg: #9ed0e0;
  }
}

.prizes-card__icon-zoom {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
  --icon-bg: #67b0c7;
  transition: --icon-bg 0.3s ease, --icon-fg 0.3s ease;
}
@media screen and (min-width: 900px) {
  .prizes-card__icon-zoom {
    right: -4px;
    bottom: -4px;
    width: 45px;
    height: 45px;
    border-bottom-right-radius: 16px;
  }
  .prizes-card--large .prizes-card__icon-zoom {
    width: 80px;
    height: 80px;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__icon-zoom {
    width: 64px;
    height: 64px;
  }
  .prizes-card--large .prizes-card__icon-zoom {
    width: 100px;
    height: 100px;
  }
}

.prizes-modal {
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  text-align: center;
  background: transparent;
}
@media screen and (min-width: 600px) {
  .prizes-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
.prizes-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.prizes-modal__container {
  width: 100%;
  height: 100%;
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-modal__container {
    padding-right: 40px;
    padding-bottom: 24px;
    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: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
  }
}

.spots {
  position: relative;
  padding-top: 46px;
  padding-bottom: 46px;
  margin-top: -46px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 46px;
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left 3px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    height: 120px;
    background-position: left center;
  }
}
.spots::before {
  top: 0;
  background-image: url(../img/deco_wave-top_sp.svg);
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/deco_wave-top_pc.svg);
  }
}
.spots::after {
  bottom: 0;
  background-image: url(../img/deco_wave-bottom_sp.svg);
  background-position: left -6px center;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/deco_wave-bottom_pc.svg);
  }
}

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

.spots__outer {
  background-color: #67b0c7;
  padding-bottom: 16px;
}
@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;
    padding-left: max(30px, 50% - 512px);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.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: #ffffff;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
  }
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-image: url(../img/Icon_star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 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%);
  }
}

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

.spots-swiper__slide {
  height: auto;
}

.spots-card {
  height: 100%;
  padding-right: 24px;
  padding-bottom: 30px;
  padding-left: 24px;
  overflow: hidden;
  background: #ffffff;
  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 {
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}

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

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

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

.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: 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;
  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: "";
}
@media (any-hover: hover) {
  .spots-swiper-arrows__prev:hover {
    background-position: center left 20%;
  }
}

.spots-swiper-arrows__next {
  background-image: url(../img//Icon_arrow-right.svg);
}
.spots-swiper-arrows__next::after {
  content: "";
}
@media (any-hover: hover) {
  .spots-swiper-arrows__next:hover {
    background-position: center right 20%;
  }
}

.spots__bottom {
  margin-right: auto;
  margin-left: 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 {
  width: 254px;
  margin-right: auto;
  margin-left: auto;
}
@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: 15px;
}
@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    margin-top: 0;
  }
}

.spots__text {
  font-size: 12px;
  color: #ffffff;
  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;
}

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

.qa-boxes {
  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-boxes {
    gap: 24px;
    margin-top: 40px;
  }
}

.qa-box {
  background: #ffffff;
  border: 2px solid #4a3636;
  border-radius: 12px;
  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;
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    gap: 16px;
    padding-top: 21px;
    padding-right: 22px;
    padding-bottom: 20px;
    padding-left: 22px;
  }
}
.qa-box__heading:focus {
  outline: 2px solid #9ed0e0;
  outline-offset: 2px;
}
.qa-box__heading.is-open .qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-box__heading-icon,
.qa-box__answer-icon {
  font-family: "Jsefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-icon,
  .qa-box__answer-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;
  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 {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 50px;
  -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 {
  background: #f5f5f5;
  max-height: 0; /* デフォルトではコンテンツを非表示にし、高さを0にする */
  overflow: hidden; /* 高さが0のときに中身がはみ出さないようにする */
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out; /* max-height の変化を0.3秒かけてアニメーションさせる */
  /* transitionの duration と timing-function は適宜調整してください */
  /* JavaScriptで 'is-open' クラスがボタンに付与されたときに、
     ボタンの次の兄弟要素である .qa-box__body が max-height を受け取るため、
     このCSSでは max-height を明示的に設定する必要はありません。
     JavaScriptが動的に値を設定します。
  */
}

.qa-box__answer {
  padding-top: 16px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .qa-box__answer {
    padding-top: 24px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
  }
}

.qa-box__answer-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding-top: 32px;
    padding-right: 48px;
    padding-bottom: 44px;
    padding-left: 48px;
  }
}

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

.entry-requiremnts-table {
  width: 100%;
  table-layout: fixed;
}

.entry-requiremnts-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-requiremnts-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-requiremnts-table__row:first-child {
  padding-top: 0;
}
.entry-requiremnts-table__row:last-child {
  border-bottom: none;
}

.entry-requiremnts-table__header {
  position: relative;
  height: 100%;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .entry-requiremnts-table__header {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requiremnts-table__header {
    width: 224px;
  }
}
.entry-requiremnts-table__header::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ed0e0;
}

.entry-requiremnts-table__data {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.entry-requiremnts-table__data ul li {
  line-height: 19px;
  padding-left: 1.5em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .entry-requiremnts-table__data ul li {
    line-height: 22px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requiremnts-table__data ul li {
    line-height: 26px;
  }
}
.entry-requiremnts-table__data ul li::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: 0.2em;
}

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

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

::-webkit-input-placeholder {
  font-size: 14px;
  color: red;
}

::-moz-placeholder {
  font-size: 14px;
  color: red;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: red;
}

::-ms-input-placeholder {
  font-size: 14px;
  color: red;
}

::placeholder {
  font-size: 14px;
  color: red;
}
@media screen and (min-width: 900px) {
  ::-webkit-input-placeholder {
    font-size: 16px;
    color: #cccccc;
  }
  ::-moz-placeholder {
    font-size: 16px;
    color: #cccccc;
  }
  :-ms-input-placeholder {
    font-size: 16px;
    color: #cccccc;
  }
  ::-ms-input-placeholder {
    font-size: 16px;
    color: #cccccc;
  }
  ::placeholder {
    font-size: 16px;
    color: #cccccc;
  }
}

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

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

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

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

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

.form-text:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #67b0c7;
  background-color: #e9f6f8;
}

::-webkit-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::-moz-placeholder {
  font-size: 14px;
  color: #cccccc;
}

:-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::-ms-input-placeholder {
  font-size: 14px;
  color: #cccccc;
}

::placeholder {
  font-size: 14px;
  color: #cccccc;
}
@media screen and (min-width: 900px) {
  ::-webkit-input-placeholder {
    font-size: 16px;
  }
  ::-moz-placeholder {
    font-size: 16px;
  }
  :-ms-input-placeholder {
    font-size: 16px;
  }
  ::-ms-input-placeholder {
    font-size: 16px;
  }
  ::placeholder {
    font-size: 16px;
  }
}

.form-select-wrapper {
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background-color: #f5f5f5;
  overflow: hidden;
  border: 1px solid transparent;
}
.form-select-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background-color: #67b0c7;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: none;
  background-image: url(../img/icon_select-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.form-select-wrapper.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}
.form-select-wrapper.is-error::after {
  background-color: #ce2073;
}

.form-select {
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}

.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;
    padding-left: 2px;
  }
}

@media (any-hover: hover) {
  .form-radio:hover .form-radio__text::before {
    border-color: #67b0c7;
  }
}

.form-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:focus + .form-radio__text::before, .form-radio__input:checked + .form-radio__text::before {
  border-color: #9ed0e0;
}
.form-radio__input:focus + .form-radio__text::after, .form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.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 {
  position: absolute;
  content: "";
  top: 50%;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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-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 {
  cursor: pointer;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.form-checkbox__input:checked + .form-checkbox__text::before {
  border-color: #9ed0e0;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border-color: #ce2073;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #9ed0e0;
}

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

.contact__button {
  padding-bottom: 4px;
  margin-top: 27px;
  text-align: center;
  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;
  }
}

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

@media screen and (min-width: 900px) {
  .footer__inner {
    position: relative;
  }
}

.footer__decoration-pawpads {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .footer__decoration-pawpads {
    top: -40px;
    right: 0;
    width: 70px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@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;
}
@media screen and (min-width: 900px) {
  .sns-links__title {
    font-size: 24px;
  }
}
.sns-links__title::before {
  content: "\\";
}
.sns-links__title::after {
  content: " /";
}

.snslinks__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 {
  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;
}
@media screen and (min-width: 900px) {
  .sns-button {
    width: 40px;
    height: 40px;
  }
}
@media (any-hover: hover) {
  .sns-button:hover:hover {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

.footer__decoration-english {
  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 {
  position: relative;
  z-index: 2;
  margin-top: -3px;
}

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

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

.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-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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
}

@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;
  }
}

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

.pagetop {
  width: 75px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.7s, -webkit-filter 0.3s;
  transition: opacity 0.7s, -webkit-filter 0.3s;
  transition: opacity 0.7s, filter 0.3s;
  transition: opacity 0.7s, filter 0.3s, -webkit-filter 0.3s;
  z-index: 1000;
}
@media screen and (min-width: 900px) {
  .pagetop {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop {
    width: 100px;
  }
}
@media (any-hover: hover) {
  .pagetop:hover {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
}
.pagetop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.footer__bottom {
  position: relative;
  padding-top: 46px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    padding-top: 120px;
    margin-top: 120px;
  }
}
.footer__bottom::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 46px;
  content: "";
  background-image: url(../img/deco_wave-top_sp.svg);
  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/deco_wave-top_pc.svg);
    background-position: left center;
  }
}

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