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

body {
  background: #e9f6f8;
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  overflow-x: hidden;
}

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

@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: 1200px) {
  .hidden-xl {
    display: none;
  }
}
.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
  }
}

.button {
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0px;
  display: inline-block;
  padding: 5px 22px 6px 23px;
  text-decoration: none;
  background: #fff;
  color: #333333;
  border: solid 2px #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 14px;
    padding: 3px 23px 6px 22px;
    border: 2px solid var(--LP-Blown, #4a3636);
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    gap: 8px;
  }
}

.title-icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 768px) {
  .title-icon {
    width: 48px;
    height: 48px;
  }
}

.title-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 125%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .title-en {
    font-size: 20px;
  }
}

.title-ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .title-ja {
    font-size: 32px;
  }
}
.title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 6px;
  background: #ffee56;
}
@media screen and (min-width: 768px) {
  .title-ja::before {
    height: 8px;
    bottom: -16px;
  }
}

.header {
  background: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-top: 14px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.header__logo {
  margin: 0;
}
.header__logo a img {
  display: block;
  width: 210px;
  position: relative;
  z-index: 1053;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 183px;
  }
}

.header__nav {
  position: fixed;
  inset: 0;
  width: 100%;
  max-height: 100dvh;
  background: #fff;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.6s ease, -webkit-transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  -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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 27px;
  padding-top: 137px;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    pointer-events: auto;
    height: auto;
    max-height: none;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 12px;
  }
}

.header__nav.is-checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.is-drawer-open {
  overflow: hidden;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  z-index: 900;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__link {
  font-size: 14px;
  line-height: 160%;
  display: inline-block;
  padding-block: 8px;
  color: #4a3636;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 12px;
  }
}
.header__link:hover {
  text-decoration: underline;
  color: #67b0c7;
}

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

.header__button {
  text-decoration: none;
  margin: 0;
  margin-top: 6px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .header__button {
    margin-top: 0;
  }
}
.header__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .header__button {
    margin-left: 4px;
  }
}

.header__open {
  background-color: transparent;
  border: none;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  z-index: 1051;
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__ber:nth-of-type(4) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__ber {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__ber:nth-of-type(1) {
  width: 25px;
}
.drawer-icon__ber:nth-of-type(2) {
  width: 5px;
  left: 27px;
}
.drawer-icon__ber:nth-of-type(3) {
  top: 12px;
}
.drawer-icon__ber:nth-of-type(4) {
  top: 24px;
}

.fv {
  background: url(../img/sp-fv-bg.png) center center/cover;
  height: 554px;
}
@media screen and (min-width: 768px) {
  .fv {
    background: url(../img/pc-fv-bg.png) no-repeat top center/cover;
    height: 740px;
  }
}

.fv__inner {
  text-align: center;
}

.fv__message {
  padding-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__message {
    padding-top: 35px;
    gap: 24px;
  }
}

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

.fv__tittle {
  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;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__tittle {
    gap: 16px;
  }
}

.fv__tittle-img-head img {
  width: 335px;
  height: 53px;
}
@media screen and (min-width: 768px) {
  .fv__tittle-img-head img {
    width: 520px;
    height: 82px;
  }
}

.fv__tittle-img-body img {
  width: 240px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .fv__tittle-img-body img {
    width: 356px;
    height: 60px;
  }
}

.fv__image {
  position: relative;
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .fv__image {
    width: 250px;
  }
}

.fv__decor {
  position: absolute;
  z-index: 1;
  display: block;
}
.fv__decor--phone {
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -521px;
}
@media screen and (min-width: 768px) {
  .fv__decor--phone {
    bottom: -543px;
  }
}
.fv__decor--hukidashi {
  top: 17px;
  right: 126px;
}
@media screen and (min-width: 768px) {
  .fv__decor--hukidashi {
    top: 0;
    right: 269px;
  }
}
.fv__decor--cat1 {
  right: -58px;
  bottom: -532px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__decor--cat1 {
    right: -250px;
    bottom: -603px;
  }
}
@media screen and (min-width: 900px) {
  .fv__decor--cat1 {
    right: -299px;
    bottom: -603px;
  }
}
.fv__decor--cat2 {
  right: -67px;
  bottom: -474px;
}
@media screen and (min-width: 768px) {
  .fv__decor--cat2 {
    right: -200px;
    bottom: -499px;
  }
}
@media screen and (min-width: 900px) {
  .fv__decor--cat2 {
    right: -236px;
    bottom: -499px;
  }
}
.fv__decor--present {
  top: 10px;
  right: -42px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .fv__decor--present {
    top: 17px;
    right: -172px;
  }
}
.fv__decor--food {
  top: 391px;
  right: 178px;
}
@media screen and (min-width: 768px) {
  .fv__decor--food {
    top: 227px;
    right: 338px;
  }
}

.fv__decor--cat1 {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__decor--cat1 {
    width: 233px;
  }
}

.fv__decor--cat2 {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__decor--cat2 {
    width: 170px;
  }
}

.fv__decor--hukidashi {
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv__decor--hukidashi {
    width: 244px;
  }
}

.fv__decor--present {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__decor--present {
    width: 180px;
  }
}

.fv__decor--food {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .fv__decor--food {
    width: 212px;
  }
}

.about {
  position: relative;
  overflow: clip;
}

.about__inner {
  padding-top: 188px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__inner {
    padding-top: 177px;
  }
}

.about-cat {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  z-index: 50;
}

.about__cat-image1 {
  position: absolute;
  right: -17px;
  top: -12px;
}
@media screen and (min-width: 768px) {
  .about__cat-image1 {
    top: -79px;
    right: -50px;
  }
}
@media screen and (min-width: 900px) {
  .about__cat-image1 {
    top: -81px;
    right: -103px;
  }
}
.about__cat-image1 img {
  width: 19.749px;
  height: 20.681px;
}
@media screen and (min-width: 768px) {
  .about__cat-image1 img {
    width: 36.572px;
    height: 37.916px;
  }
}

.about__cat-image2 {
  position: absolute;
  right: -20px;
  top: 21px;
}
@media screen and (min-width: 768px) {
  .about__cat-image2 {
    top: -19px;
    right: -106px;
  }
}
.about__cat-image2 img {
  width: 19.749px;
  height: 20.681px;
}
@media screen and (min-width: 768px) {
  .about__cat-image2 img {
    width: 36.572px;
    height: 37.916px;
  }
}

.about__cat-image3 {
  position: absolute;
  right: 14px;
  top: 56px;
}
@media screen and (min-width: 768px) {
  .about__cat-image3 {
    top: 40px;
    right: -45px;
  }
}
.about__cat-image3 img {
  width: 19.749px;
  height: 20.681px;
}
@media screen and (min-width: 768px) {
  .about__cat-image3 img {
    width: 36.572px;
    height: 37.916px;
  }
}

.about__cat-image4 {
  position: absolute;
  right: 11px;
  top: 89px;
}
@media screen and (min-width: 768px) {
  .about__cat-image4 {
    top: 102px;
    right: -50px;
  }
}
.about__cat-image4 img {
  width: 19.749px;
  height: 20.681px;
}
@media screen and (min-width: 768px) {
  .about__cat-image4 img {
    width: 36.572px;
    height: 37.916px;
  }
}

.about__card {
  padding-top: 39px;
  padding-bottom: 40px;
  border-radius: 24px;
  background: #fff;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 768px) {
  .about__card {
    max-width: 848px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 40px;
  }
}

@media screen and (min-width: 768px) {
  .about-title img {
    display: block;
    width: 48px;
    height: 48px;
  }
}

.about-card__img {
  position: relative;
}

.about-card__img-left {
  position: absolute;
  top: -11px;
  left: 33px;
}
@media screen and (min-width: 768px) {
  .about-card__img-left {
    top: -3px;
    left: 85px;
  }
}
.about-card__img-left img {
  width: 87px;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .about-card__img-left img {
    width: 148px;
  }
}

.about-card__img-right {
  position: absolute;
  top: -11px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .about-card__img-right {
    top: 5px;
    right: 84px;
  }
}
.about-card__img-right img {
  width: 87px;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .about-card__img-right img {
    width: 148px;
  }
}

.about-card__photo {
  position: relative;
}

.about-card__photo-left {
  position: absolute;
  top: 394px;
  left: -160px;
}
@media screen and (min-width: 768px) {
  .about-card__photo-left {
    top: 73px;
    left: -612px;
    z-index: 60;
  }
}
.about-card__photo-left img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about-card__photo-left img {
    width: 480px;
  }
}

.about-card__photo-right {
  position: absolute;
  top: 272px;
  right: -160px;
}
@media screen and (min-width: 768px) {
  .about-card__photo-right {
    top: 72px;
    right: -559px;
  }
}
.about-card__photo-right img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .about-card__photo-right img {
    width: 480px;
  }
}

.about-card__photo-shape {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about-card__photo-shape {
    top: -21px;
    left: -295px;
    z-index: 50;
  }
}
.about-card__photo-shape img {
  width: 250px;
}

.about__content {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 48px;
    gap: 32px;
  }
}

.about-content__head {
  font-size: 14px;
  font-weight: 700;
  line-height: 157%;
}
.about-content__head span {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-content__head span {
    display: inline;
  }
}
.about-content__head .about-content__head-none {
  display: inline;
}
@media screen and (min-width: 768px) {
  .about-content__head .about-content__head-none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about-content__head {
    font-size: 16px;
  }
}

.about-content__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
.about-content__body p {
  line-height: 152%;
}
@media screen and (min-width: 768px) {
  .about-content__body p {
    font-size: 16px;
    line-height: 170%;
  }
}
.about-content__body a {
  text-decoration: underline;
}
.about-content__body a:hover {
  color: #67b0c7;
}

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

.about-foot__text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  position: relative;
  padding-top: 8px;
  padding-bottom: 6px;
  border-bottom: 2px dashed var(--LP-Blue, #9ed0e0);
}
@media screen and (min-width: 768px) {
  .about-foot__text {
    line-height: 154%;
    padding-top: 11px;
    padding-bottom: 10px;
    font-size: 20px;
  }
}

.about__button {
  margin-top: 24px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.about__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 768px) {
  .about__button {
    padding: 10px 40px;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%;
  }
}

.about__outer-image {
  position: relative;
}

.about__outer-image-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about__outer-image-arrow img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-arrow img {
    width: 140px;
  }
}

.about__outer-image-slope {
  position: absolute;
  top: 2px;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-slope {
    top: -508px;
    left: -377px;
  }
}
.about__outer-image-slope img {
  width: 138px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-slope img {
    width: 427px;
  }
}

.about__outer-image-goods {
  position: absolute;
  right: 0;
  top: 12px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-goods {
    top: -230px;
    right: -125px;
    z-index: 60;
  }
}
.about__outer-image-goods img {
  width: 48px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-goods img {
    width: 101px;
  }
}

.about__outer-image-towel {
  position: absolute;
  top: 53px;
  right: 37px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-towel {
    top: -73px;
    right: -199px;
  }
}
.about__outer-image-towel img {
  width: 133px;
}
@media screen and (min-width: 768px) {
  .about__outer-image-towel img {
    width: 308px;
  }
}

.about__outer-image-shape {
  position: relative;
  top: -225px;
  right: -883px;
}
.about__outer-image-shape img {
  width: 873.922px;
}

.about__scroll {
  position: relative;
  margin-top: 118px;
}
@media screen and (min-width: 768px) {
  .about__scroll {
    margin-top: 117px;
  }
}

.about-scroll__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-left: -20px;
  margin-right: -20px;
}
.about-scroll__title img {
  display: block;
  width: 355px;
  height: 36px;
}
@media screen and (min-width: 768px) {
  .about-scroll__title img {
    width: 899px;
    height: 97px;
  }
}

.about .swiper-slide img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about .swiper-slide img {
    width: 200px;
  }
}

.card__swiper-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .card__swiper-container {
    margin-top: -5px;
  }
}

.card__swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.card__swiper .swiper-slide {
  width: auto !important;
}

.how-to-enter {
  text-align: center;
  overflow: hidden;
}

.how-to-enter__inner {
  margin-top: 40px;
  margin-bottom: 38px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-enter__inner {
    max-width: 1026px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 96px;
    margin-bottom: 6px;
  }
}

.how-to-use__head-img {
  position: relative;
}

.how-to-use__head-img-cat1 {
  position: absolute;
  top: 0;
  right: 24px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-cat1 {
    top: -30px;
    right: 30px;
  }
}
.how-to-use__head-img-cat1 img {
  width: 105px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-cat1 img {
    width: 238px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-use__head-img-cat1 {
    top: -28px;
    right: -13px;
  }
}

.how-to-use__head-img-cat2 {
  position: absolute;
  top: 5px;
  right: -31px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-cat2 {
    top: -20px;
    right: -80px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-use__head-img-cat2 {
    top: -18px;
    right: -140px;
  }
}
.how-to-use__head-img-cat2 img {
  width: 94px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-cat2 img {
    width: 214px;
  }
}

.how-to-use__head-img-map {
  position: absolute;
  top: 0;
  left: -20px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-map {
    top: -61px;
    left: -207px;
  }
}
.how-to-use__head-img-map img {
  width: 149px;
}
@media screen and (min-width: 768px) {
  .how-to-use__head-img-map img {
    width: 460px;
  }
}

@media screen and (min-width: 768px) {
  .how-to-enter-title img {
    width: 48px;
    height: 48px;
  }
}

.how-to-enter__cards {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .how-to-enter__cards {
    margin-top: 52px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .how-to-enter__cards .how-to-enter__card:nth-child(2) {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 900px) {
  .how-to-enter__cards .how-to-enter__card:nth-child(2) {
    padding-top: 69px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__cards .how-to-enter__card:nth-child(3) {
    padding-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__cards {
    -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;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cards {
    -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;
    gap: 30px;
    padding-left: 20px;
  }
}

.how-to-enter__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card {
    max-width: 320px;
  }
}

@media screen and (min-width: 900px) {
  .how-to-enter__card-stroke {
    display: none;
  }
}
.how-to-enter__card-stroke img {
  height: 34px;
}

.how-to-enter__card-stroke-pc2 {
  display: none;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-stroke-pc2 {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-stroke-pc2 {
    position: absolute;
    display: block;
    top: 207px;
    left: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__card-stroke-pc2 {
    left: -118px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-stroke-pc2 img {
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-stroke-pc2 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__card-stroke-pc2 img {
    width: 113px;
    height: 24px;
  }
}

.how-to-enter__card-stroke-pc3 {
  display: none;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-stroke-pc3 {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-stroke-pc3 {
    position: absolute;
    display: block;
    top: 206px;
    left: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__card-stroke-pc3 {
    left: -107px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-stroke-pc3 img {
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-stroke-pc3 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__card-stroke-pc3 img {
    width: 113px;
    height: 24px;
  }
}

.how-to-enter__card-cat-img1 {
  position: absolute;
  top: -64px;
  right: -4px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img1 {
    top: -38px;
    right: -700px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-cat-img1 {
    top: -35px;
    right: -877px;
  }
}
.how-to-enter__card-cat-img1 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img1 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img2 {
  position: absolute;
  top: -30px;
  right: -3px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2 {
    top: 25px;
    right: -720px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-cat-img2 {
    top: 27px;
    right: -869px;
  }
}
.how-to-enter__card-cat-img2 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img3 {
  position: absolute;
  top: 0px;
  right: -35px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img3 {
    top: 83px;
    right: -750px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-cat-img3 {
    top: 88px;
    right: -936px;
  }
}
.how-to-enter__card-cat-img3 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img3 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img4 {
  position: absolute;
  top: 35px;
  right: -34px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img4 {
    top: 144px;
    right: -740px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__card-cat-img4 {
    top: 148px;
    right: -930px;
  }
}
.how-to-enter__card-cat-img4 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img4 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img2-1 {
  position: absolute;
  top: 16px;
  left: -46px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-1 {
    top: 397px;
    left: -555px;
  }
}
.how-to-enter__card-cat-img2-1 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-1 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img2-2 {
  position: absolute;
  top: 50px;
  left: -48px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-2 {
    top: 459px;
    left: -560px;
  }
}
.how-to-enter__card-cat-img2-2 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-2 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img2-3 {
  position: absolute;
  top: 82px;
  left: -12px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-3 {
    top: 518px;
    left: -496px;
  }
}
.how-to-enter__card-cat-img2-3 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-3 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img2-4 {
  position: absolute;
  top: 116px;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-4 {
    top: 578px;
    left: -502px;
  }
}
.how-to-enter__card-cat-img2-4 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img2-4 img {
    width: 36.572px;
  }
}

@media screen and (min-width: 768px) {
  .how-to-enter__card-cat3 {
    display: none;
  }
}

.how-to-enter__card-cat-img3-1 {
  position: absolute;
  top: -46px;
  right: -45px;
}
.how-to-enter__card-cat-img3-1 img {
  width: 20.115px;
}

.how-to-enter__card-cat-img3-2 {
  position: absolute;
  top: -13px;
  right: -48px;
}
.how-to-enter__card-cat-img3-2 img {
  width: 20.115px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__card-cat-img3-2 img {
    width: 36.572px;
  }
}

.how-to-enter__card-cat-img3-3 {
  position: absolute;
  top: 23px;
  right: -15px;
}
.how-to-enter__card-cat-img3-3 img {
  width: 20.115px;
}

.how-to-enter__card-cat-img3-4 {
  position: absolute;
  top: 55px;
  right: -18px;
}
.how-to-enter__card-cat-img3-4 img {
  width: 20.115px;
}

.how-to-enter-card-content__head img {
  height: 210px;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card-content__head img {
    width: 280px;
    height: 300px;
  }
}

.how-to-enter-card__body {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card__body {
    margin-top: 24px;
    gap: 16px;
  }
}

.how-to-enter-card__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card__title {
    font-size: 20px;
    line-height: 160%;
  }
}

.how-to-enter-card__text {
  line-height: 161%;
}
.how-to-enter-card__text a {
  color: inherit;
  text-decoration: underline;
}
.how-to-enter-card__text a:hover {
  color: #67b0c7;
}
.how-to-enter-card__text span {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card__text {
    font-size: 16px;
  }
}

.how-to-enter-card__follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 12px;
  background: #fff;
  margin: 0 auto;
  gap: 8px;
}
.how-to-enter-card__follow:hover {
  text-decoration: underline;
  color: #67b0c7;
}

.how-to-enter-card__follow-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-to-enter-card__follow-img img {
  width: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card__follow-img img {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter-card__follow-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .how-to-enter-card__follow-text {
    font-size: 16px;
  }
}

.how-to-use__button {
  margin-top: 16px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.how-to-use__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 768px) {
  .how-to-use__button {
    margin-top: 45px;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    padding: 10px 40px 12px 40px;
  }
}

.prizes-section-title {
  padding-top: 20px;
  background: url(../img/deco_prizes1_sp.png) no-repeat center top/238px 86px;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .prizes-section-title img {
    width: 48px;
    height: 48px;
  }
}
.prizes-section-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 63px;
  bottom: -30px;
  left: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: #fff;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .prizes-section-title::before {
    bottom: -64px;
    height: 73px;
  }
}
@media screen and (min-width: 768px) {
  .prizes-section-title {
    margin-right: auto;
    margin-left: auto;
    padding-right: 56px;
    padding-left: 56px;
    max-width: 1024px;
    padding-top: 28px;
    margin-top: 120px;
    background: url(../img/deco_prizes1_sp.png) no-repeat center top/365.624px 148.967px;
  }
}

.prizes__inner {
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background: #fff;
  text-align: center;
  padding-bottom: 35px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 56px;
    padding-left: 56px;
    max-width: 1024px;
    padding-bottom: 53px;
    position: relative;
  }
  .prizes__inner::before {
    content: "";
    position: absolute;
    top: -208px;
    left: 0;
    background: url(../img/proze-triangle-rleft.png) no-repeat center center/contain;
    width: 315px;
    height: 86px;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .prizes__inner::before {
    top: -185px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__inner::after {
    content: "";
    position: absolute;
    top: -208px;
    right: 0;
    background: url(../img/proze-triangle-right.png) no-repeat center center/contain;
    width: 315px;
    height: 86px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .prizes__inner::after {
    top: -185px;
  }
}

.prizes__message {
  margin-top: 28px;
  padding-right: 20px;
  padding-left: 20px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .prizes__message {
    margin-top: 57px;
    padding-right: 0;
    padding-left: 0;
    font-size: 16px;
  }
}

.prizes__cards {
  margin-top: 45px;
  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: 39px 15px;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    margin-top: 79px;
    gap: 80px 32px;
    justify-items: center;
  }
}
.prizes__card {
  position: relative;
  border-radius: 8px;
  background: #f5f5f5;
  width: 160px;
  height: 196px;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  border: 2px solid transparent;
}
@media screen and (min-width: 768px) {
  .prizes__card {
    border-radius: 24px;
    grid-column: span 2;
    grid-row: span 2;
    width: 280px;
    height: 320px;
  }
}

.prizes__card:hover,
.prizes__card.is-hover {
  border-color: transparent;
  outline: 4px solid #9ed0e0;
  outline-offset: -4px;
}

.prizes__card:hover .prizes-card__image img,
.prizes__card.is-hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media screen and (min-width: 1200px) {
  .prizes__card--lg {
    width: 440px;
    height: 460px;
  }
  .prizes__card--lg .prizes-card__image img {
    width: 440px;
    height: 340px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
  }
  .prizes__card--lg .prizes-card__text {
    height: 120px;
  }
  .prizes__card--lg .prizes-card__zoom img {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
  .prizes__card--lg .prizes-card__number {
    top: -50px;
  }
  .prizes__card--lg .prizes-card__number img {
    width: 100px;
    border-bottom-right-radius: 24px;
  }
}

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

.prizes-card__image {
  overflow: hidden;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media screen and (min-width: 768px) {
  .prizes-card__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.prizes-card__image img {
  display: block;
  width: 160px;
  height: 140px;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .prizes-card__image img {
    width: 280px;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card--lg .prizes-card__text {
    font-size: 20px;
  }
}

.prizes-card__text {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 56px;
}
@media screen and (min-width: 768px) {
  .prizes-card__text {
    font-size: 16px;
    line-height: 160%;
    height: 80px;
  }
}

.prizes-card__zoom {
  position: absolute;
  bottom: 0;
  right: 0;
}
.prizes-card__zoom img {
  display: block;
  width: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 768px) {
  .prizes-card__zoom img {
    width: 64px;
    border-bottom-right-radius: 24px;
  }
}

.prizes__button {
  margin-top: 18px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.prizes__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    margin-top: 42px;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    padding: 10px 40px 12px 40px;
  }
}

.prize-modals {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.prize-modals.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.prize-modal {
  display: none;
  width: 336px;
  height: 480px;
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prize-modal {
    width: 480px;
    height: 650px;
  }
}

.prizes-modal__image {
  width: 100%;
  height: 216px;
  overflow: hidden;
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
}
@media screen and (min-width: 768px) {
  .prizes-modal__image {
    height: 300px;
  }
}
.prizes-modal__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.prizes-modal__body {
  margin-top: 39px;
  margin-right: 20px;
  margin-left: 20px;
  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) {
  .prizes-modal__body {
    margin-top: 32px;
    margin-right: 40px;
    margin-left: 40px;
  }
}

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

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

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

.another {
  position: relative;
  overflow: hidden;
  margin-top: -44px;
  height: 260px;
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .another {
    height: 640px;
    margin-top: 0;
  }
}
.another::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/another-wave.png) repeat-x center bottom/contain;
  width: 100%;
  height: 45.714px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .another::after {
    height: 120px;
  }
}

.another-bg {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: url(../img/another-bg.png) repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .another-bg {
    width: 1512px;
    height: 640px;
  }
}

.spots {
  background: #67b0c7;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .spots {
    overflow-x: clip;
  }
}

.spots__inner {
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .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;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    position: relative;
    padding-bottom: 0;
  }
  .spots__inner::after {
    position: absolute;
    content: "";
    background: url(../img/肉球:4.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
    top: 496px;
    left: -116px;
    z-index: 60;
  }
}

@media screen and (min-width: 768px) {
  .spots-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.spots-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .spots-title {
    margin-top: 0;
    width: 56px;
    gap: 7px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    z-index: 3;
  }
}

.spots-title__icon img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .spots-title__icon img {
    width: 56px;
    height: 56px;
  }
}

.spots-title__text {
  margin-top: 2px;
  color: #fff;
  -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%;
}
@media screen and (min-width: 768px) {
  .spots-title__text {
    font-size: 40px;
  }
}

.spots__slider {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .spots__slider {
    margin-top: 0;
  }
}

.spots__clip {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .spots__clip::after {
    position: absolute;
    content: "";
    top: 0;
    left: -332px;
    width: 332px;
    height: 100%;
    background: #67b0c7;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
}

.spots__swiper {
  width: 1300px;
  height: 400px;
  overflow: hidden !important;
}
@media screen and (min-width: 768px) {
  .spots__swiper {
    height: 542px;
    position: relative;
    z-index: 1;
    padding-bottom: 24px;
    overflow: hidden !important;
  }
}

.swiper-wrapper {
  padding-bottom: 24px;
}

.spots .swiper-slide {
  height: 402px !important;
  border-radius: 12px;
  width: 240px !important;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .spots .swiper-slide {
    width: 344px !important;
    border-radius: 24px;
    height: 542px !important;
  }
}

.spots-card__image img {
  display: block;
  width: 100%;
  height: 180px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}
@media screen and (min-width: 768px) {
  .spots-card__image img {
    height: 240px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
  }
}

.spots-card__body {
  margin-top: 18px;
  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;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots-card__body {
    margin-top: 24px;
    gap: 24px;
  }
}

.spots-card__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    line-height: 160%;
    font-size: 20px;
  }
}

.spots-card__text {
  padding-right: 24px;
  padding-left: 24px;
  line-height: 160%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .spots-card__text {
    font-size: 16px;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.spots__prev,
.spots__next {
  position: absolute !important;
  top: 500px !important;
  width: 80px !important;
  height: 80px !important;
  display: none !important;
  z-index: 90 !important;
}
@media screen and (min-width: 768px) {
  .spots__prev,
  .spots__next {
    display: block !important;
  }
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

.swiper-button-prev {
  top: 506px !important;
  left: 38px !important;
  background: url(../img/spots-arrow-left.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    top: 506px !important;
    right: 40px !important;
    background: url(../img/spots-arrow-right.png) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-next {
    right: 85px !important;
    background: url(../img/spots-arrow-right.png) no-repeat center center/contain;
  }
}

.spots-scroll__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots-scroll__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 81px;
  }
}
@media screen and (min-width: 900px) {
  .spots-scroll__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 81px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-scroll__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
    margin-top: 64px;
  }
}

.spots-scroll__title-img img {
  display: inline-block;
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 768px) {
  .spots-scroll__title-img img {
    width: 495px;
    height: 107px;
  }
}

.spots-scroll__title-text {
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .spots-scroll__title-text {
    font-size: 16px;
    line-height: 160%;
  }
}

.spots__button {
  margin-top: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.spots__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 768px) {
  .spots__button {
    margin-top: 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    padding: 10px 40px 12px 40px;
    margin-left: auto;
    margin-right: 0;
  }
}

.qa {
  position: relative;
}
.qa::after {
  content: "";
  position: absolute;
  top: -85px;
  left: 0;
  background: url(../img/qa-wave.png) repeat-x center top/cover;
  width: 100%;
  height: 45.714px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .qa::after {
    top: -240px;
    height: 120px;
  }
}

.qa__inner {
  margin-top: 84px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    margin-top: 240px;
    margin-bottom: 120px;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .qa-section-title img {
    width: 48px;
    height: 48px;
  }
}

.qa__boxes {
  margin-top: 36px;
  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) {
  .qa__boxes {
    margin-top: 56px;
    gap: 24px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid var(--LP-Blown, #4a3636);
}
@media screen and (min-width: 768px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa__box.is-open .qa-box__body {
  display: block;
}

.qa__box.is-open .qa__box__head::before {
  background-image: url(../img/qa-box--.png);
}

.qa__box.is-open .qa__box__head {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.qa__box__head {
  border: none;
  border-radius: 12px;
  background: #fff;
  display: block;
  padding: 10px 50px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .qa__box__head {
    border-radius: 16px;
    padding: 28px 82px 23px 22px;
    gap: 16px;
  }
}
.qa__box__head::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  width: 27px;
  height: 27px;
  background: url(../img/qa-box-+.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .qa__box__head::before {
    right: 21px;
    width: 48px;
    height: 48px;
  }
}

.qa-box__head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    font-size: 32px;
    line-height: 115%;
    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;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 158%;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
    line-height: 160%;
  }
}

.qa-box__body {
  padding: 15px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 24px 24px 21px 24px;
  }
}

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

.qa-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 125%;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 32px;
    line-height: 135%;
    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;
  }
}

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

.entry-requirements {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .entry-requirements {
    padding-bottom: 120px;
  }
}

.entry-requirements__inner {
  padding: 16px 15px 29px;
  margin-bottom: 32px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .entry-requirements__inner {
    padding: 32px 48px;
  }
}

@media screen and (min-width: 768px) {
  .entry-requirements-title img {
    width: 48px;
    height: 48px;
  }
}

.entry-requirements__boxes {
  margin-top: 36px;
  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__boxes {
    margin-top: 56px;
  }
}

.entry-requirements__box {
  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;
  border-top: 1px solid #ccc;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .entry-requirements__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 96px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 11px;
  }
}
.entry-requirements__box:first-child {
  border-top: none;
  padding-top: 0;
}

.entry-requirements-box__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  padding-left: 16px;
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .entry-requirements-box__title {
    font-size: 16px;
    line-height: 163%;
    width: 144px;
    padding-left: 32px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.entry-requirements-box__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
}
@media screen and (min-width: 768px) {
  .entry-requirements-box__title::after {
    left: 16px;
  }
}

.entry-requirements-box__text {
  margin: 0;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .entry-requirements-box__text {
    font-size: 16px;
    line-height: 160%;
  }
}
.entry-requirements-box__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.entry-requirements-box__text a:hover {
  color: #67b0c7;
}

.entry-requirements-box__list {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
.entry-requirements-box__list-text {
  position: relative;
  padding-left: 18px;
  line-height: 159%;
  letter-spacing: 0.08px;
}
.entry-requirements-box__list-text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.entry-requirements-box__list-text a:hover {
  color: #67b0c7;
}
.entry-requirements-box__list-text::before {
  content: "•";
  font-size: 12px;
  color: #333;
  position: absolute;
  left: 7px;
  top: 0;
}
@media screen and (min-width: 768px) {
  .entry-requirements-box__list-text {
    font-size: 16px;
    line-height: 160%;
    padding-left: 25px;
    margin-bottom: 6px;
  }
}
.entry-requirements-box__list-text a {
  color: inherit;
}

.another2 {
  text-align: center;
}

.another-bg2 {
  background: url(../img/another-bg2.png) no-repeat center center/cover;
  width: 100%;
  height: 99px;
}
@media screen and (min-width: 768px) {
  .another-bg2 {
    height: 400px;
  }
}

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

.contact__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-right: 0;
    padding-left: 0;
    max-width: 848px;
  }
}

@media screen and (min-width: 768px) {
  .contact-title img {
    width: 48px;
    height: 48px;
  }
}

.contact-head__message {
  margin-top: 36px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-head__message {
    margin-top: 48px;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
  }
}

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

.contact__fields {
  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;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    max-width: 848px;
    gap: 21px;
  }
}

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

.contact__privacy {
  text-align: center;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    padding-top: 41px;
  }
}

.contact__button {
  text-align: center;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .contact__field-radios {
    padding-top: 21px;
    padding-bottom: 15px;
  }
}

.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: 768px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .contact__head-mall {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
  }
}

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

.form-field__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form-text {
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 14px;
  line-height: 167%;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
    width: 100%;
  }
}
.form-text:focus, .form-text:hover {
  background: #e9f6f8;
  border-color: #9ed0e0;
  outline: none;
}

.form-radio:focus {
  border-color: #9ed0e0;
}

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

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

.form-radio__input:checked + .form-radio-text::before {
  border: 1px solid #9ed0e0;
}

.form-field__item-selecter {
  position: relative;
}

.field-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  height: 55px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: grid;
  place-items: center;
  background: #9ed0e0;
  color: #fff;
  cursor: default;
  padding: 0;
  z-index: 50;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 5px;
  font-size: 14px;
  background: #f5f5f5;
  border: none;
  padding: 18px 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-select {
    border-radius: 8px;
    font-size: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
.form-select:focus, .form-select:hover {
  outline: none;
}

.is-error .form-text,
.is-error .form-select,
.is-error .form-textarea {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.is-error .form-field__label {
  color: #ce2073;
}

.is-error .field-indicator {
  background: #ce2073;
}

.form-textarea {
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  width: 100%;
  height: 160px;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea:focus, .form-textarea:hover {
  color: #4a3636;
  background: #e9f6f8;
  outline: none;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.form-field__radio {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-field__radio {
    font-size: 16px;
  }
}

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

.form-check-box__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 768px) {
  .form-check-box__text {
    font-size: 16px;
    padding-left: 36px;
  }
}
.form-check-box__text::before, .form-check-box__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-check-box__text::before {
  width: 24px;
  height: 24px;
  left: 0;
  top: 50%;
  border-radius: 4px;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-check-box__text::after {
  width: 14px;
  height: 9px;
  top: 50%;
  left: 12px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/contact-tyeck-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-check-box__text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-check-box__text a:hover {
  color: #67b0c7;
}

.contact__button {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 40px;
  }
}
.contact__button input {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .contact__button input {
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    padding: 6px 40px 4px 40px;
    margin-left: auto;
    margin-right: 0;
  }
}
.contact__button input:hover {
  background-color: #ffee56;
}

.footer {
  text-align: center;
}

.footer__inner {
  font-family: "Josefin Sans", sans-serif;
  margin-top: 40px;
  margin-bottom: 126px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    margin-top: 120px;
    margin-bottom: 240px;
    padding-right: 0;
    padding-left: 0;
  }
  .footer__inner::after {
    content: "";
    position: absolute;
    background: url(../img/footer-bg-img.png) no-repeat center center/contain;
    width: 100px;
    height: 220px;
    top: -35px;
    right: -1px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1200px) {
  .footer__inner::after {
    right: -164px;
  }
}

.footer-link__message {
  font-size: 20px;
  line-height: 130%;
}
@media screen and (min-width: 768px) {
  .footer-link__message {
    font-size: 24px;
  }
}

.footer__links {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-link img {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .footer-link img {
    width: 40px;
  }
}

.footer-content__title {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .footer-content__title {
    margin-top: 40px;
  }
}
.footer-content__title img {
  width: 328px;
}
@media screen and (min-width: 768px) {
  .footer-content__title img {
    width: 755px;
  }
}

.footer-card {
  background: #fff;
  border-radius: 16px;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .footer-card {
    max-width: 1084px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer-card__head img {
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
  width: 335px;
}
@media screen and (min-width: 768px) {
  .footer-card__head img {
    width: 512px;
    height: 400px;
    border-top-left-radius: 0;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}

.footer-card__body {
  padding: 24px 28px;
}
@media screen and (min-width: 768px) {
  .footer-card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
    padding: 106px 66px 99px 61px;
  }
}

.footer-card__body-title img {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer-card__body-title img {
    width: 183px;
  }
}

.footer-card-body__boxes {
  padding-top: 8px;
  padding-bottom: 6px;
  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: 8px;
}
@media screen and (min-width: 768px) {
  .footer-card-body__boxes {
    margin-top: 19px;
    gap: 12px;
    padding-left: 1px;
  }
}

.footer-card-body__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .footer-card-body__box {
    gap: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer-card-body__box__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 160%;
  padding-left: 16px;
  position: relative;
  margin: 0;
  width: 64px;
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer-card-body__box__title {
    font-size: 16px;
    width: 80px;
  }
}
.footer-card-body__box__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
  border-radius: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
}

.footer-card-body__box__text {
  line-height: 160%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer-card-body__box__text {
    font-size: 16px;
  }
}

.footer__copyright {
  margin-top: 46px;
  padding-bottom: 24px;
  background: #67b0c7;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 120px;
    padding-bottom: 32px;
  }
}
.footer__copyright::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  background: url(../img/footer-wavearea.png) repeat-x center bottom/contain;
  width: 100%;
  height: 45.714px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer__copyright::after {
    top: -118px;
    height: 120px;
  }
}

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

.to-top {
  position: fixed;
  bottom: 36px;
  right: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 500;
  cursor: pointer;
}
.to-top.js-show {
  opacity: 1;
  visibility: visible;
}

.to-top__img img {
  width: 75px;
  height: 78px;
}