@charset "UTF-8";
/*----------------------------------
    共通パーツ
-----------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: normal;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  color: #333;
  background: #FFF9EB;
}
body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.inner {
  width: 350px;
  width: 390px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
@media (min-width: 1060px) {
  .inner {
    width: 1060px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1059px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 1060px) {
  .sp-only {
    display: none !important;
  }
}

.button__arrow {
  display: inline-block;
  padding: 18px 35px 18px 35px;
  background: #4FABBF;
  border-radius: 10px;
  color: #FFF;
  font-weight: 700;
  line-height: 150%; /* 24px */
  text-align: center;
  position: relative;
  width: 300px;
  max-width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
@media (min-width: 1060px) {
  .button__arrow {
    width: 350px;
    padding: 22px 15px 21px 15px;
    font-size: 18px;
  }
}
.button__arrow::after {
  content: "";
  position: absolute;
  background: url(../img/button-arrow.svg) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .button__arrow::after {
    height: 13px;
    width: 13px;
    right: 20px;
  }
}

.button__arrow:hover {
  color: #4FABBF;
  background: #FFF;
  border-color: currentColor;
}
.button__arrow:hover::after {
  background-image: url(../img/button-arrow-hover.svg);
}

.button__arrow--voice {
  width: 250px;
  padding: 13px 35px;
}
@media (min-width: 1060px) {
  .button__arrow--voice {
    padding: 17px 35px 16px;
  }
}

.button__submit {
  border: none;
  width: 100%;
  max-width: 170px;
  height: 50px;
  border-radius: 5px;
  background: #4FABBF;
  color: #FFF;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .button__submit {
    height: 70px;
    font-size: 20px;
  }
}

.button__submit:hover {
  opacity: 0.7;
}

.button__submit:disabled {
  background: gray;
  opacity: 1;
}

.button__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 300px;
  height: 120px;
  border-radius: 10px;
  background: #FFF;
  -webkit-box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
          box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  padding: 16px 15px 9px 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .button__contact {
    height: 160px;
    padding: 22px 17px 21px;
  }
}

.button__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4FABBF;
  color: #FFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 1060px) {
  .button__contact-icon {
    width: 36px;
    height: 36px;
  }
}

.button__contact-text {
  margin-left: 15px;
  line-height: 150%; /* 24px */
  width: calc(100% - 55px);
  padding-top: 3px;
  word-break: keep-all;
}
@media (min-width: 1060px) {
  .button__contact-text {
    font-size: 20px;
    margin-left: 10px;
  }
}

.button__contact-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  width: 100%;
  text-align: center;
}
.button__contact-title--tel {
  margin: 7px auto auto;
  padding-left: 6px;
  letter-spacing: 2.4px;
}
@media (min-width: 1060px) {
  .button__contact-title--tel {
    margin-top: 17px;
    padding-left: 1px;
    letter-spacing: 1.2px;
  }
}
.button__contact-title--mail {
  margin-bottom: 15px;
  margin-right: 4px;
}
@media (min-width: 1060px) {
  .button__contact-title--mail {
    margin-top: 7px;
    margin-left: 5px;
  }
}

.button__contact-name {
  font-size: 14px;
  line-height: 150%; /* 21px */
  width: 100%;
  text-align: right;
}
@media (min-width: 1060px) {
  .button__contact-name {
    font-size: 16px;
  }
}

.button__contact:hover {
  background: #4FABBF;
  color: #FFF;
}
.button__contact:hover .button__contact-icon {
  background: #FFF;
  color: #4FABBF;
}

.button__scroll {
  position: sticky;
  display: block;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 50;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .button__scroll {
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 147px;
    height: 226px;
  }
}

.button__scroll-text {
  color: #4FABBF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  background: #FFF;
  width: 380px;
  height: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 5px solid currentColor;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .button__scroll-text {
    display: none;
  }
}

.button__scroll-img {
  display: none;
}
@media (min-width: 1060px) {
  .button__scroll-img {
    display: block;
  }
}

.button__scroll.is-hidden {
  -webkit-transform: translateY(105%);
          transform: translateY(105%);
  position: fixed;
}
@media (min-width: 1060px) {
  .button__scroll.is-hidden {
    -webkit-transform: translateX(calc(105% + 40px));
            transform: translateX(calc(105% + 40px));
  }
}

.button__scroll:hover .button__scroll-text {
  color: #FFF;
  background: #4FABBF;
}

.section-title {
  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;
  gap: 17px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media (min-width: 1060px) {
  .section-title {
    gap: 15px;
    font-size: 30px;
    line-height: 150%; /* 45px */
    letter-spacing: 0.9px;
  }
}
.section-title::before, .section-title::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url(../img/section-title-ribbon.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .section-title::before, .section-title::after {
    width: 125px;
    height: 46px;
  }
}

/*----------------------------------
    header
-----------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 17px;
  padding-bottom: 17px;
  z-index: 100;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .header {
    background: rgba(255, 249, 235, 0.5);
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1000px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1060px) {
  .header__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1060px) {
  .header__inner {
    width: 1060px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1060px) {
  .header__nav {
    gap: 18px;
  }
}

.header__list {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 1060px) {
  .header__list {
    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;
    gap: 2px;
  }
}

.header__link {
  display: block;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  width: 130px;
  height: 60px;
  display: grid;
  place-items: center;
  background: #4FABBF;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.header__link path {
  color: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__link rect {
  color: #4FABBF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__link:hover {
  color: #4FABBF;
  background: #FFF;
  border-color: currentColor;
}
.header__link:hover path {
  color: #4FABBF;
}
.header__link:hover rect {
  color: #FFF;
}

.header__logo {
  text-align: center;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__logo a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
.header__logo img {
  width: 4.375rem;
  height: auto;
  aspect-ratio: 70/30;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .header__logo img {
    width: 7.125rem;
  }
}
@media (min-width: 1060px) {
  .scrolled .header__logo img {
    width: 6rem;
  }
}

@media (min-width: 1060px) {
  .header__drawer-icon {
    display: none;
  }
}

.drawer-icon {
  width: 24px;
  height: 30px;
  position: relative;
}

.drawer-icon__bar {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #FFF;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.drawer-icon__text {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFF;
  font-size: 8px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer-icon__text--close {
  opacity: 0;
}

.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 8px;
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-open .drawer-icon__text--open {
  opacity: 0;
}
.drawer-icon.is-open .drawer-icon__text--close {
  opacity: 1;
}

.drawer__content {
  background: rgba(79, 171, 191, 0.7);
  color: #FFF;
  padding-top: 130px;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__content.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

.drawer__link {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__link:hover {
  opacity: 0.7;
}

.main {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.mv__slide {
  aspect-ratio: 390/580;
}
@media (min-width: 1060px) {
  .mv__slide {
    aspect-ratio: 1440/700;
  }
}
.mv__slide--1 {
  background: url(../img/fv1.png) no-repeat center center/cover;
}
@media (min-width: 1060px) {
  .mv__slide--1 {
    background-image: url(../img/pc/fv1.png);
  }
}
.mv__slide--2 {
  background: url(../img/fv2.png) no-repeat center center/cover;
}
@media (min-width: 1060px) {
  .mv__slide--2 {
    background-image: url(../img/pc/fv2.png);
  }
}
.mv__slide--3 {
  background: url(../img/fv3.png) no-repeat center center/cover;
}
@media (min-width: 1060px) {
  .mv__slide--3 {
    background-image: url(../img/pc/fv3.png);
  }
}

.mv .swiper-container {
  position: relative;
}
.mv .swiper {
  position: relative;
}
.mv .swiper-wrapper {
  position: relative;
}

.card {
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.card__link:hover {
  opacity: 0.7;
}

.card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 10px;
  -webkit-box-shadow: 3px 3px 4px 0px rgba(51, 51, 51, 0.3);
          box-shadow: 3px 3px 4px 0px rgba(51, 51, 51, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .card__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
}

.card__head img {
  aspect-ratio: 330/220;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1060px) {
  .card__head img {
    aspect-ratio: 310/250;
    width: 310px;
  }
}

.card__body {
  position: relative;
}
@media (min-width: 1060px) {
  .card__body {
    width: calc(100% - 300px - 35px);
    padding: 10px 10px 0;
  }
}

.card__body-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
}
@media (min-width: 1060px) {
  .card__body-title {
    font-size: 24px;
  }
}
.card__body-title span {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.8px;
}
@media (min-width: 1060px) {
  .card__body-title span {
    font-size: 24px;
    letter-spacing: normal;
  }
}

.card__body-price {
  margin-top: 5px;
  color: #D91621;
  font-size: 18px;
  font-weight: 700;
  text-align: right;
}
@media (min-width: 1060px) {
  .card__body-price {
    margin-top: 0;
    margin-right: 10px;
    font-size: 24px;
  }
}

.card__body-description {
  margin-top: 10px;
  line-height: 150%; /* 21px */
  font-size: 14px;
}
@media (min-width: 1060px) {
  .card__body-description {
    margin-top: 14px;
    font-size: 18px;
  }
}
.card__body-description span {
  display: block;
  margin-top: 3px;
  color: #D91621;
  font-weight: 700;
  font-size: 13px;
}
@media (min-width: 1060px) {
  .card__body-description span {
    margin-top: 10px;
    line-height: 150%; /* 24px */
    font-size: 16px;
  }
}

@media (min-width: 1060px) {
  .camp__card .card__body-description {
    margin-top: 11px;
  }
}

@media (min-width: 1060px) {
  .camp__slide .card__head img {
    aspect-ratio: 310/200;
    height: 100%;
  }
  .camp__slide .card__body {
    padding: 15px 10px;
  }
  .camp__slide .card__body-title {
    letter-spacing: 0.5px;
    float: left;
  }
  .camp__slide .card__body-price {
    margin-top: 8px;
    margin-top: 45px;
    letter-spacing: -1px;
  }
  .camp__slide .card__body-description {
    margin-top: 9px;
  }
}

.balloon {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 1060px) {
  .balloon {
    padding-top: 91px;
    padding-bottom: 90px;
  }
}

.balloon__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
@media (min-width: 1060px) {
  .balloon__title {
    gap: 6px;
  }
}
.balloon__title::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 120px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110px;
  height: 50px;
  background: url(../img/balloon-title-top.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .balloon__title::before {
    bottom: calc(100% + 2px);
    width: 156px;
    height: 74px;
    left: calc(50% - 194px);
  }
}

.balloon__title-main {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%; /* 33px */
}
@media (min-width: 1060px) {
  .balloon__title-main {
    font-size: 30px;
  }
}

.balloon__title-sub {
  font-size: 22px;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  margin-left: 3px;
}
@media (min-width: 1060px) {
  .balloon__title-sub {
    font-size: 30px;
    margin-left: 0;
  }
}
.balloon__title-sub::before, .balloon__title-sub::after {
  content: "";
  position: absolute;
}
.balloon__title-sub::before {
  bottom: 5px;
  right: calc(100% + 2px);
  width: 24px;
  height: 34px;
  background: url(../img/balloon-title-left.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .balloon__title-sub::before {
    bottom: 4px;
    width: 33px;
    height: 47px;
    right: calc(100% + 12px);
  }
}
.balloon__title-sub::after {
  top: 4px;
  left: calc(100% + 4px);
  width: 24px;
  height: 34px;
  background: url(../img/balloon-title-right.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .balloon__title-sub::after {
    top: -2px;
    left: 100%;
    width: 34px;
    height: 47px;
  }
}
.balloon__title-sub span {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 150%; /* 45px */
  letter-spacing: 3px;
}
@media (min-width: 1060px) {
  .balloon__title-sub span {
    font-size: 42px;
    letter-spacing: 4.2px;
  }
}

.balloon__list {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 1060px) {
  .balloon__list {
    margin-top: 57px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    gap: 80px;
  }
}

.balloon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media (min-width: 1060px) {
  .balloon-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
  }
  .balloon-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.balloon-item__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
@media (min-width: 1060px) {
  .balloon-item__images {
    width: 450px;
  }
}

.balloon-item__image {
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 1060px) {
  .balloon-item__image {
    aspect-ratio: 450/280;
    height: 280px;
  }
}
.balloon-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.balloon-item__image:nth-child(1) {
  width: 100%;
}
.balloon-item__image:nth-child(2) {
  width: calc(50% - 5px);
}
@media (min-width: 1060px) {
  .balloon-item__image:nth-child(2) {
    height: 150px;
  }
}
.balloon-item__image:nth-child(3) {
  width: calc(50% - 5px);
}
@media (min-width: 1060px) {
  .balloon-item__image:nth-child(3) {
    height: 150px;
  }
}

@media (min-width: 1060px) {
  .balloon-item__content {
    width: 450px;
  }
}

.balloon-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1060px) {
  .balloon-item__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.balloon-item__number {
  font-family: "Oswald", sans-serif;
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 1.35px;
  margin-right: 30px;
  position: relative;
  line-height: 140%;
}
@media (min-width: 1060px) {
  .balloon-item__number {
    margin-right: 39px;
    font-size: 65px;
    letter-spacing: 1.3px;
    line-height: 122%;
  }
}
.balloon-item__number::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 50px;
  background: #333;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -17px;
}
@media (min-width: 1060px) {
  .balloon-item__number::after {
    top: 53%;
    height: 75px;
    right: -22px;
  }
}

.balloon-item__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
  padding-top: 4px;
}
@media (min-width: 1060px) {
  .balloon-item__title {
    padding-top: 0px;
    font-size: 28px;
    line-height: 150%; /* 42px */
  }
}

.balloon-item__body {
  margin-top: 20px;
}
@media (min-width: 1060px) {
  .balloon-item__body {
    margin-top: 25px;
  }
}

.balloon-item__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .balloon-item__description {
    font-size: 18px;
    line-height: 172%;
  }
}

.balloon-item__button {
  margin-top: 18px;
  text-align: center;
}
@media (min-width: 1060px) {
  .balloon-item__button {
    margin-top: 44px;
  }
}

.tour {
  background: url(../img/tour-bg.png) no-repeat center center/cover;
  padding-top: 60px;
  padding-bottom: 58px;
}
@media (min-width: 1060px) {
  .tour {
    padding-top: 90px;
    padding-bottom: 67px;
  }
}

.tour__title {
  text-align: center;
  position: relative;
}
.tour__title::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 114px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 123px;
  height: 50px;
  background: url(../img/tour-title-top.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .tour__title::before {
    left: calc(50% - 175px);
    width: 176px;
    height: 70px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.tour__title-main {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%; /* 33px */
}
@media (min-width: 1060px) {
  .tour__title-main {
    font-size: 30px;
  }
}

.tour__description {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .tour__description {
    margin-top: 50px;
    font-size: 20px;
  }
}

.tour__card {
  margin-top: 20px;
}
@media (min-width: 1060px) {
  .tour__card {
    margin-top: 30px;
  }
}

.tour__table-title {
  margin-top: 40px;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%; /* 33px */
  text-align: center;
}
@media (min-width: 1060px) {
  .tour__table-title {
    margin-top: 50px;
    font-size: 30px;
    letter-spacing: 1.5px;
  }
}

.tour__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 34px;
  gap: 30px;
}
@media (min-width: 1060px) {
  .tour__table {
    gap: 0px;
    margin: 30px auto;
    max-width: 852px;
  }
}

.tour-head {
  display: none;
  border: 1px solid #333;
}
@media (min-width: 1060px) {
  .tour-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.tour-head__cell {
  background: #4FABBF;
  padding: 8px 2px 7px;
  text-align: center;
  color: #FFF;
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tour-head__cell:not(:last-child) {
  position: relative;
}
.tour-head__cell:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: url(../img/dotted-vartical.svg) no-repeat center center/cover;
}

.tour-head-cell--1 {
  width: 66px;
  letter-spacing: 1.8px;
}

.tour-head-cell--2 {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tour-head-cell--3 {
  width: 51px;
}

.tour-head-cell--4 {
  width: 125px;
  letter-spacing: 1.8px;
}

.tour-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  border: 1px solid #333;
}
@media (min-width: 1060px) {
  .tour-body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-top: none;
    border-bottom: none;
  }
  .tour-body::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: url(../img/dotted.svg) repeat center center/contain;
    bottom: 0;
  }
}
.tour-body:first-child {
  border-top: none;
}
.tour-body:last-child::after {
  display: none;
}

.tour-body__cell {
  background: #FFF;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .tour-body__cell {
    font-size: 16px;
  }
  .tour-body__cell:not(:last-child) {
    position: relative;
  }
  .tour-body__cell:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: url(../img/dotted-vartical.svg) no-repeat center center/cover;
  }
}

.tour-body-cell--1 {
  background: #4FABBF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: -1px;
  bottom: calc(100% + 1px);
  color: #FFF;
  font-size: 14px;
  padding: 2px 7px;
}
@media (min-width: 1060px) {
  .tour-body-cell--1 {
    position: static;
    left: 0;
    bottom: 0;
    width: 66px;
    background: #FFF;
    color: #333;
    padding: 7px 12px;
    line-height: 150%; /* 24px */
    font-size: 16px;
  }
}

.tour-body-cell--2 {
  padding: 15px 11px 15px 14px;
}
@media (min-width: 1060px) {
  .tour-body-cell--2 {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 24px 16px 24px 22px;
  }
}

.tour-body-cell--3 {
  padding: 5px 15px;
}
@media (min-width: 1060px) {
  .tour-body-cell--3 {
    width: 51px;
  }
}

.tour-body-cell--4 {
  padding: 5px 15px;
}
@media (min-width: 1060px) {
  .tour-body-cell--4 {
    width: 125px;
    padding: 5px 10px;
  }
}

.tour-body-cell--3,
.tour-body-cell--4 {
  position: relative;
}
.tour-body-cell--3::before,
.tour-body-cell--4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: url(../img/dotted.svg) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .tour-body-cell--3::before,
  .tour-body-cell--4::before {
    display: none;
  }
}

.tour-body-cell__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 1060px) {
  .tour-body-cell__list {
    gap: 20px;
  }
}

.tour-body-cell__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
@media (min-width: 1060px) {
  .tour-body-cell__item {
    gap: 15px;
  }
}

.tour-body-cell__item-icon {
  width: 19px;
  height: 19px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1060px) {
  .tour-body-cell__item-icon {
    width: 26px;
    height: 26px;
  }
}

.tour-body-cell__item-text {
  font-size: 14px;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .tour-body-cell__item-text {
    padding-top: 3px;
  }
}

.tour-body-cell__item-text--sp {
  display: none;
}
@media (min-width: 1060px) {
  .tour-body-cell__item-text--sp {
    font-size: 13px;
    line-height: 150%;
    display: block;
  }
}

.tour-body-cell__item-text--small {
  font-size: 12px;
  display: inline-block;
}

.tour-body-cell__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1060px) {
  .tour-body-cell__tr {
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.tour-body-cell__th {
  width: 63px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1060px) {
  .tour-body-cell__th {
    display: none;
  }
}

.tour-body-cell__td {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1060px) {
  .tour-body-cell--3 .tour-body-cell__td {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.7px;
  }
}
.tour-body-cell--3 .tour-body-cell__td img {
  width: 12px;
  height: 12px;
}
@media (min-width: 1060px) {
  .tour-body-cell--3 .tour-body-cell__td img {
    width: 14px;
    height: 14px;
  }
}
.tour-body-cell--4 .tour-body-cell__td {
  gap: 2px;
}
@media (min-width: 1060px) {
  .tour-body-cell--4 .tour-body-cell__td {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    color: #333;
    text-align: center;
    line-height: 150%; /* 18px */
    font-size: 12px;
  }
}
.tour-body-cell--4 .tour-body-cell__td img {
  width: 14px;
  height: 14px;
}
@media (min-width: 1060px) {
  .tour-body-cell--4 .tour-body-cell__td img {
    display: block;
    width: 33px;
    height: 33px;
  }
}

.tour-body-cell__line {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: #333;
}
@media (min-width: 1060px) {
  .tour-body-cell__line {
    width: 30px;
    height: 1.5px;
  }
}

.tour-body-cell__td-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.camp {
  padding-top: 56px;
  padding-bottom: 59px;
  overflow: hidden;
}
@media (min-width: 1060px) {
  .camp {
    padding-top: 88px;
    padding-bottom: 167px;
  }
}

.camp__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
@media (min-width: 1060px) {
  .camp__title {
    font-size: 30px;
  }
}
.camp__title::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 4px);
  left: calc(50% - 110px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 128px;
  height: 48px;
  background: url(../img/camp-title-top.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .camp__title::before {
    left: calc(50% - 220px);
    width: 176px;
    height: 69px;
  }
}

.camp__image {
  margin-top: 33px;
  text-align: center;
  padding: 0 9px;
}
@media (min-width: 1060px) {
  .camp__image {
    margin-top: 50px;
  }
}
.camp__image img {
  width: 442px;
}
@media (min-width: 1060px) {
  .camp__image img {
    aspect-ratio: 442/212;
  }
}

.camp__lead {
  margin-top: 19px;
  text-align: center;
  font-size: 14px;
  line-height: 120%;
}
@media (min-width: 1060px) {
  .camp__lead {
    margin-top: 60px;
    font-size: 20px;
    line-height: 150%;
  }
}

.camp__card {
  margin-top: 29px;
}
@media (min-width: 1060px) {
  .camp__card {
    margin-top: 28px;
  }
}

.camp__content {
  margin-top: 60px;
}

.camp__content-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 150%; /* 33px */
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1060px) {
  .camp__content-title {
    font-size: 30px;
    line-height: 133.3333%;
  }
}
.camp__content-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 54px;
  height: 84px;
  background: url(../img/camp-content-title.png) no-repeat center center/contain;
}
@media (min-width: 1060px) {
  .camp__content-title::before {
    right: calc(100% + 5px);
    width: 92px;
    height: 133.001px;
  }
}
@media (min-width: 1060px) {
  .camp__content-title {
    margin-top: 80px;
  }
}

.camp__swiper {
  margin-top: 30px;
}
@media (min-width: 1060px) {
  .camp__swiper {
    display: none;
  }
}

.camp__slide-wrap {
  display: none;
}
@media (min-width: 1060px) {
  .camp__slide-wrap {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.camp__footer {
  margin-top: 72px;
  text-align: center;
}
@media (min-width: 1060px) {
  .camp__footer {
    margin-top: 54px;
    position: relative;
  }
  .camp__footer::before, .camp__footer::after {
    content: "";
    position: absolute;
    z-index: 1;
  }
  .camp__footer::before {
    background: url(../img/pc/horse.png) no-repeat center center/contain;
    width: 198px;
    height: 174px;
    top: 31px;
    left: -20px;
  }
  .camp__footer::after {
    background: url(../img/pc/sheep.png) no-repeat center center/contain;
    width: 255px;
    height: 159px;
    top: 38px;
    right: -20px;
  }
}

.camp__footer-text {
  font-size: 12px;
  line-height: 150%; /* 18px */
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 31px;
}
@media (min-width: 1060px) {
  .camp__footer-text {
    display: none;
  }
}
.camp__footer-text::before, .camp__footer-text::after {
  content: "";
  position: absolute;
  z-index: 2;
}
.camp__footer-text::before {
  right: calc(100% + 10px);
  width: 77px;
  height: 103px;
  top: -36px;
  background: url(../img/horse.png) no-repeat center center/contain;
}
.camp__footer-text::after {
  left: calc(100% - 9px);
  width: 93px;
  height: 88px;
  top: -21px;
  background: url(../img/sheep.png) no-repeat center center/contain;
}

.camp__footer-description {
  background: #FFF;
  padding: 12px 12px 13px 14px;
  font-size: 14px;
  line-height: 150%; /* 21px */
  z-index: 1;
  right: 1px;
  position: relative;
  text-align: left;
}
@media (min-width: 1060px) {
  .camp__footer-description {
    width: calc(100% - 260px);
    margin-left: auto;
    margin-right: auto;
    color: #333;
    text-align: center;
    font-size: 20px;
    padding: 22px 39px 16px 40px;
  }
}
.camp__footer-description::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 2px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
  border: 0.7px solid #4FABBF;
}
@media (min-width: 1060px) {
  .camp__footer-description::before {
    width: calc(100% + 2px);
    height: calc(100% + 4px);
    left: -1px;
  }
}

.camp__swiper .swiper-container {
  position: relative;
}
.camp__swiper .swiper {
  position: relative;
  padding-bottom: 30px;
}
.camp__swiper .swiper-wrapper {
  position: relative;
}
.camp__swiper .swiper-pagination-bullet {
  opacity: 1;
  background: gray;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.camp__swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
}
.camp__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .camp__swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.camp__swiper .swiper-horizontal > .swiper-pagination-bullets, .camp__swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .camp__swiper .swiper-pagination-custom, .camp__swiper .swiper-pagination-fraction {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*----------------------------------
    about
-----------------------------------*/
.about {
  background: url(../img/about-bg.png) no-repeat top center/contain;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1060px) {
  .about {
    background: url(../img/about-bg.png) no-repeat top center/cover;
    padding-top: 90px;
    padding-bottom: 272px;
  }
}

.about__content {
  position: relative;
}
@media (min-width: 1060px) {
  .about__content {
    padding-bottom: 79px;
  }
}

.about__tag {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 18px */
  padding: 1px 5px;
  background: rgba(255, 255, 255, 0.9);
  bottom: calc(100% + 81px);
}
@media (min-width: 1060px) {
  .about__tag {
    bottom: 0;
    font-size: 16px;
    padding: 6px 5px;
  }
}

.about__tag:nth-of-type(1) {
  left: 0;
}

.about__tag:nth-of-type(2) {
  left: 120px;
  padding: 1px 6px;
}
@media (min-width: 1060px) {
  .about__tag:nth-of-type(2) {
    left: 370px;
    padding: 6px;
  }
}

.about__tag:nth-of-type(3) {
  right: 0;
  padding: 1px 6px;
}
@media (min-width: 1060px) {
  .about__tag:nth-of-type(3) {
    right: 114px;
    padding: 6px;
  }
}

.about__list {
  margin-top: 143px;
  display: grid;
  grid-template-rows: repeat(3, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1060px) {
  .about__list {
    margin-top: 60px;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
  }
}

.about-item {
  background: #FFF;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media (min-width: 1060px) {
  .about-item {
    padding: 15px;
    gap: 15px;
    position: relative;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .about-item::after {
    content: "";
    position: absolute;
    top: calc(100% - 3px);
    width: 21px;
    height: 25px;
    background: url(../img/about-list-arrow.svg) no-repeat center center/contain;
    left: 0;
  }
}

@media (min-width: 1060px) {
  .about-item:nth-child(1)::after {
    left: 20px;
  }
}

@media (min-width: 1060px) {
  .about-item:nth-child(2)::after {
    left: 58px;
  }
}

@media (min-width: 1060px) {
  .about-item:nth-child(3)::after {
    left: 118px;
  }
}

.about-item__head img {
  aspect-ratio: 270/160;
  width: 100%;
}
@media (min-width: 1060px) {
  .about-item__head img {
    height: 180px;
  }
}

.about-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 1060px) {
  .about-item__body {
    gap: 15px;
  }
}

.about-item__body-title {
  font-weight: 700;
}
@media (min-width: 1060px) {
  .about-item__body-title {
    font-size: 18px;
  }
}

.about-item__body-description {
  font-size: 14px;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .about-item__body-description {
    font-size: 16px;
  }
}

.about-item__body-description-number {
  font-size: 16px;
  line-height: inherit;
  line-height: 120%;
}

.about-item__body-description-bold {
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  float: right;
  padding: 0px 15px;
  margin-left: auto;
  display: inline;
}
@media (min-width: 1060px) {
  .about-item__body-description-bold {
    font-size: 16px;
    padding: 0 5px 0 0;
    margin-bottom: -5px;
  }
}

.about-item__body-description-small {
  font-size: inherit;
  line-height: inherit;
  display: block;
  text-align: right;
  padding: 2px 9px 0 0;
}
@media (min-width: 1060px) {
  .about-item__body-description-small {
    padding: 0 2px 0 0;
    font-size: 14px;
  }
}

@media (min-width: 1060px) {
  .about-item__body-description-attention {
    display: block;
    font-size: 14px;
    margin-top: -5px;
  }
}

.voice {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1060px) {
  .voice {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.voice__list {
  display: none;
}
@media (min-width: 1060px) {
  .voice__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
  }
}

.voice__swiper {
  margin-top: 30px;
}
@media (min-width: 1060px) {
  .voice__swiper {
    display: none;
  }
}

.voice-card {
  padding: 30px 20px 30px 15px;
  background: #FFF;
}
@media (min-width: 1060px) {
  .voice-card {
    padding: 32px 43px 26px 54px;
  }
}

.voice-card__title {
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.5px;
}
@media (min-width: 1060px) {
  .voice-card__title {
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}

.voice-card__name {
  text-align: right;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  margin-top: 1px;
}
@media (min-width: 1060px) {
  .voice-card__name {
    font-size: 20px;
    letter-spacing: 1px;
  }
}

.voice-message {
  margin-top: 15px;
  background: url(../img/message-bg.png) repeat top center/320px 275px;
}
@media (min-width: 1060px) {
  .voice-message {
    background-size: 372px 330px;
    margin-top: 32px;
  }
}

.voice-card__message-text {
  font-size: 14px;
  line-height: 180%; /* 25.2px */
}
@media (min-width: 1060px) {
  .voice-card__message-text {
    font-size: 20px;
    line-height: 150%;
  }
}

.voice-card__button {
  margin-top: 17px;
  text-align: center;
}
@media (min-width: 1060px) {
  .voice-card__button {
    margin-top: 31px;
  }
}

.voice__swiper .swiper-container {
  position: relative;
  padding-bottom: 40px;
}
.voice__swiper .swiper {
  position: relative;
}
.voice__swiper .swiper-wrapper {
  position: relative;
}
.voice__swiper .swiper-pagination-bullet {
  opacity: 1;
  background: gray;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.voice__swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #333;
}
.voice__swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .voice__swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}
.voice__swiper .swiper-horizontal > .swiper-pagination-bullets, .voice__swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .voice__swiper .swiper-pagination-custom, .voice__swiper .swiper-pagination-fraction {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.voice__modal {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  z-index: 500;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.voice__modal::-ms-backdrop {
  background: #FFF9EB;
  opacity: 0.5;
}

.voice__modal::backdrop {
  background: #FFF9EB;
  opacity: 0.5;
}

.voice-modal__inner {
  background: #FFF;
  -webkit-box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
          box-shadow: 3px 4px 4px 0 rgba(51, 51, 51, 0.3);
  padding: 30px 16px 28px;
}
@media (min-width: 1060px) {
  .voice-modal__inner {
    max-width: 1000px;
    padding: 50px 100px;
    margin: auto;
  }
}

.voice-modal__title {
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.48px;
}
@media (min-width: 1060px) {
  .voice-modal__title {
    font-size: 20px;
  }
}

.voice-modal__content {
  margin-top: 30px;
  background: url(../img/message-bg.png) repeat top center/320px 277px;
}
@media (min-width: 1060px) {
  .voice-modal__content {
    margin-top: 36px;
    background-size: 320px 330px;
  }
}

.voice-modal__message {
  font-size: 14px;
  line-height: 180%; /* 25.2px */
}
@media (min-width: 1060px) {
  .voice-modal__message {
    font-size: 20px;
    line-height: 150%;
  }
}
.voice-modal__message p + p {
  margin-top: 25.2px;
}
@media (min-width: 1060px) {
  .voice-modal__message p + p {
    margin-top: 30px;
  }
}

.voice-modal__footer {
  margin-top: 25.2px;
}
@media (min-width: 1060px) {
  .voice-modal__footer {
    margin-top: 30px;
  }
}

.voice-modal__name {
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 25.2px;
}
@media (min-width: 1060px) {
  .voice-modal__name {
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 30px;
  }
}

.voice-modal__description {
  font-size: 14px;
  line-height: 25.2px;
}
@media (min-width: 1060px) {
  .voice-modal__description {
    line-height: 30px;
    font-size: 18px;
  }
}

.voice-modal__button {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 1060px) {
  .voice-modal__button {
    margin-top: 40px;
  }
}

.gallery {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery__slide {
  width: 190px;
  height: 130px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 2px solid #FFF9EB;
}
@media (min-width: 1060px) {
  .gallery__slide {
    width: 360px;
    height: 250px;
    border: 5px solid #FFF9EB;
  }
}

.gallery__swiper .swiper-container {
  position: relative;
}
.gallery__swiper .swiper {
  position: relative;
}
.gallery__swiper .swiper-wrapper {
  position: relative;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.question {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1060px) {
  .question {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.question__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
@media (min-width: 1060px) {
  .question__list {
    margin-top: 62px;
    gap: 18px;
  }
}

.question-item {
  background: #FFF;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.5);
  overflow: hidden;
}

.question-item__head {
  padding: 8px 9px 9px 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 1060px) {
  .question-item__head {
    padding: 12px 26px 11px 21px;
  }
}

.question-item__a-icon,
.question-item__q-icon {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  background: #4FABBF;
  border-radius: 50%;
  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;
  border: 1px solid transparent;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (min-width: 1060px) {
  .question-item__a-icon,
  .question-item__q-icon {
    width: 37px;
    height: 37px;
    font-size: 28px;
  }
}

.question-item__a-text,
.question-item__q-text {
  margin-left: 15px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 150%; /* 21px */
  padding-top: 2px;
}
@media (min-width: 1060px) {
  .question-item__a-text,
  .question-item__q-text {
    font-size: 20px;
    margin-left: 50px;
  }
}

.question-item__q-arrow {
  margin-left: auto;
  width: 11px;
  height: 11px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url(../img/icon-qa.svg) no-repeat center center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1060px) {
  .question-item__q-arrow {
    width: 18px;
    height: 18px;
  }
}
.is-open .question-item__q-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.question-item__body {
  display: none;
}

.question-item__a {
  border-top: 1px solid rgba(51, 51, 51, 0.5);
  padding: 8px 17px 6px 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 1060px) {
  .question-item__a {
    padding: 10px 97px 11px 21px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.question-item__a-icon {
  color: #4FABBF;
  background: #FFF;
  border-color: currentColor;
}

.question__button {
  margin-top: 29px;
  text-align: center;
}
@media (min-width: 1060px) {
  .question__button {
    margin-top: 59px;
  }
}

.story {
  background: url(../img/story-bg.png) no-repeat center center/cover;
  padding-top: 40px;
  padding-bottom: 36px;
}
@media (min-width: 1060px) {
  .story {
    padding-top: 90px;
    padding-bottom: 29px;
  }
}

.story__content {
  margin-top: 30px;
  padding: 18px 19px;
  background: url(../img/story-message-bg.png) 50%/cover no-repeat;
  position: relative;
  z-index: 1;
}
@media (min-width: 1060px) {
  .story__content {
    margin: 60px auto;
    padding: 26px 39px;
    width: 864px;
  }
}
.story__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: -1px;
  right: -2px;
  border: 1px solid #4FABBF;
}
@media (min-width: 1060px) {
  .story__content::after {
    top: 0px;
    right: -4px;
    width: calc(100% + 2px);
  }
}

.story__content-text {
  font-size: 14px;
  line-height: 150%; /* 21px */
  position: relative;
  z-index: 1;
}
@media (min-width: 1060px) {
  .story__content-text {
    font-size: 18px;
    line-height: 161%;
  }
}
.story__content-text--2 {
  line-height: 150%;
  margin-top: 2px;
}
@media (min-width: 1060px) {
  .story__content-text--2 {
    font-size: 18px;
    line-height: 161%;
  }
}

.story__content-span {
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  display: block;
}
@media (min-width: 1060px) {
  .story__content-span {
    font-size: 18px;
    line-height: 180%;
    margin: 3px 0;
    line-height: 161%;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 41px;
}
@media (min-width: 1060px) {
  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.contact__form {
  margin-top: 30px;
}
@media (min-width: 1060px) {
  .contact__form {
    margin: 59px auto 0;
    max-width: 752px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 1060px) {
  .contact__fields {
    gap: 28px;
  }
}

.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: 5px;
}
@media (min-width: 1060px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

@media (min-width: 1060px) {
  .form-field__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}
@media (min-width: 1060px) {
  .form-field__column--textarea {
    gap: 14px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 1060px) {
  .form-field__head {
    width: 266px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1060px) {
  .form-field__head--w100 {
    width: 100%;
  }
}

.form-field__head-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 150%; /* 21px */
}
@media (min-width: 1060px) {
  .form-field__head-label {
    font-size: 24px;
  }
}
.form-field__head-label span {
  font-size: 12px;
  line-height: 150%; /* 18px */
}
@media (min-width: 1060px) {
  .form-field__head-label span {
    font-size: 20px;
  }
}

.form-field__head-tag {
  color: #FAFEFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  border-radius: 1px;
  background: #4FABBF;
  width: 30px;
  height: 16px;
  display: grid;
  place-items: center;
}
@media (min-width: 1060px) {
  .form-field__head-tag {
    border-radius: 3px;
    width: 44px;
    height: 26px;
    font-size: 16px;
  }
}

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

.form-field__item-input {
  outline: none;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(51, 51, 51, 0.5);
  background: #FFF;
  padding: 7px 10px;
  font-size: 14px;
}
@media (min-width: 1060px) {
  .form-field__item-input {
    padding: 9px 25px 7px;
    font-size: 20px;
  }
}
.form-field__item-input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-input::placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-input:focus {
  border-color: #4FABBF;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media (min-width: 1060px) {
  .form-field__radios {
    gap: 40px;
    margin: 13px 0;
  }
}

.form-field__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px 10px;
}
@media (min-width: 1060px) {
  .form-field__checkbox {
    gap: 29px;
  }
}

@media (min-width: 1060px) {
  .form-checkbox {
    margin-left: 1px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  opacity: 1;
  border-color: #4FABBF;
}

.form-checkbox__text {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  display: block;
}
@media (min-width: 1060px) {
  .form-checkbox__text {
    font-size: 20px;
    padding-left: 40px;
    word-break: keep-all;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  border: 0.748px solid rgba(51, 51, 51, 0.5);
  background: #FFF;
}
@media (min-width: 1060px) {
  .form-checkbox__text::before {
    width: 25px;
    height: 25px;
  }
}
.form-checkbox__text::after {
  top: 5px;
  left: 6px;
  width: 7px;
  height: 12px;
  opacity: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 1px solid #4FABBF;
  border-right: 1px solid #4FABBF;
}
@media (min-width: 1060px) {
  .form-checkbox__text::after {
    top: -2px;
    width: 15px;
    height: 22px;
  }
}

.form-field__item-textarea {
  outline: none;
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(51, 51, 51, 0.5);
  background: #FFF;
  padding: 7px 10px;
  font-size: 14px;
  min-height: 160px;
  resize: vertical;
}
@media (min-width: 1060px) {
  .form-field__item-textarea {
    border-radius: 8px;
    padding: 9px 25px 7px;
    font-size: 20px;
    min-height: 228px;
  }
}
.form-field__item-textarea::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-textarea:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-textarea::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-textarea::placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.form-field__item-textarea:focus {
  border-color: #4FABBF;
}

.contact__submit {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 1060px) {
  .contact__submit {
    margin-top: 29px;
  }
}

.contact__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (min-width: 1060px) {
  .contact__buttons {
    margin-top: 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.contact__description {
  margin-top: 15px;
  font-size: 12px;
  line-height: 150%; /* 18px */
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1060px) {
  .contact__description {
    margin: 20px auto 0;
    max-width: 644px;
    font-size: 14px;
  }
}

.footer {
  background: #4FABBF;
  color: #FFF;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1060px) {
  .footer {
    padding-bottom: 21px;
  }
}

.footer__lists {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  gap: 12px 10px;
}
@media (min-width: 1060px) {
  .footer__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
}

@media (max-width: 1059px) {
  .footer__list:nth-child(1) {
    grid-area: 1/1/2/2;
    height: 113px;
  }
  .footer__list:nth-child(2) {
    grid-area: 1/2/2/3;
    height: 113px;
  }
  .footer__list:nth-child(3) {
    grid-area: 2/1/4/2;
  }
  .footer__list:nth-child(4) {
    grid-area: 2/2/3/3;
  }
  .footer__list:nth-child(5) {
    grid-area: 3/2/4/3;
  }
}
.footer__item:nth-child(2) {
  margin-top: 11px;
}

.footer__item:nth-child(n+3) {
  margin-top: 9px;
}
@media (min-width: 1060px) {
  .footer__item:nth-child(n+3) {
    margin-top: 7px;
  }
}

.footer__link:hover {
  opacity: 0.7;
}
.footer__link:hover::before {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.footer__link {
  display: block;
  padding-left: 20px;
  position: relative;
  font-size: 12px;
  line-height: 150%; /* 18px */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__link--category::before {
  top: 3px;
  width: 13px;
  height: 13px;
  background: url(../img/icon-link-arrow-circle.svg) no-repeat center center/contain;
}

.footer__link--tab::before {
  top: 5px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: url(../img/icon-link-arrow.svg) no-repeat center center/contain;
}

.footer__text {
  margin-top: 30px;
  font-size: 12px;
  line-height: 150%; /* 18px */
}
@media (min-width: 1060px) {
  .footer__text {
    margin-top: 40px;
    font-size: 16px;
    max-width: 644px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__copyright {
  margin-top: 13px;
  padding-top: 15px;
  border-top: 1px solid currentColor;
  text-align: center;
  font-size: 10px;
}
@media (min-width: 1060px) {
  .footer__copyright {
    margin-top: 28px;
    padding-top: 10px;
    font-size: 12px;
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
  }
}