@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 900px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ======================================================
header
======================================================= */
.wrapper {
  background-color: #e9f6f8;
  overflow: hidden;
}

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

.header__inner {
  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;
  height: inherit;
}

.header__logo {
  width: 183px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    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;
    gap: 12px;
    height: inherit;
  }
}

.header__link {
  font-size: 1.2rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  -webkit-transition: color 0.3s, text-decoration-color 0.2s;
  transition: color 0.3s, text-decoration-color 0.2s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration-color: #67b0c7;
}

.header__button {
  font-size: 1.4rem;
  margin-left: 4px;
}

.button {
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4a3636);
  background: var(--LP-White, #fff);
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 10px 40px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.button.button--md-small {
  padding: 6px 24px;
}
.button:hover {
  background-color: #ffee56;
}

/* ドロワー
--------------------------------------------------------*/
.header__open {
  display: block;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
}
.drawer-icon.is-active .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  width: 32px;
}
.drawer-icon.is-active .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.drawer-icon.is-active .drawer-icon__dot {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  background-color: #4a3636;
  width: 32px;
  height: 3px;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-icon__bar:nth-child(1) {
  width: 25.6px;
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  width: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.drawer-icon__bar:nth-child(3) {
  width: 32px;
  bottom: 0;
}

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

/* drawer-content
--------------------------------------------------------*/
.drawer-content {
  display: none;
  position: fixed;
  background-color: #fff;
  padding-top: 82px;
  width: 100%;
  height: calc(100vh - 64px);
  z-index: 30;
  margin-top: 64px;
}
.drawer-content.is-active {
  display: block;
}

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

/* ======================================================
ファーストビュー
======================================================= */
.first-view {
  margin-top: 64px;
  position: relative;
}

.first-view__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 164px);
}
@media screen and (min-width: 900px) {
  .first-view__background-image {
    height: calc(100vh - 64px);
  }
}
.first-view__background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.first-view__inner {
  max-width: 848px;
  position: relative;
  margin-inline: auto;
  width: 100%;
  padding-top: 34px;
}

.first-view__description {
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 1.4rem;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .first-view__description {
    font-size: 2.4rem;
  }
}

.first-view__lead {
  text-align: center;
  margin-top: 24px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .first-view__lead {
    width: 520px;
  }
  .first-view__lead img {
    width: 100%;
  }
}

.first-view__decoration-wrap {
  position: relative;
  height: 558px;
}

.first-view__decoration-smart-phone {
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 113px;
  text-align: center;
  width: 200px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-smart-phone {
    margin-top: 33px;
    width: 250px;
  }
}

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

.decoration-smart-phone__wrap {
  position: absolute;
  top: calc(50% - 6px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 160px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .decoration-smart-phone__wrap {
    width: 200px;
  }
}

.decoration-smart-phone__heading {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  font-weight: 700;
  color: #fff;
  padding-block: 8px;
}

.decoration-smart-phone__body {
  background-color: #fff;
  padding-top: 16px;
  padding-bottom: 30px;
}

.decoration-smart-phone__sub-heading {
  font-size: 1.4rem;
}
.decoration-smart-phone__sub-heading span {
  border-bottom: 3px solid #ce2073;
}

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

.decoration-smart-phone__button {
  margin-top: 16px;
}

.first-view__decoration-english {
  position: absolute;
  top: 20px;
  right: calc(50% + 30px);
  width: 142px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-english {
    width: 244px;
    top: 0;
    right: calc(50% + 150px);
  }
}

.first-view__decoration-circle {
  position: absolute;
  top: 10px;
  left: calc(50% + 30px);
  width: 110px;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-circle {
    width: 180px;
    left: calc(50% + 120px);
  }
}

.first-view__decoration-food {
  position: absolute;
  bottom: 48px;
  right: calc(50% + 80px);
  width: 86px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-food {
    width: 202px;
    bottom: 20px;
    right: calc(50% + 200px);
  }
}

.first-view__decoration-cat {
  position: absolute;
  bottom: 38px;
  left: calc(50% + 80px);
  width: 98px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .first-view__decoration-cat {
    width: 233px;
    bottom: -30px;
    left: calc(50% + 190px);
  }
}

/* ======================================================
about
======================================================= */
.about {
  position: relative;
  margin-top: 100px;
}

.about__decoration {
  position: absolute;
}

.about__decoration-striped {
  right: calc(50% + 260px);
  top: -10px;
  width: 480px;
}

.about__decoration-picture-left {
  right: calc(50% + 120px);
  top: 450px;
  width: 200px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .about__decoration-picture-left {
    right: calc(50% + 220px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-left {
    right: calc(50% + 400px);
    top: 80px;
    width: 360px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-left {
    right: calc(50% + 550px);
    width: 480px;
  }
}

.about__decoration-picture-right {
  left: calc(50% + 120px);
  top: 330px;
  width: 200px;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .about__decoration-picture-right {
    left: calc(50% + 220px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-picture-right {
    left: calc(50% + 400px);
    top: 80px;
    width: 360px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-picture-right {
    left: calc(50% + 550px);
    width: 480px;
  }
}

.about__decoration-pawpads {
  left: calc(50% + 170px);
  top: -10px;
  width: 54px;
}
@media screen and (min-width: 600px) {
  .about__decoration-pawpads {
    left: calc(50% + 260px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-pawpads {
    top: -80px;
    left: calc(50% + 340px);
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-pawpads {
    left: calc(50% + 480px);
  }
}

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

.about__decoration-wave {
  left: calc(50% + 450px);
  bottom: 610px;
  width: 807px;
}

.about__decoration-goods1 {
  left: calc(50% + 110px);
  bottom: 260px;
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__decoration-goods1 {
    left: calc(50% + 250px);
    width: 70px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods1 {
    left: calc(50% + 490px);
    bottom: 570px;
    width: 100px;
  }
}

.about__decoration-goods2 {
  left: calc(50% + 120px);
  bottom: 220px;
  width: 133px;
}
@media screen and (min-width: 900px) {
  .about__decoration-goods2 {
    left: calc(50% + 360px);
    bottom: 380px;
    width: 308px;
  }
}

.about__inner {
  max-width: 335px;
  background-color: #fff;
  border-radius: 24px;
  padding-block: 40px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    border-radius: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 848px;
  }
}
.about__inner::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-style: solid;
  border-right: 70px solid transparent;
  border-left: 70px solid transparent;
  border-top: 50px solid #cce1e4;
  border-bottom: 0;
}

.about-top {
  position: relative;
}

.about-top__image-left {
  position: absolute;
  top: 0;
  left: 20px;
  width: 80px;
}
@media screen and (min-width: 600px) {
  .about-top__image-left {
    left: 80px;
  }
}
@media screen and (min-width: 768px) {
  .about-top__image-left {
    left: 0;
    width: 147px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__image-left {
    left: 80px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 0;
  right: 20px;
  width: 80px;
}
@media screen and (min-width: 600px) {
  .about-top__image-right {
    right: 80px;
  }
}
@media screen and (min-width: 768px) {
  .about-top__image-right {
    right: 0;
    width: 147px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__image-right {
    right: 80px;
  }
}

.heading {
  padding-top: 56px;
  text-align: center;
  position: relative;
}
.heading::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.heading--campaign::before {
  background: url(../img/icon/campaign.svg) no-repeat center center/contain;
}

.heading__english {
  font-family: "Courgette", cursive;
  font-size: 20px;
  font-weight: 400;
}

.heading__japanese {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-color: #ffee56;
  text-underline-offset: 10px;
  text-decoration-thickness: 8px;
}
@media screen and (min-width: 900px) {
  .heading__japanese {
    font-size: 32px;
  }
}

.about-top__sub-heading {
  margin-top: 45px;
  font-weight: 700;
}

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

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

.about-top__text-wrap {
  margin-top: 32px;
}

.about-top__text:not(:first-child) {
  margin-top: 1.7em;
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.about-top__emphasis-text {
  margin-top: 44px;
  display: inline-block;
}

.about-top__button {
  margin-top: 44px;
}

.about__bottom {
  margin-top: 167px;
}

.about__decoration-english {
  text-align: center;
  z-index: 2;
  position: relative;
}

.swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .swiper-slide {
    border-radius: 24px;
  }
}

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

.how-to-entry__inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

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

.how-to-entry__decoration-map {
  width: 150px;
  top: 16px;
  right: calc(50% + 80px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-map {
    width: 460px;
    top: -64px;
    right: calc(50% + 250px);
  }
}

.how-to-entry__decoration-cats {
  width: 160px;
  top: 20px;
  left: calc(50% + 80px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-cats {
    width: 364px;
    top: -30px;
    left: calc(50% + 300px);
  }
}

.how-to-entry__decoration-pawpads-right {
  width: 55px;
  top: 110px;
  left: calc(50% + 130px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads-right {
    width: 100px;
    top: 120px;
    left: calc(50% + 660px);
  }
}

.how-to-entry__decoration-pawpads-left {
  width: 55px;
  bottom: 720px;
  right: calc(50% + 130px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-pawpads-left {
    width: 100px;
    bottom: 0px;
    right: calc(50% + 630px);
  }
}

.heading--camera::before {
  background: url(../img/icon/camera.svg) no-repeat center center/contain;
}

.how-to-entry__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
}
@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;
    margin-top: 40px;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}

.how-to-entry__step {
  width: 320px;
  position: relative;
  margin-top: 50px;
}
.how-to-entry__step:nth-child(1)::before, .how-to-entry__step:nth-child(2)::before {
  position: absolute;
  content: "";
  background: url(../img/icon/step_line.svg) no-repeat center center/contain;
  bottom: -40px;
  left: 50%;
  width: 34px;
  height: 7px;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 900px) {
  .how-to-entry__step {
    margin-top: 0;
  }
  .how-to-entry__step:nth-child(1)::before, .how-to-entry__step:nth-child(2)::before {
    width: 113px;
    height: 24px;
    top: 220px;
    left: 83%;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .how-to-entry__step:nth-child(1):nth-child(2)::before, .how-to-entry__step:nth-child(2):nth-child(2)::before {
    top: 152px;
    right: -60px;
  }
  .how-to-entry__step:nth-child(2) {
    margin-top: 68px;
  }
}

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

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

.step-box__heading {
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .step-box__heading {
    font-size: 2rem;
  }
}

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

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

.follow-button {
  background-color: #fff;
  font-weight: 700;
  padding: 8px 12px 8px 40px;
  position: relative;
}
.follow-button::before {
  position: absolute;
  content: "";
  background: url(../img/icon/instagram.svg) center center/contain;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.how-to-entry__button {
  text-align: center;
  margin-top: 48px;
}

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

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

.prizes__contents {
  position: relative;
  padding-inline: 30px;
  padding-top: 30px;
  padding-bottom: 66px;
  z-index: 2;
}
.prizes__contents::before {
  position: absolute;
  content: "";
  background: url(../img/icon/deco_prizes1.svg) no-repeat center center/contain;
  height: 148px;
  width: 366px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prizes__contents::after {
  position: absolute;
  content: "";
  background-color: #fff;
  height: calc(100% - 148px);
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 24px;
}

.prizes__decoration-tiangle-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-tiangle-left {
    position: absolute;
    top: 30px;
    left: 0;
  }
}

.prizes__decoration-tiangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-tiangle-right {
    position: absolute;
    top: 30px;
    right: 0;
  }
}

.heading--prizes::before {
  background: url(../img/icon/prizes.svg) no-repeat center center/contain;
}

.prizes__text {
  margin-top: 40px;
  text-align: center;
}

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

.prizes__card {
  width: calc(50% - 7.5px);
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 100%;
  }
  .prizes__card:hover .prizes-card__image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__card:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .prizes__card:nth-child(2) {
    grid-area: 1/4/2/7;
  }
  .prizes__card:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .prizes__card:nth-child(4) {
    grid-area: 2/3/3/5;
  }
  .prizes__card:nth-child(5) {
    grid-area: 2/5/3/7;
  }
}

.prizes-card {
  position: relative;
}

.prizes-card--large .prizes-card__number {
  width: 48px;
  top: -25px;
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__number {
    width: 100px;
    top: -50px;
  }
}
.prizes-card--large .prizes-card__heading {
  min-height: 120px;
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .prizes-card--large .prizes-card__heading {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__heading {
    font-size: 2rem;
  }
}
.prizes-card--large .prizes-card__button {
  width: 36px;
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__button {
    width: 100px;
  }
}

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

.prizes-card__inner {
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes-card__inner {
    border-radius: 24px;
  }
}

.prizes-card__image {
  overflow: hidden;
}
.prizes-card__image img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.prizes-card__heading {
  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;
  min-height: 80px;
  font-weight: 700;
  background-color: #f5f5f5;
}

.prizes-card__button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
}
@media screen and (min-width: 900px) {
  .prizes-card__button {
    width: 64px;
  }
}

.prizes-modal {
  max-width: 336px;
  padding: 0;
  padding-bottom: 20px;
  text-align: center;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    max-width: 480px;
    padding-bottom: 60px;
  }
}
.prizes-modal::-ms-backdrop {
  background-color: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background-color: #000;
  opacity: 0.7;
}
.prizes-modal figure figcaption {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal figure figcaption {
    padding-inline: 32px;
  }
}

.prizes-modal__image {
  max-width: 480px;
  max-height: 300px;
  overflow: hidden;
}
.prizes-modal__image img {
  width: 100%;
}

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

.prizes-modal__text {
  margin-top: 12px;
  font-size: 1.2rem;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 1.6rem;
  }
}

.prizes-modal__button {
  margin-top: 24px;
}

.prizes__button {
  margin-top: 51px;
  text-align: center;
  width: calc(100% + 100px);
  margin-inline: -50px;
}

.prizes__cover-background {
  max-width: 100%;
}
.prizes__cover-background img {
  width: 100%;
}

/* ======================================================
spots
======================================================= */
/*============================
#spots.spots
============================*/
.spots {
  position: relative;
  margin-top: -120px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.spots::before {
  position: absolute;
  content: "";
  background: url(../img/icon/wave_top.svg) repeat center center/contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 45.7px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    height: 120px;
  }
}
.spots::after {
  position: absolute;
  content: "";
  background: url(../img/icon/wabe_bottom.svg) repeat center center/contain;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45.7px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    height: 120px;
  }
}

.spots__decoration-pawpads {
  position: absolute;
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__decoration-pawpads {
    bottom: 150px;
    right: calc(50% + 630px);
  }
}

.spots__outer {
  background-color: #67b0c7;
}

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

.spots__heading-wrap {
  text-align: center;
}

.spots__heading {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  display: inline-block;
  font-family: "Kiwi Maru", serif;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    font-size: 4rem;
    padding-top: 60px;
  }
}
.spots__heading::before {
  position: absolute;
  content: "";
  background: url(../img/icon/star.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .spots__heading::before {
    width: 50px;
    height: 50px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

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

.spots-swiper__slide {
  background-color: #fff;
  height: auto;
}

.spots-card figure figcaption {
  padding: 24px 32px 40px;
}

.spots-card__image img {
  width: 100%;
}

.spots-card__heading {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.spots-card__text {
  margin-top: 24px;
  text-align: justify;
}

.spots__inner {
  max-width: 1084px;
  margin: 0 auto;
  padding-inline: 30px;
}

.spots__arrows {
  position: relative;
}

@media screen and (min-width: 900px) {
  .spots-swiper-arrows__prev,
  .spots-swiper-arrows__next {
    position: absolute;
    content: "";
    top: -120px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
  }
}

.spots-swiper-arrows__prev {
  background: url(../img/icon/arrow_prev.svg) no-repeat center center/contain;
  left: 70px;
}

.spots-swiper-arrows__next {
  background: url(../img/icon/arrow_next.svg) no-repeat center center/contain;
  right: 70px;
}

.spots__bottom {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 64px;
  }
}

.spots__decoration-english {
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spots__decoration-english {
    width: 495px;
  }
}

.spots__text-wrap {
  text-align: center;
}

.spots__text {
  color: #fff;
  margin-top: 16px;
}

.spots__button {
  margin-top: 24px;
  width: calc(100% + 100px);
  margin-inline: -50px;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-top: 34px;
  }
}

/* ======================================================
Q&A
======================================================= */
.qa {
  margin-top: 40.29px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 120px;
  }
}

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

.heading--bubble::before {
  background: url(../img/icon/faq.svg) no-repeat center center/contain;
}

.qa__boxes {
  margin-top: 50px;
}

.qa-box {
  border-radius: 16px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
.qa-box:not(:first-child) {
  margin-top: 24px;
}

.qa-box__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 16px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    padding: 16px 24px;
  }
}
.qa-box__heading.is-active .qa-box__heading-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa-box__heading-icon,
.qa-box__answer-icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-icon,
  .qa-box__answer-icon {
    font-size: 3.2rem;
  }
}

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

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

.qa-box__body {
  display: none;
}

.qa-box__answer {
  padding: 12px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
  background-color: #f5f5f5;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .qa-box__answer {
    padding: 16px 24px;
  }
}

/* ======================================================
entry-requirements
======================================================= */
/*============================
#entry-requirements.entry-requirements
============================*/
.entry-requirements {
  margin-top: 30.67px;
}
@media screen and (min-width: 900px) {
  .entry-requirements {
    margin-top: 120px;
  }
}

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

.entry-requirements__contents {
  background-color: rgba(255, 255, 255, 0.5);
  border: 8px solid #fff;
  padding: 24px 16px 40px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding: 40px 40px;
  }
}

.heading.heading--note::before {
  background: url(../img/icon/note.svg) no-repeat center center/contain;
}

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

.entry-requirements-table {
  margin-top: 50px;
}

.entry-requirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -moz-text-align-last: left;
       text-align-last: left;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.entry-requirements-table__row:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.entry-requirements-table__header {
  width: 188px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 20px;
  position: relative;
}
.entry-requirements-table__header::before {
  position: absolute;
  content: "";
  background-color: #67b0c7;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.entry-requirements-table__data {
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data {
    width: calc(100% - 224px);
  }
}
.entry-requirements-table__data ul li {
  padding-left: 1.5em;
  position: relative;
}
.entry-requirements-table__data ul li::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: 0.2rem;
}

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

/* ======================================================
contact
======================================================= */
.contact {
  padding-block: 40px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 120px;
  }
}

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

.heading--mail::before {
  background: url(../img/icon/mail.svg) no-repeat center center/contain;
}

.contact__text {
  text-align: center;
  margin-top: 32px;
}

.contact__form {
  margin-top: 40px;
}

.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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.form-field:not(:first-child) {
  margin-top: 24px;
}

.form-field__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 180px;
  font-weight: 700;
}

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

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

input,
select,
textarea {
  background-color: #f5f5f5;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
}
input:focus,
select:focus,
textarea:focus {
  outline: #67b0c7 auto 1px;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #ccc;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ccc;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ccc;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #ccc;
}

textarea {
  height: 160px;
}

.form-select {
  background-image: url(../img/icon/select__arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 18.65px, center center;
  cursor: pointer;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: 56px;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:hover + .form-radio__text::before {
  outline: #67b0c7 auto 1px;
}

.form-radio__text {
  padding-left: 32px;
  cursor: pointer;
  position: relative;
}
.form-radio__text::before {
  position: absolute;
  content: "";
  background-color: #f5f5f5;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::after {
  position: absolute;
  content: "";
  background-color: #67b0c7;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}

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

.form-checkbox {
  cursor: pointer;
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
}
.form-checkbox__text::before {
  position: absolute;
  content: "";
  background-color: #f5f5f5;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 4px;
}
.form-checkbox__text::after {
  position: absolute;
  content: "";
  background: url(../img/icon/checked.svg) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

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

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

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

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

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

.sns-links__title {
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .sns-links__title {
    font-size: 2.4rem;
  }
}
.sns-links__title::before {
  content: "\\ ";
}
.sns-links__title::after {
  content: " /";
}

.sns-links__nav {
  margin-top: 24px;
}

.sns-button:not(:first-child) {
  margin-left: 40px;
}

.footer__decoration-english {
  text-align: center;
  margin-top: 30px;
}

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

.address-wrap {
  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;
  border-radius: 16px;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

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

.address-wrap__body {
  margin: 0 auto;
  padding: 24px;
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    padding: 10px;
  }
}

.address-wrap__logo {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .address-wrap__logo {
    width: 183px;
  }
}

.address-wrap__info {
  margin-top: 24px;
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 600px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}
.address-wrap__info-row:not(:first-child) {
  margin-top: 12px;
}

.address-wrap__info-term {
  width: 90px;
  padding-left: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.address-wrap__info-term::before {
  position: absolute;
  content: "";
  background-color: #67b0c7;
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.footer__pagetop {
  width: 75px;
  height: 75px;
  margin: 24px auto 0;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed;
    z-index: 30;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 100px;
    margin: 0;
  }
}

.footer__bottom {
  background-color: #67b0c7;
  color: #fff;
  text-align: center;
  margin-top: 70px;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 240px;
    padding-bottom: 32px;
  }
}
.footer__bottom::before {
  position: absolute;
  content: "";
  background: url(../img/icon/wave_top.svg) repeat center center/contain;
  top: -40px;
  left: 0;
  width: 100%;
  height: 45.7px;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    height: 120px;
    top: -120px;
  }
}