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

body {
  font-family: "Noto Sans JP", "Josefin Sans", "Kiwi Maru", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  background-color: #e9f6f8;
  color: #4a3636;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-inline: 24px;
  }
}

.button {
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 4px 22px 6px 22px;
  color: #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 700;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .button {
    border: 3px solid #4a3636;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    padding: 7px 37px 9px 37px;
  }
}

.heading__icon img {
  width: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading__icon img {
    width: 48px;
  }
}

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

.heading__ja {
  margin-top: 6px;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .heading__ja {
    margin-top: 8px;
    font-size: 32px;
  }
}
.heading__ja::after {
  content: "";
  margin-top: 6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #ffee56;
  display: block;
}
@media screen and (min-width: 900px) {
  .heading__ja::after {
    margin-top: 8px;
    height: 8px;
  }
}

.pawpads-up {
  width: 53px;
}
@media screen and (min-width: 900px) {
  .pawpads-up {
    width: 100px;
  }
}

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

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

.text-underline {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-underline-offset: 2px;
}
.text-underline:hover {
  color: #67b0c7;
}

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

.header__inner {
  padding-block: 17px;
  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;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-block: 14px;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}

.header__logo {
  margin: 0;
}
@media screen and (min-width: 900px) {
  .header__logo {
    padding-top: 2px;
  }
}
.header__logo img {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header__logo img {
    width: 183px;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 24px;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 16px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 10px;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, transform 0.3s;
  transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1200px) {
  .drawer-icon__bar {
    display: none;
  }
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(1)::before, .drawer-icon__bar:nth-child(1)::after {
  content: "";
  position: absolute;
  height: 3px;
  background: #4a3636;
  border-radius: 10px;
  top: 0;
}
.drawer-icon__bar:nth-child(1)::before {
  left: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(1)::after {
  left: 27.2px;
  width: 4.8px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}

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

@media screen and (min-width: 1200px) {
  .header__button {
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 3px 21px 5px 21px;
  }
}
@media screen and (min-width: 1200px) {
  .header__button a {
    font-weight: 700;
  }
}

.drawer {
  position: fixed;
  background: #fff;
  top: 64px;
  width: 100%;
  height: calc(100% - 64px);
  right: 0;
  padding-block: 82px;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: 20;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.drawer.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1200px) {
  .drawer {
    display: none;
  }
}

.drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.drawer__link {
  font-size: 14px;
}

.drawer__menu-button {
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .drawer__menu-button {
    display: none;
  }
}

.page-top {
  display: none;
}
@media screen and (min-width: 900px) {
  .page-top {
    display: block;
    position: fixed;
    bottom: 0;
    right: 40px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .page-top.is-show {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 900px) {
  .page-top img {
    width: 100px;
  }
}

.fv {
  position: relative;
  text-align: center;
  padding-top: 17px;
  padding-bottom: 11px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 33px;
    padding-bottom: 0;
  }
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 155px);
  border-radius: 0px 0px 24px 24px;
  z-index: -1;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv__bg {
    border-radius: 0px 0px 40px 40px;
    height: calc(100% - 82px);
  }
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
@media screen and (min-width: 900px) {
  .fv__bg img {
    -o-object-position: center center;
       object-position: center center;
  }
}
.fv__bg::before, .fv__bg::after {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fv__inner {
  text-align: center;
  position: relative;
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 848px;
  }
}

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

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

.fv__title-1 img {
  width: 335px;
}
@media screen and (min-width: 900px) {
  .fv__title-1 img {
    width: 520px;
  }
}

.fv__title-2 {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .fv__title-2 {
    margin-top: 16px;
  }
}
.fv__title-2 img {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .fv__title-2 img {
    width: 356px;
  }
}

.fv-message__bubble {
  position: absolute;
  top: 178px;
  left: calc(50% - 169px);
}
@media screen and (min-width: 900px) {
  .fv-message__bubble {
    top: 242px;
    left: calc(50% - 386px);
  }
}
.fv-message__bubble img {
  width: 143px;
}
@media screen and (min-width: 900px) {
  .fv-message__bubble img {
    width: 245px;
  }
}

.fv-message__present {
  position: absolute;
  top: 170px;
  right: calc(50% - 144px);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .fv-message__present {
    top: 259px;
    right: calc(50% - 297px);
  }
}
.fv-message__present img {
  width: 111px;
}
@media screen and (min-width: 900px) {
  .fv-message__present img {
    width: 180px;
  }
}

.fv__image-smartphone {
  margin-top: 113px;
}
@media screen and (min-width: 900px) {
  .fv__image-smartphone {
    margin-top: 35px;
  }
}
.fv__image-smartphone img {
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv__image-smartphone img {
    width: 250px;
  }
}

.fv__image-cat-black {
  position: absolute;
  bottom: 47px;
  right: calc(50% - 168px);
}
@media screen and (min-width: 900px) {
  .fv__image-cat-black {
    bottom: 48px;
    right: calc(50% - 300px);
  }
}
@media screen and (min-width: 900px) {
  .fv__image-cat-black {
    bottom: 48px;
    right: calc(50% - 359px);
  }
}
.fv__image-cat-black img {
  width: 62px;
}
@media screen and (min-width: 900px) {
  .fv__image-cat-black img {
    width: 167px;
  }
}

.fv__image-food {
  position: absolute;
  left: calc(50% - 167px);
  bottom: -11px;
}
@media screen and (min-width: 900px) {
  .fv__image-food {
    left: calc(50% - 335px);
    bottom: -16px;
  }
}
@media screen and (min-width: 900px) {
  .fv__image-food {
    left: calc(50% - 424px);
  }
}
.fv__image-food img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .fv__image-food img {
    width: 210px;
  }
}

.fv__image-cat-brown {
  position: absolute;
  right: calc(50% - 158px);
  bottom: -11px;
}
@media screen and (min-width: 900px) {
  .fv__image-cat-brown {
    right: calc(50% - 300px);
    bottom: -62px;
  }
}
@media screen and (min-width: 900px) {
  .fv__image-cat-brown {
    right: calc(50% - 424px);
  }
}
.fv__image-cat-brown img {
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv__image-cat-brown img {
    width: 233px;
  }
}

.about {
  padding-top: 32px;
  padding-bottom: 33px;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 95px;
    padding-bottom: 60px;
  }
}

.about__decoration {
  position: relative;
}

.about__pattern {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .about__pattern {
    display: block;
    width: 250px;
    position: absolute;
    top: -20px;
    left: calc(50% - 600px);
  }
}
@media screen and (min-width: 1200px) {
  .about__pattern {
    top: -20px;
    left: calc(50% - 777px);
  }
}

.about__pawpads {
  position: absolute;
  top: -9px;
  right: calc(50% - 188px);
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about__pawpads {
    right: calc(50% - 255px);
  }
}
@media screen and (min-width: 900px) {
  .about__pawpads {
    right: calc(50% - 350px);
  }
}
@media screen and (min-width: 1200px) {
  .about__pawpads {
    top: -80px;
    right: calc(50% - 589px);
  }
}

.about__ropeway {
  position: absolute;
  top: 396px;
  left: calc(50% - 327px);
  width: 200px;
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about__ropeway {
    width: 250px;
    left: calc(50% - 430px);
  }
}
@media screen and (min-width: 900px) {
  .about__ropeway {
    top: 74px;
    left: calc(50% - 875px);
    width: 480px;
    border-radius: 40px;
    z-index: 3;
  }
}
@media screen and (min-width: 1200px) {
  .about__ropeway {
    left: calc(50% - 1094px);
  }
}

.about__port {
  position: absolute;
  top: 273px;
  right: calc(50% - 328px);
  width: 200px;
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about__port {
    width: 250px;
    right: calc(50% - 430px);
  }
}
@media screen and (min-width: 900px) {
  .about__port {
    top: 73px;
    right: calc(50% - 845px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__port {
    right: calc(50% - 1040px);
  }
}

.about__content {
  background: #fff;
  border-radius: 24px;
  text-align: center;
  padding: 40px 20px;
  width: 335px;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width:600px) {
  .about__content {
    width: 450px;
  }
}
@media screen and (min-width: 900px) {
  .about__content {
    border-radius: 40px;
    padding: 40px 36px;
    width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    padding: 40px 43px;
    width: 848px;
  }
}

.about__content-image-left {
  position: absolute;
  width: 87px;
  top: 32px;
  left: calc(50% - 134px);
}
@media screen and (min-width: 900px) {
  .about__content-image-left {
    top: 28px;
    left: calc(50% - 253px);
    width: 147px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content-image-left {
    top: 40px;
    left: calc(50% - 339px);
  }
}

.about__content-image-right {
  position: absolute;
  width: 87px;
  top: 31px;
  right: calc(50% - 147px);
}
@media screen and (min-width: 900px) {
  .about__content-image-right {
    top: 25px;
    right: calc(50% - 269px);
    width: 147px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content-image-right {
    top: 48px;
    right: calc(50% - 340px);
  }
}

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

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

.about__message {
  margin-top: 33px;
  -webkit-text-decoration: #9ed0e0 underline dashed;
          text-decoration: #9ed0e0 underline dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 12px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width:374px) {
  .about__message {
    font-size: 13px;
  }
}
@media screen and (min-width: 900px) {
  .about__message {
    margin-top: 45px;
    text-underline-offset: 17px;
    font-size: 20px;
  }
}

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

.about__bottom {
  position: relative;
  text-align: center;
}

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

.about__stairs {
  width: 140px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about__stairs {
    width: 150px;
    top: -40px;
  }
}
@media screen and (min-width: 900px) {
  .about__stairs {
    width: 250px;
    top: -210px;
  }
}
@media screen and (min-width: 1200px) {
  .about__stairs {
    width: 430px;
    top: -505px;
    left: calc(50% - 861px);
  }
}
@media screen and (min-width: 1512px) {
  .about__stairs {
    width: 28.439vw;
    top: -33.399vw;
    left: calc(50% - 56.944vw);
  }
}

@media screen and (min-width: 900px) {
  .about__path-1 {
    width: 800px;
    position: absolute;
    top: -219px;
    right: calc(50% - 1145px);
  }
}
@media screen and (min-width: 1200px) {
  .about__path-1 {
    right: calc(50% - 1318px);
  }
}

@media screen and (min-width: 900px) {
  .about__path-2 {
    width: 800px;
    position: absolute;
    top: -186px;
    right: calc(50% - 1115px);
  }
}
@media screen and (min-width: 1200px) {
  .about__path-2 {
    right: calc(50% - 1249px);
  }
}

.about__buttons {
  width: 50px;
  position: absolute;
  top: 12px;
  right: calc(50% - 167px);
}
@media screen and (min-width:600px) {
  .about__buttons {
    width: 70px;
    right: calc(50% - 272px);
  }
}
@media screen and (min-width: 900px) {
  .about__buttons {
    width: 100px;
    right: calc(50% - 605px);
    top: -226px;
  }
}

.about__cloth {
  width: 130px;
  position: absolute;
  top: 54px;
  right: calc(50% - 130px);
  z-index: -1;
}
@media screen and (min-width:600px) {
  .about__cloth {
    width: 180px;
    right: calc(50% - 235px);
  }
}
@media screen and (min-width: 900px) {
  .about__cloth {
    width: 310px;
    top: -70px;
    right: calc(50% - 683px);
  }
}

.about__onomichi {
  margin-top: 140px;
  width: 375px;
  margin-inline: auto;
  padding-inline: 10px;
}
@media screen and (min-width: 900px) {
  .about__onomichi {
    margin-top: 170px;
    width: 600px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__onomichi {
    width: 890px;
  }
}

.about__swiper {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .about__swiper {
    margin-top: -7px;
    height: 200px;
  }
}

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

.about__swiper-slide img {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about__swiper-slide img {
    width: 200px;
  }
}

.enter {
  padding-top: 30px;
  padding-bottom: 16px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .enter {
    padding-top: 62px;
    padding-bottom: 5px;
  }
}

.enter-head__icon img {
  width: 37px;
}
@media screen and (min-width: 900px) {
  .enter-head__icon img {
    width: 48px;
  }
}

.enter__bg {
  position: relative;
}

.enter__bg-map {
  position: absolute;
  top: 0;
  left: calc(50% - 188px);
  width: 149px;
}
@media screen and (min-width: 900px) {
  .enter__bg-map {
    top: -62px;
    left: calc(50% - 530px);
    width: 460px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .enter__bg-map {
    left: calc(50% - 720px);
  }
}

.enter__cat-tabby {
  position: absolute;
  top: 0;
  right: calc(50% - 163px);
  width: 105px;
}
@media screen and (min-width: 900px) {
  .enter__cat-tabby {
    top: -26px;
    right: calc(50% - 400px);
    width: 239px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__cat-tabby {
    right: calc(50% - 524px);
  }
}

.enter__cat-gray {
  position: absolute;
  top: 5px;
  right: calc(50% - 218px);
  width: 94px;
}
@media screen and (min-width: 900px) {
  .enter__cat-gray {
    top: -17px;
    right: calc(50% - 529px);
    width: 214px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__cat-gray {
    right: calc(50% - 653px);
  }
}

.enter__inner {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .enter__inner {
    max-width: 1024px;
    margin: auto;
  }
}

.enter__pawpads-up {
  position: absolute;
  top: 73px;
  right: calc(50% - 168px);
  width: 55px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 900px) {
  .enter__pawpads-up {
    top: 147px;
    width: 100px;
    right: calc(50% - 720px);
  }
}

.enter__pawpads-down {
  position: absolute;
  top: 549px;
  left: calc(50% - 167px);
  width: 55px;
}
picture:nth-child(2) .enter__pawpads-down {
  top: 880px;
  left: calc(50% + 112px);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 900px) {
  .enter__pawpads-down {
    top: 578px;
    left: calc(50% - 719px);
    width: 100px;
  }
}

.enter__dashwave-images {
  margin-top: 427px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 361px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .enter__dashwave-images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 242px;
    left: calc(50% - 19px);
    gap: 247px;
  }
}

.enter__dashwave {
  width: 8px;
}
@media screen and (min-width: 900px) {
  .enter__dashwave {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__dashwave {
    width: 113px;
  }
}

@media screen and (min-width: 900px) {
  .enter-head__icon img {
    width: 48px;
  }
}

.enter__contents {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (min-width: 900px) {
  .enter__contents {
    margin-top: 39px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 5px;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .enter__contents {
    gap: 33px;
  }
}

.enter__content {
  width: 335px;
}
.enter__content:nth-child(3) {
  margin-top: -15px;
}
@media screen and (min-width: 900px) {
  .enter__content {
    width: 300px;
  }
  .enter__content:nth-child(2) {
    margin-top: 68px;
  }
  .enter__content:nth-child(3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .enter__content {
    width: 320px;
  }
}

.enter__step {
  display: block;
  width: 198px;
  height: 210px;
  margin: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .enter__step {
    aspect-ratio: 280/300;
    width: 250px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .enter__step {
    width: 280px;
    height: auto;
  }
}

.enter__step-title {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .enter__step-title {
    margin-top: 26px;
    font-size: 20px;
    width: 320px;
  }
}

.enter__step-text {
  padding-block: 16px;
}
@media screen and (min-width: 900px) {
  .enter__step-text {
    font-size: 14px;
    width: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__step-text {
    font-size: 16px;
    width: 320px;
  }
}

.enter__step-follow {
  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: 8px;
  background: #fff;
  padding: 8px 12px;
  width: calc(100% - 109px);
  margin: auto;
}
@media screen and (min-width: 900px) {
  .enter__step-follow {
    width: calc(100% - 66px);
  }
}

.enter__step-follow-icon {
  width: 20px;
}
@media screen and (min-width: 900px) {
  .enter__step-follow-icon {
    margin-top: -4px;
    width: 24px;
  }
}

.enter__step-follow-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .enter__step-follow-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .enter__step-follow-text {
    font-size: 16px;
  }
}

.enter__button {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width:374px) {
  .enter__button {
    font-size: 15px;
  }
}
@media screen and (min-width: 900px) {
  .enter__button {
    margin-top: 34px;
    font-size: 20px;
  }
}

.prizes {
  padding-top: 17px;
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 182px;
  }
}

.prizes__bg {
  position: relative;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .prizes__bg-left img {
    width: 315px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-left {
    position: absolute;
    top: -31px;
    left: calc(50% - 450px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg-left {
    left: calc(50% - 513px);
  }
}

@media screen and (min-width: 900px) {
  .prizes__bg-right img {
    width: 315px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-right {
    position: absolute;
    top: -32px;
    right: calc(50% - 450px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__bg-right {
    right: calc(50% - 511px);
  }
}

.prizes__container {
  margin-top: 88px;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
  padding-top: 60px;
  padding-bottom: 35px;
}
@media screen and (min-width: 900px) {
  .prizes__container {
    width: 900px;
    margin-inline: auto;
    padding-top: 64px;
    padding-bottom: 53px;
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container {
    width: 1024px;
  }
}
.prizes__container::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 83px;
  top: -82px;
  left: calc(50% - 119px);
  background: url(../img/sp/sp-prizes-bg-box.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .prizes__container::before {
    background: url(../img/prizes-bg-box.png) no-repeat center center/contain;
    width: 370px;
    height: 149px;
    top: -146px;
    left: calc(50% - 186px);
  }
}

.prizes__inner {
  position: relative;
}

.prizes__head {
  position: absolute;
  top: -124px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__head {
    top: -183px;
  }
}

@media screen and (max-width:374px) {
  .prizes__message {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__message {
    font-size: 16px;
  }
}

.prizes__cards {
  margin-top: 45px;
  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: 39px 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 83px;
    gap: 78px 30px;
  }
}

.prizes__card {
  position: relative;
  width: calc(50% - 7.5px);
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .prizes__card {
    width: 320px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 245px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card {
    width: 284px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card--large {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__number {
    padding: 12px 32px;
    top: -49px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__number-prize {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__number-number {
    font-size: 48px;
  }
}
.prizes-card--large .prizes-card__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__image {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__title {
    border-radius: 0 0 24px 24px;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__title::before {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__title::after {
    bottom: 13px;
    right: 14px;
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__text {
    font-size: 20px;
  }
}

.prizes-card__number {
  position: absolute;
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  background: url(../img/sp/sp-prizes-star.svg) no-repeat center center/contain;
  padding-block: 6px;
  padding-inline: 16px;
}
@media screen and (min-width: 900px) {
  .prizes-card__number {
    top: -37px;
    padding-block: 10px;
    padding-inline: 32px;
    background: url(../img/prizes-star.svg) no-repeat center center/contain;
    z-index: 10;
  }
}

.prizes-card__number-prize {
  display: block;
  font-size: 7px;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .prizes-card__number-prize {
    font-size: 12px;
    font-weight: 700;
  }
}

.prizes-card__number-number {
  margin-top: 2px;
  display: block;
  font-family: "Josefin Sans";
  font-size: 23px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .prizes-card__number-number {
    font-size: 38px;
  }
}

.prizes-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  .prizes-card__content:hover, .prizes-card__content:focus {
    outline: 4px solid #9ed0e0;
    border-radius: 24px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__content:hover .prizes-card__image {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .prizes-card__content:hover .prizes-card__title::before {
    background-color: #9ed0e0;
  }
}

.prizes-card__image {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    border-radius: 24px 24px 0 0;
  }
}

.prizes-card__title {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 2px;
  background-color: #f5f5f5;
  border-radius: 0 0 8px 8px;
  position: relative;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes-card__title {
    padding-block: 14px;
    border-radius: 0 0 24px 24px;
    height: 80px;
  }
}
.prizes-card__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #67b0c7;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 900px) {
  .prizes-card__title::before {
    width: 64px;
    height: 64px;
    border-radius: 0 0 24px 0;
  }
}
.prizes-card__title::after {
  content: "";
  position: absolute;
  bottom: 6px;
  right: 5px;
  width: 11px;
  height: 11px;
  background: url(../img/icon-modal.svg) no-repeat center center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media screen and (min-width: 900px) {
  .prizes-card__title::after {
    bottom: 11px;
    right: 9px;
    width: 20px;
    height: 20px;
  }
}

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

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

.prizes__bg-bottom {
  position: relative;
  bottom: 43px;
  left: 0;
  width: 154.6666666667%;
  height: 260px;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .prizes__bg-bottom {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
}

.prizes-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.prizes-modal__layer {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prizes-modal__box {
  position: relative;
  border-radius: 24px;
  background-color: #fff;
  text-align: center;
  width: 336px;
  height: 480px;
  margin: auto;
}
@media screen and (min-width: 900px) {
  .prizes-modal__box {
    width: 480px;
    height: 650px;
  }
}

.prizes-modal__image {
  height: 210px;
  border-radius: 24px 24px 0 0;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image {
    height: 300px;
  }
}

.prizes-modal__content {
  padding: 39px 20px 56px 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width:374px) {
  .prizes-modal__content {
    padding: 39px 17px 56px 17px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal__content {
    padding: 32px 40px 106px 40px;
  }
}

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

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

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

.spots {
  margin-top: -43px;
  padding-bottom: 26px;
  background: #67b0c7;
  color: #fff;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: 0;
    padding-bottom: 88px;
  }
}
.spots::before, .spots::after {
  content: "";
  position: absolute;
  background-image: url(../img/spots-wave.svg);
  background-repeat: repeat-x;
  background-size: 96px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    background-size: 252px;
  }
}
.spots::before {
  top: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .spots::before {
    top: -120px;
  }
}
.spots::after {
  bottom: -41px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .spots::after {
    bottom: -37px;
  }
}

.spots__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .spots__wrapper {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 23px;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__heading {
    margin-left: 245px;
  }
}

.spots__heading-icon svg {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots__heading-icon svg {
    width: 56px;
    height: 56px;
  }
}
.spots__heading-icon svg path {
  fill: #ffee56;
}

.spots__heading-text {
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .spots__heading-text {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    letter-spacing: 10px;
  }
}

.spots__swiper {
  width: 100%;
  height: 100%;
}

.spots__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  position: relative;
}

.spots-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 240px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .spots-slide {
    width: 344px;
  }
}

.spots-slide__image {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots-slide__image {
    width: 100%;
    border-radius: 24px 24px 0 0;
  }
}

.spots-slide__content {
  width: 100%;
  background: #fff;
  padding: 16px 24px 31px 24px;
  border-radius: 0 0 12px 12px;
  color: #4a3636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .spots-slide__content {
    padding: 24px 32px 40px 32px;
    border-radius: 0 0 24px 24px;
    gap: 24px;
  }
}

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

.spots-slide__text {
  text-align: left;
  min-height: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .spots-slide__text {
    font-size: 16px;
  }
}

.spots__swiper-button-prev,
.spots__swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__swiper-button-prev,
  .spots__swiper-button-next {
    display: block;
    overflow: visible;
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 900px) {
  .spots__swiper-button-prev::after,
  .spots__swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    width: 80px;
    height: 80px;
    margin: auto;
  }
}

@media screen and (min-width: 900px) {
  .spots__swiper-button-prev::after {
    position: absolute;
    top: 108px;
    left: calc(50% + 40px);
    background-image: url(../img/spots-prev.png);
  }
}
@media screen and (min-width: 1200px) {
  .spots__swiper-button-prev::after {
    left: calc(50% + 234px);
  }
}

@media screen and (min-width: 900px) {
  .spots__swiper-button-next::after {
    position: absolute;
    top: 108px;
    right: calc(50% + 60px);
    background-image: url(../img/spots-next.png);
  }
}
@media screen and (min-width: 1200px) {
  .spots__swiper-button-next::after {
    right: calc(50% + 235px);
  }
}

.spots__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .spots__inner {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 74px;
  }
}

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

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

.spots__text {
  font-size: 11px;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.spots__button {
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width:374px) {
  .spots__button {
    font-size: 15px;
  }
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-left: 18px;
    font-size: 19px;
    letter-spacing: 1px;
    width: 440px;
  }
}

.spots__bg-bottom {
  position: relative;
}

@media screen and (min-width: 900px) {
  .spots__bg-bottom-pawpads {
    width: 100px;
    position: absolute;
    bottom: -6px;
    left: calc(50% - 719px);
  }
}

.spots__bg-bottom-wave {
  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;
  position: absolute;
  bottom: -67px;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .spots__bg-bottom-wave {
    bottom: -126px;
  }
}
.spots__bg-bottom-wave img {
  width: 96px;
}
@media screen and (min-width: 900px) {
  .spots__bg-bottom-wave img {
    width: 252px;
  }
}

.qa {
  padding-top: 80px;
  padding-bottom: 29px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 156px;
    padding-bottom: 120px;
  }
}

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

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/icon-minus.svg) no-repeat center center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.qa-box.is-open .qa-box__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.qa-box__head {
  padding: 10px 50px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  position: relative;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 26px 82px 24px 22px;
    gap: 16px;
  }
}
.qa-box__head::before, .qa-box__head::after {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.qa-box__head::before {
  background-color: #9ed0e0;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  z-index: 1;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head::before {
    width: 48px;
    height: 48px;
    right: 19px;
  }
}
.qa-box__head::after {
  background: url(../img/icon-plus.svg) no-repeat center center/contain;
  width: 17px;
  height: 17px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  z-index: 2;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head::after {
    width: 32px;
    height: 32px;
    right: 27px;
  }
}

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

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

.qa-box__body {
  padding: 16px 14px 14px 14px;
  background-color: #f5f5f5;
  border-radius: 0 0 12px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  text-align: left;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 24px 22px 22px 22px;
    border-radius: 0 0 16px 16px;
  }
}

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

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

.entry__container {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  padding-inline: 16px;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .entry__container {
    padding-top: 31px;
    padding-bottom: 54px;
    padding-inline: 49px;
    max-width: 1024px;
    margin-inline: auto;
  }
}

.entry__head {
  text-align: center;
}

.entry__lists {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
}
@media screen and (min-width: 900px) {
  .entry__lists {
    margin-top: 40px;
    gap: 24px;
    max-width: 912px;
  }
}

.entry__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .entry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}
.entry__list:nth-child(5)::after {
  border-bottom: none;
}
.entry__list::after {
  content: "";
  border-bottom: 1px solid #ccc;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -15px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .entry__list::after {
    bottom: -12px;
  }
}

.entry__list-title {
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  display: block;
}
@media screen and (min-width: 900px) {
  .entry__list-title {
    font-size: 16px;
    width: 24.6710526316%;
    padding-left: 31px;
  }
}
.entry__list-title::before {
  content: "";
  background: #9ed0e0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .entry__list-title::before {
    left: 15px;
  }
}

.entry__list-text {
  display: block;
}
@media screen and (min-width: 900px) {
  .entry__list-text {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.entry__list-text-list {
  list-style: none;
  padding-left: 1.5em;
  position: relative;
  z-index: 2;
}
.entry__list-text-list::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.entry__bg {
  margin-top: 32px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 900px) {
  .entry__bg {
    margin-top: 120px;
  }
}

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

@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 896px;
    padding-inline: 24px;
    margin-inline: auto;
  }
}

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

.contact__fields {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    margin-top: 40px;
    gap: 23px;
  }
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .contact__field:nth-child(4) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .contact__field:nth-child(5) {
    margin-top: 16px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field.is-error .form-field__head-label {
  color: #ce2073;
}

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

.form-field__head-label {
  font-size: 14px;
  font-weight: 700;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .form-field__head-label {
    font-size: 16px;
  }
}

.form-field__head-tag {
  border-radius: 4px;
  background: #ce2073;
  color: #fff;
  padding: 4px 8px;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .form-field__head-tag {
    font-size: 12px;
  }
}

.form-field__item {
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px;
  border: none;
  width: 100%;
  display: block;
  font-size: 14px;
}
.form-field__item::-webkit-input-placeholder {
  color: #ccc;
}
.form-field__item::-moz-placeholder {
  color: #ccc;
}
.form-field__item:-ms-input-placeholder {
  color: #ccc;
}
.form-field__item::-ms-input-placeholder {
  color: #ccc;
}
.form-field__item::placeholder {
  color: #ccc;
}
.form-field__item:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-field__item.is-error {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
  }
}

.form-field__select {
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-field__select {
    font-size: 16px;
  }
}
.form-field__select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background-color: #9ed0e0;
  border-radius: 0 8px 8px 0;
  z-index: -1;
}
.form-field__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/icon-arrow-bottom.svg) no-repeat center center/contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  z-index: -1;
}
.form-field__select.is-error {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
.form-field__select.is-error::before {
  background: #ce2073;
}
.form-field__select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 8px;
  background: none;
  padding: 16px 52px 16px 16px;
  border: none;
  position: relative;
  width: 100%;
  height: 100%;
}
.form-field__select select:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}

.form-field__radios {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    margin-top: 0;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.form-radio__input:focus + .form-field__radio-text::before {
  outline: 1px solid #9ed0e0;
}
.form-radio__input:checked + .form-field__radio-text {
  font-weight: 700;
}
.form-radio__input:checked + .form-field__radio-text::before {
  outline: none;
}
.form-radio__input:checked + .form-field__radio-text::after {
  opacity: 1;
}

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

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

.contact__privacy {
  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: 12px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 19px;
    gap: 40px;
  }
}
.contact__privacy.is-error .contact__privacy-text::before {
  background: #fff0f7;
  outline: 1px solid #ce2073;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  z-index: -1;
}
.form-checkbox__input:focus + .contact__privacy-text::before {
  outline: 1px solid #9ed0e0;
}
.form-checkbox__input:checked + .contact__privacy-text::before {
  outline: none;
}
.form-checkbox__input:checked + .contact__privacy-text::after {
  opacity: 1;
}

.contact__privacy-text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .contact__privacy-text {
    font-size: 16px;
  }
}
.contact__privacy-text::before, .contact__privacy-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact__privacy-text::before {
  width: 24px;
  height: 24px;
  left: 0;
  border-radius: 4px;
  background: #f5f5f5;
  z-index: 1;
}
.contact__privacy-text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/icon-check.svg) no-repeat center center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.contact__privacy-text a:focus {
  outline: 1px solid #9ed0e0;
}

.contact__button {
  font-size: 16px;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact__button:focus {
  outline: 1px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 17px;
    border: 2px solid #4a3636;
    padding: 4px 38px 6px 38px;
  }
}

.footer {
  padding-top: 41px;
  text-align: center;
  background: #e9f6f8;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
  }
}

.footer__bg {
  position: relative;
}

.footer-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer-pawpads {
    display: block;
    width: 70px;
    position: absolute;
    top: -40px;
    right: calc(50% - 425px);
  }
}
@media screen and (min-width: 1200px) {
  .footer-pawpads {
    width: 101px;
    right: calc(50% - 677px);
  }
}

.footer__message {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer__message {
    font-size: 24px;
  }
}

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

@media screen and (min-width: 900px) {
  .footer__icon img {
    width: 40px;
  }
}

.footer__onomichi {
  margin-top: 15px;
  width: 100%;
}
@media screen and (min-width:600px) {
  .footer__onomichi {
    width: 335px;
  }
}
@media screen and (min-width: 900px) {
  .footer__onomichi {
    margin-top: 42px;
    width: 755px;
  }
}

.footer__contents {
  margin-top: -4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}
@media screen and (min-width:600px) {
  .footer__contents {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .footer__contents {
    max-width: 1024px;
  }
}

.footer__content-map-wrapper {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 900px) {
  .footer__content-map-wrapper {
    aspect-ratio: 512/400;
    width: 400px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__content-map-wrapper {
    width: 512px;
  }
}

.footer__content-map {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__content-map {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.map-iframe {
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .map-iframe {
    border-radius: 0 16px 16px 0;
  }
}

.footer-text {
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding-top: 23px;
  padding-bottom: 28px;
  padding-inline: 24px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width:374px) {
  .footer-text {
    padding-inline: 21px;
  }
}
@media screen and (min-width: 900px) {
  .footer-text {
    aspect-ratio: 512/400;
    width: 400px;
    height: auto;
    border-radius: 16px 0 0 16px;
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 17px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .footer-text {
    width: 512px;
    gap: 25px;
    padding-inline: 60px;
  }
}

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

.footer-text__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer-text__lists {
    gap: 12px;
  }
}

.footer-text__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 19px;
  text-align: left;
}

.footer-text__list-main {
  font-weight: 700;
  width: 64px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer-text__list-main {
    font-size: 16px;
    width: 103px;
  }
}
.footer-text__list-main::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -16px;
}

@media screen and (min-width: 900px) {
  .footer-text__list-sub {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-text__list-sub {
    font-size: 16px;
  }
}

.footer__pagetop {
  margin-top: 24px;
  width: 77px;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    display: none;
  }
}

.footer__copyright {
  margin-top: 65px;
  text-align: center;
  background: #67b0c7;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    margin-top: 159px;
  }
}
.footer__copyright::before {
  content: "";
  background: url(../img/spots-wave.svg);
  background-repeat: repeat-x;
  background-size: 94px;
  position: absolute;
  top: calc(50% - 64px);
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .footer__copyright::before {
    background-size: 252px;
    top: calc(50% - 139px);
  }
}

.footer__copyright-text {
  background: #67b0c7;
  font-size: 10px;
  color: #fff;
  padding-top: 4px;
  padding-bottom: 25px;
}
@media screen and (min-width: 900px) {
  .footer__copyright-text {
    font-size: 14px;
    padding-top: 83px;
    padding-bottom: 100px;
  }
}