@charset "UTF-8";
/************************************
** reset --Don't use global reset! **
*************************************/
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  vertical-align: middle;
  font-weight: 200;
}

q::before, q::after, blockquote::before, blockquote::after {
  content: "";
  content: none;
}

a {
  display: inline-block;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

a {
  color: #505050;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*:focus {
  outline: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------
base css
----------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #505050;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /*@include tab { //remを使う場合
  	font-size: 1.5rem;
  	-webkit-font-smoothing: antialiased;
  }
  @include sp {
  	font-size: 1.4rem;
  	-webkit-font-smoothing: antialiased;
  }*/
  letter-spacing: 0.05em;
  line-height: 1.75;
  width: 100%;
  margin: 0 auto;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body#thanks {
  text-align: left;
}

a {
  color: #505050;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  cursor: pointer;
  opacity: 0.7;
}
a:hover img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
}

/*-------------------------
カスタムクラス
--------------------------*/
.sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}
@media (max-width: 767px) {
  .tab {
    display: none;
  }
}

.tab-sp {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tab-sp {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-tab {
    display: none;
  }
}

.l-inner {
  width: 92%;
  max-width: 1160px;
  margin-inline: auto;
}

/*============================
	header
============================*/
/*============================
  main
============================*/
.l-header {
  width: 100%;
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 99;
}
@media (max-width: 767px) {
  .l-header {
    height: 74px;
  }
}
.l-header__wrap {
  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;
  width: 95%;
  margin-inline: auto;
  height: 100%;
}
@media (max-width: 767px) {
  .l-header__wrap {
    width: 92%;
  }
}
.l-header__logo {
  max-width: 180px;
  width: 40%;
}
.l-header__contact-btn a {
  font-size: 15px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 12px + 3 * (100vw - 767px) / 1153, 15px);
  display: inline-block;
  padding: 17px 19px;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, right top, from(#F69A4E), to(#F15A24));
  background: linear-gradient(90deg, #F69A4E 0%, #F15A24 100%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  color: #fff;
}
.l-header__contact-btn a:hover {
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, from(#F15A24), to(#F69A4E));
  background: linear-gradient(90deg, #F15A24 0%, #F69A4E 100%);
}
@media (max-width: 767px) {
  .l-header__contact-btn a {
    padding: 12px 20px;
  }
}

.l-footer {
  padding: 50px 0 20px;
  background-color: #505050;
}
@media (max-width: 767px) {
  .l-footer {
    padding: 40px 0 20px;
    background-color: #343434;
  }
}
.l-footer__link {
  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: 50px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .l-footer__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    gap: 25px;
  }
}
.l-footer__link li a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(12px, 12px + 2 * (100vw - 767px) / 1153, 14px);
  color: #fff;
  white-space: nowrap;
}
.l-footer__link li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer__copyright {
  text-align: center;
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 10px;
  font-weight: 300;
  line-height: 1em;
  letter-spacing: normal;
  color: #707070;
}

.c-button a {
  display: block;
  max-width: 480px;
  width: 58%;
  margin-inline: auto;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.04em;
  font-size: clamp(18px, 18px + 8 * (100vw - 767px) / 1153, 26px);
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#F69A4E), to(#F15A24));
  background: linear-gradient(90deg, #F69A4E 0%, #F15A24 100%);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  position: relative;
  border-radius: 60px;
  padding: 35px 85px;
}
.c-button a:hover {
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, from(#F15A24), to(#F69A4E));
  background: linear-gradient(90deg, #F15A24 0%, #F69A4E 100%);
}
@media (max-width: 767px) {
  .c-button a {
    width: 100%;
    padding: 24px;
    font-size: 20px;
  }
}
.c-button a::after {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/ico-arrow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .c-button a::after {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .c-button a::after {
    width: 26px;
    height: 26px;
  }
}

.l-main {
  overflow: hidden;
}

.mainv {
  width: 100%;
  height: 96vh;
  background: url(../img/mainv.jpg) no-repeat top center/cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv {
    height: 72vh;
  }
}
@media (max-width: 767px) {
  .mainv {
    background: url(../img/mainv-sp.jpg) no-repeat bottom center/cover;
    height: 82vh;
  }
}
.mainv__wrap {
  max-width: 1090px;
  width: 92%;
  height: 100%;
  margin-inline: auto;
  position: relative;
}
.mainv__text {
  max-width: 710px;
  width: 72%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mainv__text {
    width: 64%;
  }
}
@media (max-width: 767px) {
  .mainv__text {
    width: 100%;
    top: 28%;
  }
}

.intro {
  padding: 120px 0 100px;
  background: url(../img/intro-bg.jpg) no-repeat center/cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .intro {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .intro {
    padding: 50px 0;
  }
}
.intro__subhead {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(15px, 15px + 11 * (100vw - 767px) / 1153, 26px);
  margin-bottom: 8px;
}
.intro__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 26px + 22 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 30px;
}
.intro__head span {
  background: -webkit-gradient(linear, left top, left bottom, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(180deg, #6BB4E7 0%, #1A76AC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.intro__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 42px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .intro__list {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .intro__list {
    width: 94%;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.intro__list-item {
  width: calc((100% - 100px) / 3);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .intro__list-item {
    width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 767px) {
  .intro__list-item {
    width: 100%;
  }
}
.intro__list-ico {
  max-width: 268px;
  width: 74%;
  margin-inline: auto;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .intro__list-ico {
    width: 56%;
  }
}
.intro__list-ico img {
  -webkit-filter: drop-shadow(15px 15px 40px rgba(10, 26, 81, 0.06));
          filter: drop-shadow(15px 15px 40px rgba(10, 26, 81, 0.06));
}
.intro__list-head {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4285714286em;
  letter-spacing: 0.04em;
  font-size: clamp(18px, 18px + 10 * (100vw - 767px) / 1153, 28px);
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .intro__list-head {
    font-size: 20px;
  }
}
.intro__list-txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7333333333em;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 12px + 3 * (100vw - 767px) / 1153, 15px);
}
@media (max-width: 767px) {
  .intro__list-txt {
    font-size: 14px;
    text-align: justify;
  }
}

.problem {
  padding: 120px 0 80px;
  background: url(../img/problem-bg.png) no-repeat center top/cover, #31495e;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .problem {
    padding: 50px 0 0;
  }
}
@media (max-width: 767px) {
  .problem {
    padding: 50px 0;
    background: url(../img/problem-bg-sp.png) no-repeat center top/cover, #eff3f5;
  }
}
.problem__subhead {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 16px + 10 * (100vw - 767px) / 1153, 26px);
  margin-bottom: 8px;
  color: #fff;
}
.problem__head {
  text-align: center;
  margin-bottom: 40px;
}
.problem__head span {
  display: inline-block;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.4565217391em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 15 * (100vw - 767px) / 1153, 46px);
  color: #fff;
  border-bottom: solid 4px #fff;
  position: relative;
}
@media (max-width: 767px) {
  .problem__head span {
    border-width: 2px;
  }
}
.problem__head span::after {
  width: 56%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .problem__head span::after {
    content: "";
  }
}
.problem__contents {
  padding: 40px 45px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 12px 12px 50px rgba(49, 49, 102, 0.23);
          box-shadow: 12px 12px 50px rgba(49, 49, 102, 0.23);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .problem__contents {
    padding: 30px 4.2%;
  }
}
@media (max-width: 767px) {
  .problem__contents {
    padding: 20px 4.2%;
    border-radius: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.problem__contents::after {
  content: "";
  width: 1px;
  height: 74%;
  border-left: dashed 1px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .problem__contents::after {
    content: none;
  }
}
.problem__list {
  width: 50%;
}
@media (max-width: 767px) {
  .problem__list {
    width: 100%;
  }
}
.problem__list:nth-of-type(2) {
  padding-left: 30px;
}
@media (max-width: 767px) {
  .problem__list:nth-of-type(2) {
    padding-left: 0;
  }
}
.problem__list li {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6666666667em;
  letter-spacing: 0.02em;
  font-size: clamp(12px, 12px + 6 * (100vw - 767px) / 1153, 18px);
  color: #fff;
  position: relative;
  padding-left: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .problem__list li {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .problem__list li {
    font-size: 16px;
    padding-left: 25px;
  }
}
.problem__list li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .problem__list li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.problem__list li::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/ico-check.png) no-repeat center/contain;
  position: absolute;
  top: 4px;
  left: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .problem__list li::before {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 767px) {
  .problem__list li::before {
    width: 16px;
    height: 16px;
    top: 6px;
  }
}
.problem__txt {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(18px, 18px + 8 * (100vw - 767px) / 1153, 26px);
  color: #fff;
  margin-bottom: 5px;
}
.problem__endtxt {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 28px + 22 * (100vw - 767px) / 1153, 50px);
  color: #fff;
}
@media (max-width: 767px) {
  .problem__endtxt {
    white-space: nowrap;
  }
}
.problem__endtxt span {
  color: #F5F248;
}

.support {
  padding: 120px 0 100px;
  position: relative;
  background-color: #EFF3F5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .support {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .support {
    padding: 50px 0;
  }
}
.support::before {
  content: "";
  width: 100%;
  height: 75px;
  background-color: #31495e;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .support::before {
    height: 40px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .support::before {
    content: none;
  }
}
.support__subhead {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 16px + 10 * (100vw - 767px) / 1153, 26px);
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .support__subhead {
    font-size: 18px;
  }
}
.support__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(23px, 23px + 25 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .support__head {
    white-space: nowrap;
  }
}
.support__head span {
  background: -webkit-gradient(linear, left top, left bottom, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(180deg, #6BB4E7 0%, #1A76AC 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.support__list {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .support__list {
    margin-bottom: 5px;
  }
}
.support__list li {
  position: relative;
  padding-top: 30px;
}
.support__list li::before {
  content: "";
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .support__list li img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.service {
  padding: 100px 0 120px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .service {
    padding: 50px 0;
  }
}
.service__subhead {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 16px + 10 * (100vw - 767px) / 1153, 26px);
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .service__subhead {
    font-size: 18px;
  }
}
.service__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .service__head {
    margin-bottom: 45px;
  }
}
.service__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .service__head::after {
    bottom: -22px;
  }
}
.service__text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(15px, 15px + 1 * (100vw - 767px) / 1153, 16px);
  margin-bottom: 30px;
}
.service__img {
  max-width: 856px;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service__img {
    width: 84%;
  }
}
.service__end {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(16px, 16px + 6 * (100vw - 767px) / 1153, 22px);
}

.price {
  padding: 120px 0;
  background: url(../img/price-bg.jpg) no-repeat center/cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .price {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .price {
    padding: 50px 0;
    background: url(../img/price-bg-sp.jpg) no-repeat center/cover;
  }
}
.price__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 767px) {
  .price__head {
    margin-bottom: 40px;
  }
}
.price__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .price__head::after {
    bottom: -22px;
  }
}
.price__img {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .price__img {
    width: 84%;
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .price__img {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .price__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.price__text {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 12px + 3 * (100vw - 767px) / 1153, 15px);
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .price__text {
    margin-bottom: 30px;
    text-align: left;
  }
}

.flow {
  padding: 120px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .flow {
    padding: 50px 0;
  }
}
.flow__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 70px;
  position: relative;
}
.flow__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow__list {
  max-width: 856px;
  margin-inline: auto;
  padding: 50px 68px;
  border-radius: 30px;
  background-color: #F7F9FA;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list {
    width: 90%;
    padding: 40px 4.2%;
  }
}
@media (max-width: 767px) {
  .flow__list {
    padding: 20px 4.2%;
    border-radius: 10px;
  }
}
.flow__list-box {
  position: relative;
  padding: 40px 0;
  padding-left: 130px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list-box {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .flow__list-box {
    padding: 15px 0;
    padding-left: 75px;
  }
}
.flow__list-box::after {
  content: "";
  width: 118px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list-box::after {
    width: 82px;
  }
}
@media (max-width: 767px) {
  .flow__list-box::after {
    width: 60px;
    top: 0;
    left: 2px;
    -webkit-transform: none;
            transform: none;
  }
}
.flow__list-box::before {
  width: 1px;
  height: 100%;
  border-left: dashed 1px #c6c6c6;
  position: absolute;
  left: 59px;
  top: 35px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__list-box::before {
    left: 41px;
  }
}
@media (max-width: 767px) {
  .flow__list-box::before {
    left: 32px;
  }
}
.flow__list-box:not(:last-of-type)::before {
  content: "";
}
.flow__list-box:nth-of-type(1)::after {
  background: url(../img/ico-flow01.png) no-repeat center/contain;
}
.flow__list-box:nth-of-type(2)::after {
  background: url(../img/ico-flow02.png) no-repeat center/contain;
}
.flow__list-box:nth-of-type(3)::after {
  background: url(../img/ico-flow03.png) no-repeat center/contain;
}
.flow__list-box:nth-of-type(4)::after {
  background: url(../img/ico-flow04.png) no-repeat center/contain;
}
.flow__list-box:nth-of-type(5)::after {
  background: url(../img/ico-flow05.png) no-repeat center/contain;
}
.flow__list-box:nth-of-type(6)::after {
  background: url(../img/ico-flow06.png) no-repeat center/contain;
}
.flow__list dt {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4230769231em;
  letter-spacing: 0.02em;
  font-size: clamp(18px, 18px + 8 * (100vw - 767px) / 1153, 26px);
}
@media (max-width: 767px) {
  .flow__list dt {
    margin-bottom: 5px;
  }
}
.flow__list dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1875em;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 12px + 4 * (100vw - 767px) / 1153, 16px);
}
@media (max-width: 767px) {
  .flow__list dd {
    line-height: 1.7em;
  }
}

.voice {
  padding: 120px 0;
  background: url(../img/voice-bg.jpg) no-repeat center/cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .voice {
    padding: 50px 0 80px;
    background: url(../img/voice-bg-sp.jpg) no-repeat center/cover;
  }
}
.voice__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 75px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .voice__head {
    margin-bottom: 45px;
  }
}
.voice__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .voice__head::after {
    bottom: -22px;
  }
}
.voice__slide {
  visibility: visible;
}
.voice__slide-track {
  padding-top: 60px;
  overflow: visible;
}
.voice__slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__slide-list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .voice__slide-list {
    gap: 0;
  }
}
.voice__slide-item {
  width: calc((100% - 58px) / 3);
  padding: 135px 2.4% 30px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__slide-item {
    width: calc((100% - 20px) / 3);
    padding: 90px 1.5% 20px;
  }
}
@media (max-width: 767px) {
  .voice__slide-item {
    width: 100%;
    padding: 84px 4.2% 25px;
  }
}
.voice__slide-ico {
  max-width: 158px;
  width: 62%;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__slide-ico {
    width: 48%;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .voice__slide-ico {
    width: 42%;
    top: -60px;
  }
}
.voice__slide-head {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 14px + 8 * (100vw - 767px) / 1153, 22px);
  margin-bottom: 24px;
  min-height: 96px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .voice__slide-head {
    min-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .voice__slide-head {
    font-size: 18px;
    margin-bottom: 2px;
    min-height: auto;
  }
}
.voice__slide-head span {
  color: #4892CE;
}
.voice__slide-dtl {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.02em;
  font-size: clamp(10px, 10px + 2 * (100vw - 767px) / 1153, 12px);
  color: #afafaf;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .voice__slide-dtl {
    font-size: 12px;
  }
}
.voice__slide-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2857142857em;
  letter-spacing: 0.04em;
  font-size: clamp(10px, 10px + 4 * (100vw - 767px) / 1153, 14px);
  text-align: justify;
}
@media (max-width: 767px) {
  .voice__slide-txt {
    font-size: 14px;
    line-height: 1.7em;
  }
}
.voice__slide .splide__pagination {
  bottom: -30px;
}
.voice__slide .splide__pagination__page {
  height: 5px;
  width: 46px;
  border-radius: 0;
}
.voice__slide .splide__pagination__page.is-active {
  opacity: 1;
  background-color: #4892CE;
  -webkit-transform: none;
          transform: none;
}

.menta {
  padding: 120px 0;
  background: url(../img/menta-bg.jpg) no-repeat center/cover;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .menta {
    padding: 50px 0 80px;
    background: url(../img/menta-bg-sp.jpg) no-repeat center/cover;
  }
}
.menta__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 75px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta__head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .menta__head {
    margin-bottom: 45px;
  }
}
.menta__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .menta__head::after {
    bottom: -22px;
  }
}
.menta__slide {
  visibility: visible;
}
.menta__slide-track {
  padding-top: 60px;
  overflow: visible;
}
.menta__slide-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta__slide-list {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .menta__slide-list {
    gap: 0;
  }
}
.menta__slide-item {
  width: calc((100% - 58px) / 3);
  padding: 135px 2.4% 30px;
  background-color: #fff;
  border-radius: 20px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta__slide-item {
    width: calc((100% - 20px) / 3);
    padding: 90px 1.5% 20px;
  }
}
@media (max-width: 767px) {
  .menta__slide-item {
    width: 100%;
    padding: 84px 4.2% 25px;
  }
}
.menta__slide-ico {
  max-width: 158px;
  width: 62%;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta__slide-ico {
    width: 48%;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .menta__slide-ico {
    width: 42%;
    top: -60px;
  }
}
.menta__slide-head {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  font-size: clamp(14px, 14px + 8 * (100vw - 767px) / 1153, 22px);
  margin-bottom: 24px;
  min-height: 96px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .menta__slide-head {
    min-height: 64px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .menta__slide-head {
    font-size: 18px;
    margin-bottom: 2px;
    min-height: auto;
  }
}
.menta__slide-head span {
  color: #4892CE;
}
.menta__slide-dtl {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.02em;
  font-size: clamp(10px, 10px + 2 * (100vw - 767px) / 1153, 12px);
  color: #afafaf;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .menta__slide-dtl {
    font-size: 12px;
  }
}
.menta__slide-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2857142857em;
  letter-spacing: 0.04em;
  font-size: clamp(10px, 10px + 4 * (100vw - 767px) / 1153, 14px);
  text-align: justify;
}
@media (max-width: 767px) {
  .menta__slide-txt {
    font-size: 14px;
    line-height: 1.7em;
  }
}
.menta__slide .splide__pagination {
  bottom: -30px;
}
.menta__slide .splide__pagination__page {
  height: 5px;
  width: 46px;
  border-radius: 0;
}
.menta__slide .splide__pagination__page.is-active {
  opacity: 1;
  background-color: #4892CE;
  -webkit-transform: none;
          transform: none;
}

.faq {
  padding: 120px 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 50px 0;
  }
}
.faq__head {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.4583333333em;
  letter-spacing: 0.02em;
  font-size: clamp(31px, 31px + 17 * (100vw - 767px) / 1153, 48px);
  margin-bottom: 75px;
  position: relative;
}
@media (max-width: 767px) {
  .faq__head {
    margin-bottom: 44px;
  }
}
.faq__head::after {
  content: "";
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#6BB4E7), to(#1A76AC));
  background: linear-gradient(90deg, #6BB4E7 0%, #1A76AC 100%);
  position: absolute;
  left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .faq__head::after {
    bottom: -22px;
  }
}
.faq__list {
  max-width: 962px;
  width: 90%;
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .faq__list {
    width: 100%;
    margin-bottom: 30px;
  }
}
.faq__list-wrap:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .faq__list-wrap:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.faq__list dt {
  padding: 24px 20px 24px 70px;
  border-radius: 10px;
  background-color: #F7F9FA;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2727272727em;
  letter-spacing: normal;
  font-size: clamp(15px, 15px + 7 * (100vw - 767px) / 1153, 22px);
  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) and (max-width: 1024px) {
  .faq__list dt {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .faq__list dt {
    font-size: 16px;
    padding: 16px 20px 16px 42px;
    border-radius: 6px;
  }
}
.faq__list dt::before {
  content: "Q";
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(15px, 15px + 7 * (100vw - 767px) / 1153, 22px);
  color: #1A4FAC;
  position: absolute;
  top: 50%;
  left: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq__list dt::before {
    left: 25px;
  }
}
@media (max-width: 767px) {
  .faq__list dt::before {
    font-size: 18px;
    left: 20px;
  }
}
.faq__list dt span {
  position: relative;
}
.faq__list dt span::before {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #505050;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq__list dt span::after {
  content: "";
  width: 2px;
  height: 14px;
  background-color: #505050;
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq__list dt.active span::after {
  background-color: transparent;
}
.faq__list dd {
  padding-inline: 70px;
  position: relative;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2222222222em;
  letter-spacing: 0.04em;
  font-size: clamp(13px, 13px + 5 * (100vw - 767px) / 1153, 18px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq__list dd {
    padding-inline: 50px;
  }
}
@media (max-width: 767px) {
  .faq__list dd {
    font-size: 14px;
    padding: 0 0 0 45px;
  }
}
.faq__list dd::before {
  content: "A";
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  letter-spacing: normal;
  font-size: clamp(15px, 15px + 7 * (100vw - 767px) / 1153, 22px);
  color: #FB711C;
  position: absolute;
  top: 0;
  left: 38px;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  opacity: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .faq__list dd::before {
    left: 26px;
  }
}
@media (max-width: 767px) {
  .faq__list dd::before {
    font-size: 18px;
    left: 20px;
  }
}
.faq__list dd.open {
  max-height: 1000px;
  visibility: visible;
  padding-block: 15px;
}
.faq__list dd.open::before {
  top: 25px;
  opacity: 1;
}
@media (max-width: 767px) {
  .faq__list dd.open::before {
    top: 22px;
  }
}

/*============================
layout footer
============================*/