@charset "UTF-8";
/* 初期値 ----------*/
*:focus {
  outline-color: #9ed0e0;
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  background: #e9f6f8;
  font-weight: 400;
  position: relative;
}
body.is-hidden {
  overflow: hidden;
}

/* common ----------*/
@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-lg {
    display: none;
  }
}
@media screen and (min-width: 1072px) {
  .hidden-xl {
    display: none;
  }
}
.open-ti {
  display: none;
}
@media screen and (max-width: 374px) {
  .open-ti {
    display: block;
  }
}

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

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

.open-xl {
  display: none;
}
@media screen and (min-width: 1072px) {
  .open-xl {
    display: block;
  }
}

.open-xxl {
  display: none;
}
@media screen and (min-width: 1512px) {
  .open-xxl {
    display: block;
  }
}

.inner {
  padding-inline: 20px;
  max-width: 640px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 24px;
    max-width: 1072px;
  }
}

.heading {
  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;
}
.heading__icon {
  width: 37.333px;
  height: 37.333px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading__icon {
    width: 48px;
    height: 48px;
  }
}
.heading__icon img {
  width: 100%;
}

.heading__en {
  margin-top: 12.85px;
  font-family: "Courgette", "cursive";
  font-size: 16px;
  line-height: 125%;
  margin-top: 6.8px;
}
@media screen and (min-width: 768px) {
  .heading__en {
    margin-top: 8.8px;
    font-size: 20px;
  }
}

.heading__ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  margin-top: 6px;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 768px) {
  .heading__ja {
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
    margin-top: 8px;
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.button {
  display: inline-block;
  padding: 4px 23px 6px;
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms;
}
@media screen and (min-width: 768px) {
  .button:not(.type03):hover {
    background-color: #ffee56;
    cursor: pointer;
  }
}
.button.type-fv {
  padding: 2px 22px 4px;
}
@media screen and (min-width: 768px) {
  .button.type-fv {
    padding: 5px 22px 6px;
  }
}
@media screen and (min-width: 768px) {
  .button.type01 {
    font-size: 14px;
    padding: 4px 21.8px 6px;
    border: 3px solid #4a3636;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
  }
}
.button.type02 {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  padding: 4.5px 23px 6px;
  letter-spacing: 0.008em;
}
@media screen and (min-width: 768px) {
  .button.type02 {
    border: 3px solid #4a3636;
    font-size: 20px;
    padding: 9.5px 37px 9px;
  }
}
@media screen and (min-width: 768px) {
  .button.type03 {
    padding-inline: 38px;
  }
}

/* header ----------*/
.header {
  height: 64px;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
}
.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1512px;
    padding-inline: 24px;
    margin-inline: auto;
  }
}

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

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

.header__nav {
  background: #fff;
  width: 100%;
  height: calc(100vh - 64px);
  position: fixed;
  left: 0;
  top: 64px;
  padding: 74px 20px 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  z-index: 20;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.header__nav-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .header__nav-lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}

.header__nav-list:last-child {
  padding-top: 9px;
}
@media screen and (min-width: 900px) {
  .header__nav-list:last-child {
    padding-top: 0;
    padding-left: 4.5px;
  }
}

.header__nav-link {
  display: inline-block;
  padding: 7.8px 2px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}
@media screen and (min-width: 768px) {
  .header__nav-link {
    -webkit-transition: color 300ms, text-decoration-color 200ms;
    transition: color 300ms, text-decoration-color 200ms;
  }
  .header__nav-link:hover {
    text-decoration-color: #67b0c7;
    color: #67b0c7;
    cursor: pointer;
  }
}
@media screen and (min-width: 900px) {
  .header__nav-link {
    font-size: 12px;
  }
}

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

.drawer-button {
  position: relative;
  width: 32px;
  height: 27px;
}
.drawer-button.is-checked .drawer-button__bar:nth-of-type(1), .drawer-button.is-checked .drawer-button__bar:nth-of-type(3) {
  top: 12px;
}
.drawer-button.is-checked .drawer-button__bar:nth-of-type(1) {
  display: block;
  height: 3px;
  background: #4a3636;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-button.is-checked .drawer-button__bar:nth-of-type(1) .is-bar-type1,
.drawer-button.is-checked .drawer-button__bar:nth-of-type(1) .is-bar-type2 {
  display: none;
}
.drawer-button.is-checked .drawer-button__bar:nth-of-type(2) {
  display: none;
}
.drawer-button.is-checked .drawer-button__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-button__bar {
  position: absolute;
  left: 0;
  border-radius: 1.5px;
  -webkit-transition: top 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, top 0.3s;
  transition: transform 0.3s, top 0.3s, -webkit-transform 0.3s;
  width: 32px;
}
.drawer-button__bar:nth-of-type(1) {
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6px;
}
.drawer-button__bar:nth-of-type(1) .is-bar-type1 {
  width: 25.6px;
  height: 3px;
  border-radius: 1.5px;
  background: #4a3636;
}
.drawer-button__bar:nth-of-type(1) .is-bar-type2 {
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 1.5px;
}
.drawer-button__bar:nth-of-type(2) {
  height: 3px;
  top: 12px;
  background: #4a3636;
}
.drawer-button__bar:nth-of-type(3) {
  height: 3px;
  top: 24px;
  background: #4a3636;
}

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

.fv__bg {
  overflow: hidden;
  border-radius: 0px 0px 24px 24px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 554px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    height: 740px;
  }
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 894px;
    padding-inline: 24px;
    margin-inline: auto;
  }
}

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

.fv__title-img1 {
  margin-top: 20px;
  width: 100%;
  max-width: 335px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__title-img1 {
    width: 520px;
    max-width: 100%;
    margin-top: 24px;
  }
}
.fv__title-img1 img {
  width: 100%;
}

.fv__title-img2 {
  margin-top: 12px;
  margin-inline: auto;
  width: 71.6417910448%;
  max-width: 240px;
}
@media screen and (min-width: 768px) {
  .fv__title-img2 {
    margin-top: 16px;
    width: 356px;
    max-width: 100%;
  }
}
.fv__title-img2 img {
  width: 100%;
}

.fv__visual {
  max-width: 335px;
  height: 522px;
  margin-inline: auto;
  position: relative;
  padding-block: 103px 11px;
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 374px) {
  .fv__visual {
    padding-top: 88px;
  }
}
@media screen and (min-width: 768px) {
  .fv__visual {
    max-width: 846px;
    height: 560px;
    padding-block: 33px 17px;
    margin-top: 0;
  }
}

.fv__cta {
  width: 200px;
  height: 408px;
  margin-inline: auto;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .fv__cta {
    width: 250px;
    height: 510px;
  }
}

.fv__cta-img {
  text-align: center;
}
.fv__cta-img img {
  width: 100%;
}

.fv__cta-content {
  border-radius: 12.8px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 122.6px;
  left: 20px;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .fv__cta-content {
    border-radius: 16px;
    top: 152.5px;
    left: 25px;
  }
}

.fv__cta-title {
  padding-block: 6.9px 5.441px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  color: #fff;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__cta-title {
    padding-block: 8px;
    font-size: 16px;
  }
}

.fv__cta-body {
  padding: 12.8px 14px 18px;
}
@media screen and (min-width: 768px) {
  .fv__cta-body {
    padding: 16px 12px 24px;
  }
}

.fv__cta-text {
  font-size: 12px;
  padding-bottom: 3.2px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__cta-text {
    font-size: 14px;
    padding-bottom: 4px;
  }
}
.fv__cta-text::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #ce2073;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .fv__cta-text::after {
    height: 3px;
  }
}

.fv__cta-date {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
  margin-top: 3.2px;
}
@media screen and (min-width: 768px) {
  .fv__cta-date {
    margin-top: 5px;
    font-size: 16px;
  }
}

.fv__cta-button {
  margin-top: 12.8px;
}
@media screen and (min-width: 768px) {
  .fv__cta-button {
    margin-top: 13.8px;
  }
}
.fv__cta-button a {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .fv__cta-button a {
    font-size: 16px;
  }
}

.fv__img-text1,
.fv__img-text2,
.fv__img-food1,
.fv__img-food2,
.fv__img-cat1,
.fv__img-cat2 {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.fv__img-text1 {
  width: 142px;
  top: 7px;
  left: 0;
}
@media screen and (max-width: 374px) {
  .fv__img-text1 {
    width: 122px;
  }
}
@media screen and (min-width: 768px) {
  .fv__img-text1 {
    width: 230px;
  }
}
@media screen and (min-width: 900px) {
  .fv__img-text1 {
    width: 244px;
    top: 0;
    left: 36.5px;
  }
}
.fv__img-text1 img {
  width: 100%;
}

.fv__img-text2 {
  width: 110px;
  right: 25px;
  top: 0;
}
@media screen and (max-width: 374px) {
  .fv__img-text2 {
    width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .fv__img-text2 {
    width: 180px;
    right: 70px;
  }
}
@media screen and (min-width: 900px) {
  .fv__img-text2 {
    right: 127px;
    top: 17px;
  }
}
.fv__img-text2 img {
  width: 100%;
}

.fv__img-food1 {
  width: 47.257px;
  left: 43px;
  bottom: 16.99px;
  z-index: 4;
}
@media screen and (max-width: 374px) {
  .fv__img-food1 {
    left: 11px;
    bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .fv__img-food1 {
    width: 111px;
    bottom: 41px;
    left: 101px;
  }
}
.fv__img-food1 img {
  width: 100%;
}

.fv__img-food2 {
  width: 54.069px;
  left: 0px;
  bottom: 0;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .fv__img-food2 {
    width: 127px;
    bottom: 1px;
    left: 0;
  }
}
.fv__img-food2 img {
  width: 100%;
}

.fv__img-cat1 {
  width: 98px;
  bottom: 0;
  right: 9px;
  z-index: 6;
}
@media screen and (max-width: 374px) {
  .fv__img-cat1 {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .fv__img-cat1 {
    width: 233px;
    bottom: -43px;
    right: 0;
  }
}
.fv__img-cat1 img {
  width: 100%;
}

.fv__img-cat2 {
  width: 62px;
  right: 0px;
  bottom: 58px;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .fv__img-cat2 {
    width: 170px;
    bottom: 60px;
    right: 63px;
  }
}
.fv__img-cat2 img {
  width: 100%;
}

/* about ----------*/
.about {
  padding-block: 32px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about {
    padding-block: 80px 0;
  }
}

.about__img-left,
.about__img-right,
.about__img-pattern01,
.about__img-pattern02,
.about__img-goods01,
.about__img-goods02,
.about__img-spot,
.about__img-pads-type01 {
  text-align: center;
  position: absolute;
  z-index: -2;
}
.about__img-left img,
.about__img-right img,
.about__img-pattern01 img,
.about__img-pattern02 img,
.about__img-goods01 img,
.about__img-goods02 img,
.about__img-spot img,
.about__img-pads-type01 img {
  width: 100%;
}

.about__img-left {
  width: 200px;
  border-radius: 24px;
  top: 427px;
  left: -140px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__img-left {
    width: 480px;
    border-radius: 40px;
    top: 154px;
    left: -338px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-left {
    left: auto;
    right: calc(50% + 614px);
  }
}

.about__img-right {
  width: 200px;
  border-radius: 24px;
  top: 305px;
  right: -140px;
}
@media screen and (min-width: 768px) {
  .about__img-right {
    width: 480px;
    border-radius: 40px;
    top: 153.07px;
    right: -284.2px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-right {
    right: auto;
    left: calc(50% + 560.2px);
  }
}

@media screen and (min-width: 900px) {
  .about__img-pattern01 {
    width: 250px;
    border-radius: 24px;
    top: 60px;
    left: -21px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-pattern01 {
    left: auto;
    right: calc(50% + 532px);
  }
}

@media screen and (min-width: 900px) {
  .about__img-pattern02 {
    width: 873.922px;
    bottom: 634.65px;
    right: -566px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-pattern02 {
    right: auto;
    left: calc(50% + 448.08px);
  }
}

.about__img-goods01 {
  width: 133px;
  bottom: 158.2px;
  right: 57px;
}
@media screen and (min-width: 768px) {
  .about__img-goods01 {
    width: 160px;
    bottom: 232.8px;
    right: 74px;
  }
}
@media screen and (min-width: 900px) {
  .about__img-goods01 {
    width: 308px;
    bottom: 379px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-goods01 {
    right: auto;
    left: calc(50% + 379px);
  }
}

.about__img-goods02 {
  width: 48px;
  bottom: 217.2px;
  right: 21px;
}
@media screen and (min-width: 768px) {
  .about__img-goods02 {
    width: 60px;
    bottom: 292.8px;
  }
}
@media screen and (min-width: 900px) {
  .about__img-goods02 {
    width: 101px;
    bottom: 585.63px;
    right: 150px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-goods02 {
    right: auto;
    left: calc(50% + 510px);
  }
}

.about__img-spot {
  width: 138px;
  bottom: 61.2px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .about__img-spot {
    width: 220px;
    bottom: 0px;
  }
}
@media screen and (min-width: 900px) {
  .about__img-spot {
    width: 427px;
    bottom: 149px;
    left: -103px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-spot {
    left: auto;
    right: calc(50% + 437px);
  }
}

.about__img-pads-type01 {
  width: 54px;
  top: 22px;
  right: 0px;
}
@media screen and (min-width: 768px) {
  .about__img-pads-type01 {
    width: 100px;
    top: 0;
    right: 165.88px;
  }
}
@media screen and (min-width: 1512px) {
  .about__img-pads-type01 {
    right: auto;
    left: calc(50% + 495.12px);
  }
}

@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 896px;
  }
}

.about__body {
  text-align: center;
  border-radius: 24px;
  background: #fff;
  padding: 40px 43px;
  position: relative;
}
@media screen and (max-width: 374px) {
  .about__body {
    padding: 40px 15px;
  }
}
@media screen and (min-width: 768px) {
  .about__body {
    border-radius: 40px;
  }
}
.about__body::after {
  content: "";
  width: 100px;
  height: 36px;
  background: #cce1e4;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__body::after {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}

.about__message-title {
  margin-top: 24px;
  line-height: 158%;
}
@media screen and (min-width: 768px) {
  .about__message-title {
    margin-top: 32px;
    line-height: 160%;
  }
}
.about__message-title span {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__message-title span {
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
    font-size: 16px;
  }
}

.about__message-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18.3px;
  text-align: center;
  font-size: 12px;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .about__message-text {
    margin-top: 35px;
    font-size: 16px;
    gap: 27px;
  }
}

.about__message-text4 a {
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.about__message-text4 a:hover {
  color: #67b0c7;
  cursor: pointer;
}
.about__message-text4 strong {
  font-weight: 700;
}

.about__message-catch {
  margin-top: 32px;
  margin-inline: auto;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 8px;
  position: relative;
}
.about__message-catch::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
  background-image: linear-gradient(to right, #9ed0e0, #9ed0e0 4px, transparent 4px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .about__message-catch {
    margin-top: 44px;
    padding-bottom: 12px;
    font-size: 20px;
  }
}

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

.about_img-picture01,
.about_img-picture02 {
  position: absolute;
  width: clamp(88px, 26.2686567164%, 134px);
  text-align: center;
}
@media screen and (max-width: 374px) {
  .about_img-picture01,
  .about_img-picture02 {
    width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .about_img-picture01,
  .about_img-picture02 {
    width: 147px;
  }
}
.about_img-picture01 img,
.about_img-picture02 img {
  width: 100%;
}

.about_img-picture01 {
  left: 33px;
  top: 31px;
}
@media screen and (min-width: 768px) {
  .about_img-picture01 {
    top: 40.35px;
    left: 85px;
  }
}

.about_img-picture02 {
  right: 19.78px;
  top: 30px;
}
@media screen and (min-width: 768px) {
  .about_img-picture02 {
    top: 47px;
    right: 84.3px;
  }
}

.about__footer {
  margin-top: 139.67px;
  padding-top: 37.2px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__footer {
    margin-top: 167px;
    padding-top: 68.52px;
  }
}
@media screen and (min-width: 900px) {
  .about__footer {
    padding-top: 91px;
  }
}

.about__footer-img {
  text-align: center;
  position: absolute;
  width: 354.6416px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.about__footer-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__footer-img {
    width: 658px;
  }
}
@media screen and (min-width: 900px) {
  .about__footer-img {
    width: 890.604px;
  }
}

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

.about-swiper__slide {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about-swiper__slide {
    width: 150px;
  }
}
@media screen and (min-width: 900px) {
  .about-swiper__slide {
    width: 200px;
  }
}
.about-swiper__slide img {
  width: 100%;
}

/* how-to-enter ----------*/
.how-to-enter {
  padding-block: 64.8px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-block: 120px 0;
  }
}

.how-to-enter__img-map,
.how-to-enter__img-cat01,
.how-to-enter__img-cat02,
.how-to-enter__img-pads01,
.how-to-enter__img-pads02,
.how-to-enter__img-pads03 {
  text-align: center;
  position: absolute;
  z-index: -2;
}
.how-to-enter__img-map img,
.how-to-enter__img-cat01 img,
.how-to-enter__img-cat02 img,
.how-to-enter__img-pads01 img,
.how-to-enter__img-pads02 img,
.how-to-enter__img-pads03 img {
  width: 100%;
}

.how-to-enter__img-map {
  width: 136.043px;
  top: 64.8px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-map {
    width: 250px;
    top: 60px;
    left: 36px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__img-map {
    width: 420px;
    left: auto;
    right: calc(50% + 265px);
  }
}

.how-to-enter__img-cat01 {
  width: 94px;
  top: 69.8px;
  right: -31px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-cat01 {
    width: 124px;
    top: 101px;
    right: 54px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__img-cat01 {
    width: 214px;
    right: auto;
    left: calc(50% + 350px);
  }
}
@media screen and (min-width: 1072px) {
  .how-to-enter__img-cat01 {
    left: calc(50% + 442px);
  }
}

.how-to-enter__img-cat02 {
  width: 105px;
  top: 64.8px;
  right: 24px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-cat02 {
    width: 135px;
    top: 95px;
    right: 131px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__img-cat02 {
    width: 238px;
    right: auto;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1072px) {
  .how-to-enter__img-cat02 {
    left: calc(50% + 292px);
  }
}

.how-to-enter__img-pads01 {
  width: 55px;
  top: 138.8px;
  right: 20px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-pads01 {
    width: 65px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__img-pads01 {
    width: 100px;
    top: 268px;
    right: auto;
    left: calc(50% + 625px);
  }
}

.how-to-enter__img-pads02 {
  width: 55px;
  top: 614.35px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-pads02 {
    width: 65px;
    top: 700px;
    right: 36px;
    left: 36px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__img-pads02 {
    width: 100px;
    left: auto;
    right: calc(50% + 625px);
  }
}

.how-to-enter__img-pads03 {
  width: 55px;
  bottom: 366.13px;
  right: 20px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .how-to-enter__img-pads03 {
    width: 65px;
    bottom: 381.33px;
    right: 36px;
  }
}

.how-to-enter__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__content {
    gap: 65px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__content {
    -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: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 39px;
    gap: 3.125%;
  }
}

.how-to-enter__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__item:nth-child(2) {
    padding-top: 68px;
  }
}
.how-to-enter__item:nth-child(2), .how-to-enter__item:nth-child(3) {
  position: relative;
}
.how-to-enter__item:nth-child(2)::before, .how-to-enter__item:nth-child(3)::before {
  content: "";
  height: 34px;
  width: 7.47px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/how-to-enter/how-to-enter_step-line==sp.svg) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .how-to-enter__item:nth-child(2)::before, .how-to-enter__item:nth-child(3)::before {
    width: 113px;
    height: 24px;
    background: url(../img/how-to-enter/how-to-enter_step-line.svg) no-repeat center center/cover;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__item:nth-child(2)::before {
    width: 113px;
    height: 24px;
    left: -97px;
    bottom: 316px;
  }
}
.how-to-enter__item:nth-child(3) .how-to-enter__text {
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__item:nth-child(3) .how-to-enter__body {
    margin-top: 28px;
  }
  .how-to-enter__item:nth-child(3) .how-to-enter__text {
    margin-top: 19px;
  }
  .how-to-enter__item:nth-child(3)::before {
    width: 113px;
    height: 24px;
    left: -88px;
    bottom: 254px;
  }
}

.how-to-enter__img {
  text-align: center;
  width: 196px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .how-to-enter__img {
    width: clamp(196px, 87.5%, 280px);
  }
}
@media screen and (min-width: 1072px) {
  .how-to-enter__img {
    width: 280px;
  }
}
.how-to-enter__img img {
  width: 100%;
}

.how-to-enter__body {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__body {
    margin-top: 24px;
  }
}

.how-to-enter__title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to-enter__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1072px) {
  .how-to-enter__title {
    font-size: 20px;
  }
}

.how-to-enter__text {
  font-size: 12px;
  margin-top: 16px;
  line-height: 159%;
}
@media screen and (min-width: 768px) {
  .how-to-enter__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1072px) {
  .how-to-enter__text {
    font-size: 16px;
  }
}
.how-to-enter__text a {
  text-decoration: underline;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.how-to-enter__text a:hover {
  color: #67b0c7;
  cursor: pointer;
}
.how-to-enter__text strong {
  font-weight: 700;
}

.how-to-enter__link {
  margin-top: 16px;
}
.how-to-enter__link a {
  width: 226px;
  height: 38px;
  padding-left: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--lp-blown, #4a3636);
  font-size: 14px;
  font-weight: 700;
  background: #fff;
  position: relative;
  border: 3px solid transparent;
}
@media screen and (min-width: 768px) {
  .how-to-enter__link a {
    width: 254px;
    height: 42px;
    font-size: 16px;
    padding-left: 32px;
    -webkit-transition: border-color 300ms;
    transition: border-color 300ms;
  }
  .how-to-enter__link a:hover {
    border-color: #9ed0e0;
  }
}
.how-to-enter__link a::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  inset-block: 0;
  margin-block: auto;
  background: url(../img/footer/instagram_icon.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .how-to-enter__link a::before {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter__button {
  text-align: center;
  margin-top: 16px;
  padding-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__button {
    margin-top: 48px;
  }
}

/* prizes ----------*/
.prizes {
  padding-top: 31.67px;
  padding-bottom: 215px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prizes {
    padding-top: 120px;
    padding-bottom: 639px;
  }
}

.prizes__inner {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    max-width: 1072px;
    padding-inline: 24px;
  }
}

.prizes__content {
  background: #fff;
  padding: 59.3px 5.3333333333% 34.67px;
  position: relative;
  border-radius: 22px;
  margin-top: 83px;
}
@media screen and (min-width: 768px) {
  .prizes__content {
    margin-top: 150px;
    padding: 64.3px 56px 53px;
    border-radius: 24px;
  }
}
.prizes__content::before {
  content: "";
  width: 228px;
  height: 83px;
  position: absolute;
  background: url(../img/prizes/prizes_device==SP.svg) no-repeat center center/cover;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__content::before {
    width: 378px;
    height: 150px;
    background: url(../img/prizes/prizes_device.svg) no-repeat center center/cover;
    top: -150px;
  }
}

.prizes__heading {
  position: absolute;
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__heading {
    top: -122px;
  }
}

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

.prizes__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 15px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .prizes__list {
    margin-top: 32.5px;
    gap: 41px 32px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.prizes-item {
  width: 160px;
  margin-top: 24px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .prizes-item {
    margin-top: 39.1px;
    width: calc(33.3333% - 24px);
  }
  .prizes-item:nth-child(1), .prizes-item:nth-child(2) {
    width: calc(50% - 16px);
    margin-top: 50px;
  }
  .prizes-item:nth-child(1) .prizes-item__inner, .prizes-item:nth-child(2) .prizes-item__inner {
    border-radius: 24px;
  }
  .prizes-item:nth-child(1) .prizes-item__head, .prizes-item:nth-child(2) .prizes-item__head {
    width: 99px;
    height: 98.5px;
    top: -50px;
  }
  .prizes-item:nth-child(1) .prizes-item__head-text, .prizes-item:nth-child(2) .prizes-item__head-text {
    font-size: 16px;
  }
  .prizes-item:nth-child(1) .prizes-item__head-number, .prizes-item:nth-child(2) .prizes-item__head-number {
    font-size: 48px;
  }
  .prizes-item:nth-child(1) .prizes-item__text, .prizes-item:nth-child(2) .prizes-item__text {
    height: 120px;
    font-size: 20px;
  }
  .prizes-item:nth-child(1) .prizes-item__zoom, .prizes-item:nth-child(2) .prizes-item__zoom {
    width: 100px;
    height: 100px;
  }
  .prizes-item:nth-child(1) .prizes-item__icon, .prizes-item:nth-child(2) .prizes-item__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 14px;
    margin-right: 12.5px;
  }
  .prizes-item:nth-child(1) .prizes-item__modal-open, .prizes-item:nth-child(2) .prizes-item__modal-open {
    border-radius: 24px;
  }
}

.prizes-item__inner {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prizes-item__inner {
    border-radius: 16px;
  }
  .prizes-item__inner:hover .prizes-item__img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes-item__inner:hover .prizes-item__zoom {
    opacity: 0.6;
  }
  .prizes-item__inner:hover .prizes-item__text {
    opacity: 0.6;
  }
}

.prizes-item__head {
  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;
  width: 47px;
  height: 47px;
  background: url(../img/prizes/prizes_num-head.svg) no-repeat center center/cover;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .prizes-item__head {
    width: 79px;
    height: 78.5px;
    top: -40px;
  }
}

.prizes-item__head-text {
  color: #fff;
  font-size: 7.68px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prizes-item__head-text {
    font-size: 12.8px;
  }
}

.prizes-item__head-number {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .prizes-item__head-number {
    font-size: 37.4px;
  }
}

.prizes-item__body {
  position: relative;
  background: #f5f5f5;
  display: block;
}

.prizes-item__img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes-item__img {
    display: block;
    height: 73.9130434783%;
    overflow: hidden;
  }
  .prizes-item__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: -webkit-transform 500ms;
    transition: -webkit-transform 500ms;
    transition: transform 500ms;
    transition: transform 500ms, -webkit-transform 500ms;
  }
}
.prizes-item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes-item__text {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  height: 56px;
  display: grid;
  place-items: center;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .prizes-item__text {
    font-size: 13px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 900px) {
  .prizes-item__text {
    height: 80px;
    font-size: 16px;
  }
}

.prizes-item__zoom {
  display: block;
  width: 36px;
  height: 36px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #67b0c7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .prizes-item__zoom {
    width: 50px;
    height: 50px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
}
@media screen and (min-width: 900px) {
  .prizes-item__zoom {
    width: 64px;
    height: 64px;
  }
}

.prizes-item__icon {
  margin-bottom: 6.12px;
  margin-right: 5.22px;
  width: 11.52px;
  height: 11.52px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes-item__icon {
    width: 15.5px;
    height: 15.5px;
    margin-bottom: 7.52px;
    margin-right: 7.62px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-item__icon {
    width: 20.48px;
    height: 20.48px;
    margin-bottom: 8.96px;
    margin-right: 8px;
  }
}
.prizes-item__icon img {
  width: 100%;
  vertical-align: top;
}

.prizes-item__modal-open {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  border-radius: 8px;
  border: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .prizes-item__modal-open {
    border-radius: 16px;
  }
}
.prizes-item__modal-open:hover {
  border-color: #9ed0e0;
}

.prizes__button {
  margin-top: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__img-pattern-left,
  .prizes__img-pattern-right {
    position: absolute;
    width: 315px;
    height: 86px;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .prizes__img-pattern-left {
    left: 0;
    top: -119px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__img-pattern-right {
    right: 0;
    top: -119px;
  }
}

.prizes__bg-img {
  width: clamp(580px, 154.6666666667%, 767px);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .prizes__bg-img {
    width: 100%;
    width: clamp(1512px, 154.6666666667%, 100%);
  }
}
.prizes__bg-img img {
  width: 100%;
}

/* spots ----------*/
.spots {
  position: relative;
  padding-top: 45.714px;
  margin-top: -45.714px;
  overflow: hidden;
  padding-bottom: 45.71px;
}
@media screen and (min-width: 768px) {
  .spots {
    padding-top: 120px;
    margin-top: -120px;
    padding-bottom: 120px;
  }
}

.spots__bg-img {
  position: absolute;
  width: clamp(580px, 154.6666666667%, 767px);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .spots__bg-img {
    width: clamp(1512px, 154.6666666667%, 100%);
  }
}
.spots__bg-img img {
  width: 100%;
}

.spots__img-pads-type01 {
  text-align: center;
  position: absolute;
  top: 496px;
  right: calc(50% + 621px);
}
.spots__img-pads-type01 img {
  width: 100%;
}

.spots__content {
  background: #67b0c7;
  position: relative;
  padding-bottom: 19.84px;
}
@media screen and (min-width: 768px) {
  .spots__content {
    padding-bottom: 4px;
  }
}
.spots__content::before {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  top: -44.714px;
  left: 0;
  right: 0;
  background: url(../img/spots/spots__wave-top.webp) repeat top left -5px/96px 45.714px;
}
@media screen and (min-width: 768px) {
  .spots__content::before {
    height: 120px;
    top: -119px;
    background-size: 252px 120px;
    background-position: top left;
  }
}
.spots__content::after {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  bottom: -44.714px;
  left: 0;
  right: 0;
  background: url(../img/spots/spots_wave-bottom.webp) repeat bottom left -3px/96px 45.714px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .spots__content::after {
    height: 120px;
    bottom: -119px;
    background-size: 252px 120px;
  }
}

.spots__inner {
  padding-inline: 0;
}
@media screen and (min-width: 768px) {
  .spots__inner {
    padding-inline: 24px;
  }
}

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

.spots__heading {
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots__heading {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-left: 0;
    font-size: 40px;
    margin-right: 27px;
    text-align: left;
    margin-inline: 0;
    padding-top: 71px;
    letter-spacing: 0.2511em;
    line-height: 150%;
  }
}
.spots__heading::before {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../img/spots/spots_heading-icon.svg) no-repeat center center/cover;
  position: absolute;
  inset: 0;
  margin-block: auto;
  left: 0;
}
@media screen and (min-width: 768px) {
  .spots__heading::before {
    width: 56px;
    height: 56px;
  }
}

.spots__slider {
  margin-top: 24px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .spots__slider {
    margin: 0;
    width: calc(100% - 87px + (100vw - 100%) / 2);
  }
}

.spots-swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .spots-swiper {
    margin-inline: 0;
    overflow: hidden;
  }
}

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

.spots-swiper__slide {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .spots-swiper__slide {
    width: 344px;
  }
}

.spots-swiper__prev,
.spots-swiper__next {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots-swiper__prev,
  .spots-swiper__next {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 509px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .spots-swiper__prev::after,
  .spots-swiper__next::after {
    display: none;
  }
  .spots-swiper__prev:hover,
  .spots-swiper__next:hover {
    opacity: 0.9;
  }
}

@media screen and (min-width: 768px) {
  .spots-swiper__prev {
    left: 40px;
    background: url(../img/spots/spots_left-arrow.svg) no-repeat center center/15.638px 26.539px #ffee56;
  }
}

@media screen and (min-width: 768px) {
  .spots-swiper__next {
    right: 40px;
    background: url(../img/spots/spots_right-arrow.svg) no-repeat center center/15.638px 26.539px #ffee56;
  }
}

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

.spots-item__img {
  text-align: center;
}
.spots-item__img img {
  width: 100%;
}

.spots-item__body {
  height: 223.2px;
  padding: 17px 24px 15px;
}
@media screen and (min-width: 768px) {
  .spots-item__body {
    padding: 24px 32px;
    height: 302px;
  }
}

.spots-item__title {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots-item__title {
    font-size: 20px;
  }
}

.spots-item__text {
  font-size: 12px;
  margin-top: 16px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .spots-item__text {
    font-size: 16px;
    margin-top: 24px;
    line-height: 164%;
  }
}

@media screen and (min-width: 768px) {
  .spots__footer {
    margin-top: 64px;
  }
}
@media screen and (min-width: 900px) {
  .spots__footer {
    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;
  }
}

.spots__footer-img {
  text-align: center;
  display: block;
  width: 255px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .spots__footer-img {
    width: 350px;
  }
}
@media screen and (min-width: 900px) {
  .spots__footer-img {
    width: clamp(390px, 45.8984375%, 430px);
    margin-inline: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1072px) {
  .spots__footer-img {
    width: 495px;
  }
}
.spots__footer-img img {
  width: 100%;
}

.spots__footer-catch {
  margin-top: 16px;
  color: #fff;
  text-align: center;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .spots__footer-catch {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .spots__footer-catch {
    margin-top: 0;
  }
}

.spots__footer-button {
  text-align: center;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .spots__footer-button {
    margin-top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .spots__footer-button {
    text-align: right;
    margin-top: 25px;
  }
}

/* qa ----------*/
.qa {
  padding-top: 40.29px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 120px;
  }
}

.qa__content {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .qa__content {
    margin-top: 38px;
  }
}

.qa__item + .qa__item {
  margin-top: 11.5px;
}
@media screen and (min-width: 768px) {
  .qa__item + .qa__item {
    margin-top: 24px;
  }
}

.qa-item {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .qa-item {
    border-radius: 16px;
  }
}
.qa-item.is-open .qa-item__head {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .qa-item.is-open .qa-item__head {
    padding-bottom: 20px;
  }
}
.qa-item.is-open .qa-item__head-icon::before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  opacity: 0;
}

.qa-item__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  border: 2px solid transparent;
  padding: 8px 12px;
}
@media screen and (min-width: 768px) {
  .qa-item__head {
    border-radius: 14px;
    gap: 16px;
    padding: 18.5px 18.5px 18px;
  }
}
.qa-item__head:focus {
  outline: none;
  border-color: #9ed0e0;
}

.qa-item__icon-q {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 120%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .qa-item__icon-q {
    font-size: 32px;
  }
}

.qa-item__head-text {
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-item__head-text {
    font-size: 20px;
  }
}

.qa-item__head-icon {
  display: block;
  width: 26.182px;
  height: 26.182px;
  background: #9ed0e0;
  position: relative;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .qa-item__head-icon {
    width: 48px;
    height: 48px;
  }
}
.qa-item__head-icon::before, .qa-item__head-icon::after {
  content: "";
  position: absolute;
  width: 10.182px;
  height: 1.455px;
  background: #fff;
  border-radius: 0.7275px;
  top: calc(50% - 0.7275px);
  left: calc(50% - 5.091px);
}
@media screen and (min-width: 768px) {
  .qa-item__head-icon::before, .qa-item__head-icon::after {
    width: 18.667px;
    height: 2.667px;
    border-radius: 1.3335px;
    top: calc(50% - 1.3335px);
    left: calc(50% - 9.3335px);
  }
}
.qa-item__head-icon::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.qa-item__body {
  background: #f5f5f5;
  padding: 14px 14px;
  width: 100%;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-item__body {
    padding: 24px 22px 22px;
  }
}

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

.qa-item__icon-a {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .qa-item__icon-a {
    font-size: 32px;
  }
}

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

/* entry-requirements ----------*/
.entry-requirements {
  padding-top: 30.67px;
}
@media screen and (min-width: 768px) {
  .entry-requirements {
    padding-top: 120px;
  }
}

.entry-requirements__inner {
  padding-bottom: 31px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__inner {
    padding-bottom: 120px;
  }
}

.entry-requirements__content {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 15px 15.5px 16px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__content {
    padding: 30px 48px 33px;
  }
}

.entry-requirements__list {
  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: 768px) {
  .entry-requirements__list {
    margin-top: 40px;
  }
}

.entry-requirements__item {
  padding-bottom: 14.3px;
  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: 768px) {
  .entry-requirements__item {
    padding-bottom: 11px;
    -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;
  }
}
.entry-requirements__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.entry-requirements__item:last-child {
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__item:last-child {
    padding-bottom: 12px;
  }
}

.entry-requirements__head {
  font-weight: 700;
  padding-left: 16px;
  position: relative;
  width: 100%;
}
.entry-requirements__head::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7.188px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__head {
    width: 216px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 16px;
    font-size: 16px;
  }
}

.entry-requirements__body {
  font-size: 12px;
  width: 100%;
  line-height: 159%;
}
@media screen and (min-width: 768px) {
  .entry-requirements__body {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    line-height: 162%;
  }
}
.entry-requirements__body a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.entry-requirements__body a:hover {
  color: #67b0c7;
  cursor: pointer;
}

.entry-requirements__body-item {
  padding-left: 18px;
  position: relative;
  line-height: 159%;
}
@media screen and (min-width: 768px) {
  .entry-requirements__body-item {
    padding-left: 24px;
    line-height: 159%;
  }
}
.entry-requirements__body-item::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a3636;
  position: absolute;
  top: 10px;
  left: 7px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__body-item::before {
    width: 4px;
    height: 4px;
    top: 12px;
    left: 10px;
  }
}
.entry-requirements__body-item a {
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.entry-requirements__body-item a:hover {
  color: #67b0c7;
  cursor: pointer;
}
.entry-requirements__body-item + .entry-requirements__body-item {
  margin-top: -0.4px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__body-item + .entry-requirements__body-item {
    margin-top: 1.4px;
  }
}

.entry-requirements__footer-img {
  text-align: center;
}
.entry-requirements__footer-img img {
  width: 100%;
}

/* contact ----------*/
.contact {
  padding-block: 39.67px 45px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 120px;
  }
}

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

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

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

.contact__list {
  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: 24px;
}
@media screen and (min-width: 768px) {
  .contact__list {
    margin-top: 40px;
  }
}

.contact__footer {
  margin-top: 25.5px;
}
@media screen and (min-width: 768px) {
  .contact__footer {
    margin-top: 42px;
  }
}

.contact__privacy {
  text-align: center;
}

.contact__submit {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__submit {
    margin-top: 39px;
  }
}

.contact-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.5px;
}
@media screen and (min-width: 768px) {
  .contact-control:nth-child(4) .contact-control__head {
    padding-block: 15px 15.5px;
  }
}
@media screen and (min-width: 768px) {
  .contact-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .contact-control:not(:last-child) {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .contact-control__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact-control__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact-control__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.form-label {
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .form-label {
    width: 220px;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
    font-size: 16px;
  }
}

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

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

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

.form-radio__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
@media screen and (min-width: 768px) {
  .form-radio__input:hover + .form-radio__text::before {
    border: 2px solid #9ed0e0;
  }
}

.form-radio__text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  inset-block: 0;
  margin-block: auto;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
  left: 0;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

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

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

.form-checkbox__text {
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #f5f5f5;
  left: 0;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  background: url(../img/contact/chackbox_icon.svg) no-repeat center center/14px 9px;
  left: 5px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
  cursor: pointer;
}

.form-submit.is-error {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: transparent;
  background-color: #ccc;
}
.form-submit.is-active {
  background-color: #ffee56;
  cursor: pointer;
}

/* footer ----------*/
.footer {
  padding-top: 40px;
  overflow: hidden;
}
@media screen and (min-width: 1072px) {
  .footer {
    padding-top: 120px;
    position: relative;
  }
}

@media screen and (min-width: 1072px) {
  .footer__img-pads-type01 {
    width: 100px;
    position: absolute;
    top: 78px;
    left: calc(50% + 576px);
    z-index: -1;
  }
}
.footer__img-pads-type01 img {
  width: 100%;
}

.footer__inner {
  padding-bottom: 125px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-bottom: 120px;
  }
}

.footer__pop {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 125%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__pop {
    font-size: 24px;
  }
}

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

.footer__sns-link {
  display: block;
  width: 32px;
  height: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__sns-link {
    width: 40px;
    height: 40px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .footer__sns-link:hover {
    opacity: 0.6;
  }
}
.footer__sns-link img {
  width: 100%;
}

.footer__img-text {
  text-align: center;
  display: block;
  width: 98%;
  margin: 14px auto 0;
}
@media screen and (min-width: 768px) {
  .footer__img-text {
    width: 740px;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 43px;
  }
}
.footer__img-text img {
  width: 100%;
}

.footer__body {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .footer__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -1px;
  }
}

@media screen and (min-width: 768px) {
  .footer__map {
    width: 50%;
  }
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .footer__map iframe {
    aspect-ratio: 512/400;
  }
}

.footer__info {
  padding: 5.9701492537% 0 8.9552238806% 5.9701492537%;
}
@media screen and (max-width: 374px) {
  .footer__info {
    padding-inline: 16px;
  }
}
@media screen and (min-width: 768px) {
  .footer__info {
    padding: 5.9701492537% 18px 5.9701492537%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 50%;
  }
}

.footer__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__info-wrap {
    max-width: 324px;
    margin-inline: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 900px) {
  .footer__info-wrap {
    max-width: 389px;
  }
}

.footer__logo {
  margin-right: 17px;
  text-align: center;
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-right: 0;
    text-align: left;
    width: 183px;
  }
}
.footer__logo img {
  width: 100%;
}

.footer__info-list {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .footer__info-list {
    margin-top: 24px;
    width: 324px;
  }
}
@media screen and (min-width: 900px) {
  .footer__info-list {
    width: 389px;
  }
}

.info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5.7142857143%;
}
@media screen and (min-width: 768px) {
  .info-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 7.7120822622%;
  }
}
@media screen and (min-width: 1072px) {
  .info-item {
    gap: 10.2827763496%;
  }
}
.info-item + .info-item {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .info-item + .info-item {
    margin-top: 12px;
  }
}

.info-item__head {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-left: 16px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  width: 64px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .info-item__head {
    font-size: 14px;
    width: 72px;
  }
}
@media screen and (min-width: 900px) {
  .info-item__head {
    font-size: 16px;
    width: 80px;
  }
}
.info-item__head::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
  border-radius: 50%;
  background: #9ed0e0;
}

.info-item__body {
  display: block;
  white-space: nowrap;
  font-size: 12px;
  width: 218px;
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .info-item__body {
    font-size: 14px;
    width: 228px;
  }
}
@media screen and (min-width: 900px) {
  .info-item__body {
    font-size: 16px;
    width: 269px;
  }
}

.footer__copyright {
  margin-top: 45.71px;
  background: #67b0c7;
  padding-block: 0 19px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 120px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  content: "";
  width: 100%;
  height: 45.714px;
  position: absolute;
  top: -44.714px;
  left: 0;
  right: 0;
  background: url(../img/spots/spots__wave-top.webp) repeat top left -6px/96px 45.714px;
}
@media screen and (min-width: 768px) {
  .footer__copyright::before {
    height: 120px;
    top: -119px;
    background-size: 252px 120px;
  }
}
.footer__copyright small {
  vertical-align: top;
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer__copyright small {
    font-size: 14px;
  }
}

/* page-top ----------*/
.top-button {
  display: block;
  width: 78px;
  text-align: center;
  position: absolute;
  bottom: 109px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 300ms, opacity 300ms;
  transition: visibility 300ms, opacity 300ms;
}
.top-button.is-show {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .top-button {
    position: fixed;
    width: 100px;
    height: 104px;
    top: 839px;
    right: 90px;
    z-index: 20;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
  }
  .top-button:hover {
    opacity: 0.7;
  }
}
.top-button img {
  width: 100%;
}

/* modal ----------*/
.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: 335px;
  z-index: 60;
  border: none;
  padding: 0;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .prizes-modal {
    max-width: 480px;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.4;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.4;
  background: #000;
}

.prizes-modal__img {
  text-align: center;
}
.prizes-modal__img img {
  width: 100%;
}

.prizes-modal__content {
  padding: 39px 20px 56px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__content {
    padding: 32px 40px 50px;
  }
}

.prizes-modal__title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__title {
    font-size: 20px;
  }
}

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