@charset "UTF-8";
/*------------------------
  共通CSS
---------------------------*/
body {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #111;
  background-color: #fafafa;
}

.inner {
  padding: 0 15px;
}

.button {
  padding: 8px 28px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.48px;
  border-radius: 60px;
  border: 2px solid #fff;
  background: #111;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button:hover {
  background: #fabe00;
}

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

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

/*------------------------
  headerセクション
---------------------------*/
.header {
  padding: 21px 0;
}
@media (min-width: 768px) {
  .header {
    padding: 28px 0;
  }
}

.header__inner {
  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;
}
@media (min-width: 768px) {
  .header__inner {
    max-width: 1170px;
    margin: 0 auto;
  }
}

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

.header__button {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
@media (min-width: 768px) {
  .header__button {
    display: none;
  }
}
.header__button.is-open .bar2 {
  display: none;
}
.header__button.is-open .bar1 {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.header__button.is-open .bar3 {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}

.header__button-bar {
  position: absolute;
  content: "";
  width: 36px;
  height: 3px;
  left: 0;
  background-color: #111;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, transform 0.3s linear;
  transition: top 0.3s linear, transform 0.3s linear, -webkit-transform 0.3s linear;
}
.header__button-bar.bar1 {
  top: 0;
}
.header__button-bar.bar2 {
  top: 9px;
}
.header__button-bar.bar3 {
  top: 18px;
}

.header__nav-sp {
  width: 332px;
  height: 668px;
  background: #f7ba1a;
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  text-align: right;
  -webkit-transform: translateX(100vh);
          transform: translateX(100vh);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header__nav-sp.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header__list-sp {
  padding: 100px 40px;
}

.header__item-sp a {
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.48px;
}
.header__item-sp:nth-child(n+2) {
  margin-top: 28px;
}

.header__item--sp-button {
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .header__list {
    gap: 40px;
  }
}

.header__item a {
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.48px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__item a:hover {
  color: #f5810e;
}
.header__item .header__item-button {
  color: #111;
  font-weight: 700;
  letter-spacing: 0.48px;
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
  padding: 12px 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__item .header__item-button:hover {
  background: #fabe00;
  color: #111;
}

/*------------------------
  fvセクション
---------------------------*/
.fv {
  text-align: center;
  padding-bottom: 108px;
}
@media (min-width: 768px) {
  .fv {
    text-align: left;
    padding-bottom: 88px;
  }
}

.fv__inner {
  padding: 0 4%;
}
@media (min-width: 768px) {
  .fv__inner {
    padding: 0 2.0833333333%;
  }
}

.fv__content {
  position: relative;
  padding: 50px 16.231884058% 255px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8b819), to(#efd320));
  background: linear-gradient(180deg, #f8b819 0%, #efd320 100%);
  width: 100%;
}
@media (min-width: 768px) {
  .fv__content {
    padding: 110px 0 109px 12.3188405797%;
    border-radius: 30px;
  }
}

.fv__title {
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%; /* 22px */
  letter-spacing: 2.2px;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .fv__title {
    font-size: 38px;
    margin-left: 0;
    margin-right: auto;
    letter-spacing: 3.8px;
    padding: 12px 16px;
  }
}
.fv__title:nth-child(2) {
  margin-top: 8px;
  margin: 8px auto 0;
}
@media (min-width: 768px) {
  .fv__title:nth-child(2) {
    margin: 0;
    margin-top: 14px;
  }
}

.fv__text {
  margin-top: 26px;
  font-weight: 700;
  letter-spacing: 0.48px;
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .fv__text {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.fv__button {
  margin-top: 22px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.48px;
}
.fv__button:hover {
  background-color: #fff;
  color: #111;
  border: 2px solid currentColor;
}
@media (min-width: 768px) {
  .fv__button {
    margin-top: 30px;
  }
}

.fv__img {
  position: absolute;
  bottom: -108px;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .fv__img {
    bottom: -88px;
    left: auto;
    right: 12.3913043478%;
    width: 43.4782608696%;
  }
}
.fv__img img {
  width: 345px;
}
@media (min-width: 768px) {
  .fv__img img {
    width: 600px;
  }
}

/*------------------------
aboutセクション
---------------------------*/
.about {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .about {
    padding-top: 70px;
    padding-bottom: 50px;
  }
}

.about__inner {
  padding: 0 40px;
}

.about__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%; /* 18px */
  letter-spacing: 1.8px;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.about__grid {
  max-width: 295px;
  margin: 30px auto 0;
}
@media (min-width: 768px) {
  .about__grid {
    max-width: 920px;
    margin: 54px auto 0;
  }
}

.about__grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 22px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 768px) {
  .about__grid-list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 26px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}

.about__grid-item img {
  width: 140px;
}
@media (min-width: 768px) {
  .about__grid-item img {
    width: 200px;
  }
}

/*------------------------
Newsセクション
---------------------------*/
.news {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .news {
    padding: 50px 0;
  }
}

.news__inner {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .news__inner {
    padding: 0 10.4166666667%;
  }
}

.news__contents {
  background-color: #fff;
  padding: 40px 12px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 9px 30px 0px #f4f4f4;
          box-shadow: 0px 9px 30px 0px #f4f4f4;
}
@media (min-width: 768px) {
  .news__contents {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 9.2105263158% 34px;
  }
}

.news__title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  line-height: 100%; /* 38px */
  letter-spacing: 3.8px;
}
@media (min-width: 768px) {
  .news__title {
    font-size: 50px;
    letter-spacing: 5px;
    text-align: left;
  }
}

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

.news__item {
  padding: 8px 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.news__item:hover {
  background-color: #FFF9E5;
}
.news__item:nth-child(n+2) {
  border-top: 1px solid #e3e3e3;
}
@media (min-width: 768px) {
  .news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    padding: 12px 0;
  }
}

.news__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .news__item-head {
    width: 219px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 14px;
  }
}

.news__item-head-date {
  color: #333;
  font-family: Noto Sans JP;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .news__item-head-date {
    width: 119px;
  }
}

.news__item-head-tag {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 2px;
  background: #e4780c;
  min-width: 63px;
  line-height: 170%; /* 18.7px */
}
@media (min-width: 768px) {
  .news__item-head-tag {
    justify-self: end;
  }
}
.news__item-head-tag.is-column {
  background: #ecb815;
}
.news__item-head-tag.is-event {
  background: #389b47;
}

.news__item-body {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .news__item-body {
    margin-top: 0;
  }
}

.news__link {
  text-align: right;
  margin-top: 19px;
}
@media (min-width: 768px) {
  .news__link {
    margin-top: 13px;
  }
}
.news__link a {
  font-weight: 700;
  line-height: 100%; /* 16px */
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.news__link a:hover {
  color: #fabe00;
}

/*------------------------
ohaセクション
---------------------------*/
.oha {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .oha {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

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

.oha__background {
  margin-top: 150px;
  height: 1100px;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-size: 1100px 1100px;
  background-position: center top;
  position: relative;
}
@media (min-width: 768px) {
  .oha__background {
    background-size: 800px 800px;
    margin-top: 176px;
    height: 800px;
  }
}

.oha__img {
  position: absolute;
  top: -110px;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .oha__img {
    top: -126px;
  }
}
.oha__img img {
  width: 320px;
}
@media (min-width: 768px) {
  .oha__img img {
    width: 330px;
  }
}

.oha_contents {
  text-align: center;
  padding: 288px 14px 105px;
}
@media (min-width: 768px) {
  .oha_contents {
    padding: 284px 55px 100px;
  }
}

.oha__texts {
  font-weight: 700;
  line-height: 230%; /* 36.8px */
}

.oha__text {
  font-weight: 700;
  line-height: 100%; /* 16px */
  letter-spacing: 1.28px;
  margin-top: 42px;
}
@media (min-width: 768px) {
  .oha__text {
    margin-top: 34px;
    line-height: 230%; /* 36.8px */
  }
}

.oha__button {
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 0.48px;
  color: #111;
  border: 2px solid #111;
  background: #fff;
}
@media (min-width: 768px) {
  .oha__button {
    margin-top: 3px;
  }
}

.oha__dialog {
  position: fixed;
  border-radius: 20px;
  background: #fff;
  z-index: 55;
  max-width: calc(100% - 30px);
  padding: 16px 16px 64px;
  overflow-y: auto;
  max-height: calc(100% - 40px);
  overscroll-behavior-y: none;
}
@media (min-width: 768px) {
  .oha__dialog {
    padding: 49px 70px 75px;
    max-width: 1140px;
    height: 544px;
  }
}
.oha__dialog::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.oha__dialog::backdrop {
  opacity: 0.2;
  background: #000;
}

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

.dialog-img {
  cursor: pointer;
}
.dialog-img img {
  width: 37px;
}

.dialog-contents {
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .dialog-contents {
    margin-top: 43px;
  }
}

.dialog-text {
  text-align: left;
  font-size: 14px;
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .dialog-text {
    font-size: 16px;
  }
}
.dialog-text:nth-child(2) {
  margin-top: 20px;
}

.dialog-button {
  padding: 8px 48.5px;
  margin-top: 30px;
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

/*------------------------
movie セクション
---------------------------*/
.movie {
  padding: 60px 0;
  background: url(../img/section-bg.png) repeat left top/529px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .movie {
    padding: 100px 0;
  }
}

.heading {
  text-align: center;
}

.heading__title-ja {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 100%; /* 38px */
  letter-spacing: 3.8px;
}
@media (min-width: 768px) {
  .heading__title-ja {
    font-size: 50px;
    letter-spacing: 5px;
  }
}

.heading__title-en {
  display: block;
  font-size: 14px;
  font-family: Montserrat;
  line-height: 100%; /* 14px */
  letter-spacing: 1.12px;
  margin-top: 14px;
}
@media (min-width: 768px) {
  .heading__title-en {
    letter-spacing: 1.28px;
    font-size: 16px;
  }
}

.movie__video {
  margin: 32px auto 0;
  aspect-ratio: 345/194;
  max-width: 640px;
}
@media (min-width: 768px) {
  .movie__video {
    margin-top: 56px;
  }
}
.movie__video iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

/*------------------------
how-to-use セクション
---------------------------*/
.how-to-use {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .how-to-use {
    padding: 100px 0;
  }
}

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

.how-to-use__content {
  padding: 54px 40px 48px;
  border-radius: 30px;
  background: #fffbf0;
}
@media (min-width: 768px) {
  .how-to-use__content {
    padding: 44px 96px 56px;
    max-width: 1140px;
    margin: 0 auto;
  }
}
.how-to-use__content:nth-child(2) {
  margin-top: 112px;
}
@media (min-width: 768px) {
  .how-to-use__content:nth-child(2) {
    margin-top: 75px;
  }
}

.how-to-use-content-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  position: relative;
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .how-to-use-content-title {
    font-size: 22px;
    letter-spacing: 2.2px;
    padding-right: 95px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .how-to-use-content-title.is-type2 {
    padding-right: 0;
    padding-left: 95px;
  }
}

.how-to-use-content-title-img {
  position: absolute;
  top: -126px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .how-to-use-content-title-img {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .how-to-use-content-title-img.is-type2 {
    left: 0;
    right: auto;
  }
}
.how-to-use-content-title-img img {
  width: 85px;
}

.how-to-use__content-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 65px;
  margin-top: 65px;
}
@media (min-width: 768px) {
  .how-to-use__content-items {
    -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;
    margin-top: 85px;
  }
}

.how-to-use__content-item {
  border-radius: 30px;
  border: 3px solid #111;
  background: #fff;
  padding: 47px 32px 23px 31px;
  position: relative;
}
@media (min-width: 768px) {
  .how-to-use__content-item {
    width: 300px;
  }
}

.how-to-use__content-item-head {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  border: 3px solid #111;
  background: #f5810e;
  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;
  position: absolute;
  top: -49px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.how-to-use__content-item-head.is-type2 {
  background: #fabe00;
}

.content-item-head-top {
  font-size: 13px;
  font-weight: 700;
  line-height: 100%; /* 13px */
  letter-spacing: 1.3px;
}

.content-item-head-bottom {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 100%; /* 34px */
  letter-spacing: 3.4px;
}

.content-item-body-img img {
  width: 160px;
}
@media (min-width: 768px) {
  .content-item-body-img img {
    width: 200px;
  }
}

.content-item-body-text {
  font-weight: 700;
  letter-spacing: 0.48px;
  margin-top: 10px;
}

/*------------------------
merit セクション
---------------------------*/
.merit {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .merit {
    padding: 100px 0;
  }
}

.merit__contents {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .merit__contents {
    margin-top: 59px;
  }
}

.merit__content {
  border-radius: 20px;
  background: #fff;
  padding: 10px 20px 24px;
}
@media (min-width: 768px) {
  .merit__content {
    max-width: 1140px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 50px;
    padding: 20px 60px;
  }
}
.merit__content:nth-child(n+2) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .merit__content:nth-child(n+2) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .merit__content:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

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

@media (min-width: 768px) {
  .merit__content-texts {
    width: 520px;
  }
}

.merit__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .merit__content-title {
    gap: 26px;
    margin-top: 0;
  }
}

.merit__content-title-num {
  color: #fabe00;
  font-size: 70px;
  font-weight: 600;
  line-height: 100%; /* 70px */
}
@media (min-width: 768px) {
  .merit__content-title-num {
    font-size: 110px;
  }
}

.merit__content-title-text {
  color: #111;
  font-family: Montserrat;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .merit__content-title-text {
    color: #111;
    font-family: Noto Sans JP;
    font-size: 20px;
    letter-spacing: 2px;
  }
}

.merit__content-text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 200%; /* 28px */
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .merit__content-text {
    font-size: 15px;
    margin-top: 16px;
  }
}

/*------------------------
ctaセクション
---------------------------*/
.cta {
  padding: 50px 0;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8bd1e), to(#f0d320));
  background: linear-gradient(180deg, #f8bd1e 0%, #f0d320 100%);
}
@media (min-width: 768px) {
  .cta {
    padding: 60px 0;
  }
}

.cta__inner {
  padding: 0 31px;
}

.cta__text {
  font-weight: 700;
  line-height: 200%; /* 32px */
  letter-spacing: 0.48px;
}
@media (min-width: 768px) {
  .cta__text {
    font-size: 18px;
    letter-spacing: 0.54px;
  }
}

.cta__button {
  margin-top: 16px;
  font-weight: 700;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.48px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
}

/*------------------------
compareセクション
---------------------------*/
.compare {
  padding: 60px 0;
  text-align: center;
  background: #fff;
}
@media (min-width: 768px) {
  .compare {
    padding: 100px 0;
  }
}

.compare__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%; /* 20px */
}
@media (min-width: 768px) {
  .compare__title {
    font-size: 24px;
    vertical-align: sub;
  }
}

.table-wrapper {
  margin-top: 42px;
  overflow-x: scroll;
  padding-bottom: 36px;
}
@media (min-width: 768px) {
  .table-wrapper {
    margin-top: 60px;
    padding-bottom: 0;
  }
}

.table {
  width: 620px;
  border-collapse: collapse;
  table-layout: fixed;
}
@media (min-width: 768px) {
  .table {
    width: 1000px;
    margin: 0 auto;
  }
}

.table__row {
  height: 59px;
}
@media (min-width: 768px) {
  .table__row {
    height: 100px;
  }
}
.table__row th,
.table__row td {
  vertical-align: middle;
}
.table__row th:nth-child(1), .table__row th:nth-child(2),
.table__row td:nth-child(1),
.table__row td:nth-child(2) {
  font-weight: 700;
  letter-spacing: 0.48px;
}
.table__row th:nth-child(1),
.table__row td:nth-child(1) {
  width: 130px;
}
@media (min-width: 768px) {
  .table__row th:nth-child(1),
  .table__row td:nth-child(1) {
    width: auto;
    color: #111;
    font-size: 20px;
    letter-spacing: 0.6px;
  }
}
.table__row th:nth-child(2),
.table__row td:nth-child(2) {
  background: #fff9e5;
  letter-spacing: 0.75px;
}
@media (min-width: 768px) {
  .table__row th:nth-child(2),
  .table__row td:nth-child(2) {
    font-size: 25px;
  }
}
.table__row th:nth-child(3), .table__row th:nth-child(4),
.table__row td:nth-child(3),
.table__row td:nth-child(4) {
  width: 200px;
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .table__row th:nth-child(3), .table__row th:nth-child(4),
  .table__row td:nth-child(3),
  .table__row td:nth-child(4) {
    width: auto;
  }
}
.table__row td:nth-child(3), .table__row td:nth-child(4) {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.42px;
}
@media (min-width: 768px) {
  .table__row td:nth-child(3), .table__row td:nth-child(4) {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.table__row1 th {
  font-family: Noto Sans JP;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media (min-width: 768px) {
  .table__row1 th {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.table__row1 th img {
  width: 70px;
}
@media (min-width: 768px) {
  .table__row1 th img {
    width: 123px;
  }
}

.table__row2 {
  border-top: 1.5px solid #000;
}

.table__row3 {
  border-top: 1.5px solid #000;
}

.table__row4 {
  border-top: 1.5px solid #000;
}

.compare__bottom-text {
  color: #686868;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%; /* 14px */
  margin-top: 11px;
}
@media (min-width: 768px) {
  .compare__bottom-text {
    display: none;
  }
}

/*------------------------
qaセクション
---------------------------*/
.qa {
  padding: 60px 0;
  background: #fafafa;
}
@media (min-width: 768px) {
  .qa {
    padding: 100px 0;
  }
}

.qa__contents {
  margin-top: 52px;
}
@media (min-width: 768px) {
  .qa__contents {
    max-width: 800px;
    margin: 71px auto 0;
  }
}

.qa__content {
  border-radius: 10px;
  border: 3px solid #111;
  background: #fff;
}
.qa__content:nth-child(n+2) {
  margin-top: 42px;
}
.qa__content.is-open .qa__body {
  display: block;
}
.qa__content.is-open .qa__head-text::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.qa__head {
  padding: 29px 0 17px 12px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .qa__head {
    padding: 29px 0 17px 17px;
  }
}

.qa__head-icon {
  font-family: Montserrat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid currentColor;
  background: #f5810e;
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%; /* 22px */
  letter-spacing: 2.2px;
  position: absolute;
  top: -26px;
}

.qa__head-text {
  font-family: Noto Sans JP;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  padding-right: 37px;
  position: relative;
}
@media (min-width: 768px) {
  .qa__head-text {
    padding-right: 80px;
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
}
.qa__head-text::after {
  content: "";
  width: 9.26px;
  height: 6.834px;
  position: absolute;
  right: 14.87px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/polygon.png) no-repeat center/contain;
}
@media (min-width: 768px) {
  .qa__head-text::after {
    right: 18.87px;
  }
}

.qa__body {
  padding: 13px 14px 17px 12px;
  display: none;
}
@media (min-width: 768px) {
  .qa__body {
    padding: 3px 77px 17px 17px;
  }
}

.qa__body-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .qa__body-df {
    gap: 10px;
  }
}

.qa__body-icon {
  font-family: Montserrat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid currentColor;
  background: #fabe00;
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%; /* 22px */
}

.qa__body-text {
  font-family: Noto Sans JP;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media (min-width: 768px) {
  .qa__body-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
}

/*------------------------
galleryセクション
---------------------------*/
.gallery {
  padding: 60px 0;
  background: #fafafa;
}
@media (min-width: 768px) {
  .gallery {
    padding: 100px 0;
  }
}

.gallery__inner {
  padding: 0 15px;
  max-width: 810px;
  margin: 0 auto;
}

.swiper {
  padding-bottom: 26px;
  padding-right: 5px;
  padding-left: 5px;
  margin-top: 30px;
  margin-right: -5px;
  margin-left: -5px;
}
@media (min-width: 768px) {
  .swiper {
    padding-right: 70px;
    padding-left: 70px;
    margin-top: 60px;
    margin-right: 0;
    margin-left: 0;
  }
}

.swiper-slide-card {
  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: 12px 12px 9px;
}
@media (min-width: 768px) {
  .swiper-slide-card {
    padding: 17px 17px 15px 17px;
    border-radius: 30px;
  }
}

.swiper-slide-img {
  text-align: center;
}
.swiper-slide-img img {
  border-radius: 10px;
}
@media (min-width: 768px) {
  .swiper-slide-img img {
    border-radius: 20px;
  }
}
.swiper-slide-text {
  text-align: center;
  margin-top: 11px;
  font-size: 14px;
  font-family: Noto Sans JP;
}
@media (min-width: 768px) {
  .swiper-slide-text {
    font-size: 16px;
    margin-top: 18px;
  }
}

.swiper-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;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 10px;
  height: 10px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fabe00;
}

.swiper-button-prev,
.swiper-button-next {
  height: 40px;
  width: 40px;
}
@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    height: 50px;
    width: 50px;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 50px;
    width: 50px;
  }
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-prev::after {
  background-image: url(../img/prev-icon.png);
  left: 0;
}
@media (min-width: 768px) {
  .swiper-button-prev::after {
    left: 10px;
  }
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next::after {
  background-image: url(../img/next-icon.png);
  right: 0;
}
@media (min-width: 768px) {
  .swiper-button-next::after {
    right: 10px;
  }
}

/*------------------------
contactセクション
---------------------------*/
.contact {
  padding: 60px 0;
  background: url(../img/section-bg.png) repeat left top/529px auto;
}
@media (min-width: 768px) {
  .contact {
    padding: 100px 0;
  }
}

.contact__contents {
  padding: 60px 20px;
  border-radius: 30px;
  background: #fff;
}
@media (min-width: 768px) {
  .contact__contents {
    max-width: 1140px;
    margin: 0 auto;
  }
}

.form {
  margin-top: 31px;
}
@media (min-width: 768px) {
  .form {
    width: 612px;
    margin: 0 auto;
    margin-top: 50px;
  }
}

.form__item {
  margin-top: 28px;
}
@media (min-width: 768px) {
  .form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    margin-top: 30px;
  }
}

.form__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .form__item-head {
    width: 180px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.form__item-label {
  line-height: normal;
  font-weight: 700;
}

.form__item-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 11px;
  line-height: 100%; /* 11px */
  letter-spacing: 1.98px;
  border-radius: 2px;
  background: #ee8013;
  width: 42px;
  height: 22px;
}
.form__item-tag.type-2 {
  background: #43b549;
}

.form__item-body {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .form__item-body {
    width: 400px;
    margin-top: 0;
  }
}

.form__input {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  display: inline-block;
  padding: 12px 0 11px 13px;
}
.form__input::-webkit-input-placeholder {
  color: #adadad;
}
.form__input::-moz-placeholder {
  color: #adadad;
}
.form__input:-ms-input-placeholder {
  color: #adadad;
}
.form__input::-ms-input-placeholder {
  color: #adadad;
}
.form__input::placeholder {
  color: #adadad;
}
.form__input:hover {
  border: 3px solid #fabe00;
}
.form__input:focus {
  outline: none;
  border: 3px solid #fabe00;
}

.form-radio {
  display: block;
}
.form-radio:nth-child(n+2) {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .form-radio:nth-child(n+2) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .form-item-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

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

.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

.form-radio__text {
  font-weight: 700;
  padding-left: 28px;
  position: relative;
}
.form-radio__text:hover::before {
  border: 3px solid #fabe00;
}
.form-radio__text:focus {
  outline: none;
  border: 3px solid #fabe00;
}

.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 {
  width: 24px;
  height: 24px;
  border: 3px solid #111;
  left: 0;
}

.form-radio__text::after {
  width: 10px;
  height: 10px;
  background: #f5810e;
  left: 7px;
  opacity: 0;
}

.form-select {
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  font-weight: 700;
  padding: 12px 43px 11px 13px;
  background: url(../img/select-arrow.png) no-repeat center right 14px/13.217px 10.182px;
}
.form-select:hover {
  border: 3px solid #fabe00;
}
.form-select:focus {
  outline: none;
  border: 3px solid #fabe00;
}

.form-textarea {
  width: 100%;
  border-radius: 5px;
  border: 3px solid #111;
  background: #fff;
  padding: 13px;
  height: 180px;
}
.form-textarea:hover {
  border: 3px solid #fabe00;
}
.form-textarea:focus {
  outline: none;
  border: 3px solid #fabe00;
}

.item-praivacy {
  text-align: center;
}
@media (min-width: 768px) {
  .item-praivacy {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 3px solid #fabe00;
}
.form-checkbox__input:checked + .form-checkbox__text a {
  color: #f5810e;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto;
}
.form-checkbox__text a {
  font-size: 14px;
  font-weight: 700;
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #f5810e;
}

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

.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__item-button {
  text-align: center;
}
@media (min-width: 768px) {
  .form__item-button {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 35px;
  }
}

.form-button {
  padding: 8px 40px;
  border-radius: 60px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  display: inline-block;
}

/*------------------------
footerセクション
---------------------------*/
.footer {
  background: #111;
  text-align: center;
  padding: 18px 0;
}

.footer__inner {
  line-height: 1;
}

.copyright {
  color: #f5f5f5;
  font-size: 12px;
  line-height: 100%; /* 12px */
  letter-spacing: 0.96px;
  font-family: Noto Sans JP;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.pagetop.is-show {
  opacity: 1;
}
@media (min-width: 768px) {
  .pagetop {
    right: 16px;
    bottom: 30px;
  }
}
.pagetop img {
  width: 50px;
}
@media (min-width: 768px) {
  .pagetop img {
    width: 76px;
  }
}