@charset "UTF-8";
/*==================================================================
# 変数
==================================================================*/
/*==================================================================
# Break Point
==================================================================*/
/*==================================================================
# base
==================================================================*/
body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
}

/*==================================================================
# layout
==================================================================*/
.sect {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .sect {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

/*==================================================================
# modules
==================================================================*/
/* block
------------------------------------------------------------------*/
/* element
------------------------------------------------------------------*/
.btn {
  padding: 10px 30px;
  border: 2px solid currentColor;
  border-radius: 60px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
  background: #fff;
  display: inline-block;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.btn:hover {
  background-color: #fabe00;
}
.btn.btn--black {
  background: #111;
  color: #fff;
}
.btn.btn--black:hover {
  background-color: #fff;
  color: #111;
}

.sect-ttl {
  text-align: center;
}

.sect-ttl__main {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.8px;
}
@media screen and (min-width: 768px) {
  .sect-ttl__main {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.sect-ttl__sub {
  margin-top: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .sect-ttl__sub {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

/*==================================================================
# helper
==================================================================*/
@media screen and (min-width: 768px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .sp-hide {
    display: none !important;
  }
}

/*==================================================================
# contents
==================================================================*/
/* header
------------------------------------------------------------------*/
.header {
  padding-top: 22px;
  padding-bottom: 22px;
}

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

.header_logo a img {
  max-width: 100px;
  width: 100%;
}

.header__drawer-btn {
  width: 36px;
  height: 21px;
}

.drawer-icon {
  z-index: 51;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}

.drawer-icon__bar {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #111;
  position: absolute;
  -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(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.header__nav-link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link:hover {
  color: #f5810e;
}

/* MV
------------------------------------------------------------------*/
.mv {
  margin-bottom: 108px;
}
@media screen and (min-width: 768px) {
  .mv {
    margin-bottom: 88px;
  }
}

.mv__inner {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mv__container {
  padding: 50px 15px 267px 15px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__container {
    padding-top: 90px;
    padding-left: 12.3188405797%;
    padding-bottom: 109px;
    padding-right: 12.3188405797%;
  }
}

.mv__ttl span {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
}
@media screen and (min-width: 768px) {
  .mv__ttl span {
    padding: 12px 16px;
    font-size: 38px;
    letter-spacing: 3.8px;
    margin-left: 0;
  }
}
.mv__ttl span:nth-of-type(2) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .mv__ttl span:nth-of-type(2) {
    margin-top: 14px;
  }
}

.mv__desc {
  margin-top: 26px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 768px) {
  .mv__desc {
    margin-top: 20px;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.mv__btn {
  margin-top: 22px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__btn {
    text-align: left;
    margin-top: 30px;
  }
}

.mv__item-img {
  position: absolute;
  right: 0;
  bottom: -108px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__item-img {
    width: 43.4782608696%;
    text-align: right;
    bottom: -88px;
    right: 12.3188405797%;
  }
}

.mv__img {
  width: 345px;
}
@media screen and (min-width: 768px) {
  .mv__img {
    width: 600px;
  }
}

/* Case
------------------------------------------------------------------*/
.case {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .case {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.case__inner {
  padding-left: 40px;
  padding-right: 40px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.case__ttl {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .case__ttl {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.case__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 15px;
}
@media screen and (min-width: 768px) {
  .case__list {
    margin-top: 54px;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* News
------------------------------------------------------------------*/
.news {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.news__cont {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 9px 30px 0px #f4f4f4;
          box-shadow: 0 9px 30px 0px #f4f4f4;
  padding: 40px 12px;
}
@media screen and (min-width: 768px) {
  .news__cont {
    padding: 40px 105px 34px 105px;
  }
}

.news__ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__ttl {
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.news__container {
  margin-top: 42px;
}

.news__item {
  padding-top: 10px;
  padding-bottom: 10px;
  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;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 768px) {
  .news__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.news__item + .news__item {
  border-top: 1px solid #e3e3e3;
}
.news__item:hover {
  background-color: #fff9e5;
}

.news__item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: last baseline;
      -ms-flex-pack: last baseline;
          justify-content: last baseline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .news__item-meta {
    gap: 31px;
    width: 247px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.news__date {
  color: #333;
}
@media screen and (min-width: 768px) {
  .news__date {
    width: 120px;
  }
}

.news__label {
  padding-top: 2px;
  padding-left: 10px;
  padding-bottom: 2px;
  padding-right: 10px;
  border-radius: 2px;
  background: #e4780c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.news__label.news__label--yellow {
  background: #ecb815;
}
.news__label.news__label--green {
  background: #389b47;
}

.news__item-ttl {
  text-align: left;
}

.news__more {
  margin-top: 22px;
  text-align: right;
}
.news__more a {
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news__more a:hover {
  color: #fabe00;
}

/* About
------------------------------------------------------------------*/
.about {
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 100px;
  }
}

.about__inner {
  text-align: center;
}

.about__ttl img {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .about__ttl img {
    width: 230px;
  }
}

.about__cont {
  position: relative;
  margin-top: 150px;
  padding-top: 288px;
  padding-bottom: 105px;
}
@media screen and (min-width: 768px) {
  .about__cont {
    margin-top: 176px;
    padding-top: 284px;
    padding-bottom: 100px;
  }
}
.about__cont::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 1100px;
  height: 1100px;
  border-radius: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__cont::before {
    width: 800px;
    height: 800px;
  }
}

.about__img {
  position: absolute;
  top: -110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
.about__img img {
  width: 320px;
}
@media screen and (min-width: 768px) {
  .about__img img {
    width: 330px;
  }
}

.about__txt {
  font-weight: 700;
  line-height: 2.3;
}

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

.about__pop {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.28px;
}

.about__btn {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .about__btn {
    margin-top: 15px;
  }
}

/* About modal
------------------------------------------------------------------*/
.about-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow: auto;
  padding: 16px 15px 64px;
  border-radius: 20px;
  background: #fff;
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 768px) {
  .about-modal {
    width: 1140px;
    padding: 49px 70px 75px;
  }
}
.about-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.about-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.about-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
}

.about-modal__close-icon img {
  width: 37px;
}

.about-modal__body {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .about-modal__body {
    margin-top: 43px;
  }
}
.about-modal__body p {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .about-modal__body p {
    font-size: 16px;
  }
}
.about-modal__body p + p {
  margin-top: 20px;
}

.about-modal__close-btn {
  margin-top: 30px;
  text-align: center;
}

/* Movie
------------------------------------------------------------------*/
.movie {
  background: url(../img/section-bg.png) repeat top left/529px auto;
}

.movie__iframe {
  margin-top: 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .movie__iframe {
    margin-top: 56px;
  }
}
.movie__iframe iframe {
  width: 345px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 345/194;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .movie__iframe iframe {
    width: 640px;
    aspect-ratio: 640/360;
  }
}

/* How-to-use
------------------------------------------------------------------*/
.how-to-use {
  background: #fff;
}

.how-to-use__container {
  margin-top: 104px;
}
@media screen and (min-width: 768px) {
  .how-to-use__container {
    margin-top: 89px;
  }
}

.how-to-use__box {
  padding: 54px 11.5942028986% 48px;
  background: #fffbf0;
  border-radius: 30px;
  text-align: center;
}
.how-to-use__box + .how-to-use__box {
  margin-top: 112px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box + .how-to-use__box {
    margin-top: 75px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-use__box {
    padding: 44px 8.4210526316% 56px;
    border-radius: 40px;
  }
}

.how-to-use__box-ttl {
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .how-to-use__box-ttl {
    padding-right: 95px;
  }
}
.how-to-use__box-ttl h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.8px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box-ttl h3 {
    font-size: 22px;
    letter-spacing: 2.2px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.how-to-use__box-ttl img {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 85px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box-ttl img {
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .how-to-use__box-ttl.how-to-use__box-ttl--rev {
    padding-right: 0;
    padding-left: 95px;
  }
}
@media screen and (min-width: 768px) {
  .how-to-use__box-ttl.how-to-use__box-ttl--rev img {
    right: auto;
    left: 0;
  }
}

.how-to-use__step-list {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .how-to-use__step-list {
    margin-top: 85px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.how-to-use__step-item {
  width: 100%;
}
.step-box {
  position: relative;
  background: #fff;
  border: 3px solid #111;
  border-radius: 30px;
  padding: 47px 15px 23px;
}
@media screen and (min-width: 768px) {
  .step-box {
    padding: 47px 15.6666666667% 23px;
    height: 340px;
  }
}

.step-box__header {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #f5810e;
  border: 3px solid #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4px;
  gap: 3px;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.step-box__header.step-box__header--yellow {
  background: #fabe00;
}

.step-box__ttl-txt {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
}

.step-box__ttl-num {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.4px;
  color: #fff;
}

.step-box__img img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .step-box__img img {
    width: 200px;
  }
}

.step-box__txt {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.48px;
  text-align: center;
}

/* Merit
------------------------------------------------------------------*/
.merit__list {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .merit__list {
    margin-top: 80px;
    gap: 40px;
  }
}

.merit-box {
  background: #fff;
  border-radius: 20px;
  padding: 10px 20px 24px;
}
@media screen and (min-width: 768px) {
  .merit-box {
    padding: 20px 9.649122807%;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}
.merit-box.merit-box--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.merit-box__img {
  text-align: center;
  width: 100%;
}
.merit-box__img img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .merit-box__img img {
    width: 350px;
  }
}

.merit-box__header {
  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: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .merit-box__header {
    gap: 28px;
  }
}

.merit-box__header-num {
  color: #fabe00;
  font-family: "Montserrat", sans-serif;
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .merit-box__header-num {
    font-size: 110px;
  }
}

.merit-box__header-lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .merit-box__header-lead {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.merit-box__txt {
  font-size: 14px;
  line-height: 2;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .merit-box__txt {
    margin-top: 16px;
    font-size: 15px;
  }
}

/* CTA
------------------------------------------------------------------*/
.cta {
  padding-top: 50px;
  padding-bottom: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#F0D320));
  background: linear-gradient(180deg, #F8B819 0%, #F0D320 100%);
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.cta__inner {
  padding-right: 32px;
  padding-left: 31px;
}

.cta__txt {
  text-align: center;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 768px) {
  .cta__txt {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cta__btn {
  margin-top: 16px;
  text-align: center;
}

/* Compare
------------------------------------------------------------------*/
.compare {
  background: #fff;
}

.compare__inner {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

.compare__ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__ttl {
    font-size: 24px;
  }
}

.compare__cont {
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 29px;
}
@media screen and (min-width: 768px) {
  .compare__cont {
    margin-top: 60px;
    padding-bottom: 0;
  }
}

.compare__table {
  width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .compare__table {
    width: 1000px;
  }
}
.compare__table th,
.compare__table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .compare__table th,
  .compare__table td {
    height: 100px;
  }
}
.compare__table th:nth-child(1),
.compare__table td:nth-child(1) {
  width: 130px;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(1),
  .compare__table td:nth-child(1) {
    width: 250px;
  }
}
.compare__table th:nth-child(2),
.compare__table td:nth-child(2) {
  width: 90px;
  background: #fff9e5;
  font-size: 16px;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(2),
  .compare__table td:nth-child(2) {
    width: 250px;
    font-size: 25px;
    letter-spacing: 0.75px;
  }
}
.compare__table th:nth-child(2) img,
.compare__table td:nth-child(2) img {
  width: 70px;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(2) img,
  .compare__table td:nth-child(2) img {
    width: 123px;
  }
}
@media screen and (min-width: 768px) {
  .compare__table th {
    font-size: 20px;
  }
}
.compare__table td {
  font-size: 14px;
  letter-spacing: 0.42px;
}
@media screen and (min-width: 768px) {
  .compare__table td {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.compare__table thead th {
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .compare__table thead th {
    letter-spacing: 2px;
  }
}
.compare__table tbody tr {
  border-top: 1.5px solid #000;
}
.compare__table tbody th {
  letter-spacing: 0.6px;
}

.compare__attention {
  text-align: center;
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-top: 11px;
}

/* FAQ
------------------------------------------------------------------*/
.faq__inner {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq__list {
  margin-top: 52px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin-top: 74px;
  }
}

.faq__item + .faq__item {
  margin-top: 42px;
}

.faq-box {
  border-radius: 10px;
  border: 3px solid #111;
  background: #fff;
}
.faq-box.is-open .faq-box__q-txt::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-box.is-open .faq-box__a {
  display: block;
}

.faq-box__q {
  position: relative;
  padding: 29px 37px 15px 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq-box__q {
    padding: 29px 77px 10px 17px;
  }
}

.faq-box__q-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  background: #f5810e;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #000;
  left: 12px;
  top: -25px;
}

.faq-box__q-txt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  text-align: left;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .faq-box__q-txt {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}
.faq-box__q-txt::after {
  position: absolute;
  content: "";
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa-arrow.png) no-repeat center center/contain;
  top: 50%;
  left: calc(100% + 13.87px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .faq-box__q-txt::after {
    left: calc(100% + 48.87px);
  }
}

.faq-box__a {
  padding: 15px 15px 17px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-box__a {
    padding: 10px 33px 17px 17px;
    gap: 10px;
  }
}

.faq-box__a-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  background: #fabe00;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #000;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-box__a-txt {
  font-size: 14px;
  font-weight: 700;
  padding-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .faq-box__a-txt {
    font-size: 16px;
    letter-spacing: 1.28px;
  }
}

/* gallery
------------------------------------------------------------------*/
.gallery__inner {
  padding-left: 10px;
  padding-right: 10px;
}

.gallery__cont {
  margin-top: 30px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.gallery__swiper {
  padding-bottom: 26px;
  padding-right: 5px;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .gallery__swiper {
    padding-right: 80px;
    padding-left: 80px;
  }
}

.gallery-card {
  border-radius: 20px;
  border: 3px solid #111;
  background: #fff;
  -webkit-box-shadow: 0 9px 30px 0 #f4f4f4;
          box-shadow: 0 9px 30px 0 #f4f4f4;
  padding: 12px 12px 9px 12px;
}
@media screen and (min-width: 768px) {
  .gallery-card {
    padding: 17px 17px 15px 17px;
  }
}

.gallery-card__img {
  text-align: center;
}
.gallery-card__img img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .gallery-card__img img {
    border: 20px;
  }
}

.gallery-card__txt {
  text-align: center;
  font-size: 14px;
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .gallery-card__txt {
    margin-top: 18px;
    font-size: 16px;
  }
}

.gallery__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  bottom: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #bcbcbc;
  opacity: 1;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fabe00;
}

.gallery__prev,
.gallery__next {
  width: 40px;
  height: 40px;
  margin-top: -38px;
}
@media screen and (min-width: 768px) {
  .gallery__prev,
  .gallery__next {
    width: 50px;
    height: 50px;
  }
}
.gallery__prev::after,
.gallery__next::after {
  display: none;
}

.gallery__prev {
  left: 0;
  background: url(../img/prev-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .gallery__prev {
    left: 10px;
  }
}

.gallery__next {
  right: 0;
  background: url(../img/next-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .gallery__next {
    right: 10px;
  }
}

/* Contact
------------------------------------------------------------------*/
.contact {
  background: url(../img/section-bg.png) repeat top left/529px auto;
}

.contact__cont {
  background: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}

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

.contact__field-container {
  width: 100%;
  max-width: 612px;
  margin-left: auto;
  margin-right: auto;
}

.contact__field-item + .contact__field-item {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-field__label {
  font-weight: 700;
}

.form-field__tag {
  padding: 6px 9px 5px 9px;
  background: #ee8013;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.98px;
}
.form-field__tag.form-field__tag--green {
  background: #43b549;
}

.form-field__body {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-field__body {
    width: 400px;
    max-width: 100%;
    margin-top: 0;
  }
}

.txt-field {
  width: 100%;
  padding: 15px 16px 14px 16px;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.txt-field:hover, .txt-field:focus {
  border-color: #fabe00;
  outline: none;
}

.email-field {
  width: 100%;
  padding: 15px 16px 14px 16px;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.email-field:hover, .email-field:focus {
  border-color: #fabe00;
  outline: none;
}

@media screen and (min-width: 768px) {
  .form-field__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.radio-field__input {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.radio-field__input:checked + .radio-field__txt::after {
  opacity: 1;
}
.radio-field__input:focus + .radio-field__txt::before {
  border-color: #fabe00;
}

.radio-field__txt {
  padding-left: 28px;
  position: relative;
}
.radio-field__txt:hover::before {
  border-color: #fabe00;
}
.radio-field__txt::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.radio-field__txt::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5810e;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 7px;
  opacity: 0;
}

.select-field {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 15px 16px 14px 16px;
  border: 3px solid #111;
  background: #fff;
  border-radius: 5px;
  background: url(../img/select-arrow.png) no-repeat right 15.15px center/9.451px auto;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.select-field:hover, .select-field:focus {
  border-color: #fabe00;
  outline: none;
}

.taxtarea-field {
  width: 100%;
  padding: 13px;
  border: 3px solid #111;
  background: #fff;
  border-radius: 5px;
  height: 180px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.taxtarea-field:hover, .taxtarea-field:focus {
  border-color: #fabe00;
  outline: none;
}

.contact__privacy {
  margin-top: 30px;
  text-align: center;
}

.checkbox-field__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.checkbox-field__input:checked + .checkbox-field__txt::after {
  opacity: 1;
}
.checkbox-field__input:focus + .checkbox-field__txt::before {
  border-color: #fabe00;
}

.checkbox-field__txt {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.checkbox-field__txt:hover::before {
  border-color: #fabe00;
}
.checkbox-field__txt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #111;
  border-radius: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.checkbox-field__txt::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 17.5px;
  background: url(../img/check-icon.png) no-repeat center center/23px auto;
  bottom: 1.47px;
  left: -2px;
  opacity: 0;
}
.checkbox-field__txt a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.checkbox-field__txt a:hover {
  color: #fabe00;
}

.contact__btn {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    margin-top: 38px;
  }
}

/* Footer
------------------------------------------------------------------*/
.footer {
  padding-top: 18px;
  padding-bottom: 18px;
  background: #111;
}

.footer__inner {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}

.footer__copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
}

/* Page top
------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: min(13.3333333333%, 50px);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 30px;
    right: 16px;
    width: 76px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/* Drawer content
------------------------------------------------------------------*/
.drawer-cont {
  padding-top: 86px;
  padding-bottom: 40px;
  background: #f7ba1a;
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-cont.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-cont__inner {
  padding-left: 40px;
  padding-right: 40px;
}

.drawer-cont__nav {
  text-align: right;
}

.drawer-cont__nav-item + .drawer-cont__nav-item {
  margin-top: 28px;
}

.drawer-cont__nav-link {
  font-weight: 700;
  letter-spacing: 0.48px;
}