@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

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

@media screen and (min-width: 900px) {
  .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 !important;
}
@media screen and (min-width: 900px) {
  .hidden-sp {
    display: block !important;
  }
}

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

.wrapper {
  overflow: hidden;
}

.inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
  .inner.header__inner {
    max-width: 100%;
    padding-inline: 24px;
  }
}

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.heading::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 37.33px;
  height: 37.33px;
  content: "";
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}

.heading__title {
  padding-top: 43.98px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading__title {
    padding-top: 57px;
  }
}

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

.heading__title-ja {
  display: inline-block;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  padding-top: 5.5px;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .heading__title-ja {
    font-size: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-decoration-thickness: 8px;
    text-underline-offset: 16px;
  }
}

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

.link__text {
  text-decoration: underline;
}

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

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

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

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

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}
@media screen and (min-width: 900px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav__link {
  font-size: 12px;
}
.header__nav__link:hover {
  cursor: pointer;
  color: #9ed0e0;
  text-decoration: underline;
  text-decoration-color: #9ed0e0;
}

.header__nav__button {
  margin-left: 4px;
}

.drawer__button {
  width: 32px;
  height: 27px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .drawer__button {
    display: none;
  }
}
.drawer__button.is-checked .drawer-icon__bar:nth-child(1), .drawer__button.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer__button.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #4a3636;
}
.drawer__button.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer__button.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 32px;
  height: 3px;
  left: 0;
  background-color: #4a3636;
  border-radius: 5px;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  background-color: #fff;
}
.drawer-icon__bar:nth-child(1)::before {
  content: "";
  position: absolute;
  background-color: #4a3636;
  width: 25.6px;
  height: 3px;
  left: 0;
  border-radius: 5px;
}
.drawer-icon__bar:nth-child(1)::after {
  content: "";
  position: absolute;
  background-color: #4a3636;
  width: 4.8px;
  height: 3px;
  right: 0;
  border-radius: 5px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.drawer__content {
  position: fixed;
  z-index: 20;
  top: 64px;
  width: 100%;
  height: calc(100% - 64px);
  padding-top: 82px;
  background: #fff;
  overflow-y: auto;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  display: none;
}
@media screen and (min-width: 900px) {
  .drawer__content {
    display: none !important;
  }
}

.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;
  gap: 40px;
  text-align: center;
  line-height: 1.58;
}

.drawer__content__link {
  font-size: 14px;
}
.drawer__content__link:hover {
  cursor: pointer;
  color: #9ed0e0;
  text-decoration: underline;
  text-decoration-color: #9ed0e0;
}

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

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

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

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

.fv__titles {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__titles {
    margin-top: 24px;
    gap: 16px;
  }
}

@media screen and (min-width: 900px) {
  .fv__title1 {
    width: 520px;
  }
}

.fv__title2 {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .fv__title2 {
    width: 356px;
  }
}

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

.fv__smartphone {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv__smartphone {
    bottom: 16px;
  }
}

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

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

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

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

.fv__smartphone__body {
  margin-top: 12.8px;
  margin-bottom: 15.2px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone__body {
    margin-top: 14px;
    margin-bottom: 20px;
  }
}

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

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

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

.fv__image__fukidashi {
  position: absolute;
  margin-top: 7px;
}
@media screen and (min-width: 900px) {
  .fv__image__fukidashi {
    margin-top: 0px;
    left: 37px;
  }
}
.fv__image__fukidashi img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv__image__fukidashi img {
    width: 244px;
  }
}

.fv__image__present {
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__image__present {
    top: 17px;
    right: 127px;
  }
}
.fv__image__present img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv__image__present img {
    width: 180px;
  }
}

.fv__image__foods {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
}

.fv__image__food {
  position: relative;
  width: 90px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv__image__food {
    width: 202px;
    height: 332px;
  }
}

.fv__food1 {
  position: absolute;
  margin-left: 43px;
  width: 47px;
}
@media screen and (min-width: 900px) {
  .fv__food1 {
    top: 1px;
    margin-left: 101px;
    width: 111px;
  }
}

.fv__food2 {
  position: absolute;
  width: 54px;
  bottom: 0px;
}
@media screen and (min-width: 900px) {
  .fv__food2 {
    width: 127px;
  }
}

.fv__image__cats {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}

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

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

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

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

.about__bg__left-line {
  position: absolute;
  border-radius: 24px;
  top: -20px;
  right: calc(50% + 260px);
  width: 250px;
}
@media screen and (min-width: 1200px) {
  .about__bg__left-line {
    right: calc(50% + 527px);
  }
}

.about__bg__left-photo1 {
  position: absolute;
  top: 395px;
  right: calc(50% + 127.5px);
  width: 200px;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__bg__left-photo1 {
    top: 74px;
    right: calc(50% + 350px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg__left-photo1 {
    right: calc(50% + 614px);
  }
}

.about__bg__left-photo2 {
  position: absolute;
  z-index: -1;
  top: 709px;
  left: 0;
  width: 138px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__bg__left-photo2 {
    top: 321px;
    right: calc(50% + 432px);
    left: auto;
    width: 427px;
  }
}

.about__bg-right-pawpads {
  position: absolute;
  top: -10px;
  left: calc(50% + 133.5px);
  width: 54px;
}
@media screen and (min-width: 900px) {
  .about__bg-right-pawpads {
    top: -80px;
    left: calc(50% + 340px);
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-pawpads {
    left: calc(50% + 490.12px);
  }
}

.about__bg-right-photo {
  position: absolute;
  margin-top: 273px;
  left: calc(50% + 127.5px);
  width: 200px;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__bg-right-photo {
    margin-top: 74px;
    left: calc(50% + 345px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-photo {
    left: calc(50% + 560.2px);
  }
}

.about__bg-right-wave1 {
  position: absolute;
  margin-top: 599px;
  left: calc(50% + 330px);
  stroke-width: 2px;
  stroke: #cce1e4;
  width: 807px;
}
@media screen and (min-width: 1200px) {
  .about__bg-right-wave1 {
    left: calc(50% + 515.15px);
  }
}

.about__bg-right-wave2 {
  position: absolute;
  margin-top: 632px;
  left: calc(50% + 310px);
  stroke-width: 2px;
  stroke: #cce1e4;
  width: 807px;
}
@media screen and (min-width: 1200px) {
  .about__bg-right-wave2 {
    left: calc(50% + 448.08px);
  }
}

.about__bg-right-goods1 {
  position: absolute;
  margin-top: 720px;
  left: calc(50% + 118.5px);
  width: 48px;
}
@media screen and (min-width: 900px) {
  .about__bg-right-goods1 {
    margin-top: 602px;
    left: calc(50% + 320px);
    width: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-goods1 {
    left: calc(50% + 505px);
  }
}

.about__bg-right-goods2 {
  position: absolute;
  margin-top: 762px;
  left: calc(50% - 2.5px);
  width: 133px;
}
@media screen and (min-width: 900px) {
  .about__bg-right-goods2 {
    margin-top: 758px;
    left: calc(50% + 250px);
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-goods2 {
    left: calc(50% + 374px);
  }
}

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

.about__contents {
  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;
  padding: 40px 12px;
  text-align: center;
  border-radius: 24px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about__contents {
    border-radius: 40px;
  }
}

.heading__about::before {
  background-image: url(../img/about-icon.svg);
}

.about__contents__pics-left {
  position: absolute;
  right: calc(50% + 46.93px);
  top: 31.87px;
  width: 87px;
}
@media screen and (min-width: 900px) {
  .about__contents__pics-left {
    right: calc(50% + 192.39px);
    top: 40.35px;
    width: 147px;
  }
}

.about__contents__pics-right {
  position: absolute;
  left: calc(50% + 60.15px);
  top: 30px;
  width: 87px;
}
@media screen and (min-width: 900px) {
  .about__contents__pics-right {
    left: calc(50% + 193.08px);
    top: 47px;
    width: 147px;
  }
}

.about__contents__head {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__contents__head {
    margin-top: 35px;
    font-size: 16px;
  }
}

.about__contents__text {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18.5px;
}
@media screen and (min-width: 900px) {
  .about__contents__text {
    margin-top: 32px;
    gap: 27px;
  }
}

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

.about__contents__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__contents__button {
    margin-top: 31px;
  }
}

.about__arrow {
  position: relative;
  width: 100px;
  height: 36px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .about__arrow {
    width: 140px;
    height: 50px;
  }
}

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

.about__bottom__onomichi {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.enter {
  margin-top: 64.8px;
  margin-bottom: 37.67px;
}
@media screen and (min-width: 900px) {
  .enter {
    margin-top: 120px;
    margin-bottom: 0;
  }
}

.enter__inner {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .enter__inner {
    max-width: 1512px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__inner {
    padding-inline: 30px;
  }
}

.enter__bg {
  position: relative;
  z-index: -1;
}

.enter__bg__map {
  position: absolute;
  right: calc(50% + 38.5px);
  width: 149px;
}
@media screen and (min-width: 900px) {
  .enter__bg__map {
    right: calc(50% + 150px);
    top: -60px;
    width: 460px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg__map {
    right: calc(50% + 260px);
  }
}

.enter__bg__cat-brown {
  position: absolute;
  left: calc(50% + 58.5px);
  width: 105px;
}
@media screen and (min-width: 900px) {
  .enter__bg__cat-brown {
    top: -26px;
    left: calc(50% + 190px);
    width: 238px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg__cat-brown {
    left: calc(50% + 287px);
  }
}

.enter__bg__cat-black {
  position: absolute;
  top: 5px;
  left: calc(50% + 124.5px);
  width: 94px;
}
@media screen and (min-width: 900px) {
  .enter__bg__cat-black {
    top: -16.03px;
    left: calc(50% + 340px);
    width: 214px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg__cat-black {
    left: calc(50% + 437px);
  }
}

.enter__bg__pawpads-left {
  position: absolute;
  top: 549.55px;
  width: 55px;
}
@media screen and (min-width: 900px) {
  .enter__bg__pawpads-left {
    top: 580px;
    left: -30px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg__pawpads-left {
    width: 100px;
    left: 4px;
  }
}

.enter__bg__pawpads-right1 {
  position: absolute;
  right: 0px;
  top: 74px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  width: 55px;
}
@media screen and (min-width: 900px) {
  .enter__bg__pawpads-right1 {
    top: 148px;
    right: -30px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg__pawpads-right1 {
    width: 100px;
    right: 4px;
  }
}

.enter__bg__pawpads-right2 {
  position: absolute;
  right: 0;
  top: 879.88px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.enter__bg__pawpads-right2 img {
  width: 55px;
}

.heading__enter::before {
  background-image: url(../img/enter-icon.svg);
}

.enter__steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .enter__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: 10px;
    margin-top: 42px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__steps {
    gap: 32px;
  }
}

.enter__step:first-of-type, .enter__step:nth-of-type(2) {
  position: relative;
}
.enter__step:first-of-type::after, .enter__step:nth-of-type(2)::after {
  top: calc(100% + 16px);
  left: 50%;
  position: absolute;
  z-index: 3;
  background: url(../img/SP/enter-step-line.png) no-repeat center center/contain;
  content: "";
  width: 7px;
  height: 34px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .enter__step {
    max-width: 294px;
    margin-bottom: 8px;
  }
  .enter__step:first-of-type::after, .enter__step:nth-of-type(2)::after {
    margin-top: 0px;
    background: url(../img/enter-step-line.svg) no-repeat center center/contain;
    width: 114px;
    height: 24px;
    top: 204px;
    right: -48px;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .enter__step:nth-of-type(2) {
    margin-top: 68px;
  }
  .enter__step:nth-of-type(2)::after {
    top: 136px;
    right: -57px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__step {
    max-width: 320px;
  }
}

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

.enter__step-image {
  padding-inline: 20px;
}
.enter__step-image img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .enter__step-image img {
    width: 280px;
  }
}

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

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

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

.link__text {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link__text:hover {
  color: #9ed0e0;
}

.enter__step__link-text {
  position: relative;
  display: inline-block;
  padding: 7px 11px 7px 39px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: solid 1px transparent;
}
.enter__step__link-text:hover {
  border-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .enter__step__link-text {
    font-size: 16px;
    padding: 8px 12px 8px 44px;
  }
}
.enter__step__link-text::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../img/enter-icon-instagram.svg) no-repeat center center/contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .enter__step__link-text::before {
    width: 24px;
    height: 24px;
  }
}

.enter__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .enter__button {
    margin-top: 0;
    padding-bottom: 3px;
  }
}

.prizes {
  position: relative;
  margin-top: 0px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 122px;
    margin-bottom: 0;
  }
}

.prizes__contents {
  position: relative;
  z-index: 2;
  padding: 20px 20px 35px 20px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    padding: 29px 30px 53px 30px;
  }
}
.prizes__contents::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/SP/prizes-bg-center.svg) no-repeat center center/cover;
  content: "";
  width: 238px;
  height: 83px;
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    background: url(../img/prizes-bg-center.svg) no-repeat center center/cover;
    width: 366px;
    height: 149px;
  }
}
.prizes__contents::after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .prizes__contents::after {
    height: calc(100% - 149px);
  }
}

.prizes__bg__head-left {
  position: absolute;
  left: 0;
  width: 230px;
}
@media screen and (min-width: 1200px) {
  .prizes__bg__head-left {
    width: 315px;
  }
}

.prizes__bg__head-right {
  position: absolute;
  right: 0;
  width: 230px;
}
@media screen and (min-width: 1200px) {
  .prizes__bg__head-right {
    width: 315px;
  }
}

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

.heading__prizes {
  padding-inline: 0;
}
.heading__prizes::before {
  background-image: url(../img/prizes-icon.svg);
}

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

.prizes__contents-inside {
  margin-top: 47px;
}
@media screen and (min-width: 900px) {
  .prizes__contents-inside {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents-inside {
    padding-inline: 26px;
  }
}

.prizes__content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 39px;
}
@media screen and (min-width: 900px) {
  .prizes__content__wrapper {
    row-gap: 40px;
  }
}

.prizes__content__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid transparent;
}
@media screen and (min-width: 900px) {
  .prizes__content__button {
    overflow: hidden;
  }
  .prizes__content__button:hover {
    border-color: #9ed0e0;
    border-width: 5px;
  }
  .prizes__content__button:hover .prizes__content-image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__content__button:hover .prizes__triangle {
    background: #9ed0e0;
  }
}

.prizes__content {
  position: relative;
  margin-inline: auto;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__content {
    margin-top: 41px;
    margin-inline: 0;
    width: calc(33.33333% - 24px);
  }
  .prizes__content .prizes__content__button {
    border-radius: 16px;
  }
  .prizes__content .prizes__content-image img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .prizes__content .prizes__content__name {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    height: 80px;
  }
  .prizes__content .prizes__content-text {
    font-size: 16px;
  }
  .prizes__content .prizes__triangle {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
  .prizes__content .prizes__content-number {
    width: 80px;
    height: 80px;
  }
  .prizes__content .prizes__focus {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 8.96px;
  }
  .prizes__content.prizes__content-large {
    width: calc(50% - 16px);
  }
  .prizes__content.prizes__content-large .prizes__content__button {
    border-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content-image img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content__name {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    height: 120px;
  }
  .prizes__content.prizes__content-large .prizes__content-text {
    font-size: 20px;
  }
  .prizes__content.prizes__content-large .prizes__triangle {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content-number {
    width: 100px;
    height: 100px;
    top: -48px;
  }
  .prizes__content.prizes__content-large .prizes__focus {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__content {
    width: 280px;
  }
  .prizes__content.prizes__content-large {
    width: 440px;
  }
  .prizes__content.prizes__content-large .prizes__content__button {
    border-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content-image img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content__name {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    height: 120px;
  }
  .prizes__content.prizes__content-large .prizes__content-text {
    font-size: 20px;
  }
  .prizes__content.prizes__content-large .prizes__triangle {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
  .prizes__content.prizes__content-large .prizes__content-number {
    width: 100px;
    height: 100px;
    top: -48px;
  }
  .prizes__content.prizes__content-large .prizes__focus {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
}

.prizes__content-image img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.prizes__content__name {
  position: relative;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #f5f5f5;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prizes__content-text {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.prizes__triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  aspect-ratio: 1;
  border-bottom-right-radius: 8px;
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #67b0c7;
}

.prizes__focus {
  position: absolute;
  right: 5.22px;
  bottom: 6.12px;
  width: 11.52px;
  height: 11.52px;
}

.prizes__content-number {
  position: absolute;
  top: -24px;
  width: 48px;
  height: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__content-number {
    top: -40px;
  }
}

.prizes__button {
  display: block;
  margin-top: 18px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
  }
}

.prizes__bottom {
  position: relative;
  z-index: -2;
  margin-top: -44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .prizes__bottom {
    margin-top: 1px;
  }
}
.prizes__bottom img {
  display: block;
  width: 100%;
  min-width: 580px;
}

.prizes-modal {
  width: 336px;
  height: 480px;
  padding: 0;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background: black;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: black;
  opacity: 0.7;
}

.prizes__modal__name {
  margin-top: 39px;
  padding-inline: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .prizes__modal__name {
    margin-top: 32px;
    padding-inline: 40px;
  }
}

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

.prizes__modal-button {
  margin-top: 16px;
  display: block;
  margin-inline: auto;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .prizes__modal-button {
    margin-top: 24px;
    padding-bottom: 8px;
  }
}

.spots {
  position: relative;
  margin-top: -45.7px;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: -120px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.spots::before {
  position: absolute;
  background: url(../img/SP/prizes-bg-wave.svg) repeat-x center center/contain;
  content: "";
  width: 100%;
  height: 45.7px;
  top: 0;
  left: 0;
  background-position: left -2px center;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/prizes-bg-wave.svg) repeat-x center center/contain;
    height: 120px;
    background-position: left 0px center;
  }
}
.spots::after {
  position: absolute;
  background: url(../img/SP/prizes-bg-wave.svg) repeat-x center center/contain;
  content: "";
  width: 100%;
  height: 46.7px;
  bottom: 0;
  left: 0;
  background-position: left -3px center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url(../img/prizes-bg-wave.svg) repeat-x center center/contain;
    height: 121px;
    background-position: left 0px center;
  }
}

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

.spots__inner {
  position: relative;
  padding-bottom: 16.84px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 900px) {
  .spots__main {
    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__main__title {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__main__title {
    width: 56px;
  }
}

.spots__main__text {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
.spots__main__text::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/spot-main-star.png);
  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__main__text {
    padding-top: 72px;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.25em;
  }
  .spots__main__text::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
    height: 56px;
  }
}

@media screen and (min-width: 900px) {
  .spots__slide {
    width: calc(100% - 56px - 32px);
  }
}

.spots__cards {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__cards {
    margin-top: 0;
  }
}

.spots__card {
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots__card {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.spots__card__image {
  display: block;
  max-width: 100%;
  height: auto;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots__card__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.spots__card__text {
  padding: 16px 24px 32px 24px;
}
@media screen and (min-width: 900px) {
  .spots__card__text {
    padding: 23px 32px 40px 32px;
  }
}

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

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

@media screen and (min-width: 1200px) {
  .spots__sub {
    position: relative;
    max-width: 1024px;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -57px;
  }
}

@media screen and (min-width: 900px) {
  .spots__arrow {
    z-index: 2;
    width: 700px;
    height: 80px;
    margin-top: -10px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__arrow {
    width: 944px;
    margin-top: 24px;
  }
}

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

.spots__arrow__prev,
.spots__arrow__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__arrow__prev::after,
.spots__arrow__next::after {
  content: "";
}

.spots__arrow__prev {
  background-image: url(../img/spots-arrow-prev.svg);
}
.spots__arrow__prev:hover {
  background-position: center left 30%;
}

.spots__arrow__next {
  background-image: url(../img/spots-arrow-next.svg);
}
.spots__arrow__next:hover {
  background-position: center right 30%;
}

.spot__bottom {
  text-align: center;
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .spot__bottom {
    margin-top: -66px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__bottom {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.spot__bottom__logo {
  margin-inline: auto;
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spot__bottom__logo {
    width: 375px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__bottom__logo {
    width: 495px;
    margin-left: 0;
  }
}

@media screen and (min-width: 1200px) {
  .spot__bottom__right {
    margin-right: 0;
    text-align: right;
  }
}

.spot__bottom__text {
  margin-top: 16px;
  color: #f5f5f5;
  font-size: 11.444px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .spot__bottom__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__bottom__text {
    margin-top: 0;
    font-size: 16px;
  }
}

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

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

.qa__inner {
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 1084px;
  }
}

.heading__qa {
  padding-inline: 0;
}
.heading__qa::before {
  background-image: url(../img/qa-icon.svg);
}

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

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

.qa-box__head {
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa-box__head.is-open .qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding-top: 20.5px;
    padding-right: 22px;
    padding-bottom: 19.5px;
    padding-left: 22px;
    gap: 16px;
  }
  .qa-box__head.is-open {
    padding-bottom: 21.5px;
  }
}

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

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

.qa-box__head-toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before, .qa-box__head-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #fff;
  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;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before, .qa-box__head-toggle::after {
    width: 20px;
    height: 3px;
  }
}
.qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

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

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

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

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

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

.requirements__inner {
  padding-top: 15.5px;
  padding-right: 15.5px;
  padding-bottom: 16px;
  padding-left: 16px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .requirements__inner {
    padding-top: 29px;
    padding-bottom: 34px;
    padding-inline: 48px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

.heading__requirements::before {
  background-image: url(../img/requirements-Icon.svg);
}

.requirements__cards {
  margin-top: 24px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (min-width: 900px) {
  .requirements__cards {
    margin-top: 43px;
  }
}

.requirements__card {
  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;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .requirements__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
  }
}
.requirements__card:nth-of-type(5) {
  border-bottom: 0;
  margin-bottom: 0;
}

.requirements__card__title {
  margin-left: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .requirements__card__title {
    margin-left: 33px;
    font-size: 16px;
    width: 212px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.requirements__card__title::before {
  content: "";
  position: absolute;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .requirements__card__title::before {
    left: 17px;
  }
}

.requirements__card__text {
  margin-top: 8px;
}
@media screen and (min-width: 900px) {
  .requirements__card__text {
    width: calc(100% - 224px);
    margin-top: 0;
    font-size: 16px;
  }
}

.requirements__card__lists {
  list-style: none;
}

.requirements__card__list {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
.requirements__card__list::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
@media screen and (min-width: 900px) {
  .requirements__card__list {
    line-height: 26px;
  }
}

.requirements__bottom {
  margin-top: 33px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .requirements__bottom {
    margin-top: 120px;
  }
}

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

.contact__inner {
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 1084px;
  }
}

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

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

.contact__form {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 41px;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

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

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

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.contact__field__alignment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

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

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

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

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

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

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

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

.form-radio__text {
  position: relative;
  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%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  left: 6px;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  opacity: 0;
}

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

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

.contact__privacy {
  text-align: center;
}

.form-checkbox {
  cursor: pointer;
}
.form-checkbox:hover .form-checkbox__text::before {
  border-color: #9ed0e0;
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  padding-top: 8px;
  background: url(../img/contact-privacy.svg) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #ccc;
}

.footer {
  position: relative;
}

.footer__pawpads {
  position: absolute;
  width: 100px;
  top: -40px;
  right: -134px;
}

.footer__inner {
  position: relative;
  margin-top: 40px;
  text-align: center;
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    margin-top: 121px;
    max-width: 1084px;
  }
}

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

.footer__icons {
  position: relative;
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.footer__icon {
  width: 32px;
  height: 32px;
}
.footer__icon:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media screen and (min-width: 900px) {
  .footer__icon {
    width: 40px;
    height: 40px;
  }
}

.footer__onomichi img {
  display: block;
  margin-top: 15px;
  width: 328px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer__onomichi img {
    margin-top: 42px;
    width: 755px;
    right: 0;
  }
}

.footer__main {
  position: relative;
  margin-top: -3px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer__main {
    margin-top: -4px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-inline: auto;
    gap: 0;
  }
}

.footer__map {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer__map {
    width: 50%;
    aspect-ratio: 512/400;
    height: 400px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__map {
    width: 512px;
    height: 400px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
  }
}

.footer__company {
  padding-top: 22px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 22px;
}
@media screen and (min-width: 900px) {
  .footer__company {
    width: 50%;
    padding-inline: 61.5px;
    padding-block: 106px;
  }
}

.footer__company__logo {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer__company__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 183px;
  }
}

.footer__company__contents {
  margin-top: 24px;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 5px;
  padding-right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer__company__contents {
    padding: 0;
    gap: 12px;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}

.footer__content__title {
  position: relative;
  min-width: 64px;
  padding-left: 16px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .footer__content__title {
    font-size: 16px;
    min-width: 104px;
  }
}
.footer__content__title::before {
  content: "";
  position: absolute;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 0;
  border-radius: 50%;
}

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

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

.footer__pagetop-img {
  width: 75px;
}
@media screen and (min-width: 900px) {
  .footer__pagetop-img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__pagetop-img {
    width: 100px;
  }
}

.footer__copyright {
  top: 1px;
  position: relative;
  font-size: 10px;
  color: #fff;
  background: #67b0c7;
  margin-top: 69.7px;
  padding-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    margin-top: 240px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  position: absolute;
  margin-top: -45.7px;
  background: url(../img/SP/prizes-bg-wave.svg) repeat-x center center/contain;
  content: "";
  width: 100%;
  height: 46.7px;
  top: 0;
  left: 0;
  background-position: left -2px center;
}
@media screen and (min-width: 900px) {
  .footer__copyright::before {
    margin-top: -120px;
    background: url(../img/prizes-bg-wave.svg) repeat-x center center/contain;
    height: 121px;
    background-position: left 0px center;
  }
}