@charset "UTF-8";
body {
  font-family: "Noto Sans JP", serif;
  font-size: 12px;
  line-height: 160%;
  font-weight: 400;
  color: #4A3636;
  background-color: #E9F6F8;
  font-style: normal;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

.hidden__sp {
  display: none;
}
@media screen and (min-width: 600px) {
  .hidden__sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden__pc {
    display: none;
  }
}

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

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

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

.heading {
  display: block;
  gap: 6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
  }
}

.heading__icon {
  width: 37.333px;
  height: 37.333px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .heading__icon {
    width: 48px;
    height: 48px;
  }
}

.heading__title {
  margin-top: 7px;
  font-family: Courgette;
  font-size: 16px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .heading__title {
    font-size: 20px;
  }
}

.heading__text {
  margin-top: 5px;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 6px;
  border-bottom: 6px solid #FFEE56;
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .heading__text {
    margin-top: 8px;
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #FFEE56;
  }
}

.under-line {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.under-line:hover {
  color: #67B0C7;
}

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

.pagetop {
  display: block;
  margin-top: 24px;
  width: 78px;
  height: 78px;
  margin-right: auto;
  margin-left: auto;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 600px) {
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 104px;
    height: 104px;
  }
}
.pagetop img {
  width: 100%;
}

.header {
  position: fixed;
  height: 64px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-top: 18px;
  padding-bottom: 16px;
  background: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .header {
    padding-top: 14px;
  }
}

.header_inner {
  padding-right: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .header_inner {
    padding-right: 24px;
    padding-left: 24px;
    max-width: 1512px;
  }
}

.header__logo {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header__logo {
    width: 183px;
    margin-top: 4px;
  }
}
.header__logo img {
  width: 100%;
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 70;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checkd .drawer-icon__bar:nth-of-type(1) {
  display: none;
}
.drawer-icon.is-checkd .drawer-icon__bar:nth-of-type(2) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checkd .drawer-icon__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #4A3636;
  -webkit-transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: top 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out;
  transition: transform 0.3s ease-out, top 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.drawer-icon__bar:nth-of-type(1) .drawer-icon__bar-md {
  position: absolute;
  top: 0;
  width: 25.6px;
  border-radius: 6px;
  height: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #4A3636;
}
.drawer-icon__bar:nth-of-type(1) .drawer-icon__bar-sm {
  position: absolute;
  top: 0;
  left: 27.2px;
  width: 4.8px;
  height: 3px;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #4A3636;
}
.drawer-icon__bar:nth-of-type(2) {
  width: 32px;
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  width: 32px;
  top: 24px;
}

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

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

.header__button {
  margin-left: 4px;
}

.drawer-content {
  margin-top: 64px;
  width: 375px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  font-family: "Noto Sans JP", serif;
  background: #FFFFFF;
  z-index: 60;
  padding: 82px 114px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.drawer-content.is-checkd {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  text-align: center;
}

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

.drawer-content__link {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
}

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

.button {
  text-align: center;
  display: inline-block;
  padding: 7px 22px 8px 22px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.button:hover {
  background: #FFEE56;
}

/* 大きいボタン */
.button--large {
  padding: 11px 40px 11px 40px;
  padding: 20px 40px;
  font-size: 20px;
  border: 3px;
}

/* 小さいボタン */
.button--small {
  padding: 3px 23px 4px 23px;
  font-size: 14px;
}

.button--small2 {
  font-size: 14px;
  padding: 4px 22px 4px 22px;
}

.button--submit {
  padding: 7px 16px 7px 16px;
}
@media screen and (min-width: 768px) {
  .button--submit {
    padding: 4px 32px;
  }
}

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

.fv-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: calc(100% - 145px);
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}
@media screen and (min-width: 900px) {
  .fv-picture {
    height: calc(100% - 80px);
  }
}
.fv-picture img {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv__inner {
  max-width: 375px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 928px;
  }
}

.fv__text {
  text-align: center;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__title {
  margin-top: 21px;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
.fv__title img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__title {
    margin-top: 24px;
    max-width: 520px;
  }
}

.fv__content {
  margin-top: 113px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv__content {
    margin-top: 33px;
  }
}

.fv-smartphone__image {
  max-width: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__image {
    max-width: 250px;
  }
}
.fv-smartphone__image img {
  width: 100%;
}

.fv-smartphone__wrap {
  width: 160px;
  height: 154px;
  position: absolute;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 12.8px;
  background: var(--LP-White, #FFF);
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__wrap {
    width: 200px;
    height: 193px;
  }
}

.fv-smartphone__title {
  color: #FFFFFF;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  border-radius: 12.8px 12.8px 0 0;
  font-size: 12.8px;
  font-weight: 700;
  padding: 7.4px 9.6px 6.4px;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-smartphone__title {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.fv-smartphone__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4px;
  padding-top: 12.8px;
  padding-bottom: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__body {
    gap: 7px;
    padding-top: 14px;
  }
}

.fv-smartphone__sub-title {
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__sub-title {
    font-size: 14px;
  }
}
.fv-smartphone__sub-title::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 2.4px;
  bottom: -3.2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #CE2073;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__sub-title::before {
    height: 3px;
    width: 56px;
    bottom: -2px;
  }
}

.fv-smartphone__date {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-smartphone__date {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .fv-smartphone__button {
    margin-top: 2px;
  }
}
@media screen and (min-width: 900px) {
  .fv-smartphone__button .button {
    font-size: 16px;
    font-weight: 700;
    height: 40px;
    padding: 6px 23px 8px 23px;
  }
}

.fv-image__fukidashi {
  position: absolute;
  max-width: 142px;
  height: 80px;
  margin-right: 51.4666666667%;
  left: -1px;
  top: -95px;
}
@media screen and (min-width: 900px) {
  .fv-image__fukidashi {
    max-width: 244px;
    top: -32px;
    left: 37px;
  }
}
.fv-image__fukidashi img {
  width: 100%;
}

.fv-image__present {
  position: absolute;
  margin-left: 53.3333333333%;
  max-width: 110px;
  right: 25px;
  top: -103px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .fv-image__present {
    max-width: 180px;
    top: -16px;
    right: 127px;
  }
}
.fv-image__present img {
  width: 100%;
}

.fv-image__food {
  position: absolute;
  width: 90px;
  left: 0;
  top: 278px;
}
@media screen and (min-width: 900px) {
  .fv-image__food {
    width: 212px;
    top: 195px;
    left: 0;
  }
}
.fv-image__food img {
  width: 100%;
}

.fv-image__cat1 {
  position: absolute;
  width: 62px;
  right: 0;
  top: 292px;
}
@media screen and (min-width: 900px) {
  .fv-image__cat1 {
    width: 170px;
    right: 63px;
    top: 277px;
  }
}
.fv-image__cat1 img {
  width: 100%;
}

.fv-image__cat2 {
  position: absolute;
  width: 98px;
  right: 9px;
  top: 347px;
}
@media screen and (min-width: 900px) {
  .fv-image__cat2 {
    width: 233px;
    right: 0;
    top: 398px;
  }
}
.fv-image__cat2 img {
  width: 100%;
}

.about {
  padding-top: 44px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 98px;
  }
}

.about__inner {
  position: relative;
}

.about__content {
  position: relative;
  padding-top: 39px;
  padding-bottom: 40px;
  background: #FFFFFF;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 24px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__content {
    max-width: 510px;
  }
}
@media screen and (min-width: 900px) {
  .about__content {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    max-width: 848px;
    padding: 40px 40px 40px 40px;
    border-radius: 40px;
  }
}

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

.about__lead-sp {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 600px) {
  .about__lead-sp {
    display: none;
  }
}

.about__lead-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .about__lead-pc {
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
  }
}

.about__text {
  margin-top: 24px;
  line-height: 158%;
}
@media screen and (min-width: 900px) {
  .about__text {
    margin-top: 32px;
    font-size: 16px;
    line-height: 163%;
  }
}

.about__present {
  display: inline-block;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
  padding-block: 8px;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 900px) {
  .about__present {
    margin-top: 36px;
    font-size: 20px;
    padding-block: 12px;
  }
}

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

@media screen and (min-width: 900px) {
  .about-button {
    padding: 12px 38px 13px;
    font-size: 20px;
    font-weight: 700;
    border: 3px solid #4A3636;
  }
}

.about-image__pic1 {
  position: absolute;
  width: 87px;
  left: 33px;
  top: 31px;
}
@media screen and (min-width: 900px) {
  .about-image__pic1 {
    width: 146px;
    left: 86px;
    top: 40px;
  }
}

.about-image__pic2 {
  position: absolute;
  width: 88px;
  right: 20px;
  top: 29px;
}
@media screen and (min-width: 900px) {
  .about-image__pic2 {
    width: 146px;
    right: 84px;
    top: 47px;
  }
}

.about-image__right {
  position: absolute;
  width: 200px;
  top: 272px;
  right: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-image__right {
    width: 480px;
    top: 73px;
    right: -530px;
  }
}
@media screen and (min-width: 1200px) {
  .about-image__right {
    width: 480px;
    top: 73px;
    right: -616px;
  }
}

.about-image__left {
  position: absolute;
  width: 200px;
  top: 394px;
  left: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-image__left {
    width: 480px;
    left: -530px;
    top: 74px;
  }
}
@media screen and (min-width: 1200px) {
  .about-image__left {
    width: 480px;
    left: -671px;
    top: 74px;
  }
}

.about-image__nikukyuu {
  position: absolute;
  width: 54px;
  right: -20px;
  top: -11px;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .about-image__nikukyuu {
    width: 100px;
    right: -100px;
    top: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .about-image__nikukyuu {
    width: 100px;
    right: -166px;
    top: -80px;
  }
}

.about-image__arrow {
  width: 100px;
  position: absolute;
  left: 50%;
  bottom: -36px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about-image__arrow {
    width: 140px;
    bottom: -50px;
  }
}

.about-image__sakamichi {
  width: 138px;
  position: absolute;
  left: 0px;
  bottom: -216px;
  z-index: -2;
}
.about-image__sakamichi img {
  width: 100%;
}
@media screen and (min-width: 600px) {
  .about-image__sakamichi {
    width: 200px;
    bottom: -300px;
  }
}
@media screen and (min-width: 900px) {
  .about-image__sakamichi {
    width: 427px;
    left: -150px;
    top: 321px;
  }
}
@media screen and (min-width: 1200px) {
  .about-image__sakamichi {
    width: 427px;
    left: -308px;
    top: 321px;
  }
}

.about-image__books {
  width: 133px;
  position: absolute;
  right: 37px;
  bottom: -119px;
}
@media screen and (min-width: 900px) {
  .about-image__books {
    width: 308px;
    right: -258px;
    bottom: -79px;
    z-index: -1;
  }
}

.about-image__goods {
  width: 48px;
  position: absolute;
  right: 1px;
  bottom: -60px;
}
@media screen and (min-width: 900px) {
  .about-image__goods {
    width: 101px;
    right: -182px;
    bottom: 127px;
  }
}

.about-image__onomichi {
  position: absolute;
  width: 355px;
  position: absolute;
  bottom: -178px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about-image__onomichi {
    width: 890px;
    bottom: -263px;
  }
}

.about-image__wave1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-image__wave1 {
    display: block;
    position: absolute;
    width: 806px;
    right: -897px;
    bottom: 206px;
    z-index: -10;
  }
}

.about-image__wave2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-image__wave2 {
    display: block;
    position: absolute;
    width: 806px;
    right: -830px;
    bottom: 173px;
    z-index: -10;
  }
}

.about-image__hatching {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-image__hatching {
    display: block;
    position: absolute;
    width: 250px;
    left: -353px;
    top: -21px;
    z-index: -10;
  }
}

.about__swiper {
  margin-top: 177px;
}
@media screen and (min-width: 900px) {
  .about__swiper {
    margin-top: 258px;
  }
}

.about-swiper {
  overflow: hidden;
}

.about-swiper__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about-swiper__slide {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: auto;
  margin-right: 10px;
}
.about-swiper__slide img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about-swiper__slide {
    width: 200px;
    margin-right: 20px;
  }
}

.how-to-enter {
  margin-top: 33px;
  padding-top: 32px;
  padding-bottom: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-top: 88px;
  }
}

.how-to-enter__inner {
  padding-inline: clamp(0.125rem, -4.375rem + 24vw, 1.25rem);
}

.how-to-enter__content {
  margin-top: 32px;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .how-to-enter__content {
    max-width: 480px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__content {
    max-width: 720px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__content {
    max-width: 848px;
    margin-top: 41px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__content {
    max-width: 1024px;
  }
}

.how-to-enter__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    gap: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__steps {
    gap: 35px;
  }
}

.how-to-enter-step {
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-to-enter-step {
    max-width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 300px;
  }
}
.how-to-enter-step:nth-of-type(1)::after {
  content: "";
  position: absolute;
  background: url(../img/device=SP.png) no-repeat center center/contain;
  width: 7px;
  height: 34px;
  margin-top: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .how-to-enter-step:nth-of-type(1)::after {
    background: url(../img/device=PC.png) no-repeat center center/contain;
    width: 60px;
    right: -24px;
    top: 142px;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(1)::after {
    width: 113px;
    right: -49px;
    top: 142px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step:nth-of-type(1)::after {
    top: 183px;
  }
}
.how-to-enter-step:nth-of-type(2)::after {
  content: "";
  position: absolute;
  background: url(../img/device=SP.png) no-repeat center center/cover;
  width: 7px;
  height: 34px;
  margin-top: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .how-to-enter-step:nth-of-type(2)::after {
    background: url(../img/device=PC.png) no-repeat center center/contain;
    width: 60px;
    right: -35px;
    top: 70px;
    left: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter-step:nth-of-type(2)::after {
    width: 113px;
    height: 24px;
    right: -58px;
    top: 67px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step:nth-of-type(2)::after {
    top: 114px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter-step:nth-of-type(2) {
    margin-top: 68px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step {
    max-width: 320px;
  }
}

.how-to-enter-step__img {
  width: 196px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter-step__img {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step__img {
    width: 280px;
  }
}
.how-to-enter-step__img img {
  width: 100%;
}

.how-to-enter-step__lead {
  font-size: 16px;
  font-weight: 700;
  margin-top: 19px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step__lead {
    font-size: 20px;
    margin-top: 26px;
  }
}

.how-to-enter-step__text {
  margin-top: 19px;
}
@media screen and (min-width: 900px) {
  .how-to-enter-step__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step__text {
    font-size: 16px;
  }
}

.how-to-enter__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.how-to-enter-step__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  background: var(--LP-White, #FFF);
}
@media screen and (min-width: 900px) {
  .how-to-enter-step__link {
    margin-top: 17px;
  }
}
.how-to-enter-step__link img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step__link img {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter-step__link-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to-enter-step__link-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter-step__link-text {
    font-size: 16px;
  }
}

.how-to-enter__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 50px;
  }
}
.how-to-enter__button a {
  padding-block: 8px;
  padding-inline: clamp(0.25rem, -4.75rem + 26.67vw, 1.375rem);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button a {
    height: 56px;
    padding: 11px 38px 11px 38px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 40px;
    border: 3px 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;
    font-size: 20px;
  }
}

.how-to-enter__image-cat3 {
  position: absolute;
  width: 94px;
  top: -133px;
  right: -52px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__image-cat3 {
    width: 214px;
    top: -203px;
    right: -139px;
  }
}

.how-to-enter__image-cat4 {
  position: absolute;
  width: 105px;
  top: -138px;
  right: 4px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter__image-cat4 {
    width: 238px;
    top: -213px;
    right: -13px;
  }
}

.how-to-enter__image-map {
  position: absolute;
  max-width: 149px;
  top: -138px;
  left: -20px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter__image-map {
    max-width: 460px;
    left: -208px;
    top: -246px;
  }
}

.how-to-enter-step__img-nikukyuu1 {
  position: absolute;
  width: 55px;
  top: -64px;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter-step__img-nikukyuu1 {
    width: 100px;
    right: -912px;
    top: -38px;
  }
}

.how-to-enter-step__img-nikukyuu2 {
  position: absolute;
  width: 55px;
  top: -17px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter-step__img-nikukyuu2 {
    width: 100px;
    left: -562px;
    top: 325px;
  }
}

.how-to-enter-step__img-nikukyuu3 {
  position: absolute;
  width: 55px;
  top: -82px;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter-step__img-nikukyuu3 {
    display: none;
  }
}

.prizes {
  margin-top: 117px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 17.8571428571vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    margin-top: 270px;
  }
}

.prizes__wrap {
  max-width: 375px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 24px;
  padding: 59px 0 36px;
  background: #FFFFFF;
  position: relative;
}
@media screen and (min-width: 600px) {
  .prizes__wrap {
    max-width: 510px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__wrap {
    padding-top: 65px;
    padding-bottom: 53px;
    max-width: 67.7248677249vw;
    position: relative;
  }
  .prizes__wrap::before {
    content: "";
    position: absolute;
    background: url(../img/pattern-left.png) no-repeat center center/cover;
    width: 20.8333333333vw;
    height: 5.6878306878vw;
    top: -8.0026455026vw;
    left: 0;
  }
  .prizes__wrap::after {
    content: "";
    position: absolute;
    background: url(../img/pattern-right.png) no-repeat center center/cover;
    width: 20.8333333333vw;
    height: 5.6878306878vw;
    top: -8.0026455026vw;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__wrap {
    max-width: 1024px;
  }
  .prizes__wrap::before {
    content: "";
    position: absolute;
    background: url(../img/pattern-left.png) no-repeat center center/cover;
    width: 315px;
    height: 86px;
    top: -121px;
    left: 0;
  }
  .prizes__wrap::after {
    content: "";
    position: absolute;
    background: url(../img/pattern-right.png) no-repeat center center/cover;
    width: 315px;
    height: 86px;
    top: -121px;
    right: 0;
  }
}

.prizes__inner {
  padding-inline: clamp(0.125rem, -4.375rem + 24vw, 1.25rem);
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1104px;
    margin-left: auto;
    margin-right: auto;
  }
}

.prizes__title {
  position: absolute;
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .prizes__title {
    top: -8.0026455026vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__title {
    top: -121px;
  }
}
.prizes__title::after {
  content: "";
  background: url(../img/Prizes-bg-sp.png) no-repeat center center/cover;
  position: absolute;
  width: 237.6px;
  height: 83px;
  top: -18px;
  left: 53%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__title::after {
    background: url(../img/Prizes-bg-pc.png) no-repeat center center/cover;
    width: 24.1814814815vw;
    height: 9.8523148148vw;
    position: absolute;
    top: -1.8518518519vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__title::after {
    width: 365.624px;
    height: 148.967px;
    position: absolute;
    top: -28px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.prizes__content {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    margin-inline: auto;
    width: 60.3174603175vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__content {
    width: 912px;
  }
}

.prizes__cards {
  margin-top: 48px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 38px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 81px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 30.4232804233vw 21.164021164vw;
    row-gap: 5.3571428571vw;
    -webkit-column-gap: 2.3148148148vw;
       -moz-column-gap: 2.3148148148vw;
            column-gap: 2.3148148148vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__cards {
    grid-template-rows: 460px 320px;
    row-gap: 81px;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}

.prizes-card {
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes-card:hover .prizes-card__body, .prizes-card:focus .prizes-card__body {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 4px solid #9ED0E0;
    background-image: linear-gradient(-45deg, #9ED0E0 2.7116402116vw, transparent 0);
  }
  .prizes-card:hover .prizes-card__body-lg, .prizes-card:focus .prizes-card__body-lg {
    background-image: linear-gradient(-45deg, #9ED0E0 4.3650793651vw, transparent 0);
    border-radius: 24px;
  }
  .prizes-card:hover .prizes-card__image, .prizes-card:focus .prizes-card__image {
    height: 15.6084656085vw;
  }
  .prizes-card:hover .prizes-card__image-lg, .prizes-card:focus .prizes-card__image-lg {
    height: 22.2222222222vw;
  }
  .prizes-card:hover .prizes-card__image img, .prizes-card:focus .prizes-card__image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes-card:hover .prizes-card__text, .prizes-card:focus .prizes-card__text {
    padding-top: 12px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card:hover .prizes-card__body, .prizes-card:focus .prizes-card__body {
    border: 4px solid #9ED0E0;
    background-image: linear-gradient(-45deg, #9ED0E0 41px, transparent 0);
  }
  .prizes-card:hover .prizes-card__body-lg, .prizes-card:focus .prizes-card__body-lg {
    background-image: linear-gradient(-45deg, #9ED0E0 66px, transparent 0);
    border-radius: 24px;
  }
  .prizes-card:hover .prizes-card__image, .prizes-card:focus .prizes-card__image {
    height: 236px;
  }
  .prizes-card:hover .prizes-card__image-lg, .prizes-card:focus .prizes-card__image-lg {
    height: 336px;
  }
  .prizes-card:hover .prizes-card__image img, .prizes-card:focus .prizes-card__image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(2) {
    grid-column: 4/7;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(4) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
.prizes-card:nth-of-type(5) {
  grid-column: 1/-1; /* 最後の要素をグリッドの全幅に広げる */
  justify-self: center;
  width: 47.7611940299%;
}
@media screen and (min-width: 900px) {
  .prizes-card:nth-of-type(5) {
    grid-column: 5/7;
    grid-row: 2/3;
    width: 100%;
  }
}

.prizes-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 2px;
  z-index: 50;
}
@media screen and (min-width: 900px) {
  .prizes-card__head {
    top: -2.7116402116vw;
    padding-top: 0.5687830688vw;
  }
  .prizes-card__head-lg {
    padding-top: 0.7671957672vw;
    top: -3.1746031746vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head {
    top: -41px;
    padding-top: 8.6px;
  }
  .prizes-card__head-lg {
    padding-top: 11.6px;
    top: -48px;
  }
}
.prizes-card__head::after {
  content: "";
  position: absolute;
  background: url(../img/Star.png) no-repeat center center/cover;
  width: 46px;
  height: 46px;
  top: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__head::after {
    width: 5.0925925926vw;
    height: 5.0925925926vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head::after {
    width: 77px;
    height: 77px;
  }
}

.prizes-card__head-lg::after {
  content: "";
  position: absolute;
  background: url(../img/Star.png) no-repeat center center/cover;
  width: 46px;
  height: 46px;
  top: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-card__head-lg::after {
    width: 6.3492063492vw;
    height: 6.3492063492vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head-lg::after {
    width: 96px;
    height: 96px;
  }
}

.prizes-card__head-text {
  color: #FFFFFF;
  z-index: 2;
  text-align: center;
  font-size: 7.68px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-card__head-text {
    font-size: 0.8465608466vw;
    line-height: 1.619047619vw;
  }
  .prizes-card__head-text-lg {
    font-size: 1.0582010582vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head-text {
    font-size: 12.8px;
    line-height: 24.48px;
  }
  .prizes-card__head-text-lg {
    font-size: 16px;
  }
}

.prizes-card__head-number {
  color: #FFFFFF;
  z-index: 2;
  text-align: center;
  font-family: "Josefin Sans";
  font-size: 23.04px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 900px) {
  .prizes-card__head-number {
    font-size: 2.5396825397vw;
  }
  .prizes-card__head-number-lg {
    font-size: 3.1746031746vw;
    margin-top: 0.1984126984vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__head-number {
    font-size: 38px;
  }
  .prizes-card__head-number-lg {
    font-size: 48px;
    margin-top: 3px;
  }
}

.prizes-card__body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: #F5F5F5;
  background-image: linear-gradient(-45deg, #67B0C7 26px, transparent 0);
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .prizes-card__body {
    border-radius: 16px;
    background-image: linear-gradient(-45deg, #67B0C7 2.9761904762vw, transparent 0);
  }
  .prizes-card__body-lg {
    background-image: linear-gradient(-45deg, #67B0C7 4.6296296296vw, transparent 0);
    border-radius: 24px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .prizes-card__body {
    background-image: linear-gradient(-45deg, #67B0C7 45px, transparent 0);
  }
  .prizes-card__body-lg {
    background-image: linear-gradient(-45deg, #67B0C7 70px, transparent 0);
  }
}
.prizes-card__body::after {
  content: "";
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  right: 5.22px;
  bottom: 6.12px;
  background: url(../img/Prizes_Icon2.png) no-repeat center center/cover;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .prizes-card__body::after {
    width: 1.3544973545vw;
    height: 1.3544973545vw;
    right: 0.5291005291vw;
    bottom: 0.5925925926vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__body::after {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 8.96px;
  }
}

.prizes-card__body-lg::after {
  content: "";
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  right: 5.22px;
  bottom: 6.12px;
  background: url(../img/Prizes_Icon2.png) no-repeat center center/cover;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .prizes-card__body-lg::after {
    width: 2.1164021164vw;
    height: 2.1164021164vw;
    right: 0.8267195767vw;
    bottom: 0.9259259259vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__body-lg::after {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card__image {
    overflow: hidden;
    width: 100%;
    height: 15.873015873vw;
  }
  .prizes-card__image-lg {
    height: 22.4867724868vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__image {
    height: 240px;
  }
  .prizes-card__image-lg {
    height: 340px;
  }
}
.prizes-card__image img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  width: 100%;
  height: 100%;
}

.prizes-card__text {
  height: 56px;
  display: grid;
  place-items: center;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-card__text {
    padding-block: 14px;
    height: 25%;
    font-size: 1.0582010582vw;
    line-height: 1.6931216931vw;
  }
  .prizes-card__text-lg {
    height: 26.0869565217%;
    font-size: 1.3227513228vw;
    line-height: 2.1164021164vw;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__text {
    padding-block: 14px;
    font-size: 16px;
    line-height: 25.6px;
  }
  .prizes-card__text-lg {
    font-size: 20px;
    line-height: 32px;
  }
}

.prizes__button {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 41px;
  }
}
.prizes__button a {
  padding-block: 8px;
  padding-inline: clamp(0.25rem, -4.75rem + 26.67vw, 1.375rem);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .prizes__button a {
    height: 56px;
    padding: 11px 38px 11px 38px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 40px;
    border: 3px 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;
    font-size: 20px;
  }
}

.prizes__bgimg {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -44px;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__bgimg {
    margin-top: -1px;
  }
}
.prizes__bgimg img {
  min-width: 580px;
  height: auto;
}

.modal__content {
  overflow: hidden;
  background: #FFFFFF;
  width: 336px;
  height: 480px;
  border-radius: 24px;
  border: none;
  padding: 0;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .modal__content {
    width: 480px;
    height: 650px;
  }
}
.modal__content::-ms-backdrop {
  opacity: 0.7;
  background: #000;
}
.modal__content::backdrop {
  opacity: 0.7;
  background: #000;
}

.modal__inner {
  height: 100%;
  position: relative;
}

.modal__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal__image {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 1200px) {
  .modal__image {
    height: 300px;
  }
}

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

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

.modal__close-btn {
  margin-top: 16px;
  border: 2px solid #4A3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  color: #4A3636;
}
@media screen and (min-width: 1200px) {
  .modal__close-btn {
    margin-top: 24px;
  }
}

.spots {
  position: relative;
  background-color: #67B0C7;
}
.spots::before {
  content: "";
  position: absolute;
  background: url(../img/img_bg_wave-sp.png) repeat-x left -3px center/contain;
  height: 45.714px;
  top: -45.2px;
  width: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots::before {
    height: 120px;
    top: -120px;
  }
}
.spots::after {
  content: "";
  position: absolute;
  background: url(../img/img_bg_wave-sp.png) repeat-x left -4px center/contain;
  height: 45.714px;
  bottom: -45px;
  width: 100%;
  left: 0;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (min-width: 768px) {
  .spots::after {
    height: 120px;
    bottom: -105px;
  }
}

.spots__inner {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .spots__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .spots__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    gap: 13px;
    padding-left: 16.1375661376vw;
    margin-right: 15px;
    letter-spacing: 10px;
    vertical-align: baseline;
  }
}

.spots__title-icon {
  width: 28px;
  height: 28px;
}
.spots__title-icon img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .spots__title-icon {
    width: 56px;
    height: 56px;
  }
}

.spots__title-text {
  color: #FFFFFF;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
}
@media screen and (min-width: 768px) {
  .spots__title-text {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .spots__swiper-container {
    position: relative;
  }
}

.spots__swiper-slide {
  width: 240px;
  height: 402.16px;
  padding-bottom: 31.16px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .spots__swiper-slide {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.spots__swiper-slide__image {
  height: 180px;
}
@media screen and (min-width: 768px) {
  .spots__swiper-slide__image {
    height: 240px;
  }
}
.spots__swiper-slide__image img {
  width: 100%;
  height: 100%;
}

.spots__swiper-slide__title {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots__swiper-slide__title {
    margin-top: 26px;
    font-size: 20px;
  }
}

.spots__swiper-slide__text {
  margin-top: 19px;
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .spots__swiper-slide__text {
    margin-top: 29px;
    padding-inline: 32px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    width: 5.291005291vw;
    height: 5.291005291vw;
    position: absolute;
    bottom: -24px;
    background-color: #FFEE56;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.swiper-button-prev {
  background-image: url(../img/swiper-left.svg);
  left: -2.1164021164vw;
}

.swiper-button-next {
  background-image: url(../img/swiper-right.svg);
  left: 55.0264550265vw;
}

@media screen and (min-width: 768px) {
  .spots__footer {
    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;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 47px;
  }
}

.spots__footer-title {
  width: 255px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .spots__footer-title {
    width: 495px;
    margin-left: 0;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .spots__footer-title::before {
    content: "";
    position: absolute;
    background: url(../img/img-bg-pawpads-2.png) no-repeat center center/cover;
    width: 100px;
    height: 220px;
    bottom: 140px;
    right: 37.6984126984vw;
  }
}
@media screen and (min-width: 1200px) {
  .spots__footer-title::before {
    content: "";
    position: absolute;
    background: url(../img/img-bg-pawpads-2.png) no-repeat center center/cover;
    width: 100px;
    height: 220px;
    bottom: -2px;
    right: 39.880952381vw;
  }
}

.spots__footer-item {
  text-align: center;
}

.spots__footer-text {
  margin-top: 16px;
  color: #FFFFFF;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .spots__footer-text {
    font-size: 16px;
  }
}

.spots__footer-button {
  margin-top: 24px;
  padding-bottom: 21px;
}
@media screen and (min-width: 768px) {
  .spots__footer-button {
    margin-right: -10px;
  }
}
.spots__footer-button a {
  padding-top: 7px;
  padding-bottom: 8px;
  padding-inline: clamp(0.25rem, -4.75rem + 26.67vw, 1.375rem);
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .spots__footer-button a {
    height: 56px;
    padding: 12px 38px 12px 38px;
    border-radius: 40px;
    border: 3px 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;
    font-size: 20px;
  }
}

.qa {
  margin-top: 85px;
}
@media screen and (min-width: 768px) {
  .qa {
    margin-top: 224px;
  }
}

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

.qa-box {
  max-width: 335px;
  border-radius: 12px;
  border: 2px solid #4A3636;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .qa-box {
    max-width: 510px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box {
    max-width: 1024px;
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__q-icon::after {
  background: url(../img/qa_close-icon.svg) no-repeat center center/cover;
}

.qa-box__head {
  width: 100%;
  padding: 10px 14px;
  background: #FFFFFF;
  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: 13px;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding-inline: 22px;
    padding-top: 21px;
    padding-bottom: 20px;
    gap: 16px;
  }
}

.qa-box__q-head {
  color: #9ED0E0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .qa-box__q-head {
    font-size: 32px;
  }
}

.qa-box__q-text {
  color: #4A3636;
  text-align: left;
  max-width: 233px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 600px) {
  .qa-box__q-text {
    max-width: 400px;
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .qa-box__q-text {
    max-width: 480px;
    width: 480px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__q-text {
    width: 600px;
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__q-text {
    font-size: 20px;
    max-width: 871px;
    width: 871px;
  }
}

.qa-box__q-icon {
  background: url(../img/qa_icon-bg.svg) no-repeat center center/cover;
  width: 26.182px;
  height: 26.182px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa-box__q-icon {
    width: 3.1746031746vw;
    height: 3.1746031746vw;
  }
}
.qa-box__q-icon::after {
  content: "";
  position: absolute;
  background: url(../img/qa_plus-icon.png) no-repeat center center/cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 17.455px;
  height: 17.455px;
}
@media screen and (min-width: 768px) {
  .qa-box__q-icon::after {
    width: 32px;
    height: 32px;
  }
}

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

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

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

.qa-box__a-text {
  font-size: 14px;
  line-height: 160%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.requirements {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .requirements {
    margin-top: 112px;
  }
}

.requirements__wrap {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  border: 8px solid var(--LP-White, #FFF);
  background: rgba(255, 255, 255, 0.5);
  padding-block: 16px;
  padding-inline: 16px;
}
@media screen and (min-width: 600px) {
  .requirements__wrap {
    max-width: 510px;
  }
}
@media screen and (min-width: 900px) {
  .requirements__wrap {
    max-width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .requirements__wrap {
    max-width: 1024px;
    padding-block: 40px;
    padding-inline: 56px;
  }
}

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

.requirements__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 900px) {
  .requirements__boxes {
    gap: 12px;
  }
}

.requirements-box {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .requirements-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 12px;
  }
}
.requirements-box:last-child {
  border: none;
}

.requirements-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .requirements-box__head {
    min-width: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .requirements-box__head {
    min-width: 231px;
    -ms-flex-item-align: start;
        align-self: start;
  }
}

.requirements-box__head-text {
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .requirements-box__head-text {
    font-size: 16px;
    padding-left: 24px;
  }
}
.requirements-box__head-text::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: url(../img/eq-head_icon.png) no-repeat center center/cover;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .requirements-box__head-text::before {
    left: 8px;
  }
}

.requirements-box__text {
  margin-top: 9px;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .requirements-box__text {
    width: 672px;
    margin-top: 0;
    line-height: 160%;
  }
}
.requirements-box__text li {
  padding-left: 18px;
  line-height: 158%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .requirements-box__text li {
    line-height: 162%;
    padding-left: 24px;
  }
}
.requirements-box__text li::before {
  content: "・";
  position: absolute;
  left: 3px;
}

.requirements__bg {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .requirements__bg {
    margin-top: 110px;
  }
}
.requirements__bg img {
  width: 100%;
}

input[type=text],
input[type=email],
select,
textarea {
  border-radius: 8px;
  width: 100%;
  border: none;
  padding-inline: 16px;
  padding-block: 18px;
  background-color: #F5F5F5;
  outline: none;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    padding-block: 16px;
  }
}
input[type=text].is-invalid,
input[type=email].is-invalid,
select.is-invalid,
textarea.is-invalid {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
input[type=text]:focus, input[type=text]:hover,
input[type=email]:focus,
input[type=email]:hover,
select:focus,
select:hover,
textarea:focus,
textarea:hover {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 160%;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 160%;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 160%;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 160%;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #CCCCCC;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 16px;
  }
  input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::placeholder,
  input[type=email]::placeholder,
  select::placeholder,
  textarea::placeholder {
    font-size: 16px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 45px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 125px 120px;
  }
}

.contact__inner {
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .contact__inner {
    max-width: 530px;
  }
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 928px;
  }
}

.contact__lead {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    margin-top: 32px;
  }
}

.contact__form {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 29px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 38px;
    row-gap: 23px;
  }
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 11px;
}
@media screen and (min-width: 900px) {
  .contact__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 900px) and (min-width: 768px) {
  .contact__row.contact__row--aifs {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 17px;
  }
}

.contact__head {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .contact__head.row--gap {
    margin-top: 13px;
  }
}
.contact__head span {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact__head span {
    font-size: 16px;
  }
}
.contact__head span.contact__head--must {
  position: relative;
  display: inline-block;
}
.contact__head span.contact__head--must::after {
  content: "必須";
  position: absolute;
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 4px;
  background: #CE2073;
  padding: 4px 8px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .contact__head span.contact__head--must::after {
    font-size: 12px;
    padding-block: 1px;
  }
}

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

textarea {
  resize: vertical;
  height: 160px;
}
textarea:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  select {
    font-size: 16px;
  }
}

.contact__select-wrap {
  position: relative;
}
.contact__select-wrap select {
  background: linear-gradient(to right, #F5F5F5 calc(100% - 52px), #9ED0E0 calc(100% - 52px)) no-repeat;
}
.contact__select-wrap select.is-invalid {
  background: linear-gradient(to right, #FFF0F7 calc(100% - 52px), #CE2073 calc(100% - 52px)) no-repeat;
}
.contact__select-wrap svg {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.contact__select-wrap.is-invalid::after {
  background: #CE2073;
}

.contact__data-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact__data-radio {
    margin-top: 15px;
  }
}

.contact-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.contact-radio__input:hover + .contact__data-radio-text::before, .contact-radio__input:focus + .contact__data-radio-text::before {
  border: 1px solid #9ED0E0;
}
.contact-radio__input:checked + .contact__data-radio-text::after {
  opacity: 1;
}
.contact-radio__input:checked + .contact__data-radio-text::before {
  border: none;
}

.contact__data-radio-text {
  font-size: 14px;
  display: inline-block;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact__data-radio-text {
    font-size: 16px;
  }
}
.contact__data-radio-text::before, .contact__data-radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.contact__data-radio-text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  left: 0;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact__data-radio-text::after {
  width: 12px;
  height: 12px;
  background: #9ED0E0;
  left: 6px;
  opacity: 0;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
input[type=checkbox]:hover + span::before {
  border: 1px solid #9ED0E0;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}
input[type=checkbox]:checked + span::before {
  border: 1px solid #9ED0E0;
}

.contact__data-checkbox {
  margin-top: -5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__data-checkbox {
    margin-top: 17px;
  }
}
.contact__data-checkbox span {
  display: inline-block;
  padding-left: 36px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .contact__data-checkbox span {
    font-size: 16px;
  }
}
.contact__data-checkbox span::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #F5F5F5;
  left: 0px;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact__data-checkbox span::after {
  content: "";
  position: absolute;
  background: url(../img/check.png) no-repeat center center/cover;
  width: 14px;
  height: 9px;
  left: 5px;
  bottom: 2px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .contact__data-checkbox span::after {
    bottom: 8px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__submit {
  margin-top: -2px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 16px;
  }
}
.contact__submit input[type=submit] {
  display: inline-block;
}

.footer {
  margin-top: 40px;
  margin-bottom: 1px;
}
@media screen and (min-width: 900px) {
  .footer {
    margin-top: 120px;
    margin-bottom: 120px;
    position: relative;
  }
  .footer::after {
    content: "";
    position: absolute;
    background: url(../img/bg_pawpads.png) no-repeat center center/cover;
    width: 100px;
    height: 220px;
    right: 80px;
    top: -100px;
  }
}
@media screen and (min-width: 1200px) {
  .footer::after {
    content: "";
    position: absolute;
    background: url(../img/bg_pawpads.png) no-repeat center center/cover;
    width: 100px;
    height: 220px;
    right: 80px;
    top: -40px;
  }
}

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

.footer__list {
  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;
  gap: 44px;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .footer__list {
    margin-top: 25px;
    margin-bottom: 46px;
  }
}

.footer__item {
  width: 28px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .footer__item {
    width: 35px;
  }
}

.footer__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__link:hover {
  opacity: 0.7;
}

.footer__bg {
  padding-left: 3px;
  max-width: 331px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .footer__bg {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .footer__bg {
    max-width: 755px;
  }
}

.footer__content {
  max-width: 335px;
  margin-inline: auto;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .footer__content {
    max-width: 510px;
  }
}
@media screen and (min-width: 900px) {
  .footer__content {
    max-width: 1024px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer__map {
  max-width: 335px;
  height: 271px;
}
@media screen and (min-width: 600px) {
  .footer__map {
    max-width: 510px;
    height: 400px;
  }
}
@media screen and (min-width: 900px) {
  .footer__map {
    width: 50%;
  }
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}

.footer__body {
  padding: 24px;
}
@media screen and (min-width: 900px) {
  .footer__body {
    width: 50%;
    padding: 99px 15px 106px 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__body {
    max-width: 512px;
    padding: 99px 4.0674603175vw 106px 4.0674603175vw;
  }
}

.footer__logo {
  width: 153px;
  height: 20px;
  margin-bottom: 27px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    width: 183px;
    margin-left: 0;
  }
}

.footer__info {
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
  padding-block: 4px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .footer__info {
    max-width: 389px;
    width: 389px;
    grid-template-columns: 84px 1fr;
    gap: 36px;
    padding-block: 6px;
  }
}

.footer__info-head {
  padding-left: 20px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__info-head {
    padding-left: 16px;
    font-size: 16px;
  }
}
.footer__info-head::before {
  content: "";
  position: absolute;
  background: #9ED0E0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer__copyright {
  text-align: center;
  width: 100%;
  background: #67B0C7;
  padding-bottom: 24px;
  margin-top: 68px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 234px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  width: 100%;
  background: url(../img/img_bg_wave-sp.png) repeat-x left -6px center/contain;
  height: 45.714px;
  left: 0;
  top: -43.5px;
}
@media screen and (min-width: 768px) {
  .footer__copyright::before {
    height: 120px;
    top: -119px;
    background: url(../img/img_bg_wave-sp.png) repeat-x left 3px center/contain;
  }
}

.footer__copyright__text {
  font-size: 10px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__copyright__text {
    font-size: 14px;
  }
}