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

.inner {
  padding: 0 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
    max-width: 375px;
  }
}

.button {
  padding: 8px 28px;
  border-radius: 60px;
  border: 2px solid currentColor;
  background: #fff;
  color: #111;
  text-align: center;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.48px;
  min-width: 150px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #fabe00;
}
.button--type2 {
  background-color: #111;
  color: #fff;
}
.button--type2:hover {
  background-color: #fff;
  color: #111;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.heading {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.title {
  color: #111;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 38px;
    letter-spacing: 3.8px;
  }
}

.sub {
  color: #111;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.28px;
  text-align: center;
  line-height: 1;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .sub {
    font-size: 14px;
    letter-spacing: 1.12px;
  }
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  background: #fafafa;
}

.header__inner {
  padding: 32px 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 20px 15px;
  }
}

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

@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav-item {
  font-weight: 700;
}
.header__nav-item:nth-child(n+2) {
  margin-left: 42px;
}
.header__nav-link {
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link:hover {
  color: #f5810e;
}

.header__open {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__open {
    display: block;
    width: 36px;
  }
}

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

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

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #f7ba1a;
  z-index: 50;
  padding: 80px 40px 40px;
  -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-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
}

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

.mv {
  max-width: calc(100% - 60px);
  margin-right: auto;
  margin-left: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8b819), to(#f0d320));
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .mv {
    max-width: calc(100% - 30px);
    border-radius: 20px;
  }
}

.mv__inner {
  position: relative;
  padding: 110px 25px;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 52px 20px 255px;
  }
}

.mv__contents {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .mv__contents {
    margin-right: 0;
  }
}

.mv__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.mv__lead-text1,
.mv__lead-text2 {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3.8px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .mv__lead-text1,
  .mv__lead-text2 {
    padding: 10px;
    font-size: 22px;
    line-height: 100%; /* 22px */
    letter-spacing: 2.2px;
  }
}

.mv__lead-text2 {
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .mv__lead-text2 {
    margin-top: 8px;
  }
}

.mv__description {
  font-size: 18px;
  font-weight: 700;
  line-height: 170%; /* 30.6px */
  letter-spacing: 0.54px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .mv__description {
    font-size: 16px;
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.48px;
    margin-top: 26px;
  }
}

.mv__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .mv__button {
    margin-top: 22px;
  }
}
.mv__button-link {
  font-weight: 700;
}

.mv__image {
  position: absolute;
  right: 0;
  bottom: -88px;
  width: 57.6923076923%;
}
@media screen and (max-width: 767px) {
  .mv__image {
    bottom: -106px;
    width: 100%;
    text-align: center;
  }
}
.mv__image img {
  width: 600px;
}
@media screen and (max-width: 767px) {
  .mv__image img {
    width: 345px;
  }
}

.case {
  max-width: calc(100% - 60px);
  margin-top: 120px;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .case {
    max-width: calc(100% - 30px);
    margin-top: 100px;
    margin-bottom: 0;
  }
}

.case__inner {
  padding: 26px 25px;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .case__inner {
    padding: 60px 25px;
    max-width: 345px;
    letter-spacing: 2px;
  }
}

.case__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .case__title {
    margin-bottom: 26px;
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.case__logo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0 34px;
}
@media screen and (max-width: 767px) {
  .case__logo {
    grid-template-columns: 1fr 1fr;
    gap: 0 15px;
  }
}

.case__logo-img {
  width: 100%;
}
.case__logo-img:nth-child(n+5) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .case__logo-img:nth-child(n+3) {
    margin-top: 22px;
  }
}

.news {
  padding-top: 25px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.news__card {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 9.2105263158%;
  padding-right: 9.2105263158%;
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 9px 30px 0px #f4f4f4;
          box-shadow: 0px 9px 30px 0px #f4f4f4;
}
@media screen and (max-width: 767px) {
  .news__card {
    padding-top: 40px;
    padding-bottom: 48px;
    padding-left: 3.2%;
    padding-right: 3.2%;
  }
}

.news__title {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 100%; /* 50px */
  letter-spacing: 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-bottom: 26px;
    font-size: 38px;
    letter-spacing: 3.8px;
    text-align: center;
  }
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
}
.news__list:nth-child(n+2) {
  position: relative;
}
.news__list:nth-child(n+2)::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background: #e3e3e3;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .news__list {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.news-link {
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.news-link:hover {
  background-color: #fff9e5;
}

.news-link__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 248px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-link__meta {
    gap: 12px;
  }
}

.news-link__date {
  font-size: 16px;
  line-height: 170%;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .news-link__date {
    width: auto;
  }
}

.news-link__label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
}
.news-link__label.is-news {
  background: #e4780c;
}
.news-link__label.is-column {
  background: #ecb815;
  padding: 2px 15px;
}
.news-link__label.is-event {
  background: #389b47;
}

.news-link__title {
  width: calc(100% - 250px);
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .news-link__title {
    width: 100%;
    margin-top: 8px;
  }
}

.news__link {
  text-align: right;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .news__link {
    margin-top: 14px;
  }
}
.news__link a {
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid currentColor;
  padding-bottom: 8px;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news__link a:hover {
  color: #fabe00;
}

.about {
  padding-top: 58px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 60px;
    padding-bottom: 48px;
  }
}

.about__logo {
  margin-bottom: 176px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__logo {
    margin-bottom: 148px;
  }
}
.about__logo img {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .about__logo img {
    width: 180px;
  }
}

.about__contents {
  padding-top: 284px;
  padding-bottom: 100px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__contents {
    padding-top: 288px;
    padding-bottom: 115px;
  }
}
.about__contents::before {
  content: "";
  width: 800px;
  height: 800px;
  position: absolute;
  border-radius: 50%;
  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%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about__contents::before {
    width: 1100px;
    height: 1100px;
  }
}

.about__img {
  position: absolute;
  text-align: center;
  top: -126px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__img {
    top: -110px;
  }
}
.about__img img {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__img img {
    width: 320px;
  }
}

.about__text {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.3;
}

.about__pop {
  margin-top: 44px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.28px;
}

.about__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 14px;
}

.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:nth-child(n+2) {
  margin-top: 20px;
}

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

.movie {
  padding-top: 100px;
  padding-bottom: 95px;
  background: url(../img/section-bg.png) repeat top left/529px auto;
}
@media screen and (max-width: 767px) {
  .movie {
    padding-top: 60px;
    padding-bottom: 54px;
  }
}

.movie__inner {
  text-align: center;
}

.movie__content {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .movie__content {
    margin-top: 30px;
  }
}
.movie__content iframe {
  width: 640px;
  height: auto;
  aspect-ratio: 640/360;
}
@media screen and (max-width: 767px) {
  .movie__content iframe {
    width: 345px;
    height: auto;
    aspect-ratio: 345/194;
  }
}

.how-to-use {
  background-color: #fff;
  padding-bottom: 56px;
}

.how-to-use__content {
  padding-bottom: 56px;
  border-radius: 40px;
  background: #fffbf0;
}
@media screen and (max-width: 767px) {
  .how-to-use__content {
    padding-bottom: 54px;
  }
}

.content1 {
  margin-top: 85px;
}
@media screen and (max-width: 767px) {
  .content1 {
    margin-top: 100px;
  }
}

.content2 {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .content2 {
    margin-top: 104px;
  }
}

.content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content__title img {
  width: 85px;
}

.title1 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .title1 {
    padding-right: 95px;
  }
}
.title1 img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .title1 img {
    bottom: calc(100% + 16px);
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.title2 {
  position: relative;
}
@media screen and (min-width: 768px) {
  .title2 {
    padding-left: 95px;
  }
}
.title2 img {
  width: 85px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .title2 img {
    bottom: calc(100% + 16px);
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.title-text {
  color: #111;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7; /* 37.4px */
  letter-spacing: 2.2px;
  margin-top: 44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .title-text {
    margin-top: 54px;
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

.step-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  padding-left: 8.4210526316%;
  padding-right: 8.4210526316%;
}
@media screen and (max-width: 767px) {
  .step-content {
    display: block;
    margin-top: 20px;
    padding-left: 10.6666666667%;
    padding-right: 10.6666666667%;
  }
}

.step__box {
  width: calc((100% - 48px) / 3);
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .step__box {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .step__box:nth-child(n+2) {
    margin-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .step__box:nth-child(n+2) {
    margin-top: 22px;
  }
}

.step__box-head {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  background: #f5810e;
  border: 2px solid currentColor;
  line-height: 1;
  color: #111;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.head2 {
  background: #fabe00;
}

.step__box-head-text {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
  font-weight: "Montserrat", sans-serif;
}

.step__box-head-nomber {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 3.4px;
  margin-top: 3px;
  font-family: "Montserrat", sans-serif;
}

.step__box-body {
  padding-top: 48px;
  background: #fff;
  border-radius: 30px;
  border: 3px solid #111;
}
.step__box-body img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .step__box-body img {
    width: 160px;
  }
}

.step__box-text {
  margin-top: 10px;
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.48px;
}

.merit {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .merit {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 768px) {
  .merit__heading {
    margin-bottom: 60px;
  }
}

.merit__box {
  background: #fff;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 9.649122807%;
  padding-left: 9.649122807%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .merit__box {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 5.7971014493%;
    padding-left: 5.7971014493%;
  }
}
.merit__box:nth-child(n+2) {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .merit__box:nth-child(n+2) {
    margin-top: 22px;
  }
}

@media screen and (min-width: 768px) {
  .box-type2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.merit__box-image {
  width: 38.0434782609%;
}
@media screen and (max-width: 767px) {
  .merit__box-image {
    width: 100%;
    text-align: center;
  }
}
.merit__box-image img {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .merit__box-image img {
    width: 200px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.merit__box-contents {
  width: 56.5217391304%;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .merit__box-contents {
    width: 100%;
    margin-top: 20px;
  }
}

.merit__box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .merit__box-title {
    gap: 14px;
  }
}

.merit__box-title-number {
  font-size: 110px;
  color: #fabe00;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .merit__box-title-number {
    font-size: 70px;
  }
}

.merit__box-title-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .merit__box-title-text {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
}

.merit__box-text {
  padding-top: 20px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .merit__box-text {
    padding-top: 10px;
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.cta__section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8b819), to(#f0d320));
  background: linear-gradient(180deg, #f8b819 0%, #f0d320 100%);
}
@media screen and (max-width: 767px) {
  .cta__section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.cta__text {
  width: 463px;
  color: #111;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .cta__text {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.cta__button {
  margin-top: 16px;
  width: 212px;
  margin-left: auto;
  margin-right: auto;
}

.compare {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .compare {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

.compare__content {
  margin-top: 60px;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .compare__content {
    margin-top: 42px;
    padding-bottom: 38px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .qa__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 860px;
  }
}

.qa__boxes {
  margin-top: 50px;
  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;
  }
}

.qa__box {
  border-radius: 10px;
  border: 3px solid #111;
  background: #fff;
}
.qa__box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-box__head {
  padding: 29px 37px 17px 12px;
  position: relative;
  display: block;
  width: 100%;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9.26px;
  height: 6.834px;
  background: url(../img/qa_arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    right: 18px;
    margin-top: 2px;
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 29px 77px 17px 17px;
  }
}

.qa-box__head-icon {
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #f5810e;
  position: absolute;
  top: -26px;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    left: 17px;
  }
}

.qa-box__head-text {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.28px;
  }
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
}

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

.qa-box__icon {
  display: grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #111;
  background: #fabe00;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box__text {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .qa-box__text {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 1.28;
    padding-top: 7px;
  }
}

@media screen and (min-width: 768px) {
  .gallery__inner {
    padding-left: 30px;
    padding-right: 30px;
    min-width: 860px;
  }
}

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

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

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

.gallery-card__text {
  margin-top: 11px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .gallery-card__text {
    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;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background: #BCBCBC;
  opacity: 1;
}
.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fabe00;
}

.gallery__prev,
.gallery__next {
  width: 40px;
  height: 40px;
  margin-top: -40px;
}
@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;
}

.gallery__next {
  right: 0;
  background: url(../img/next-icon.png) no-repeat center center/contain;
}

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

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

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

.contact__field:nth-child(n+2) {
  margin-top: 30px;
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.form__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .form__field-head {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.form__field-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
}

.form__field-tag {
  display: inline-block;
  border-radius: 2px;
  background: #ee8013;
  padding: 6px 8px 5px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.98px;
}

.is-option {
  background: #43b549;
}

.form__field-item {
  margin-top: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.form__field-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .form__field-radios {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

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

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

.form-radio:hover .form__field-radio-text::before {
  border-color: #fabe00;
}

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

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

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

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

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

.form-checkbox__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
}
.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;
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  font-weight: 700;
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #fabe00;
}

.contact__button {
  margin-top: 38px;
  text-align: center;
}

.footer {
  background: #111;
  padding-top: 8px;
  padding-bottom: 12px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__copyright {
  color: #f5f5f5;
  text-align: center;
  font-family: Noto Sans JP;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
}

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

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