@charset "UTF-8";
.animated__fadeIn {
  opacity: 0;
  translate: 0 0;
  -webkit-transition: opacity 1.2s ease, translate 1.2s ease;
  transition: opacity 1.2s ease, translate 1.2s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__zoomIn {
  opacity: 0;
  scale: 0; /* 少し縮小した状態から開始 */
}
.animated__zoomIn.js-show {
  opacity: 1;
  scale: 1; /* 元のサイズにズームイン */
}

.header {
  width: 100%;
  background: url(../img/header-bg.png) no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  .header {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header.js-active {
    opacity: 1;
    pointer-events: all;
  }
}

.header__inner {
  width: 100%;
  padding-top: 22px;
  padding-bottom: 48px;
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  gap: 2.6vw;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-top: 12px;
    padding-bottom: 24px;
    padding-left: 17px;
    padding-right: 17px;
  }
}

.header__logo {
  width: 125px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 88px;
  }
}
.header__logo a {
  display: inline-block;
}

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

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

.header__nav-item {
  font-size: 15px;
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: bold;
}
.header__nav-item a {
  display: block;
}
@media (any-hover: hover) {
  .header__nav-item a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
}

.drawer {
  width: 50px;
  height: 50px;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(-132deg, rgb(0, 183, 0), rgb(255, 210, 0));
  border-radius: 0 0 0 5px;
  padding: 18px 15px;
  z-index: 803;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer {
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  .drawer.js-active {
    opacity: 1;
    pointer-events: all;
  }
}
.drawer.is-checked {
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 183, 0)), to(rgb(255, 210, 0)));
  background: linear-gradient(90deg, rgb(0, 183, 0), rgb(255, 210, 0));
}

.drawer-icon {
  width: 18px;
  height: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.drawer-icon.is-checked {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #fff;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform: translate(0 4.5px);
          transform: translate(0 4.5px);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform: translate(0 -4.5px);
          transform: translate(0 -4.5px);
}

.drawer-icon__bar {
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer-content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 0 10px;
  width: 280px;
  max-width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 802;
  overflow-y: scroll;
  padding: 67px 35px 52px;
}
@media screen and (max-width: 767px) {
  .drawer-content {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
}
.drawer-content.is-checked {
  opacity: 1;
  visibility: visible;
}

.drawer-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.drawer-content__list-item a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
}
.drawer-content__list-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 9px;
  background: url(../img/drawer-content-item1.png) no-repeat center center/contain;
}
.drawer-content__list-item:nth-of-type(2) a::before {
  background: url(../img/drawer-content-item2.png) no-repeat center center/contain;
}
.drawer-content__list-item:nth-of-type(3) a::before {
  background: url(../img/drawer-content-item3.png) no-repeat center center/contain;
}
.drawer-content__list-item:nth-of-type(4) a::before {
  background: url(../img/drawer-content-item4.png) no-repeat center center/contain;
}
.drawer-content__list-item:nth-of-type(5) a::before {
  background: url(../img/drawer-content-item5.png) no-repeat center center/contain;
}
.drawer-content__list-item:nth-of-type(6) a::before {
  background: url(../img/drawer-content-item6.png) no-repeat center center/contain;
}

.drawer-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 801;
}
.drawer-bg.is-checked {
  opacity: 1;
  pointer-events: all;
}

body {
  line-height: 1.7;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", "YuGothic", "Arial", "Helvetica", sans-serif; /* 汎用サンセリフフォント */
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #000000;
}
body.is-checked {
  overflow: hidden;
}

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

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

.inner {
  padding-left: 35px;
  padding-right: 35px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.container {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .section {
    margin-top: 35px;
  }
}

.section-title--en {
  display: block;
  font-size: clamp(11px, 1.56vw, 20px);
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
  color: #32A53C;
}

.section-title--ja {
  margin-top: 25px;
  font-size: clamp(22px, 3.13vw, 40px);
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-title--ja {
    margin-top: 7px;
    letter-spacing: 0.05em;
  }
}

.section-title--line {
  margin-top: 25px;
  display: block;
  width: 35px;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#00B700), to(#FFBB00));
  background: linear-gradient(90deg, #00B700, #FFBB00);
}
@media screen and (max-width: 767px) {
  .section-title--line {
    margin-top: 14px;
  }
}

a {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

button {
  cursor: pointer;
}

.button--cta {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  margin-bottom: 3px;
  margin-right: 3px;
  z-index: 2;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1); /* 通常時の影 */
  border-radius: 5px;
  overflow: hidden;
  /* ホバー時のスタイル */
}
@media (any-hover: hover) {
  .button--cta:hover {
    -webkit-transform: translate(3px, 3px);
            transform: translate(3px, 3px); /* ボタンを右下に沈み込ませる */
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.1); /* 影を少し小さくして沈み込むように見せる */
  }
}
.button--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (any-hover: hover) {
  .button--cta:hover::before {
    top: 0;
    left: 100%;
  }
}

.button--engagement {
  display: block;
  font-size: 17px;
  font-weight: bold;
  padding: 9px 25px 9px 30px;
  background: linear-gradient(20deg, rgb(255, 46, 0), rgb(255, 46, 0), rgb(243, 149, 24));
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 3px;
  margin-right: 3px;
  z-index: 2;
  -webkit-box-shadow: 3px 3px 0 rgb(228, 52, 0);
          box-shadow: 3px 3px 0 rgb(228, 52, 0); /* 通常時の影 */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .button--engagement {
    font-size: 12px;
    border-radius: 2px;
    -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) and (any-hover: hover) {
  .button--engagement:hover {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  }
}
.button--engagement::before, .button--engagement::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 13px;
  width: 7px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
@media screen and (max-width: 767px) {
  .button--engagement::before, .button--engagement::after {
    right: 7px;
    width: 5px;
    height: 1px;
    -webkit-transform-origin: calc(100% - 0.5px) 50%;
            transform-origin: calc(100% - 0.5px) 50%;
  }
}
.button--engagement::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.button--engagement::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (any-hover: hover) {
  .button--engagement:hover {
    -webkit-transform: translate(3px, 3px);
            transform: translate(3px, 3px); /* ボタンを右下に沈み込ませる */
    -webkit-box-shadow: 0 0 0 rgb(228, 52, 0);
            box-shadow: 0 0 0 rgb(228, 52, 0); /* 影を少し小さくして沈み込むように見せる */
    cursor: pointer;
  }
}

.footer {
  padding: 20px 28px 110px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}

.footer__logo {
  width: 154px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 86px;
  }
}

.footer__address {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 9px;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.fv {
  width: 100%;
  aspect-ratio: 1.4446952596;
  background: url(../img/fv.jpg) no-repeat center bottom/cover;
}
@media (min-width: 400px) and (max-width: 767px) {
  .fv {
    background: url(../img/fv.jpg) no-repeat center bottom/cover;
    aspect-ratio: 760/646;
  }
}
@media (max-width: 399px) {
  .fv {
    background: url(../img/fv-sp.jpg) no-repeat center bottom/cover;
    aspect-ratio: 375/651;
  }
}

.fv__inner {
  max-width: 645px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    max-width: 361px;
  }
}

.fv__contents {
  padding-top: 22%;
  padding-bottom: 18%;
}
@media screen and (max-width: 767px) {
  .fv__contents {
    padding-top: 12vw;
  }
}

.fv__title {
  font-size: 63px;
}
.fv__title p {
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .fv__title p {
    margin-top: 10px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .fv__title .fv__title-logo {
    margin-top: 10px;
    max-width: 212px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__text3 {
  margin-top: 23px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv__text3 {
    font-size: 12px;
  }
}
.fv__text3 span {
  display: inline-block;
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__text3 span {
    font-size: 16px;
  }
}
.fv__text3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 11px;
  background: rgba(255, 255, 255, 0.25);
}

.fv__appeal {
  margin-top: 15px;
}

.fv__button {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .fv__button {
    margin-top: 16px;
  }
}

.cta-button {
  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;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .cta-button {
    margin-top: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cta-button.--cvbar {
  gap: 7px;
}

.fv__tex4 {
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .fv__tex4 {
    display: none;
  }
}

.worries {
  margin-top: 36px;
}

.worries__head {
  text-align: center;
}

.worries__head-sub {
  font-size: clamp(14px, 1.55vw, 20px);
}

.worries__head-main {
  margin-top: 20px;
  font-size: clamp(22px, 2.79vw, 36px);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .worries__head-main {
    margin-top: 8px;
    font-size: clamp(18px, 5.87vw, 22px);
  }
}

.worries__contents {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .worries__contents {
    margin-top: 16px;
  }
}

.worries__image {
  max-width: 607px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .worries__image {
    max-width: 400px;
  }
}

.worries__text {
  margin-top: 58px;
  text-align: center;
  font-size: clamp(22px, 2.79vw, 36px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .worries__text {
    margin-top: 16px;
    font-size: clamp(18px, 5.87vw, 22px);
  }
}

.worries__description {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
}

.worries__arrow {
  margin-top: 37px;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .worries__arrow {
    margin-top: 14px;
    width: 13px;
  }
}

.advantage {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .advantage {
    margin-top: 14px;
  }
}

.advantage__contents {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .advantage__contents {
    margin-top: 16px;
  }
}

.advantage-item {
  max-width: 921px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding: 55px 0 55px 75px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .advantage-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 25px 0;
  }
}
.advantage-item::before, .advantage-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
}
.advantage-item::before {
  top: 0; /* 上部の線 */
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 183, 0)), to(rgb(255, 210, 0)));
  background: linear-gradient(90deg, rgb(0, 183, 0), rgb(255, 210, 0));
}

.advantage-item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding: 55px 75px 55px 0;
}
@media screen and (max-width: 767px) {
  .advantage-item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding: 25px 0;
  }
}
.advantage-item:nth-of-type(even)::before {
  top: 0; /* 上部の線 */
  background: -webkit-gradient(linear, right top, left top, from(rgb(0, 183, 0)), to(rgb(255, 210, 0)));
  background: linear-gradient(-90deg, rgb(0, 183, 0), rgb(255, 210, 0));
}

.advantage-item:last-of-type::after {
  bottom: 0; /* 上部の線 */
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 183, 0)), to(rgb(255, 210, 0)));
  background: linear-gradient(90deg, rgb(0, 183, 0), rgb(255, 210, 0));
}

.advantage-item__image {
  width: 23.84%;
  margin-left: auto;
  margin-right: auto;
}
.advantage-item__image.--item1 {
  width: 23.84%;
}
@media screen and (max-width: 767px) {
  .advantage-item__image.--item1 {
    width: 38.4%;
  }
}
.advantage-item__image.--item2 {
  width: 24.14%;
}
@media screen and (max-width: 767px) {
  .advantage-item__image.--item2 {
    width: 37.33%;
  }
}
.advantage-item__image.--item3 {
  width: 21.11%;
}
@media screen and (max-width: 767px) {
  .advantage-item__image.--item3 {
    width: 80%;
    padding: 34px 0;
  }
}
.advantage-item__image.--item4 {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .advantage-item__image.--item4 {
    width: 34.13%;
  }
}

.advantage-item__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.advantage-item__right-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media screen and (max-width: 767px) {
  .advantage-item__right-head {
    gap: 15px;
  }
}

.advantage-item__right-number {
  display: inline-block;
  width: 76px;
}
@media screen and (max-width: 767px) {
  .advantage-item__right-number {
    width: 53px;
  }
}
.advantage-item__right-number.--number1 {
  width: 58px;
}
@media screen and (max-width: 767px) {
  .advantage-item__right-number.--number1 {
    width: 41px;
  }
}

.advantage-item__right-title {
  font-size: clamp(22px, 2.48vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .advantage-item__right-title {
    font-size: clamp(18px, 5.87vw, 22px);
  }
}

.advantage-item__right-text {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .advantage-item__right-text {
    margin-top: 25px;
    letter-spacing: 0;
  }
}

.advantage__table {
  margin-top: 70px;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .advantage__table {
    margin-top: 28px;
  }
}

.advantage-table {
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .advantage-table {
    table-layout: auto;
    min-width: 331px;
  }
}

.advantage-table th, td {
  text-align: center;
  padding: 10px;
  line-height: 1.4;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .advantage-table th, td {
    padding: 6px;
  }
}

.advantage-table th {
  font-size: clamp(13px, 2.24vw, 24px);
  background: #F3F5F9;
}

.advantage-table td {
  font-size: clamp(13px, 1.87vw, 20px);
}

@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:first-child {
    width: 18.93%;
    min-width: 71px;
  }
}
@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:nth-child(2), .advantage-table tr th:nth-child(4) {
    width: 20.27%;
    min-width: 74px;
  }
}
@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:nth-child(3) {
    width: auto;
    min-width: 106px;
  }
}
.advantage-table tr:first-child th {
  font-size: clamp(19px, 2.24vw, 24px);
}
.advantage-table tr:nth-child(n+3) {
  border-top: 1px solid #D2D2D2;
}
.advantage-table tr:last-child {
  border-bottom: 1px solid #D2D2D2;
}
.advantage-table tr:first-child th:first-child {
  background: transparent;
}
.advantage-table tr:first-child th {
  border-radius: 5px 5px 0 0;
}
.advantage-table tr:nth-child(2) th {
  border-radius: 5px 0 0 0;
}
.advantage-table tr:last-child th {
  border-radius: 0 0 0 5px;
}
@media screen and (max-width: 767px) {
  .advantage-table tr:nth-child(4) td:last-child {
    font-size: 12px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .advantage-table tr:nth-child(5) .advantage-table trtd:nth-child(2) {
    padding: 5px;
  }
}
.advantage-table tr:first-child th:nth-child(3) {
  background: linear-gradient(43deg, #00B700 0%, #FFD200 70%);
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:nth-child(3) {
    color: #000;
  }
}
.advantage-table tr:first-child th:nth-child(3) span {
  position: relative;
  padding-left: 38px;
}
@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:nth-child(3) span {
    padding-left: 0;
  }
}
.advantage-table tr:first-child th:nth-child(3) span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  aspect-ratio: 24/31;
  background: url(../img/logo-type2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .advantage-table tr:first-child th:nth-child(3) span::before {
    display: none;
  }
}
.advantage-table tr td:nth-child(3) {
  border-left: 2px solid #00B700;
  border-right: 2px solid #00B700;
}
.advantage-table tr:last-child td:nth-child(3) {
  border-bottom: 2px solid #00B700;
}

.advantage-table__fontsizeS {
  font-size: clamp(10px, 1.68vw, 18px);
}
@media screen and (max-width: 767px) {
  .advantage-table__fontsizeS {
    letter-spacing: 0;
  }
}

.advantage-table__appeal {
  font-size: clamp(14px, 2.06vw, 22px);
  font-weight: 500;
  color: #FF8C00;
}
@media screen and (max-width: 767px) {
  .advantage-table__appeal {
    color: #FE6100;
  }
}

.advantage-table td img {
  width: 28px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .advantage-table td img {
    width: 14px;
  }
}

.cta {
  margin-top: 70px;
  background: #F3F5F9;
  padding-top: 40px;
  padding-bottom: 57px;
}
@media screen and (max-width: 767px) {
  .cta {
    margin-top: 30px;
    padding-top: 23px;
    padding-bottom: 23px;
  }
}

.cta__text {
  font-size: 28px;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .cta__text {
    font-size: 16px;
  }
}

.cta__contents {
  margin-top: 28px;
  max-width: 713px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .cta__contents {
    margin-top: 15px;
  }
}

.flow__contents {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .flow__contents {
    margin-top: 20px;
  }
}

.flow__text {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__text {
    font-size: 15px;
  }
}

.flow__image {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .flow__image {
    margin-top: 20px;
  }
}

.category {
  margin-top: 86px;
}
@media screen and (max-width: 767px) {
  .category {
    margin-top: 47px;
  }
}

.category__contents {
  margin-top: 33px;
}
@media screen and (max-width: 767px) {
  .category__contents {
    margin-top: 20px;
  }
}

.category__text {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .category__text {
    font-size: 15px;
  }
}

.category__ietms {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 52px;
}
@media screen and (max-width: 767px) {
  .category__ietms {
    margin-top: 30px;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.category__ietm-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .category__ietm-head {
    gap: 11px;
  }
}

.category__item-title {
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .category__item-title {
    font-size: 18px;
  }
}

.category__item-title--en {
  font-size: 16px;
  font-weight: 500;
  color: #32A53C;
}
@media screen and (max-width: 767px) {
  .category__item-title--en {
    font-size: 13px;
  }
}

.category__item-image {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .category__item-image {
    margin-top: 7px;
  }
}

.review {
  margin-top: 119px;
  background: #F3F5F9;
  padding-top: 95px;
  padding-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .review {
    margin-top: 47px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.review__text {
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .review__text {
    margin-top: 17px;
    line-height: 1.4;
  }
}

.review__text-main {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .review__text-main {
    font-size: 15px;
  }
}

.review__text-sub {
  margin-top: 5px;
  font-size: 13px;
  color: #FE6100;
}
@media screen and (max-width: 767px) {
  .review__text-sub {
    margin-top: 5px;
    font-size: 12px;
  }
}

.review__items {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .review__items {
    margin-top: 28px;
    gap: 25px;
  }
}

.review-item {
  padding: 49px 90px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .review-item {
    padding: 19px;
  }
}

.review-item__head {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #CBCBCB;
}
@media screen and (max-width: 767px) {
  .review-item__head {
    padding-bottom: 13px;
  }
}

.review-item__number {
  font-size: 16px;
  font-weight: 500;
  color: #32A53C;
}
@media screen and (max-width: 767px) {
  .review-item__number {
    font-size: 11px;
  }
}

.review-item__title {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .review-item__title {
    font-size: 20px;
  }
}

.review-item__body {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .review-item__body {
    margin-top: 18px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}

.review-item__image {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .review-item__image {
    width: 58.4%;
  }
}
.review-item__image.--5 img {
  max-width: 198px;
  margin-left: auto;
  margin-right: auto;
}

.review-item__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .review-item__contents {
    padding-top: 18px;
    border-top: 1px solid #CBCBCB;
  }
}

.review-item__h4 {
  font-size: 28px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .review-item__h4 {
    font-size: 20px;
    letter-spacing: 0.01em;
  }
}

.review-item__description {
  margin-top: 27px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .review-item__description {
    margin-top: 18px;
    font-size: 15px;
  }
}

.faq__text {
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .faq__text {
    margin-top: 17px;
    line-height: 1.4;
  }
}

.faq__text-main {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .faq__text-main {
    font-size: 15px;
  }
}

.faq__contents {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .faq__contents {
    margin-top: 18px;
  }
}

.faq__item {
  padding: 50px 60px;
  border-top: 1px solid #AEAEAE;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 25px 0;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.faq-item__q {
  font-size: 26px;
  position: relative;
  padding-left: 68px;
}
@media screen and (max-width: 767px) {
  .faq-item__q {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
}
.faq-item__q::after {
  content: "Q";
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(-132deg, rgb(0, 183, 0), rgb(255, 210, 0));
  width: 40px;
  aspect-ratio: 1;
  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;
}
@media screen and (max-width: 767px) {
  .faq-item__q::after {
    width: 45px;
  }
}

.faq-item__a {
  margin-top: 30px;
  font-size: 18px;
  padding-left: 68px;
}
@media screen and (max-width: 767px) {
  .faq-item__a {
    margin-top: 20px;
    font-size: 15px;
    padding-left: 0;
  }
}

.faq-item__a-link {
  color: #32A53C;
  text-decoration: underline;
}

.line-cta {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .line-cta {
    margin-top: 14px;
  }
}

.line-cta__inner {
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.line-cta__contents {
  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;
  gap: min(8.13vw, 65px);
  padding: 30px 30px;
  border: 2px solid #32A53C;
}
@media screen and (max-width: 767px) {
  .line-cta__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 15px 13px;
    gap: 0;
  }
}

.line-cta__left {
  width: min(22.63vw, 181px);
}
@media screen and (max-width: 767px) {
  .line-cta__left {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 10px;
    width: 37.6%;
  }
}

@media screen and (max-width: 767px) {
  .line-cta__right {
    display: contents;
  }
}

.line-cta__text1 {
  font-size: 15px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .line-cta__text1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 14px;
    padding-left: 0;
  }
}

.line-cta__text--main {
  font-size: 25px;
  font-size: clamp(18px, 3.13vw, 25px);
  font-weight: bold;
  color: #00B900;
}
@media screen and (max-width: 767px) {
  .line-cta__text--main {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: clamp(14px, 4.8vw, 18px);
    letter-spacing: 0;
  }
}

.line-cta__text--attention {
  font-size: 10px;
  color: #919191;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .line-cta__text--attention {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    padding-left: 0;
    margin-top: 16px;
    letter-spacing: 0;
  }
}

.line-cta__button {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .line-cta__button {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 23px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}
.line-cta__button a {
  display: block;
  width: min(29.63vw, 237px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .line-cta__button a {
    width: 65.87vw;
  }
}
@media (any-hover: hover) {
  .line-cta__button a:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.line-cta__button p {
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  padding-top: 15px;
  margin-left: 13px;
}
@media screen and (max-width: 767px) {
  .line-cta__button p {
    padding-top: 0;
    padding-left: 62px;
    margin-left: 0;
  }
}
.line-cta__button p::before {
  content: "友だちID";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .line-cta__button p::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.engagement__text {
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .engagement__text {
    margin-top: 17px;
    line-height: 1.4;
  }
}

.engagement__text-main {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .engagement__text-main {
    font-size: 15px;
  }
}

.engagement__contents {
  max-width: 611px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 4.34vw, 43px);
}

.engagement__bottom {
  margin-top: 52px;
  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;
  max-width: 557px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .engagement__bottom {
    margin-top: 28px;
  }
}

.engagement__bottom-left {
  padding-right: 61px;
  padding-right: 25px;
}
.engagement__bottom-left img {
  max-width: 78px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .engagement__bottom-left img {
    max-width: 119px;
  }
}

.engagement__bottom-right {
  padding-left: 61px;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .engagement__bottom-right {
    padding-left: 25px;
  }
}
.engagement__bottom-right img {
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .engagement__bottom-right img {
    max-width: 125px;
  }
}

.engagement__bottom-button {
  margin-top: 18px;
  width: 172px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .engagement__bottom-button {
    width: 127px;
    max-width: 100%;
  }
}

.message {
  padding-top: 120px;
  padding-bottom: 50px;
  background: url(../img/message-bg.jpg) no-repeat center top/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message {
    padding-top: 66px;
    background: url(../img/message-bg__sp.jpg) no-repeat top center/cover;
  }
}
.message::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fff;
}

.message__contents {
  letter-spacing: 0.1em;
  color: #fff;
}

.message__text1 {
  text-align: center;
  font-size: 19px;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .message__text1 {
    font-size: clamp(10px, 3.73vw, 14px);
    letter-spacing: 0.01em;
  }
}

.message__text2 {
  margin-top: 45px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .message__text2 {
    margin-top: 36px;
    font-size: clamp(16px, 5.33vw, 20px);
  }
}

.message__logo {
  margin-top: 45px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.pc-cv {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 102, 45)), to(rgb(255, 184, 0)));
  background: linear-gradient(90deg, rgb(255, 102, 45), rgb(255, 184, 0));
  padding-top: 7px;
  padding-bottom: 7px;
  z-index: 900;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .pc-cv {
    display: none;
  }
}
.pc-cv.is-show {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.pc-cv__inner {
  max-width: 815px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.pc-cv__left {
  color: #fff;
  text-align: center;
  max-width: 350px;
}

.pc-cv__text--main {
  font-size: 24px;
  font-size: clamp(16px, 2.94vw, 24px);
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 500;
}

.pc-cv__text--sub {
  margin-top: 7px;
  font-size: 12px;
  font-size: clamp(8px, 1.47vw, 12px);
  line-height: 1;
  font-weight: bold;
  text-align: left;
}

.pc-cv__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sp-cv {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(88.5%);
          transform: translateY(88.5%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 999;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .sp-cv {
    display: block;
  }
}
.sp-cv.is-show {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.sp-cv__tap {
  display: block;
  width: 100%;
  padding-top: 11px;
  padding-bottom: 11px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 184, 0)), to(rgb(255, 102, 45)));
  background: linear-gradient(90deg, rgb(255, 184, 0), rgb(255, 102, 45));
  color: #fff;
  position: relative;
}

.sp-cv__tap-inner {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

.sp-cv__tap-text {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: clamp(10px, 5vw, 20px);
  font-weight: bold;
  text-align: left;
  letter-spacing: 0;
  line-height: 1.4;
  position: relative;
  padding-left: 72px;
  padding-right: min(19.2%, 72px);
}

.sp-cv__tap-circle {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 62px;
  height: 62px;
  background: #FE6100;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  outline: 1px solid #fff; /* 線幅、線のスタイル、カラー */
  outline-offset: -4px; /* 対象の要素からの距離、マイナス(内側)にも対応 */
  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;
}

.sp-cv__contents {
  background: #fff;
  padding: 20px 10px 40px;
}

.sp-cv__text {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.sp-cv__text span {
  color: #FE6100;
}

.sp-cv__button {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cv__line {
  margin-top: 15px;
  max-width: 300px;
  margin-left: auto;
  margin-right: 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;
  gap: 5px;
}
.sp-cv__line a {
  display: block;
  width: 57.6%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sp-cv__line a {
    width: 65.87vw;
  }
}
@media (any-hover: hover) {
  .sp-cv__line a:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
.sp-cv__line p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  padding-top: 17px;
  padding-left: 10px;
}
.sp-cv__line p::before {
  content: "友だちID";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
}

.sp-cv__bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 998;
}
.sp-cv__bg.is-show {
  opacity: 1;
  pointer-events: all;
}

main.page-contact {
  padding-top: 95px;
  padding-bottom: 83px;
  background: #F3F5F9;
}
@media screen and (max-width: 767px) {
  main.page-contact {
    padding-top: 42px;
    padding-bottom: 56px;
  }
}

.contact__text {
  margin-top: 27px;
  text-align: center;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-top: 17px;
    line-height: 1.4;
  }
}

.contact__text-main {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .contact__text-main {
    font-size: 15px;
  }
}

.contact__text-sub {
  margin-top: 15px;
  font-size: 13px;
  color: #FE6100;
}
@media screen and (max-width: 767px) {
  .contact__text-sub {
    margin-top: 10px;
    font-size: 12px;
  }
}

.contact__form {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    margin-top: 33px;
  }
}

.Form {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .Form {
    gap: 15px;
  }
}

.Form-Item {
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
@media screen and (max-width: 767px) {
  .Form-Item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 9px;
  }
}

.Form-Item-Label {
  font-size: 18px;
  width: 160px;
}

.Form-Item-Label-Required {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 500px;
  color: #FE6100;
  line-height: 1.4;
  letter-spacing: 0;
}

.wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  padding: 10px;
  border: none;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    font-size: 18px;
  }
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
  color: #AEAEAE;
}
input[type=text]::placeholder, input[type=text]::-webkit-input-placeholder, input[type=text]::-moz-placeholder, input[type=text]:-ms-input-placeholder, input[type=text]::-ms-input-placeholder,
input[type=tel]::placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=tel]::-moz-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
input[type=email]::placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=email]::-moz-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=email]::-ms-input-placeholder {
  color: #AEAEAE;
}
input[type=text]:-webkit-autofill,
input[type=tel]:-webkit-autofill,
input[type=email]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}

textarea {
  width: 100%;
  padding: 10px;
  resize: vertical;
  min-height: 300px;
  border: none;
  font-size: 16px;
  font-weight: 400;
}
textarea::-webkit-input-placeholder {
  color: #AEAEAE;
}
textarea::-moz-placeholder {
  color: #AEAEAE;
}
textarea:-ms-input-placeholder {
  color: #AEAEAE;
}
textarea::-ms-input-placeholder {
  color: #AEAEAE;
}
textarea::placeholder {
  color: #AEAEAE;
}
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
          box-shadow: 0 0 0 1000px #fff inset;
}

.wpcf7-list-item:has(:focus-visible) .wpcf7-list-item-label::before {
  outline: auto oklch(60% 0.4 240deg);
  outline-offset: 4px;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

input[type=radio] {
  font-size: 18px;
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* チェック前のボタン */
input[type=radio] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
}
input[type=radio] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 2px solid #AEAEAE;
  border-radius: 50%;
  background: #fff;
}
input[type=radio] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #AEAEAE;
  opacity: 0;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
}

.button-wrap {
  margin-top: 55px;
  text-align: center;
  width: 600px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .button-wrap {
    margin-top: 35px;
  }
}

.Form-Item--acceptance {
  display: block;
}

[data-name=acceptance] {
  text-align: center;
}

.wpcf7-form-control.wpcf7-acceptance {
  display: block;
  text-align: center;
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* チェック前のボタン */
input[type=checkbox] + .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
}
input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #AEAEAE;
  background: #fff;
}
input[type=checkbox] + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 5px;
  width: 8px;
  height: 14px;
  rotate: 45deg;
  border-right: 1.5px solid #00BE00;
  border-bottom: 1.5px solid #00BE00;
  opacity: 0;
}

.Form-Item--acceptance .wpcf7-list-item {
  margin-left: 0;
}

.Form-Item--acceptance .wpcf7-list-item-label {
  text-align: left;
  display: inline-block;
}

.Form-Item--acceptance .wpcf7-form-control {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.Form-Item--acceptance .wpcf7-not-valid-tip {
  text-align: center;
}

input[type=submit] {
  display: block;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#00BE00), color-stop(82.24%, #FFD200));
  background: linear-gradient(90deg, #00BE00 0%, #FFD200 82.24%);
  padding: 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  input[type=submit] {
    font-size: 22px;
  }
}
@media (any-hover: hover) {
  input[type=submit]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.thanks-box {
  background: -webkit-gradient(linear, left top, right top, from(#00BE00), color-stop(82.24%, #FFD200));
  background: linear-gradient(90deg, #00BE00 0%, #FFD200 82.24%);
  padding: 4px;
}

.thanks-box__inner {
  background: #fff;
  padding: 48px 25px;
}
@media screen and (max-width: 767px) {
  .thanks-box__inner {
    padding: 36px 25px;
  }
}

.thanks-box__text {
  margin-top: 25px;
  font-size: clamp(15px, 1.83vw, 18px);
}

.page-404 {
  margin-top: 30px;
  padding-bottom: 120px;
}

.page-404__wrap {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.page-404__title {
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-404__title {
    font-size: 20px;
  }
}

.page-404__text1 {
  margin-top: 45px;
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page-404__text1 {
    font-size: 16px;
  }
}

.page-404__text2 {
  margin-top: 20px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .page-404__text2 {
    font-size: 16px;
  }
}

.page-404__sec2 {
  margin-top: 45px;
}

.page-404__button a {
  display: inline-block;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  font-weight: bold;
}