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

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.inner {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .inner {
    max-width: 460px;
  }
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1024px;
  }
}

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

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

.inline-block {
  display: inline-block;
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.section__title-icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 1200px) {
  .section__title-icon {
    width: 48px;
    height: 48px;
  }
}
.section__title-icon img {
  width: 100%;
  display: block;
}

.section__title-en {
  font-family: "Courgette";
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .section__title-en {
    font-size: 20px;
    margin-top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title-en {
    margin-top: 3px;
  }
}

.section__title-ja {
  font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  display: inline-block;
  padding-bottom: 12px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .section__title-ja {
    padding-bottom: 7px;
  }
}
@media screen and (min-width: 900px) {
  .section__title-ja {
    font-size: 32px;
    margin-top: 8px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title-ja {
    margin-top: 3px;
  }
}
.section__title-ja::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 0px;
  left: 0;
  background: #ffee56;
}
@media screen and (min-width: 900px) {
  .section__title-ja::after {
    height: 8px;
    bottom: -6px;
  }
}
@media screen and (min-width: 1200px) {
  .section__title-ja::after {
    bottom: -5px;
  }
}

.button {
  display: inline-block;
  padding: 4px 22px 7px 22px;
  text-align: center;
  border: 2px solid #4a3636;
  box-shadow: 0px 4px 0px 0px #4a3636;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.7s;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    border: 3px solid #4a3636;
    padding: 8px 37px 10px 38px;
  }
}
.button.sm-button {
  padding: 4px 22px 6px 22px;
  font-size: 14px;
}
.button.md-button {
  padding: 2px 22px 3px 22px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .button.md-button {
    padding: 4px 22px 6px 22px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .button.submit-button {
    font-size: 16px;
    padding: 5px 35px 4px 35px;
  }
}
.button:focus, .button:hover {
  background-color: #ffee56;
}

.button-sm {
  width: 132px;
  padding: 2px 22px 4px;
}

.button-md {
  width: 146px;
}

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

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

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

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

.header__link-button {
  margin-left: 4px;
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-child(1) {
  width: 25.6px;
  top: 0px;
}
.is-checked .drawer-icon__bar:nth-child(1) {
  width: 32px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.drawer-icon__bar-dot {
  position: absolute;
  top: 0;
  left: 27.2px;
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
  transition: top 0.4s, transform 0.4s;
}
.is-checked .drawer-icon__bar-dot {
  width: 0;
}

.drawer-content {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 40;
  display: none;
  width: 100%;
  height: calc(100% - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  background: #fff;
}
.drawer-content.is-checked {
  display: flex;
}

.drawer-content__menu {
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.drawer-content__link {
  display: block;
  padding-block: 20px;
  font-size: 14px;
  line-height: 1.6;
}

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

.fv {
  margin-top: 64px;
}

.fv__bg {
  background: url(../img/sp/fv__bg-sp.png) no-repeat center center/cover;
  padding-top: 17px;
  height: 554px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
@media screen and (min-width: 900px) {
  .fv__bg {
    background-image: url(../img/fv__bg.png);
    background-position: center bottom;
    padding-top: 34px;
    height: 740px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}

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

.fv__description {
  font-family: Kiwi Maru;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }
}

.fv__lead {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__lead {
    margin-top: 24px;
  }
}
@media screen and (min-width: 900px) {
  .fv__lead img {
    width: 520px;
  }
}

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

.fv__smart-phone {
  width: 200px;
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv__smart-phone {
    width: 250px;
    bottom: 60px;
  }
}

.fv__message-en {
  position: absolute;
  top: 8px;
  left: 0;
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv__message-en {
    top: 0;
    left: -38px;
    width: 244px;
  }
}
.fv__text-red {
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__text-red {
    top: 17px;
    right: 53px;
  }
}
.fv__text-red img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv__text-red img {
    width: 180px;
  }
}

.fv__sweet-coffee {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__sweet-coffee {
    bottom: 43px;
    left: -75px;
  }
}
.fv__sweet-coffee img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .fv__sweet-coffee img {
    width: 212px;
  }
}

.fv__cat1 {
  position: absolute;
  width: 62px;
  bottom: 58px;
  right: 0;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__cat1 {
    width: 170px;
    bottom: 105px;
    right: -10px;
  }
}

.fv__cat2 {
  position: absolute;
  width: 98px;
  bottom: 0;
  right: 9px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__cat2 {
    width: 233px;
    right: -73px;
  }
}

.smart-phone__image {
  position: relative;
}

.smart-phone-decoration {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  border-radius: 12.8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .smart-phone-decoration {
    top: 152.5px;
    width: 200px;
  }
}

.smart-phone-decoration__head {
  padding: 6px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  font-feature-settings: "pref" on;
  text-align: center;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .smart-phone-decoration__head {
    padding: 8px 23px;
    font-size: 16px;
    line-height: 26px;
  }
}

.smart-phone-decoration__body {
  background: #fff;
  text-align: center;
  padding: 12.8px 14px 19.2px;
}
@media screen and (min-width: 900px) {
  .smart-phone-decoration__body {
    padding: 16px 12px 24px;
  }
}

.smart-phone-decoration__title {
  display: inline-block;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
  padding-bottom: 1px;
}
@media screen and (min-width: 900px) {
  .smart-phone-decoration__title {
    font-size: 14px;
  }
}

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

.smart-phone-decoration__button {
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .smart-phone-decoration__button {
    margin-top: 16.5px;
  }
}

.about {
  margin-top: 112px;
  padding-top: 77px;
  padding-bottom: 33px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 100px;
    padding-top: 75px;
    padding-bottom: 30px;
  }
}

.about__bg {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 900px) {
  .about__bg-left-striped-pattern {
    position: absolute;
    top: -20px;
    right: calc(50% + 280px);
    z-index: 4;
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-left-striped-pattern {
    right: calc(50% + 527px);
  }
}

.about__bg-left-picture {
  position: absolute;
  top: 395px;
  right: calc(50% + 127px);
  z-index: 5;
  overflow: auto;
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__bg-left-picture {
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-left-picture {
    top: 74px;
    right: calc(50% + 360px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-left-picture {
    right: calc(50% + 614px);
  }
}

.about__bg-left-staircase {
  position: absolute;
  width: 138px;
  top: 100%;
  left: 0;
  z-index: 4;
}
@media screen and (min-width: 600px) {
  .about__bg-left-staircase {
    width: 200px;
    top: calc(100% - 100px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-left-staircase {
    width: 427px;
    top: 300px;
    left: calc(50% - 577px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-left-staircase {
    top: 322px;
    left: calc(50% - 858px);
  }
}

.about__bg-right-pawpads {
  position: absolute;
  top: -10px;
  left: calc(50% + 132px);
  width: 54px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .about__bg-right-pawpads {
    left: calc(50% + 202px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-right-pawpads {
    width: 70px;
    top: -61px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-pawpads {
    width: 100px;
    top: -78px;
    left: calc(50% + 490px);
  }
}

.about__bg-right-picture {
  position: absolute;
  top: 273px;
  left: calc(50% + 127px);
  z-index: 5;
  overflow: auto;
  width: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__bg-right-picture {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-right-picture {
    top: 73px;
    left: calc(50% + 361px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-picture {
    left: calc(50% + 560px);
  }
}

@media screen and (min-width: 900px) {
  .about__bg-wavyline {
    position: absolute;
    bottom: 150px;
    left: calc(50% + 127px);
    z-index: 5;
    overflow: hidden;
    width: 845px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-wavyline {
    bottom: 195px;
    left: calc(50% + 141px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-wavyline {
    width: 873px;
    bottom: 174px;
    left: calc(50% + 448px);
  }
}

.about__bg-right-goods1 {
  position: absolute;
  bottom: -60px;
  left: calc(50% + 118px);
  width: 48px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .about__bg-right-goods1 {
    width: 80px;
    bottom: -68px;
    left: calc(50% + 280px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-right-goods1 {
    width: 101px;
    bottom: 126px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-goods1 {
    bottom: 126px;
    left: calc(50% + 505px);
  }
}

.about__bg-right-goods2 {
  position: absolute;
  bottom: -118px;
  left: calc(50% - 3px);
  width: 133px;
  overflow: hidden;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .about__bg-right-goods2 {
    width: 200px;
    bottom: -115px;
    left: calc(50% + 110px);
  }
}
@media screen and (min-width: 900px) {
  .about__bg-right-goods2 {
    width: 305px;
    bottom: -145px;
    left: calc(50% + 120px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right-goods2 {
    width: 308px;
    left: calc(50% + 374px);
    bottom: -79px;
  }
}

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

.about__box {
  background: #fff;
  border-radius: 24px;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}
.about__box::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 36px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #cce1e4;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__box::after {
    width: 140px;
    height: 50px;
  }
}
@media screen and (min-width: 600px) {
  .about__box {
    gap: 32px;
  }
}
@media screen and (min-width: 900px) {
  .about__box {
    border-radius: 40px;
    padding: 40px 20px 40px;
  }
}

.about__head {
  position: relative;
}

.about__head-left-img {
  transform: rotate(-8deg);
  position: absolute;
  top: -8.13px;
  right: calc(50% + 48px);
  width: 87.2px;
  border: 7.2px solid #f5f5f5;
}
@media screen and (min-width: 900px) {
  .about__head-left-img {
    top: 7px;
    right: calc(100% - 75px);
    width: 136px;
    border: 5.2px solid #f5f5f5;
  }
}
@media screen and (min-width: 1200px) {
  .about__head-left-img {
    top: 9px;
    right: calc(100% - 204px);
  }
}

.about__head-right-img {
  transform: rotate(8deg);
  position: absolute;
  top: -9px;
  left: calc(50% + 60px);
  width: 87.2px;
  border: 7.2px solid #f5f5f5;
}
@media screen and (min-width: 900px) {
  .about__head-right-img {
    top: 13px;
    left: calc(100% - 75px);
    width: 136px;
    border: 5.2px solid #f5f5f5;
  }
}
@media screen and (min-width: 1200px) {
  .about__head-right-img {
    top: 14px;
    left: calc(100% - 207px);
  }
}

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

.about__title {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .about__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__title {
    margin-top: 40px;
  }
}

.about__text {
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .about__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text a {
  text-decoration: underline;
}
.about__text + .about__text {
  margin-top: 1.55em;
}
@media screen and (min-width: 900px) {
  .about__text + .about__text {
    margin-top: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text + .about__text {
    margin-top: 1.7em;
  }
}

.about__text-emphasis {
  display: inline-block;
  font-size: 14px;
  border-bottom: 2px dashed #9ed0e0;
  padding-bottom: 4px;
  width: fit-content;
  margin-inline: auto;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .about__text-emphasis {
    font-size: 20px;
    margin-top: 44px;
    padding-bottom: 10px;
  }
}
.about__text-emphasis strong {
  display: inline-block;
}

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

.about__bottom {
  margin-top: 139px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 163px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__bottom-img {
  display: block;
  max-width: 100%;
  width: 355px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .about__bottom-img {
    width: 770px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bottom-img {
    width: 906px;
    padding-right: 9px;
    padding-left: 5px;
  }
}
.about__bottom-img img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .about__slider {
    position: relative;
    z-index: 15;
    bottom: 5px;
    left: 0;
  }
}

.about__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.about__slider-img {
  width: 100px !important;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__slider-img {
    width: 200px !important;
  }
}

.how-to-entry {
  margin-top: -43px;
  padding-top: 75px;
  padding-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-entry {
    margin-top: -10px;
    padding-top: 95px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry {
    margin-top: -13px;
  }
}

.how-to-entry__inner {
  width: 100%;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .how-to-entry__inner {
    max-width: 1064px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__inner {
    max-width: 1024px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.how-to-entry__bg {
  position: relative;
  z-index: 5;
}

.how-to-entry__bg-left-map {
  width: 149px;
  position: absolute;
  top: 0;
  right: calc(50% + 37px);
}
@media screen and (min-width: 600px) {
  .how-to-entry__bg-left-map {
    width: 175px;
    right: calc(50% + 74px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-left-map {
    width: 380px;
    top: -58px;
    right: calc(50% + 179px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-left-map {
    width: 460px;
    top: -60px;
    right: calc(50% + 260px);
  }
}

.how-to-entry__bg-left-pawpads2 {
  width: 55px;
  transform: scale(1, -1);
  position: absolute;
  top: 549px;
  right: calc(50% + 113px);
}
@media screen and (min-width: 600px) {
  .how-to-entry__bg-left-pawpads2 {
    top: 525px;
    right: calc(50% + 158px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-left-pawpads2 {
    width: 100px;
    bottom: 40px;
    right: calc(50% + 616px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-left-pawpads2 {
    bottom: 35px;
    right: calc(50% + 620px);
  }
}
.how-to-entry__bg-left-pawpads2 img {
  width: 100%;
}

.how-to-entry__bg-right-cat1 {
  width: 105px;
  position: absolute;
  top: 0;
  left: calc(50% + 58px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-right-cat1 {
    width: 240px;
    top: -27px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-right-cat1 {
    width: 238px;
    top: -27px;
    left: calc(50% + 286px);
  }
}

.how-to-entry__bg-right-cat2 {
  width: 94px;
  position: absolute;
  top: 5px;
  left: calc(50% + 125px);
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-right-cat2 {
    width: 215px;
    top: -17px;
    left: calc(50% + 350px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-right-cat2 {
    width: 214px;
    top: -15px;
    left: calc(50% + 435px);
  }
}

.how-to-entry__bg-right-pawpads {
  width: 55px;
  position: absolute;
  top: 73px;
  left: calc(50% + 111px);
  transform: scale(-1, 1);
}
@media screen and (min-width: 600px) {
  .how-to-entry__bg-right-pawpads {
    top: 68px;
    left: calc(50% + 175px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-right-pawpads {
    width: 70px;
    top: 151px;
    left: calc(50% + 380px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-right-pawpads {
    width: 100px;
    top: 149px;
    left: calc(50% + 620px);
  }
}

.how-to-entry__bg-left-pawpads3 {
  width: 55px;
  transform: scale(-1, -1);
  position: absolute;
  bottom: 362px;
  left: calc(50% + 112px);
}
@media screen and (min-width: 600px) {
  .how-to-entry__bg-left-pawpads3 {
    width: 52px;
    bottom: 356px;
    left: calc(50% + 177px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__bg-left-pawpads3 {
    width: 70px;
    transform: scale(1, -1);
    bottom: 40px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__bg-left-pawpads3 {
    display: none;
  }
}

.how-to-entry__content {
  position: relative;
  z-index: 10;
}

.how-to-entry__steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .how-to-entry__steps {
    margin-top: 39px;
    flex-direction: row;
    gap: 7px;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__steps {
    margin-top: 43px;
    gap: 32px;
  }
}

.how-to-entry__step {
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step {
    width: 33.3%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step {
    width: 320px;
  }
  .how-to-entry__step:nth-child(2)::after {
    right: -115px;
  }
}
.how-to-entry__step::after {
  position: absolute;
  content: "";
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/sp/how-to-entry-step-line_sp.svg) no-repeat center center/contain;
  width: 10px;
  height: 35px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step::after {
    background-image: url(../img/how-to-entry-step-line_pc.svg);
    width: 70px;
    height: 24px;
    top: 147px;
    left: unset;
    right: -64px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step::after {
    width: 113px;
    height: 24px;
    top: 206px;
    right: -102px;
  }
}
.how-to-entry__step:last-child::after {
  content: none;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step:nth-child(2) {
    padding-top: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__step:nth-child(2) {
    padding-top: 70px;
  }
}

.how-to-entry-step {
  text-align: center;
}

.how-to-entry-step__image {
  width: 195px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .how-to-entry-step__image {
    width: 246px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__image {
    width: 280px;
  }
}
.how-to-entry-step__image img {
  display: block;
}

.how-to-entry-step__title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__title {
    margin-top: 25px;
    font-size: 20px;
  }
}

.how-to-entry-step__text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .how-to-entry-step__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__text {
    font-size: 16px;
    margin-top: 17px;
  }
}
.how-to-entry-step__text a {
  text-decoration-line: underline;
}

.how-to-entry-step__sns {
  margin-top: 16px;
  background-color: #fff;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  width: fit-content;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__sns {
    margin-top: 18px;
  }
}

.how-to-entry-step__sns-link {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__sns-link {
    font-size: 16px;
  }
}

.how-to-entry-step__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-entry-step__button {
    margin-top: 47px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry-step__button {
    margin-top: 48px;
  }
}

.prizes {
  padding-top: 70px;
  margin-top: -55px;
  position: relative;
  padding-bottom: 269px;
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 105px;
    padding-bottom: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    padding-top: 160px;
    padding-bottom: 614px;
  }
}

.prizes__inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .prizes__inner {
    max-width: 700px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1024px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    max-width: 1024px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }
}

.prizes__bg {
  background: url(../img/sp/prizes-bg_sp.svg) no-repeat center center/cover;
  width: 238px;
  height: 83px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 21px;
}
@media screen and (min-width: 900px) {
  .prizes__bg {
    background-image: url(../img/prizes-bg_pc.svg);
    width: 372px;
    height: 148px;
    padding-top: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg {
    padding-top: 28px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__bg-left {
    position: absolute;
    top: 15px;
    left: 30px;
    width: 225px;
    margin-top: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 315px;
    margin-top: 28px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__bg__right {
    position: absolute;
    top: 15px;
    right: 30px;
    width: 225px;
    transform: rotateY(180deg);
    margin-top: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg__right {
    position: absolute;
    top: 0;
    right: 0;
    width: 315px;
    transform: rotateY(180deg);
    margin-top: 28px;
  }
}

.prizes__box {
  background: #fff;
  border-radius: 24px;
  padding-top: 61px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 34px;
}
@media screen and (min-width: 600px) {
  .prizes__box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box {
    padding-top: 66px;
    padding-bottom: 52px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box {
    padding-top: 66px;
    padding-bottom: 53px;
  }
}

.prizes__text {
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .prizes__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__text {
    font-size: 16px;
  }
}

.prizes__cards {
  margin-top: 47px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 39px 15px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .prizes__cards {
    gap: 39px 15px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 34px;
    grid-row-gap: 80px;
    justify-content: center;
    max-width: 912px;
  }
}

.prizes__card {
  position: relative;
  width: min(45%, 267px);
}
@media screen and (min-width: 600px) {
  .prizes__card {
    width: min(45%, 267px);
  }
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 100%;
  }
  .prizes__card:nth-child(1) {
    grid-area: 1/1/3/4;
  }
  .prizes__card:nth-child(2) {
    grid-area: 1/4/3/7;
  }
  .prizes__card:nth-child(3) {
    grid-area: 3/1/5/3;
    margin-left: -1px;
  }
  .prizes__card:nth-child(4) {
    grid-area: 3/3/5/5;
  }
  .prizes__card:nth-child(5) {
    grid-area: 3/5/5/7;
  }
}

.prizes-card {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .prizes-card {
    width: 100%;
  }
  .prizes-card:hover .prizes-card__image img {
    transform: scale(1.1);
  }
  .prizes-card:nth-child(3n) {
    grid-column-start: 1;
  }
}

@media screen and (min-width: 900px) {
  .card-big {
    width: 100%;
  }
}
.prizes-card__head {
  background: url(../img/prizes-staricon.svg) no-repeat center center/contain;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
}
@media screen and (min-width: 900px) {
  .prizes-card__head {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .card-small .prizes-card__head {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .card-small .prizes-card__head {
    width: 80px;
    height: 80px;
    top: -40px;
  }
}

.prizes-card__head-text {
  color: #fff;
  font-size: 7.68px;
  font-weight: 700;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .prizes-card__head-text {
    font-size: 14px;
  }
  .card-small .prizes-card__head-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head-text {
    font-size: 16px;
    margin-top: 1px;
  }
  .card-small .prizes-card__head-text {
    font-size: 12.8px;
  }
}

.prizes-card__head-numbar {
  color: #fff;
  font-family: "Josefin Sans";
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__head-numbar {
    font-size: 35px;
  }
  .card-small .prizes-card__head-numbar {
    font-size: 27.4px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head-numbar {
    font-size: 48px;
    margin-top: 1px;
  }
  .card-small .prizes-card__head-numbar {
    font-size: 38.4px;
  }
}

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

.prizes-card__image {
  width: 100%;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-card__image img {
    overflow: hidden;
    transition: transform 0.3s;
  }
}

.prizes-card__text {
  background-color: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes-card__text {
    font-size: 20px;
    min-height: 120px;
  }
  .card-small .prizes-card__text {
    font-size: 16px;
    min-height: 80px;
  }
}

.prizes-card__zoom {
  width: 37px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-card__zoom {
    width: 80px;
    border-bottom-right-radius: 24px;
  }
  .card-small .prizes-card__zoom {
    width: 50px;
    border-bottom-right-radius: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__zoom {
    width: 100px;
    border-bottom-right-radius: 24px;
  }
  .card-small .prizes-card__zoom {
    width: 64px;
  }
}

.prizes__button {
  margin-top: 19px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 41px;
  }
}

.prizes__bottom {
  margin-top: -44px;
  position: absolute;
  z-index: -1;
  bottom: 53px;
  left: -103px;
}
@media screen and (min-width: 600px) {
  .prizes__bottom {
    margin-top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bottom {
    bottom: -24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bottom img {
    object-position: center bottom;
    object-fit: cover;
    min-height: 600px;
  }
}

.prizes__bottom-image {
  object-position: center bottom;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.prizes__bottom-image img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 1200px) {
  .prizes__bottom-image img {
    min-width: 1512px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  overflow: auto;
  border: none;
  z-index: 30;
  overscroll-behavior-y: none;
  border-radius: 24px;
  padding: 0;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal__card {
  background: #fff;
  text-align: center;
  width: 336px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__card {
    width: 480px;
  }
}

.prizes-modal__body {
  padding: 39px 20px 56px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body {
    padding: 32px 40px 106px;
  }
}

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

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

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

.spots {
  background-color: #67b0c7;
  position: relative;
  padding-bottom: 19px;
  margin-bottom: 80px;
  padding-top: 3px;
  margin-top: -55px;
}
@media screen and (min-width: 1200px) {
  .spots {
    padding-bottom: 3px;
    padding-top: 0;
    margin-top: 0;
  }
}
.spots::before {
  content: "";
  background: url(../img/sp/spots-wave-top_sp.svg) repeat-x left -3px center/contain;
  position: absolute;
  width: 100%;
  height: 46px;
  top: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/spots-wave-top_pc.svg);
    height: 120px;
    top: -119px;
  }
}
@media screen and (min-width: 1200px) {
  .spots::before {
    top: -96px;
  }
}
.spots::after {
  content: "";
  background: url(../img/sp/spots-wave-bottom_sp.svg) repeat-x left -3px center/contain;
  position: absolute;
  width: 100%;
  height: 46px;
  bottom: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/spots-wave-bottom_pc.svg);
    height: 121px;
    bottom: -118px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__wrapper {
    padding-left: 244px;
  }
}

.spots__content {
  position: relative;
}
.spots__title {
  color: #fff;
  text-align: center;
  font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .spots__title {
    writing-mode: vertical-rl;
    font-size: 40px;
    position: absolute;
    top: 0;
    left: 20px;
    letter-spacing: 0.25em;
    margin-left: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title {
    font-size: 40px;
    left: 0;
    margin-left: -2px;
  }
}
.spots__title::before {
  content: "";
  background: url(../img/spots-icon.svg) no-repeat center center/contain;
  display: inline-block;
  width: 28px;
  height: 28px;
  transform: translateY(3px);
  margin-right: 8px;
}
@media screen and (min-width: 900px) {
  .spots__title::before {
    width: 56px;
    height: 56px;
    transform: translateX(5px);
    margin-bottom: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title::before {
    margin-right: 0px;
    margin-bottom: 13px;
    background-position: center right 4px;
  }
}

.spots__swiper {
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .spots__swiper {
    margin-top: 25px;
  }
}
@media screen and (min-width: 900px) {
  .spots__swiper {
    margin-left: 97px;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .spots__swiper {
    margin-left: 80px;
  }
}

.spots__cards {
  height: 402px;
}
@media screen and (min-width: 600px) {
  .spots__cards {
    height: 463px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 900px) {
  .spots__cards {
    height: 542px;
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__cards {
    margin-left: 8px;
  }
}

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

.spots-card__image img {
  display: block;
}

.spots-card__body {
  padding: 16px 24px;
}
@media screen and (min-width: 900px) {
  .spots-card__body {
    padding: 25px 32px;
  }
}

.spots-card__title {
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots-card__title {
    font-size: 20px;
  }
}

.spots-card__text {
  color: #4a3636;
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width: 600px) {
  .spots-card__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-card__text {
    margin-top: 25px;
  }
}

@media screen and (min-width: 900px) {
  .spots__inner {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    max-width: 1024px;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button__arrows {
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin-top: -15px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button__arrows {
    max-width: 891px;
    margin-top: -34px;
    margin-left: 40px;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-prev {
    position: static;
  }
  .swiper-button-prev::after {
    content: "";
    background: url(../img/swiper-prev-icon.svg) no-repeat center center/contain;
    display: inline-block;
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 900px) {
  .swiper-button-next {
    position: static;
  }
  .swiper-button-next::after {
    content: "";
    background: url(../img/swiper-prev-icon.svg) no-repeat center center/contain;
    display: inline-block;
    width: 80px;
    height: 80px;
    transform: scale(-1, 1);
  }
}

.spots__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    flex-direction: row;
    gap: 80px;
    margin-top: 75px;
  }
}

.spots__logo {
  text-align: center;
  margin-top: 1px;
}
.spots__logo img {
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spots__logo img {
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo img {
    width: 495px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__bottom-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.spots__bottom-text {
  color: #fff;
  font-size: 11.444px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .spots__bottom-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-text {
    font-size: 16px;
  }
}

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

.qa {
  padding-top: 70px;
  margin-top: -65px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .qa {
    padding-top: 158px;
    padding-bottom: 0;
    margin-top: 0;
  }
}

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

.qa__boxes {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__boxes {
    margin-top: 44px;
    gap: 24px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
.qa-box.is-open .qa-box__head-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.qa-box__head {
  display: flex;
  align-items: center;
  padding: 11px 14px 8px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px 20px 21px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head {
    padding: 21px 20px 20px;
  }
}

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

.qa-box__head-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-toggle {
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ed0e0;
  position: relative;
  text-align: right;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before {
  content: "";
  width: 10.182px;
  height: 1.455px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa-box__head-toggle::after {
  content: "";
  width: 10.182px;
  height: 1.455px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::after {
    width: 18.667px;
    height: 2.667px;
  }
}

.qa-box__body {
  background: #f5f5f5;
  padding: 18px 15px 13px;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 26px 23px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__body {
    padding: 26px 23px 22px;
  }
}

.qa-box__a {
  display: flex;
  gap: 15px;
  align-items: center;
}

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

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

.entry-requirements {
  padding-top: 33px;
}
@media screen and (min-width: 1200px) {
  .entry-requirements {
    margin-top: 85px;
  }
}

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

.entry-requirements__box {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 15px 13px 29px;
}
@media screen and (min-width: 1200px) {
  .entry-requirements__box {
    padding: 31px 48px 43px;
  }
}

.entry-requirements__content {
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .entry-requirements__content {
    margin-top: 31px;
  }
}
.entry-requirements__content a {
  text-decoration: underline;
}
.entry-requirements__content tbody {
  text-align: left;
}
.entry-requirements__content tbody tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
@media screen and (min-width: 900px) {
  .entry-requirements__content tbody tr {
    flex-direction: row;
    padding-bottom: 12px;
    padding-left: 12px;
    gap: 99px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-requirements__content tbody tr {
    padding-top: 13px;
    padding-left: 13px;
    padding-bottom: 10px;
    gap: 97px;
  }
}
.entry-requirements__content tbody tr + tr {
  border-top: 1px solid #cccccc;
}
.entry-requirements__content tbody tr:last-child {
  padding-bottom: 0;
}
.entry-requirements__content tbody th {
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .entry-requirements__content tbody th {
    width: 128px;
    flex-shrink: 0;
  }
}
.entry-requirements__content tbody th::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  top: 1em;
  left: 0;
  transform: translateY(-0.5em);
}
.entry-requirements__content tbody td ul li {
  padding-left: 18px;
  position: relative;
  line-height: 1.585;
}
@media screen and (min-width: 900px) {
  .entry-requirements__content tbody td ul li {
    line-height: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .entry-requirements__content tbody td ul li {
    padding-left: 24px;
  }
}
.entry-requirements__content tbody td ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a3636;
  position: absolute;
  top: 0.8em;
  left: 0.7em;
  transform: translate(-50%);
}
@media screen and (min-width: 1200px) {
  .entry-requirements__content tbody td ul li::before {
    width: 5px;
    height: 5px;
    top: 0.9em;
    left: 0.8em;
  }
}

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

.entry-requirements__text {
  font-size: 12px;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  .entry-requirements__text {
    font-size: 16px;
  }
}

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

.contact {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 44px;
  margin-top: -20px;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 116px;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-top: 118px;
    padding-bottom: 120px;
  }
}

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

.contact__content {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .contact__content {
    margin-top: 38px;
  }
}

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

.contact__form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__form {
    gap: 40px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 1200px) {
  .contact__fields {
    gap: 24px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 900px) {
  .form-field {
    flex-direction: row;
    gap: 40px;
  }
}

.form-filed__head {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .form-filed__head {
    gap: 12px;
    min-width: 180px;
    width: fit-content;
  }
}
.form-filed__head.top-alignment {
  align-items: flex-start;
}

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

.form-filed__tag {
  border-radius: 4px;
  background: #ce2073;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px 5px;
}

@media screen and (min-width: 900px) {
  .form-filed__item {
    width: 100%;
  }
}

.form-text {
  border-radius: 8px;
  background: #f5f5f5;
  border: 0 solid transparent;
  padding: 18px 16px;
  width: 100%;
  transition: border-color 0.3s;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding: 16px;
  }
}
.form-text:hover, .form-text:focus {
  border: 1px solid #9ed0e0;
  outline: none;
  background: #e9f6f8;
  color: #4a3636;
}
.form-text.error {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
.form-text.error:focus {
  border: 1px solid #ce2073;
}

.form-select {
  border-radius: 8px;
  border: 0 solid transparent;
  font-size: 14px;
  padding: 16px;
  appearance: none;
  width: 100%;
  background: url(../img/contact-arrow.svg) no-repeat center right 18px/14.899px 8.779px, linear-gradient(to right, #f5f5f5 calc(100% - 52px), #9ed0e0 50px);
  transition: border-color 0.3s;
  cursor: pointer;
}
.form-select:hover, .form-select:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-select.error {
  background: url(../img/contact-arrow.svg) no-repeat center right 18px/14.899px 8.779px, linear-gradient(to right, #fff0f7 calc(100% - 52px), #ce2073 50px);
  border: 1px solid #ce2073;
}
.form-select.error:focus {
  border: 1px solid #ce2073;
}

.form-filed__radios {
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .form-filed__radios {
    padding-top: 14px;
    padding-bottom: 15px;
  }
}

.form-filed__radio:hover .form-radio__text::before {
  border: 1px solid #9ed0e0;
}

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

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

.form-textarea {
  border-radius: 8px;
  background: #f5f5f5;
  border: 0 solid transparent;
  padding: 16px;
  width: 100%;
  height: 160px;
  transition: border-color 0.3s;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
  font-size: 14px;
}
.form-textarea:hover, .form-textarea:focus {
  border: 1px solid #9ed0e0;
  outline: none;
  background: #e9f6f8;
  color: #4a3636;
}
.form-textarea.error {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
.form-textarea.error:focus {
  border: 1px solid #ce2073;
}

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

.form-checkbox__text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  text-decoration: underline;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
  border-radius: 4px;
}
.error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
.error + .form-checkbox__text::before:focus {
  border: 1px solid #ce2073;
}
.form-checkbox__text::after {
  width: 16px;
  height: 11px;
  background: url(../img/contact-check.svg) no-repeat center center;
  left: 5px;
  opacity: 0;
}

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

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

.footer__title {
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__title {
    font-size: 24px;
  }
}

.footer__sns {
  margin-top: 25px;
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__sns {
    gap: 40px;
  }
}

@media screen and (min-width: 900px) {
  .footer__sns-item {
    width: 40px;
    height: 40px;
  }
}
.footer__sns-item img {
  width: 100%;
}

.footer__img {
  margin-top: 18px;
  width: 328px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2px;
}
@media screen and (min-width: 900px) {
  .footer__img {
    width: 742px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 42px;
  }
}
.footer__img img {
  width: 100%;
}

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

.address-wrap {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap {
    margin-top: 0;
  }
}

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

.address-wrap__body {
  background: #fff;
  padding-top: 23px;
  padding-left: 24px;
  padding-right: 25px;
  padding-bottom: 30px;
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  margin-top: -4px;
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    width: 50%;
    padding: 110px 60px 70px;
    text-align: left;
  }
}

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

.address-wrap__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__info {
    margin-top: 23px;
    margin-left: 0;
    gap: 13px;
  }
}

.address-wrap__info-row {
  display: flex;
  gap: 16px;
  font-style: normal;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-row {
    gap: 35px;
  }
}
.address-wrap__info-row dt {
  width: 67px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding-left: 19px;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-row dt {
    font-size: 16px;
    min-width: 83px;
    padding-left: 15px;
  }
}
.address-wrap__info-row dt::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  top: 1em;
  left: 0.3em;
  transform: translateY(-0.5em);
}
@media screen and (min-width: 900px) {
  .address-wrap__info-row dt::before {
    left: 0;
  }
}
.address-wrap__info-row dd {
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .address-wrap__info-row dd {
    font-size: 16px;
  }
}

.footer__pagetop {
  margin-top: 24px;
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 30;
  }
}
.pagetop img {
  width: min(20%, 75px);
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .pagetop img {
    width: 100px;
  }
}

.footer__copyright {
  margin-top: 68px;
  background: #67b0c7;
  text-align: center;
  color: #fff;
  position: relative;
  padding-bottom: 25px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 170px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 32px;
    margin-top: 235px;
  }
}
.footer__copyright::before {
  content: "";
  background: url(../img/sp/spots-wave-top_sp.svg) repeat-x left -3px center/contain;
  position: absolute;
  width: 100%;
  height: 46px;
  top: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .footer__copyright::before {
    background: url(../img/spots-wave-top_pc.svg);
    height: 120px;
    top: -119px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copyright::before {
    top: -116px;
  }
}/*# sourceMappingURL=style.css.map */