@charset "UTF-8";
.sp-hidden {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .sp-hidden {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .sp-hidden {
    display: block;
  }
}

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

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

body {
  font-size: 12px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background: #E9F6F8;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

.button {
  border: 2px solid #4A3636;
  border-radius: 40px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transition: background 0.3s linear;
  transition: background 0.3s linear;
}
.button:active {
  position: relative;
  top: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button:hover {
  background: #FFEE56;
}
@media screen and (min-width: 1200px) {
  .button {
    border: 2px solid #4A3636;
  }
}

.btn {
  font-size: 16px;
  display: block;
  padding: 4px 22px 6px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .btn {
    padding: 9px 37px 10px;
    font-size: 20px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .btn {
    padding: 4px 22px 6px;
    font-size: 14px;
    font-weight: 700;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .campaign-btn {
    font-size: 20px;
    font-weight: 700;
    padding: 7px 37px 11px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .campaign-btn {
    font-size: 20px;
    font-weight: 700;
    padding: 7px 37px 11px;
    display: block;
  }
}

.js-btn {
  font-size: 16px;
  padding: 4px 22px 6px;
}
@media screen and (min-width: 1200px) {
  .js-btn {
    padding: 7px 37px 9px;
    font-size: 20px;
    font-weight: 700;
  }
}

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

.header__inner {
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header__logo {
  width: 210px;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 183px;
  }
}
.header__logo a img {
  width: 100%;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 12px;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
  .header__link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #9ED0E0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .header__link:hover {
    color: #9ED0E0;
  }
  .header__link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@media screen and (min-width: 1200px) {
  .header-button {
    margin-left: 4px;
  }
}

@media screen and (min-width: 1200px) {
  #js-drawer-icon {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 13px;
  -webkit-transform: rotate(-390deg);
          transform: rotate(-390deg);
}
.drawer-icon.is-checked .drawer-icon__top-bar__first {
  width: 32px;
  top: 13px;
  -webkit-transform: rotate(390deg);
          transform: rotate(390deg);
}
.drawer-icon.is-checked .drawer-icon__top-bar__second {
  display: none;
}

.drawer-icon__top-bar {
  display: block;
}

.drawer-icon__top-bar__first {
  position: absolute;
  top: 0px;
  left: 0;
  width: 25.6px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, width 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, width 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, width 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, width 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__top-bar__second {
  position: absolute;
  top: 0px;
  right: 0;
  width: 4.8px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__bar:nth-of-type(3) {
  top: 12px;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 24px;
}

#js-drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 59.5px;
  left: 0;
  right: 0;
  background: #FFF;
  display: none;
  padding-top: 82px;
  padding-bottom: 82px;
  background: #FFFFFF;
}

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

.drawer-content__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.fv {
  padding-top: 82px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv {
    padding-top: 99px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    padding-top: 99px;
  }
}

.fv__img {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: 554px;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__img {
    height: 740px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__img {
    height: 740px;
    max-height: 740px;
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 24px 24px;
}

.fv__inner {
  position: relative;
  max-width: 375px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__inner {
    max-width: 888px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__inner {
    max-width: 888px;
  }
}

.fv__lead {
  text-align: center;
  color: #4A3636;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  text-shadow: 0px 0px 30px #FFF;
  line-height: 1.25;
  margin-bottom: 19px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__lead {
    font-size: 24px;
    font-weight: 500;
  }
}
@media screen and (min-width: 1200px) {
  .fv__lead {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 23px;
  }
}

.fv__lead-text {
  display: block;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__title-image img {
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-image img {
    max-width: 520px;
    margin: 0 auto;
    display: block;
  }
}

.fv__title-contents {
  height: 532px;
  margin-top: 10px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__title-contents {
    max-width: 846px;
    height: 560px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-contents {
    max-width: 846px;
    height: 560px;
    margin: 0 auto;
  }
}

.fv__other-image1 {
  max-width: 142px;
  width: 40vw;
  height: auto;
  position: absolute;
  top: 9px;
  right: calc(50% + 27px);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__other-image1 {
    max-width: 244px;
    top: 0;
    right: calc(50% + 148px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__other-image1 {
    max-width: 244px;
    top: 0;
    right: calc(50% + 143px);
  }
}
.fv__other-image1 img {
  width: 100%;
  height: 100%;
}

.fv__other-image2 {
  max-width: 110px;
  height: auto;
  position: absolute;
  top: 1px;
  left: calc(50% + 32px);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__other-image2 {
    min-width: 180px;
    left: calc(50% + 124px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__other-image2 {
    max-width: 180px;
    top: 17px;
    left: calc(50% + 117px);
  }
}
.fv__other-image2 img {
  width: 100%;
}

.fv__other-image3 {
  max-width: 200px;
  width: 100%;
  position: absolute;
  bottom: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__other-image3 {
    max-width: 250px;
    top: 33px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__other-image3 {
    max-width: 250px;
    top: 33px;
  }
}
.fv__other-image3 img {
  width: 100%;
}

.fv__other-image4 {
  max-width: 90px;
  width: 25vw;
  height: auto;
  position: absolute;
  bottom: 10px;
  right: calc(50% + 78px);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__other-image4 {
    min-width: 212px;
    bottom: 1px;
    right: calc(50% + 211px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__other-image4 {
    max-width: 212px;
    width: 100%;
    max-height: 332px;
    height: 100%;
    bottom: 1px;
    right: calc(50% + 211px);
  }
}
.fv__other-image4 img {
  width: 100%;
  height: 100%;
}

.fv__cat-image1 {
  position: absolute;
  bottom: 67px;
  right: 0;
  max-width: 62px;
  width: 100%;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__cat-image1 {
    max-width: 170px;
    left: calc(50% + 190px);
    bottom: 62px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__cat-image1 {
    max-width: 170px;
    left: calc(50% + 190px);
    bottom: 62px;
  }
}
.fv__cat-image1 img {
  width: 100%;
}

.fv__cat-image2 {
  position: absolute;
  bottom: 9px;
  right: 9px;
  max-width: 98px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__cat-image2 {
    min-width: 233px;
    bottom: -42px;
    right: 0;
    left: calc(50% + 190px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__cat-image2 {
    max-width: 233px;
    bottom: -42px;
    right: 0;
    left: calc(50% + 190px);
  }
}
.fv__cat-image2 img {
  width: 100%;
}

.fv__phone-contents {
  position: absolute;
  top: calc(50% - 39px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .fv__phone-contents {
    top: calc(50% - 90px);
  }
}
@media screen and (min-width: 1200px) {
  .fv__phone-contents {
    top: calc(50% - 90px);
  }
}

.fv__phone-title {
  color: #FFF;
  font-size: 12.8px;
  font-weight: 700;
  padding: 6.4px 18.5px;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  border-radius: 12.8px 12.8px 0 0;
}
@media screen and (max-width: 358px) {
  .fv__phone-title {
    font-size: 10.5px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__phone-title {
    font-size: 16px;
    padding: 6.4px 23.5px;
  }
}

.fv__phone-content {
  text-align: center;
  padding-top: 12.8px;
  padding-bottom: 18.2px;
  background: #FFFFFF;
  border-radius: 0 0 12.8px 12.8px;
}
@media screen and (min-width: 1200px) {
  .fv__phone-content {
    padding-top: 17px;
    padding-bottom: 24px;
  }
}

.fv__duration {
  font-size: 12px;
  color: #4A3636;
  -webkit-text-decoration: solid #CE2073;
          text-decoration: solid #CE2073;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3px auto;
  border-bottom: 3px solid var(--LP-Red, #CE2073);
}
@media screen and (min-width: 1200px) {
  .fv__duration {
    font-size: 14px;
    margin-bottom: 3px;
  }
}

.fv__data {
  font-size: 12px;
  color: #4A3636;
  font-weight: 700;
  padding-bottom: 12.8px;
}
@media screen and (min-width: 1200px) {
  .fv__data {
    font-size: 16px;
    padding-bottom: 6.8px;
  }
}

@media screen and (min-width: 1200px) {
  .fv__button {
    margin-top: 9px;
  }
}

.fv__btn {
  font-size: 14px;
  padding: 2px 22px 4px;
}
@media screen and (min-width: 1200px) {
  .fv__btn {
    font-size: 16px;
    padding: 4px 22px 6px;
  }
}

#js-page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 140px;
  padding-right: 40px;
  padding-bottom: 30px;
  z-index: 20;
  display: none;
}
#js-page-top img {
  width: 100%;
}

.about {
  padding-top: 23px;
  padding-bottom: 276.87px;
  overflow: hidden;
  margin-bottom: 32.8px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about {
    padding-bottom: 464px;
    padding-top: 95px;
  }
}
@media screen and (min-width: 1200px) {
  .about {
    padding-bottom: 464px;
    padding-top: 81px;
  }
}

.about__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.about__contents {
  max-width: 335px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__contents {
    max-width: 580px;
  }
}
@media screen and (min-width: 1200px) {
  .about__contents {
    max-width: 848px;
  }
}

.about__contents-bg {
  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;
  background: #FFF;
  border-radius: 24px;
  padding: 40px 20px;
  width: 100%;
}
@media screen and (max-width: 328px) {
  .about__contents-bg {
    padding: 40px 15px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__contents-bg {
    width: 580px;
    max-width: 580px;
    padding: 40px 20px 36px;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .about__contents-bg {
    width: 848px;
    max-width: 848px;
    padding: 40px 114px;
    gap: 33px;
  }
}

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

.title-content__image {
  width: 37.33px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .title-content__image {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .title-content__image {
    width: 48px;
  }
}
.title-content__image img {
  width: 100%;
}

.spots__icon {
  width: 28px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__icon {
    width: 56px;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__icon {
    width: 56px;
    margin: 0;
  }
}

.title-content__title {
  font-size: 16px;
  font-family: "Courgette", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  color: #4A3636;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .title-content__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .title-content__title {
    font-size: 20px;
  }
}

.title-content__sub-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
  padding-bottom: 6px;
  border-bottom: 6px solid #FFEE56;
  color: #4A3636;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .title-content__sub-title {
    font-size: 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .title-content__sub-title {
    font-size: 32px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 8px;
  }
}

.about__question-sp {
  font-size: 14px;
  font-weight: 700;
  color: #4A3636;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__question-pc {
    font-size: 16px;
    color: #4A3636;
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .about__question-pc {
    font-size: 16px;
    color: #4A3636;
    font-weight: 700;
  }
}

.about__question-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 1200px) {
  .about__question-contents {
    gap: 27px;
  }
}

.about__question-content {
  color: #4A3636;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__question-content {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .about__question-content {
    font-size: 16px;
  }
}

.blue-line {
  text-decoration: underline;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.blue-line:hover {
  color: #9ED0E0;
  text-decoration-color: #9ED0E0;
}

.about__sub-text {
  color: #4A3636;
  font-size: 14px;
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 6px;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__sub-text {
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__sub-text {
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

.foot-print__image {
  position: absolute;
  top: -10px;
  left: 90%;
  max-width: 54px;
  width: 15vw;
  height: auto;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .foot-print__image {
    top: -57px;
    left: 102%;
    max-width: 70px;
    z-index: 0;
  }
}
@media screen and (min-width: 1200px) {
  .foot-print__image {
    top: -83px;
    left: 108%;
    max-width: 100px;
    z-index: 200;
  }
}
.foot-print__image img {
  width: 100%;
}

.tower__image {
  position: absolute;
  top: 32px;
  right: calc(50% + 47px);
  max-width: 87.54px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .tower__image {
    max-width: 146.63px;
    top: 40.35px;
    right: calc(50% + 190px);
  }
}
@media screen and (min-width: 1200px) {
  .tower__image {
    max-width: 146.63px;
    height: auto;
    top: 40.35px;
    right: calc(50% + 192px);
  }
}
.tower__image img {
  width: 100%;
}

.sea-bench__image {
  position: absolute;
  top: 30px;
  left: calc(50% + 60px);
  max-width: 87.54px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .sea-bench__image {
    max-width: 146.63px;
    top: 47px;
    left: calc(50% + 190px);
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .sea-bench__image {
    max-width: 146.63px;
    height: auto;
    top: 46px;
    left: calc(50% + 194px);
  }
}
.sea-bench__image img {
  width: 100%;
}

.sea-ship__image {
  position: absolute;
  top: 273px;
  right: -160px;
  width: 200px;
  height: auto;
  z-index: -10;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .sea-ship__image {
    width: 480px;
    top: 66px;
    right: -550px;
  }
}
@media screen and (min-width: 1200px) {
  .sea-ship__image {
    width: 480px;
    top: 72px;
    right: -616px;
  }
}
.sea-ship__image img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .sea-ship__image img {
    border-radius: 42px;
  }
}

.lift__image {
  position: absolute;
  top: 395px;
  left: -140px;
  width: 200px;
  height: auto;
  z-index: -10;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .lift__image {
    width: 480px;
    top: 74px;
    left: -548px;
  }
}
@media screen and (min-width: 1200px) {
  .lift__image {
    width: 480px;
    top: 74px;
    left: -670px;
  }
}
.lift__image img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .lift__image img {
    border-radius: 42px;
  }
}

.triangle__image {
  position: absolute;
  bottom: -35.45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .triangle__image {
    width: 140px;
    bottom: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .triangle__image {
    width: 140px;
    bottom: -50px;
  }
}
.triangle__image img {
  width: 100%;
}

.button__image {
  position: absolute;
  bottom: -59.67px;
  right: 0;
  width: 48px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .button__image {
    width: 101px;
    bottom: 74.63px;
    right: -110px;
  }
}
@media screen and (min-width: 1200px) {
  .button__image {
    width: 101px;
    bottom: 127.63px;
    right: -182px;
  }
}
.button__image img {
  width: 100%;
}

.cloth__image {
  position: absolute;
  bottom: -118.67px;
  right: 37px;
  width: 133px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .cloth__image {
    width: 308px;
    bottom: -154.67px;
    right: -137px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .cloth__image {
    width: 308px;
    bottom: -79.67px;
    right: -258px;
    z-index: -1;
  }
}
.cloth__image img {
  width: 100%;
}

.stone-step__image {
  position: absolute;
  bottom: 3px;
  left: -85px;
  width: 276px;
  height: auto;
  z-index: -10;
  aspect-ratio: 276/430;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .stone-step__image {
    width: 427px;
    height: 817px;
    bottom: 154px;
    left: -102px;
    z-index: -20;
  }
}
@media screen and (min-width: 1200px) {
  .stone-step__image {
    width: 427px;
    height: 817px;
    bottom: 154px;
    left: -102px;
  }
}
.stone-step__image img {
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68.58%, rgba(233, 246, 248, 0)), color-stop(80.78%, #E9F6F8));
  background: linear-gradient(180deg, rgba(233, 246, 248, 0) 68.58%, #E9F6F8 80.78%);
}

.diagonal__image {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .diagonal__image {
    display: block;
    position: absolute;
    top: -20px;
    left: -240px;
    width: 250px;
    height: auto;
    z-index: -11;
  }
}
@media screen and (min-width: 1200px) {
  .diagonal__image {
    display: block;
    position: absolute;
    top: -20px;
    left: -353px;
    width: 250px;
    height: 250px;
    z-index: -11;
  }
}
@media screen and (min-width: 1200px) {
  .diagonal__image img {
    width: 100%;
    border-radius: 24px;
  }
}

.wavy-line__image1 {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .wavy-line__image1 {
    display: block;
    position: absolute;
    bottom: 142.67px;
    right: -753px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .wavy-line__image1 {
    display: block;
    position: absolute;
    bottom: 204.67px;
    right: -867px;
    z-index: -1;
  }
}
.wavy-line__image2 {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .wavy-line__image2 {
    display: block;
    position: absolute;
    bottom: 176.65px;
    right: -747px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .wavy-line__image2 {
    display: block;
    position: absolute;
    bottom: 171.65px;
    right: -801px;
    z-index: -1;
  }
}
.about__img {
  position: absolute;
  bottom: 102px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 354.642px;
  height: 37.2px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .about__img {
    width: 770px;
    bottom: 242px;
  }
}
@media screen and (min-width: 1200px) {
  .about__img {
    width: 890.604px;
    bottom: 261px;
    left: 49.8%;
  }
}

.gallery__slider {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 1200px) {
  .gallery__slider {
    bottom: 5px;
  }
}

.js-gallery-swiper {
  width: 100px;
}

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

.gallery__slide {
  width: 100px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .gallery__slide {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery__slide {
    width: 200px;
  }
}
.gallery__slide img {
  border-radius: 15px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .gallery__slide img {
    border-radius: 25px;
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .gallery__slide img {
    border-radius: 25px;
    width: 200px;
  }
}

.how-to {
  padding-top: 31px;
  padding-bottom: 37.67px;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to {
    padding-top: 88px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to {
    padding-top: 81px;
    padding-bottom: 120px;
  }
}

.how-to__inner {
  max-width: 500px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to__inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__inner {
    padding-left: 36px;
    padding-right: 36px;
    max-width: 1512px;
  }
}

.how-to__contents {
  position: relative;
}

.how-to-content {
  margin-bottom: 32px;
}
@media screen and (min-width: 1200px) {
  .how-to-content {
    margin-bottom: 43px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.how-to__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: 15px;
}
@media screen and (min-width: 1200px) {
  .how-to__box {
    width: 320px;
    gap: 23px;
  }
}

.how-to-image {
  width: 196px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to-image {
    width: 257.25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-image {
    width: 280px;
  }
}
.how-to-image img {
  width: 100%;
}

.step2 {
  margin-top: 50px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .step2 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .step2 {
    margin-top: 69px;
  }
}

.step3 {
  margin-top: 49.74px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .step3 {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step3 {
    margin-top: 0;
  }
}

.how-to__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .how-to__container {
    gap: 17px;
  }
}

.container-title {
  font-size: 16px;
  font-weight: 700;
  color: #4A3636;
}
@media screen and (min-width: 1200px) {
  .container-title {
    font-size: 20px;
  }
}

.container-text {
  font-size: 12px;
  color: #4A3636;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .container-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .container-text {
    font-size: 16px;
  }
}

.container-text3 {
  padding-bottom: 17px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .container-text3 {
    font-size: 13.8px;
  }
}

.under-line {
  text-decoration-line: underline;
  color: #4A3636;
}

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

.container-instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  padding: 8px 12px;
  background: #FFFFFF;
  border: 1px solid white;
  -webkit-transition: border 0.5s;
  transition: border 0.5s;
}
.container-instagram:hover {
  border: 1px solid #9ED0E0;
}

.container-icon {
  width: 20px;
}
@media screen and (min-width: 1200px) {
  .container-icon {
    width: 24px;
  }
}
.container-icon img {
  width: 100%;
}

.container-sub-text {
  color: #4A3636;
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .container-sub-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 372px) {
  .other-button .btn {
    font-size: 13px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .other-button {
    border-width: 3px;
    margin-top: 48px;
  }
  .other-button .btn {
    display: block;
    font-weight: 700;
    padding-top: 8px;
    padding-right: 32px;
    padding-bottom: 10px;
    padding-left: 32px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .other-button {
    margin-top: 50px;
  }
  .other-button .btn {
    display: block;
    font-weight: 700;
    padding-top: 8px;
    padding-right: 37px;
    padding-bottom: 10px;
    padding-left: 37px;
    font-size: 20px;
  }
}

.map {
  position: absolute;
  top: 0;
  right: calc(50% + 38px);
  width: 149px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .map {
    width: 380px;
    top: -60px;
    right: calc(50% + 181px);
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .map {
    width: 460px;
    height: 689px;
    top: -59px;
    right: calc(50% + 260px);
    z-index: -1;
  }
}
.map img {
  width: 100%;
  height: 100%;
}

.how-to-cat1 {
  position: absolute;
  top: 0;
  left: calc(50% + 58px);
  width: 105px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to-cat1 {
    width: 238px;
    top: -27px;
    left: calc(50% + 196px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-cat1 {
    width: 238px;
    top: -25px;
    left: calc(50% + 287px);
  }
}
.how-to-cat1 img {
  width: 100%;
}

.how-to-cat2 {
  position: absolute;
  top: 5px;
  left: calc(50% + 125px);
  width: 94px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to-cat2 {
    width: 214px;
    top: -17px;
    left: calc(50% + 344px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-cat2 {
    width: 214px;
    top: -16px;
    left: calc(50% + 437px);
  }
}
.how-to-cat2 img {
  width: 100%;
}

.how-to-foot1 {
  position: absolute;
  top: 73px;
  left: calc(50% + 112px);
  width: 55px;
  height: auto;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to-foot1 {
    width: 70px;
    top: 145px;
    left: calc(50% + 525px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-foot1 {
    width: 100px;
    top: 148px;
    left: calc(50% + 619px);
  }
}
.how-to-foot1 img {
  width: 100%;
}

.how-to-foot2 {
  position: absolute;
  top: 549.55px;
  right: calc(50% + 113px);
  width: 55px;
  height: auto;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .how-to-foot2 {
    width: 70px;
    top: 553px;
    right: calc(50% + 525px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-foot2 {
    width: 100px;
    top: 580px;
    right: calc(50% + 619px);
  }
}
.how-to-foot2 img {
  width: 100%;
}

.sp-wave1 {
  position: absolute;
  top: 533.33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9px;
  height: 34px;
}
.sp-wave1 img {
  width: 100%;
  height: 100%;
}

.sp-wave2 {
  position: absolute;
  top: 927.33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9px;
  height: 34px;
}
.sp-wave2 img {
  width: 100%;
  height: 100%;
}

.how-to-foot3 {
  position: absolute;
  top: 879.88px;
  left: calc(50% + 113px);
  width: 55px;
  height: auto;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.how-to-foot3 img {
  width: 100%;
}

.pc-wave1 {
  position: absolute;
  top: 390px;
  right: calc(50% + 143px);
  width: 113px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .pc-wave1 {
    width: 70px;
    top: 321px;
    right: calc(50% + 131px);
  }
}
@media screen and (min-width: 1200px) {
  .pc-wave1 {
    top: 388px;
  }
}
.pc-wave1 img {
  width: 100%;
}

.pc-wave2 {
  position: absolute;
  top: 390px;
  left: calc(50% + 106px);
  width: 113px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .pc-wave2 {
    width: 70px;
    top: 321px;
    left: calc(50% + 98px);
  }
}
@media screen and (min-width: 1200px) {
  .pc-wave2 {
    top: 388px;
    left: calc(50% + 104px);
  }
}
.pc-wave2 img {
  width: 100%;
}

.prizes {
  position: relative;
  padding-top: 15px;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes {
    padding-top: 0;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    padding-top: 0;
  }
}

.prizes-title-content {
  margin-top: 5px;
}
@media screen and (min-width: 1200px) {
  .prizes-title-content {
    padding-top: 28px;
    position: relative;
  }
}

@media screen and (min-width: 1200px) {
  .prizes-title {
    padding-top: 1px;
  }
}

.prizes-tails {
  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;
  width: 100%;
}
.prizes-tails::after {
  position: absolute;
  top: 85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 163px;
  content: "";
  background: #FFF;
  z-index: -2;
  border-radius: 24px 24px 0 0;
  max-width: 600px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes-tails::after {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-tails::after {
    max-width: 1024px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes-tails {
    max-width: 1024px;
    gap: 40px;
  }
  .prizes-tails::after {
    position: absolute;
    top: 148px;
    width: 1024px;
    height: 204px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-tails {
    max-width: 1024px;
    gap: 43px;
  }
  .prizes-tails::after {
    position: absolute;
    top: 148px;
    width: 1024px;
    height: 204px;
  }
}

.prizes__sub-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}

.prizes__txt {
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 330px) {
  .prizes__txt {
    font-size: 11.5px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__txt {
    font-size: 16px;
    margin-bottom: 77px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__txt {
    margin-bottom: 77px;
  }
}

.prizes__triangle-left {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__triangle-left {
    display: block;
    position: absolute;
    top: 20px;
    left: calc(50% + 196px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__triangle-left {
    display: block;
    position: absolute;
    top: 34px;
    left: calc(50% + 196px);
  }
}
.prizes__triangle-right {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__triangle-right {
    display: block;
    position: absolute;
    top: 20px;
    right: calc(50% + 196px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__triangle-right {
    display: block;
    position: absolute;
    top: 34px;
    right: calc(50% + 196px);
  }
}
.prizes__cover {
  background: #FFF;
  border-radius: 0 0 24px 24px;
  padding-bottom: 34.67px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__cover {
    max-width: 1024px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__cover {
    max-width: 1024px;
    margin: 0 auto;
    padding-bottom: 55px;
  }
}

.prizes__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}

.prizes__containers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.prizes__upper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: -1px;
  margin-left: auto;
  margin-right: auto;
}
.prizes__upper > .prizes__container:nth-child(-n+2)::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 36px;
  height: 36px;
  clip-path: polygon(100% 1%, 0 100%, 100% 100%);
  background: #67B0C7;
  border-radius: 0 0 8px 0;
  z-index: 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__upper {
    gap: 32px;
    margin-bottom: 80px;
  }
  .prizes__upper > .prizes__container:nth-child(-n+2)::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 100px;
    height: 100px;
    clip-path: polygon(100% 1%, 0 100%, 100% 100%);
    background: #67B0C7;
    border-radius: 0 0 24px 0;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__upper {
    height: 469px;
    gap: 27px;
    margin-bottom: 57px;
  }
  .prizes__upper > .prizes__container:nth-child(-n+2)::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 100px;
    height: 100px;
    clip-path: polygon(100% 1%, 0 100%, 100% 100%);
    background: #67B0C7;
    border-radius: 0 0 24px 0;
    z-index: 2;
  }
}

.prizes__container {
  min-width: 132px;
}

.prizes__lower {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin-left: auto;
  margin-right: auto;
}
.prizes__lower > .prizes__container:nth-child(n+1)::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 36px;
  height: 36px;
  clip-path: polygon(100% 1%, 0 100%, 100% 100%);
  background: #67B0C7;
  border-radius: 0 0 8px 0;
  z-index: 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__lower {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 40px;
  }
  .prizes__lower > .prizes__container:nth-child(n+1)::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 64px;
    height: 64px;
    clip-path: polygon(100% 1%, 0 100%, 100% 100%);
    background: #67B0C7;
    border-radius: 0 0 24px 0;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__lower {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: -28px;
  }
  .prizes__lower > .prizes__container:nth-child(n+1)::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 64px;
    height: 64px;
    clip-path: polygon(100% 1%, 0 100%, 100% 100%);
    background: #67B0C7;
    border-radius: 0 0 24px 0;
    z-index: 2;
  }
}

.prizes__lower > .prizes__container:nth-child(3) {
  grid-column: 1/-1;
  width: 47.5%;
  height: auto;
  justify-self: center;
  margin-bottom: 19px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__lower > .prizes__container:nth-child(3) {
    grid-column: auto;
    width: 260px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__lower > .prizes__container:nth-child(3) {
    grid-column: auto;
    width: auto;
  }
}

.prizes__container {
  position: relative;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__container {
    margin-bottom: 0;
    border: 4px solid #FFF;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container {
    margin-bottom: 0;
    border: 4px solid #FFF;
    border-radius: 30px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__container:hover {
    border: 4px solid #9ED0E0;
    border-radius: 30px;
    cursor: pointer;
  }
  .prizes__container:hover img {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .prizes__container:hover .prizes__box img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__container:hover:nth-child(n+1)::after {
    background: #9ED0E0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container:hover {
    border: 4px solid #9ED0E0;
    border-radius: 30px;
    cursor: pointer;
  }
  .prizes__container:hover img {
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .prizes__container:hover .prizes__box img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__container:hover:nth-child(n+1)::after {
    background: #9ED0E0;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__container-small {
    width: 260px;
    height: 329px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container-small {
    width: 280px;
    height: 328px;
  }
}

.prizes__box {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box {
    border-radius: 24px;
  }
  .prizes__box img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box {
    border-radius: 24px;
  }
  .prizes__box img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
}

.prizes__image {
  width: 100%;
  height: 140px;
  border-radius: 8px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__image {
    overflow: hidden;
    height: 340px;
    min-width: 392px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__image {
    overflow: hidden;
    height: 343px;
    border-radius: 24px;
  }
}
.prizes__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__image img {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__image img {
    border-radius: 24px 24px 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .prizes__upper .prizes__image img {
    height: 343px;
  }
}

@media screen and (min-width: 1200px) {
  .prizes__lower .prizes__image img {
    height: 240px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__image-small {
    width: 260px;
    height: 240px;
  }
  .prizes__image-small img {
    width: 260px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__image-small {
    width: 280px;
    height: 240px;
  }
}

.prizes__text {
  display: block;
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #4A3636;
  background: #F5F5F5;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text {
    z-index: 1;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text {
    z-index: 1;
    border-radius: 0 0 24px 24px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text1 {
    padding: 28px 146px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text1 {
    padding: 28px 146px;
    font-size: 20px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text2 {
    padding: 44px 116px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text2 {
    padding: 44px 116px;
    font-size: 20px;
  }
}

.prizes__text3 {
  padding: 18.5px 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text3 {
    padding: 27px 64px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text3 {
    padding: 27px 64px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text4 {
    padding: 14px 88px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text4 {
    padding: 14px 88px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__text5 {
    padding: 27px 64px;
    font-size: 16px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text5 {
    padding: 14px 72px;
    font-size: 16px;
  }
}

.prizes__box-image1 {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-image1 {
    width: 100px;
    top: -49px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-image1 {
    width: 100px;
    top: -49px;
  }
}
.prizes__box-image1 img {
  width: 100%;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-image2 {
    width: 80px;
    top: -39px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-image2 {
    width: 80px;
    top: -39px;
  }
}

.prizes__box-numbers1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-numbers1 {
    top: -36px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-numbers1 {
    top: -36px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-numbers2 {
    top: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-numbers2 {
    top: -30px;
  }
}

.prizes__box-title1 {
  font-size: 7.68px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-title1 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-title1 {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-title2 {
    font-size: 12.8px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-title2 {
    font-size: 12.8px;
  }
}

.prizes__box-number1 {
  font-size: 23.04px;
  font-weight: 700;
  color: #FFF;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  line-height: 25px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-number1 {
    font-size: 48px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-number1 {
    font-size: 48px;
    line-height: 50px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__box-number2 {
    font-size: 38.4px;
    line-height: 43px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-number2 {
    font-size: 38.4px;
    line-height: 43px;
  }
}

.prizes__glasses1 {
  width: 11.52px;
  height: auto;
  position: absolute;
  bottom: 5.12px;
  right: 5.22px;
  z-index: 1;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__glasses1 {
    width: 32px;
    bottom: 14px;
    right: 12.5px;
    z-index: 3;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__glasses1 {
    width: 32px;
    bottom: 14px;
    right: 12.5px;
    z-index: 3;
  }
}
.prizes__glasses1 img {
  width: 100%;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__glasses2 {
    width: 20.48px;
    bottom: 8.96px;
    right: 8px;
  }
  .prizes__glasses2 img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__glasses2 {
    width: 20.48px;
    bottom: 8.96px;
    right: 8px;
  }
  .prizes__glasses2 img {
    width: 100%;
  }
}

.prizes-decoration {
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 237.6px;
  height: 83px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes-decoration {
    width: 365.624px;
    height: 148.967px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-decoration {
    width: 365.624px;
    height: 148.967px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 7px;
  }
}
.prizes-decoration img {
  width: 100%;
  height: 100%;
}

.modal {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

.modal__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.modal__image {
  height: 210px;
}
.modal__image img {
  width: 100%;
  height: 100%;
}

.modal__container {
  background: #FFF;
  padding-top: 39px;
  padding-bottom: 56px;
  height: 293px;
}

.modal__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal__text {
  display: block;
  font-size: 12px;
  margin-bottom: 16px;
}

.back {
  overflow: hidden;
}

.prizes__background {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prizes__background img {
  width: 100%;
  min-width: 580px;
  display: block;
  height: auto;
  margin-top: -37px;
}
@media screen and (min-width: 1200px) {
  .prizes__background img {
    margin-top: 0;
  }
}

.spots__wave {
  background: url(../img/sports-wave.svg);
  background-repeat: repeat-x;
  background-position: left -7px center;
  background-size: contain;
  width: 100%;
  height: 45.714px;
  padding-top: 47px;
  position: absolute;
  top: -36px;
  left: 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__wave {
    height: 120px;
    top: -119px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__wave {
    height: 120px;
    top: -119px;
    background-position: left 8px center;
  }
}

.spots {
  position: relative;
  z-index: 1;
  padding-bottom: 49.84px;
  background: #67B0C7;
}
@media screen and (min-width: 1200px) {
  .spots {
    padding-bottom: 5px;
    margin-bottom: 235px;
  }
}

.spots__inner {
  position: relative;
  top: -3px;
}

.spots__container {
  padding-top: 11px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    overflow: hidden;
    padding-left: max(30px, 50% - 512px);
    background: #67B0C7;
  }
}
@media screen and (min-width: 1200px) {
  .spots__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    overflow: hidden;
    padding-left: calc(50% - 512px);
    padding-top: 0;
    background: #67B0C7;
  }
}

.spots-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 262px;
  gap: 1px;
  margin: 0 auto 24px auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots-content {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}
@media screen and (min-width: 1200px) {
  .spots-content {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.spots-title {
  color: #FFF;
  font-family: "Kiwi Maru", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots-title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-title {
    font-size: 40px;
    letter-spacing: 0.25em;
    padding-top: 7px;
  }
}

.spots__boxes {
  width: 100%;
}

.spots__box {
  background-color: #FFF;
  padding: 0 24px 0 24px;
  border-radius: 12px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__box {
    padding: 0 32px 0 32px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__box {
    padding: 0 32px 0 32px;
    border-radius: 24px;
  }
}

.spots__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
  height: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots__image img {
  max-width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__image img {
    border-radius: 24px 24px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__image img {
    border-radius: 24px 24px 0 0;
  }
}

.spots__text-box {
  height: 221.16px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__text-box {
    height: 302px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text-box {
    height: 302px;
  }
}

.spots__sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #4A3636;
  text-align: center;
  padding-top: 17px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__sub-title {
    font-size: 20px;
    padding-top: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__sub-title {
    font-size: 20px;
    padding-top: 25px;
  }
}

.spots__text {
  font-size: 12px;
  color: #4A3636;
  padding-top: 15px;
  display: block;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__text {
    font-size: 16px;
    padding-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    padding-top: 24px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__prev-next {
    width: 800px;
    height: 1px;
    position: relative;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev-next {
    width: 900px;
    height: 62px;
    position: relative;
    margin: 0 auto;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
  }
  .swiper-button-prev img,
  .swiper-button-next img {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 80px;
  }
  .swiper-button-prev img,
  .swiper-button-next img {
    width: 100%;
  }
}

.swiper-button-prev {
  position: absolute;
  top: -35px;
  left: -22px;
  background-image: url(../img/spots-prev.svg);
}

.swiper-button-next {
  position: absolute;
  top: -35px;
  right: -22px;
  background-image: url(../img/spots-next.svg);
}

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

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

.spots__bottom-items {
  padding-top: 1px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__bottom-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 13px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.spots__text-image {
  width: 255px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .spots__text-image {
    width: 495px;
    margin: 0;
  }
}
.spots__text-image img {
  width: 100%;
}

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

.spots__bottom-text {
  font-size: 11.444px;
  color: #FFF;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots__bottom-text {
    font-size: 16px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-text {
    font-size: 16px;
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots-button {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-button {
    border: 3px solid #4A3636;
    margin-left: 10px;
  }
}

@media screen and (max-width: 332px) {
  .spots-btn {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .spots-btn {
    padding: 11px 40px 12px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-btn {
    font-size: 20px;
    padding: 9px 37px 10px;
  }
}

.prizes__background-bottom {
  background: url(../img/spots-bottom-wave.svg);
  width: 100%;
  height: 45.714px;
  position: absolute;
  bottom: -65px;
  left: 0;
  background-repeat: repeat-x;
  background-position: left -5px center;
  background-size: contain;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__background-bottom {
    bottom: -124px;
    height: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__background-bottom {
    bottom: -123px;
    height: 120px;
    background-position: left 2px center;
  }
}

.prizes__foot-print {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .prizes__foot-print {
    display: block;
    width: 80px;
    position: absolute;
    bottom: -40px;
    left: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__foot-print {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 36px;
  }
}
.prizes__foot-print img {
  width: 100%;
}

.qa {
  padding-top: 53px;
  padding-bottom: 30.67px;
}
@media screen and (min-width: 1200px) {
  .qa {
    padding-top: 0;
    padding-bottom: 120px;
  }
}

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

.qa__content {
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa__content {
    margin-top: 154px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__content {
    margin-bottom: 44px;
  }
}

.qa__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa__boxes {
    gap: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__boxes {
    gap: 24px;
  }
}

.qa-box {
  border: 2px solid #4A3636;
  border-radius: 12px;
}
.qa-box.is-open .qa-box__head {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box.is-open .qa-box__head {
    padding: 20px;
  }
}
.qa-box.is-open .qa-box__bottom-icon-bar:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.qa-box:nth-child(2) .qa-box__head {
  padding: 9px 15px 8px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box:nth-child(2) .qa-box__head {
    padding: 20px;
  }
}
.qa-box:nth-child(3) .qa-box__head {
  padding: 11px 14px 9px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box:nth-child(3) .qa-box__head {
    padding: 20px;
  }
}
.qa-box:nth-child(4) .qa-box__head {
  padding: 10px 14px 9px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box:nth-child(4) .qa-box__head {
    padding: 20px;
  }
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  padding: 10px 14px 12px;
  border-radius: 12px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box__head {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head {
    padding: 20px !important;
    width: 100%;
    gap: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.qa__sub-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 1200px) {
  .qa__sub-box {
    gap: 16px;
  }
}

.qa-box__head-icon,
.qa-box__a-icon {
  color: #9ED0E0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .qa-box__head-icon,
  .qa-box__a-icon {
    font-size: 32px;
    display: block;
    padding-left: 2px;
    padding-top: 7px;
  }
}

.pa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .pa-box__head-text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .pa-box__head-text {
    font-size: 20px;
    padding-top: 8px;
  }
}

.qa-box__bottom-icon {
  position: relative;
  display: block;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ED0E0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box__bottom-icon {
    width: 48px;
    height: 48px;
    right: 2%;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__bottom-icon {
    width: 48px;
    height: 48px;
  }
}

.qa-box__bottom-icon-bar {
  content: "";
  width: 10.182px;
  height: 1.455px;
  background: #FFF;
  -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;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box__bottom-icon-bar {
    width: 18.667px;
    height: 2.667px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__bottom-icon-bar {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa-box__bottom-icon-bar:nth-of-type(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.qa-box__bottom-icon-bar:nth-of-type(2) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__body {
  background: #F5F5F5;
  border-radius: 0 0 12px 12px;
  padding: 16px 14px 16px;
  line-height: 1.5;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box__body {
    padding: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__body {
    padding-top: 21px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
}

.qa-box:nth-of-type(n+2) .qa-box__body {
  display: none;
}

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

.qa-box__a-text {
  display: block;
  font-size: 14px;
  color: #4A3636;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__a-text {
    font-size: 16px;
    padding-top: 2px;
  }
}

.entry {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 32px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry {
    max-width: 1084px;
    margin: 0 auto;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .entry {
    padding-bottom: 122px;
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
  }
}

.entry__inner {
  padding-top: 8px;
  padding-bottom: 8px;
  background: #FFFFFF;
}
@media screen and (min-width: 1200px) {
  .entry__inner {
    padding-bottom: 11px;
  }
}

.entry__inner-double {
  padding-top: 17px;
  padding-bottom: 16px;
  margin-left: 8px;
  margin-right: 8px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 1200px) {
  .entry__inner-double {
    padding-top: 33px;
    padding-bottom: 32px;
  }
}

.entry__content {
  margin-bottom: 24px;
}
@media screen and (min-width: 1200px) {
  .entry__content {
    margin-bottom: 40px;
  }
}

.entry__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  padding-left: 15.5px;
  padding-right: 15.5px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__boxes {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__boxes {
    padding-left: 47.5px;
    padding-right: 50px;
  }
}

.entry__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: 8.5px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 2px;
    padding-bottom: 11.5px;
    gap: 0;
  }
}
.entry__box:nth-child(3) {
  padding-bottom: 13px;
  gap: 9px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__box:nth-child(3) {
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__box:nth-child(3) {
    padding-top: 0;
    padding-bottom: 11px;
    gap: 0;
  }
}

.final-box {
  border-bottom: none;
}

.entry__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__container {
    width: 204px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__container {
    width: 224px;
  }
}

.entry__mark {
  width: 8px;
  height: 8px;
}
.entry__mark img {
  width: 100%;
}

.entry__title {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #4A3636;
  padding-left: 16px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__title {
    width: 208px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__title {
    width: 208px;
    font-size: 16px;
    padding-left: 32px;
  }
}
.entry__title::before {
  position: absolute;
  top: 8px;
  left: 0px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
}
@media screen and (min-width: 1200px) {
  .entry__title::before {
    left: 17px;
  }
}

.entry__text {
  font-size: 12px;
  color: #4A3636;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__text {
    font-size: 16px;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .entry__text {
    font-size: 16px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__text ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
  }
}
.entry__text li {
  position: relative;
  list-style: none;
  padding-left: 18px;
  line-height: 19px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .entry__text li {
    line-height: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__text li {
    padding-left: 40px;
    line-height: 25px;
  }
}
.entry__text li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
@media screen and (min-width: 1200px) {
  .entry__text li::before {
    top: 0.1em;
    left: 1.2em;
  }
}

@media screen and (min-width: 1200px) {
  .entry__background {
    padding-bottom: 120px;
    background: #FFF;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 44px;
  background: #FFF;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-top: 0;
    padding-bottom: 120px;
  }
}

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

.contact__txt {
  display: block;
  margin-top: 18px;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .contact__txt {
    margin-top: 26px;
  }
}

.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: 25px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .contact__field {
    padding-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__field {
    padding-top: 16px;
    gap: 21px;
  }
}

.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: 7px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .form-field:nth-child(-n+4) .form-field__head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form-field:nth-child(3) .form-field__head {
  padding-top: 1px;
}

@media screen and (min-width: 1200px) {
  .form-field__magazine {
    margin-top: 21px;
  }
}

@media screen and (min-width: 1200px) {
  .form-field__message {
    padding-top: 17px;
  }
}

@media screen and (min-width: 1200px) {
  .form-field__privacy {
    margin-top: 18px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-field__head {
    width: 220px;
    -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;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__head {
    width: 220px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-field__label {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__label {
    font-size: 16px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.form-field__tag {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #FFF;
  background: #CE2073;
  border-radius: 4px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-field__tag {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__tag {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.form-field__item [type=text],
.form-field__item [type=email] {
  width: 100%;
  font-size: 14px;
  padding: 15.5px 15px;
  border-radius: 8px;
  background: #F5F5F5;
  border: 1px solid #F5F5F5;
}
@media screen and (min-width: 1200px) {
  .form-field__item [type=text],
  .form-field__item [type=email] {
    font-size: 16px;
  }
}
.form-field__item [type=text]:hover, .form-field__item [type=text]:focus,
.form-field__item [type=email]:hover,
.form-field__item [type=email]:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  outline: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-field__item {
    width: 596px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__item {
    width: 628px;
  }
}

.select-item {
  width: 100%;
  height: 56px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .select-item {
    width: 596px;
  }
}
@media screen and (min-width: 1200px) {
  .select-item {
    width: 628px;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-size: 14px;
  padding: 16.5px 15px;
  border-radius: 8px;
  background: #F5F5F5;
  outline: none;
  border: 1px solid #FFF;
  background-image: url(../img/select-icon.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right;
}
@media screen and (min-width: 1200px) {
  select {
    font-size: 16px;
  }
}
select:focus {
  border: 1px solid #9ED0E0;
}
select:hover {
  border: 1px solid #9ED0E0;
}

.form-field__item [type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-field__item [type=radio]:focus + .form-field__text:before {
  border: 1px solid #9ED0E0;
}
.form-field__item [type=radio]:hover + .form-field__text:before {
  border: 1px solid #9ED0E0;
}
.form-field__item [type=radio]:checked + .form-field__text::after {
  opacity: 1;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.form-field__text {
  font-size: 14px;
  color: #4A3636;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 1200px) {
  .form-field__text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form-field__text::before, .form-field__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-field__text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  left: 0;
}
.form-field__text::after {
  background: #9ED0E0;
  width: 10px;
  height: 10px;
  left: 7px;
  opacity: 0;
}

textarea {
  width: 100%;
  height: 160px;
  background: #F5F5F5;
  border-radius: 8px;
  border: 1px solid #FFF;
  padding: 16px 14px 19px 16px;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  textarea {
    font-size: 16px;
  }
}
textarea:focus, textarea:hover {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  outline: none;
}

.contact__privacy {
  margin: 0 auto;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  overflow: hidden;
}
.form-checkbox__input:focus + .form-checkbox__text:before {
  border: 1px solid #9ED0E0;
  outline: none;
}
.form-checkbox__input:hover + .form-checkbox__text:before {
  border: 1px solid #9ED0E0;
  outline: none;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input.error + .form-checkbox__text::before {
  border-color: #CE2073;
  background: rgb(252.7142857143, 240.2857142857, 246.2142857143);
}

.form-checkbox__text {
  position: relative;
  font-size: 14px;
  padding-left: 36px;
  padding-top: 1px;
  display: block;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border: 1px solid #F5F5F5;
  border-radius: 4px;
  background: #F5F5F5;
}
.form-checkbox__text::after {
  background: url(../img/check-icon.svg) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  stroke-width: 2px;
  left: 5px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}

.button [type=submit] {
  background: #FFF;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

@media screen and (min-width: 1200px) {
  .privacy-button {
    margin-top: 20px;
  }
}
.privacy-button .btn {
  font-size: 16px;
  padding: 4px 22px 6px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media screen and (min-width: 1200px) {
  .privacy-button .btn {
    padding: 4px 38px 6px;
  }
  .privacy-button .btn:hover {
    background-color: #FFEE56;
  }
}

.error {
  border-color: #CE2073 !important;
  background: rgb(252.7142857143, 240.2857142857, 246.2142857143) !important;
}

.follow {
  padding-top: 40px;
  padding-bottom: 26px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .follow {
    padding-top: 120px;
    padding-bottom: 192px;
  }
}

.follow__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .follow__inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__container {
    max-width: 908px;
    margin: 0 auto;
  }
}

.follow__title {
  font-size: 20px;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
  color: #4A3636;
  text-align: center;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__title {
    font-size: 24px;
  }
}

.follow__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 908px;
  margin: 0 auto;
  padding-bottom: 48px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__box {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__box {
    padding-bottom: 120px;
  }
}

.follow__box-image {
  width: 32px;
  height: 32px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__box-image {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__box-image {
    width: 40px;
    height: 40px;
  }
}
.follow__box-image:hover {
  opacity: 0.7;
}
.follow__box-image img {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__maps {
    position: relative;
    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;
  }
}
@media screen and (min-width: 1200px) {
  .follow__maps {
    position: relative;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.follow__google {
  width: 89vw;
  height: 72vw;
  max-width: 600px;
  max-height: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__google {
    width: 512px;
    height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__google {
    width: 512px;
    height: 400px;
    margin-left: 0;
  }
}
.follow__google iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__google iframe {
    border-radius: 0 16px 16px 0;
  }
}
@media screen and (min-width: 1200px) {
  .follow__google iframe {
    border-radius: 0 16px 16px 0;
  }
}

.follow__maps-contacts {
  background: #FFF;
  border-radius: 0 0 16px 16px;
  padding-top: 24px;
  padding-bottom: 28px;
  width: 89vw;
  height: 58vw;
  max-width: 600px;
  max-height: 203px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__maps-contacts {
    width: 512px;
    height: 400px;
    padding-top: 106px;
    padding-bottom: 294px;
    border-radius: 16px 0 0 16px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__maps-contacts {
    width: 512px;
    height: 400px;
    padding-top: 100px;
    padding-bottom: 300px;
    border-radius: 16px 0 0 16px;
    margin-right: 0;
  }
}

.follow__logo {
  width: 153px;
  height: 20px;
  margin: 0 auto;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__logo {
    width: 183px;
    height: 24px;
    margin: 0 0 24px 61.5px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__logo {
    width: 183px;
    height: 24px;
    margin: 0 0 24px 61.5px;
    padding-top: 3px;
  }
}
.follow__logo img {
  width: 100%;
  height: 100%;
}

.follow__maps-contact-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 7px;
}
@media screen and (max-width: 374px) {
  .follow__maps-contact-boxes {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__maps-contact-boxes {
    padding-left: 61.5px;
    padding-right: 61.5px;
    gap: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__maps-contact-boxes {
    padding-left: 61.5px;
    padding-right: 61.5px;
    gap: 12px;
  }
}

.follow__maps-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__maps-contact {
    gap: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .follow__maps-contact {
    gap: 40px;
    padding-left: 16px;
  }
}

.follow__maps-contact-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.follow__maps-contact-box::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  color: #9ED0E0;
  border-radius: 50%;
}

.follow__maps-contact-title {
  position: relative;
}
.follow__maps-contact-title::before {
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
}

@media screen and (max-width: 374px) {
  .follow__maps-contact-text {
    font-size: 11px;
  }
}

.follow__onomichi {
  position: absolute;
  top: 134px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 330px;
  width: 100%;
  height: 55px;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__onomichi {
    max-width: 740px;
    height: 125px;
    top: -77px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .follow__onomichi {
    max-width: 740px;
    height: 125px;
    top: -79px;
    left: calc(50% - 1px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.follow__onomichi img {
  width: 100%;
}

.follow__foot-print {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .follow__foot-print {
    width: 70px;
    height: auto;
    position: absolute;
    top: -247px;
    right: -16px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .follow__foot-print {
    position: absolute;
    top: -255px;
    right: 49px;
    display: block;
  }
}
.follow__foot-print img {
  width: 100%;
}

.page-top img {
  display: block;
  width: 75px;
  margin: 0 auto;
  padding-bottom: 22px;
}

.wave {
  position: relative;
}
.wave::before {
  content: "";
  background: url(../img/sp/footer-wave-sp.svg);
  background-repeat: repeat-x;
  height: 47.71px;
  position: absolute;
  top: 2px;
  left: 0;
  background-position: left center;
  background-size: contain;
  width: 100%;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .wave::before {
    background: url(../img/footer-wave-pc.svg);
    height: 120px;
    background-repeat: repeat-x;
    top: -73px;
  }
}
@media screen and (min-width: 1200px) {
  .wave::before {
    background: url(../img/footer-wave-pc.svg);
    height: 120px;
    background-repeat: repeat-x;
    top: -73px;
  }
}

.footer {
  background: #67B0C7;
  padding-bottom: 25px;
  margin-top: 45px;
  text-align: center;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .footer {
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-bottom: 32px;
  }
}

.footer__copy {
  font-size: 10px;
  color: #FFF;
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .footer__copy {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copy {
    font-size: 14px;
  }
}