/* ==================================================
# variables
================================================== */
/* fonts
-------------------------------------------------- */
/* colors
-------------------------------------------------- */
/* width
-------------------------------------------------- */
/* media query
-------------------------------------------------- */
/* ==================================================
# styles
================================================== */
/* common
-------------------------------------------------- */
body {
  font-family: "Noto Sans JP", system-ui;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  background: #FAFAFA;
}

.inner {
  max-width: 798px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
  }
}

.button {
  display: inline-block;
  min-width: 150px;
  padding: 6px 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 2px solid #111;
  border-radius: 60px;
  background: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background: #FABE00;
}
.button--black {
  background: #111;
  color: #fff;
  border: 2px solid currentColor;
}
.button--black:hover {
  background: #fff;
  color: #111;
}

.heading {
  text-align: center;
}

.heading-title {
  font-family: "Montserrat", system-ui;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .heading-title {
    font-size: 50px;
  }
}

.heading-sub {
  margin-top: 14px;
  font-family: "Montserrat", system-ui;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .heading-sub {
    font-size: 16px;
  }
}

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

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

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* header
-------------------------------------------------- */
.header {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.add-bg {
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 768px) {
  .header {
    height: 90px;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 135px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.header-menu__link {
  font-weight: 700;
  letter-spacing: 0.03em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-menu__link:hover {
  color: #F5810E;
}

.header-open__icon {
  width: 36px;
  height: 21px;
  position: fixed;
  right: 15px;
  top: 25px;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .header-open__icon {
    display: none;
  }
}
.header-open__icon.is-open .header-open__icon-bar:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.header-open__icon.is-open .header-open__icon-bar:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.header-open__icon.is-open .header-open__icon-bar:nth-of-type(2) {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.header-open__icon-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #111;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-open__icon-bar:nth-of-type(1) {
  top: 0;
}
.header-open__icon-bar:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-open__icon-bar:nth-of-type(3) {
  bottom: 0;
}

/* drawer
-------------------------------------------------- */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 320px;
  height: 100vh;
  background: #F7BA1A;
  padding-top: 86px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 20;
}
.drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__content {
  padding-left: 40px;
  padding-right: 40px;
}

.drawer-menu {
  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: end;
      -ms-flex-align: end;
          align-items: end;
}

.drawer-menu__item {
  padding-top: 14px;
  padding-bottom: 14px;
}

.drawer-menu__link {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.drawer__button {
  text-align: right;
  margin-top: 14px;
}

/* mv
-------------------------------------------------- */
.mv {
  margin-top: 70px;
  border-radius: 20px;
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8B819), to(#EFD320));
  background: linear-gradient(180deg, #F8B819 0%, #EFD320 100%);
}
@media screen and (min-width: 768px) {
  .mv {
    margin-top: 90px;
    border-radius: 30px;
    max-width: calc(100% - 60px);
  }
}

.mv__inner {
  padding: 50px 20px 255px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding: 110px 30px 109px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv__lead1,
.mv__lead2 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .mv__lead1,
  .mv__lead2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 38px;
    padding: 12px 16px;
  }
}

.mv__lead2 {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .mv__lead2 {
    margin-top: 14px;
  }
}

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

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

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

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

.case__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .case__inner {
    max-width: 980px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

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

.case__item img {
  width: 140px;
}
@media screen and (min-width: 768px) {
  .case__item img {
    width: 200px;
  }
}

/* news
-------------------------------------------------- */
.news {
  padding: 40px 12px;
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 9px 30px 0px #F4F4F4;
          box-shadow: 0px 9px 30px 0px #F4F4F4;
  margin: 60px auto;
  max-width: calc(100% - 30px);
}
@media screen and (min-width: 768px) {
  .news {
    margin: 50px auto;
    max-width: calc(100% - 60px);
    padding: 40px 105px 34px;
    border-radius: 30px;
  }
}

.news__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 930px;
}

.news__heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__heading {
    text-align: left;
  }
}

.news__heading__title {
  font-family: "Montserrat", system-ui;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .news__heading__title {
    font-family: "Montserrat", system-ui;
    font-size: 50px;
  }
}

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

.news__item {
  border-top: 1px solid #E3E3E3;
}
.news__item:first-of-type {
  border: none;
}

.news__bottom {
  margin-top: 22px;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 8px;
  margin-left: auto;
}
.news__bottom a {
  text-decoration: underline;
  text-underline-offset: 10px;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news__bottom a:hover {
  color: #FABE00;
}

.news-item {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.news-item:hover {
  background-color: #fff9e5;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (min-width: 768px) {
  .news-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}

.news-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .news-item__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 220px;
    gap: 14px;
  }
}

.news-item__date {
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-item__label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 64px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 2px;
  padding: 2px 10px;
  text-align: center;
}
.news-item__label--orange {
  background: #E4780C;
}
.news-item__label--yellow {
  background: #ECB815;
}
.news-item__label--green {
  background: #389B47;
}

.news-item__title {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .news-item__title {
    margin-top: 0;
  }
}

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

.about__title {
  text-align: center;
}
.about__title img {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .about__title img {
    width: 230px;
  }
}

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

.about__image {
  position: absolute;
  text-align: center;
  top: -110px;
  left: 0;
  width: 100%;
}
.about__image img {
  width: 320px;
}
@media screen and (min-width: 768px) {
  .about__image img {
    width: 330px;
  }
}

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

.about__pop {
  margin-top: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .about__pop {
    margin-top: 42px;
  }
}

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

/* modal
-------------------------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  overflow: auto;
  display: none;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .modal {
    padding-top: 134px;
    padding-left: 0.1315789474;
    padding-right: 0.1315789474;
  }
}
.modal.is-open {
  display: block;
}

.modal__content {
  background: #fff;
  border-radius: 20px;
  padding: 65px 15px 64px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal__content {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 129px 70px 75px;
  }
}

.modal__close-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal__close-icon img {
  width: 37px;
}

.modal__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: 20px;
}

.modal__text {
  font-size: 14px;
}

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

/* movie
-------------------------------------------------- */
.movie {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../img/movie-bg.png) repeat top left/529px auto;
}
@media screen and (min-width: 768px) {
  .movie {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

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

.movie__video {
  margin-top: 32px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.231884058%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .movie__video {
    margin-top: 56px;
  }
}
.movie__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* how-to-use
-------------------------------------------------- */
.how-to-use {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .how-to-use {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .how-to-use__inner {
    max-width: 1200px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.how-to-use__box {
  margin-top: 104px;
  padding: 181px 40px 48px;
  border-radius: 30px;
  background: #FFFBF0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-to-use__box {
    margin-top: 89px;
  }
}
.how-to-use__box:nth-of-type(2) {
  margin-top: 112px;
}

.how-to-use__box__head {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  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: 10px;
}
@media screen and (min-width: 768px) {
  .how-to-use__box__head {
    top: -29px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .how-to-use__box__head--2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.how-to-use__box__head-image img {
  width: 85px;
}

.how-to-use__box__head-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .how-to-use__box__head-text {
    font-size: 22px;
  }
}

.how-to-use__cards {
  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;
}
@media screen and (min-width: 768px) {
  .how-to-use__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}

.how-to-use__card {
  position: relative;
}

.how-to-use-card {
  padding-top: 50px;
  padding-bottom: 26px;
  border: 3px solid #111;
  border-radius: 30px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .how-to-use-card {
    padding: 50px 50px 26px;
    max-width: 300px;
  }
}

.how-to-use-card__label {
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #111;
  text-align: center;
}
.how-to-use-card__label--1 {
  background: #F5810E;
}
.how-to-use-card__label--2 {
  background: #FABE00;
}

.how-to-use-card__label-text,
.how-to-use-card__label-number {
  font-family: "Montserrat", system-ui;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.how-to-use-card__label-text {
  font-size: 13px;
}

.how-to-use-card__label-number {
  font-size: 34px;
  color: #fff;
}

.how-to-use-card__image {
  text-align: center;
}
.how-to-use-card__image img {
  width: 160px;
}
@media screen and (min-width: 768px) {
  .how-to-use-card__image img {
    width: 200px;
  }
}

.how-to-use-card__text {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

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

.merit__cards {
  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: 30px;
}
@media screen and (min-width: 768px) {
  .merit__cards {
    margin-top: 60px;
    max-width: 1200px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.merit-card {
  border-radius: 20px;
  background: #fff;
  padding: 10px 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .merit-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 11.9565217391%;
  }
}
@media screen and (min-width: 768px) {
  .merit-card:nth-of-type(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

@media screen and (min-width: 768px) {
  .merit-card__body {
    width: 552px;
  }
}

.merit-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .merit-card__head {
    gap: 28px;
  }
}

.merit-card__title {
  font-family: "Montserrat", system-ui;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .merit-card__title {
    font-size: 20px;
  }
}

.merit-card__number {
  font-family: "Montserrat", system-ui;
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  color: #FABE00;
}
@media screen and (min-width: 768px) {
  .merit-card__number {
    font-size: 110px;
  }
}

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

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

.cta__inner {
  text-align: center;
}

.cta__text {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 18px;
  }
}

.cta__text-inline-block {
  display: inline-block;
  font-weight: inherit;
}

.cta__button {
  margin-top: 16px;
}

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

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

.compare__content {
  margin-top: 40px;
  overflow-x: scroll;
  padding-bottom: 29px;
  scrollbar-width: 6px;
  scrollbar-color: #FABE00 #D9D9D9;
}
@media screen and (min-width: 768px) {
  .compare__content {
    margin-top: 60px;
  }
}

.compare__table {
  width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .compare__table {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.compare__table th,
.compare__table td {
  text-align: center;
  font-weight: 700;
  height: 60px;
  vertical-align: middle;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .compare__table th,
  .compare__table td {
    font-size: 20px;
    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;
}
@media screen and (min-width: 768px) {
  .compare__table th:nth-child(2),
  .compare__table td:nth-child(2) {
    width: 250px;
    font-size: 25px;
  }
}
.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;
  }
}
.compare__table td {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .compare__table td {
    font-size: 16px;
  }
}
.compare__table thead th {
  letter-spacing: 0.1em;
}
.compare__table tbody tr {
  border-top: 1.5px solid #111;
}

.compare__attention {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #686868;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .compare__attention {
    display: none;
  }
}

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

.qa__boxes {
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    margin-top: 74px;
    max-width: 860px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa-box {
  background: #fff;
  border: 3px solid #111111;
  border-radius: 10px;
}
.qa-box.is-opened .qa-box__head::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.qa-box__head {
  padding: 32px 40px 20px 15px;
  position: relative;
  display: block;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 32px 80px 20px 20px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa-arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50% 70%;
          transform-origin: 50% 70%;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.qa-box__head-icon {
  position: absolute;
  top: -22px;
  left: 15px;
  display: grid;
  place-items: center;
  font-family: "Montserrat", system-ui;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  width: 44px;
  height: 44px;
  background: #F5810E;
  border: 3px solid #111;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    left: 20px;
  }
}

.qa-box__head-text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: 1.6875;
  }
}

.qa-box__body {
  overflow: hidden;
}

.qa-box__a {
  padding: 10px 17px 20px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    padding: 10px 20px 20px;
  }
}

.qa-box__a-icon {
  display: grid;
  place-items: center;
  font-family: "Montserrat", system-ui;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  width: 44px;
  height: 44px;
  background: #FABE00;
  border: 3px solid #111;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box__a-text {
  padding-top: 12px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .qa-box__a-text {
    font-size: 16px;
    line-height: 1.6875;
  }
}

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

.gallery__content {
  margin-top: 30px;
  padding-bottom: 24.6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gallery__content {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
  }
}

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

.gallery-slider__item {
  padding: 15px 15px 12px;
  background: #fff;
  border-radius: 20px;
  border: 3px solid #111;
  text-align: center;
  -webkit-box-shadow: 0px 9px 30px 0px #F4F4F4;
          box-shadow: 0px 9px 30px 0px #F4F4F4;
}
@media screen and (min-width: 768px) {
  .gallery-slider__item {
    max-width: 640px;
    border-radius: 30px;
    padding: 20px 20px 18px 20px;
  }
}

.gallery-slider__image img {
  border-radius: 10px;
  width: 315px;
}
@media screen and (min-width: 768px) {
  .gallery-slider__image img {
    width: 600px;
    border-radius: 20px;
  }
}

.gallery-slider__text {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .gallery-slider__text {
    font-size: 16px;
  }
}

.gallery__prev,
.gallery__next {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .gallery__prev,
  .gallery__next {
    width: 50px;
    height: 50px;
  }
}

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

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

.gallery__pagination {
  bottom: -8px !important;
}

.swiper-pagination-bullet {
  margin: 0 6px !important;
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #BCBCBC;
}
.swiper-pagination-bullet-active {
  background: #FABE00;
}

/* contact
-------------------------------------------------- */
.contact {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(../img/movie-bg.png) repeat top left/529px auto;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact__box {
  background: #fff;
  border-radius: 30px;
  padding: 60px 20px;
}
@media screen and (min-width: 768px) {
  .contact__box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

.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: 30px;
}

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

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

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
}

.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 screen and (min-width: 768px) {
  .form-field__head {
    width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.form-field__label {
  font-weight: 700;
  line-height: 1.4375;
}

.form-field__tag {
  border-radius: 2px;
  background: #EE8013;
  display: inline-block;
  padding: 5px 8px;
  font-family: Noto Sans JP;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #fff;
}
.form-field__tag--option {
  background: #43B549;
}

.form-field__item {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-text {
  width: 100%;
  border: 3px solid #111;
  border-radius: 5px;
  background: #fff;
  padding: 12px 13px 11px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-text:hover, .form-text:focus {
  border-color: #FABE00;
  outline: none;
}

.form-radio {
  line-height: 1.4375;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 3px solid #FABE00;
}
.form-radio__input:hover + .form-radio__text::before {
  border: 3px solid #FABE00;
}

.form-radio__text {
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  left: 7px;
  width: 10px;
  height: 10px;
  background: #F5810E;
  opacity: 0;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 12px 43px 11px 13px;
  border: 3px solid #111;
  background: #FFFFFF;
  border-radius: 3px;
  font-weight: 700;
  background: url(../img/contact-arrow.png) no-repeat center right 14px/9.451px 6.969px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-select:hover, .form-select:focus {
  border-color: #FABE00;
  outline: none;
}

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

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #FABE00;
}

.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::after {
  border-color: #FABE00;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid #111;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  left: -1px;
  margin-top: -1.2px;
  width: 23px;
  height: 17.53px;
  background: url(../img/contact-check.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  font-weight: inherit;
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #F5810E;
}

/* footer
-------------------------------------------------- */
.footer {
  background: #111;
}

.footer__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: center;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #F5F5F5;
}

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