.sec * {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-decoration: none;
  letter-spacing: normal;
}

.sec a:visited {
  color: #fff;
}

.txt-blue {
  color: #2864f0;
}

.txt-bold {
  font-weight: 700;
}

.txt-border {
  position: relative;
  z-index: 1;
}

.txt-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #fff0d2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 2px;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .txt-border::after {
    height: 7px;
  }
}

.fw-m {
  font-weight: 600;
}

.flex-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

.small_txt {
  display: block;
  font-size: 1rem;
  line-height: 2.6;
  letter-spacing: 0.1em;
  text-align: end;
  color: #1e1e1e;
  padding-right: 11px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .small_txt {
    margin-top: 2px;
    letter-spacing: 0.04em;
    text-align: center;
    padding-left: 12px;
  }
}

.light-icon {
  position: relative;
}

.light-icon::before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 39px;
  background-image: url(../img/light-bulb.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 43%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -15px;
}

@media screen and (max-width: 767px) {
  .light-icon::before {
    width: 20px;
    height: 30.5px;
    left: 2px;
  }
}

/* ttl
============================================================================================================ */
.main_ttl {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.ttl {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
  color: #1e1e1e;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.ttl .txt_l {
  font-size: 2.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .ttl .txt_l {
    font-size: 2.45rem;
  }
}

@media screen and (max-width: 767px) {
  .ttl {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
  }
}

.ttl-batch {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
  display: inline-block;
  width: 78px;
  height: 22px;
  background-image: url(../img/ttl-batch.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 9px;
  padding-top: 1px;
  position: absolute;
  left: 36px;
  top: 7px;
}

/* cta_btn
============================================================================================================ */
.cta_btn {
  display: block;
  width: 265px;
  height: 54px;
  padding: 19px 10px 20px 0;
  margin: 0 auto;
  border-radius: 26.5px;
  -webkit-box-shadow: 0px 4px 8.5px 0.5px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 4px 8.5px 0.5px rgba(0, 0, 0, 0.26);
  background-color: #00b9b9;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 24px;
  position: relative;
}

.cta_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/arrow.png);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 21px;
}

.sec .cta_btn {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

@media screen and (max-width: 767px) {
  .sec .cta_btn {
    width: 335.5px;
    height: 75px;
    border-radius: 37.5px;
    font-size: 1.7rem;
    padding-top: 23.5px;
  }

  .sec .cta_btn::after {
    width: 10.5px;
    height: 18px;
    right: 23px;
    background-image: url(../img/sp-arrow.png);
  }
}

/* card
============================================================================================================ */
.card-area {
  margin-top: 57px;
  padding-left: 11px;
}

@media screen and (max-width: 767px) {
  .card-area {
    padding-right: 8px;
    margin-top: 21px;
  }
}

.card-item {
  text-align: center;
  width: 269px;
  height: 455px;
  padding-top: 11px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/step-bg.png);
  position: relative;
}

.card-item:nth-of-type(n+2)::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/step-arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 36px;
  top: 59%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -32px;
}

@media screen and (max-width: 767px) {
  .card-item:nth-of-type(n+2)::before {
    left: 50%;
    width: 23.5px;
    height: 42.5px;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
    top: -47px;
  }
}

.card-item:nth-of-type(2) {
  margin-left: 41px;
}

@media screen and (max-width: 767px) {
  .card-item:nth-of-type(2) {
    margin: 0 auto 53px;
  }
}

.card-item:nth-of-type(3) {
  margin-left: 39px;
}

@media screen and (max-width: 767px) {
  .card-item:nth-of-type(3) {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .card-item {
    width: 321px;
    height: 340px;
    margin: 0 auto;
    margin-bottom: 52px;
    padding-top: 8px;
    background-image: url(../img/sp-step-bg.png);
  }
}

.card-no {
  font-size: 3.4rem;
  line-height: 0.62;
  font-weight: 300;
}

.card-no span {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 3px;
}

@media screen and (max-width: 767px) {
  .card-no {
    font-size: 3.3rem;
  }
}

.card-ttl {
  font-size: 2rem;
  font-weight: 700;
  padding-right: 13px;
  margin-bottom: 23px;
  margin-top: 0.5em;
  line-height: 1;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  .card-ttl {
    font-size: 1.7rem;
    line-height: 2.04;
    padding-right: 0;
    margin-bottom: 6px;
  }
}

.card-img-wrap {
  padding-right: 5px;
}

@media screen and (max-width: 767px) {
  .card-img-wrap {
    padding-left: 12px;
  }

  .card-img-wrap img {
    margin: 0 auto;
  }
}

.card-em {
  margin-top: 33px;
  padding-right: 13px;
}

.card-em em {
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(24 / 20);
  letter-spacing: 0.075em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .card-em {
    margin-top: 14px;
    padding-right: 0;
  }

  .card-em em {
    font-size: 1.7rem;
    line-height: 0.71;
  }
}

.card-txt {
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  color: #1e1e1e;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .card-txt {
    font-size: 1.4rem;
    margin-top: 8px;
  }

  .card-txt .card-sup sup {
    position: absolute;
    top: 2px;
    left: -2px;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    letter-spacing: -0.3em;
  }
}

.card-item:nth-of-type(2) .card-ttl {
  margin-top: 3px;
  padding-right: 7px;
  margin-bottom: 47px;
}

.card-item:nth-of-type(2) .card-em {
  margin-top: 60px;
  padding-right: 0px;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .card-item:nth-of-type(2) .card-ttl {
    margin-bottom: 0px;
  }

  .card-item:nth-of-type(2) .card-img-wrap {
    padding-left: 0;
    margin-top: -2px;
  }

  .card-item:nth-of-type(2) .card-em {
    margin-top: 6px;
    padding-left: 0;
  }
}

.card-item:nth-of-type(3) .card-ttl {
  margin-top: 8px;
  padding-right: 1px;
  margin-bottom: 23px;
}

.card-item:nth-of-type(3) .card-em {
  margin-top: 43px;
  padding-right: 6px;
}

.card-item:nth-of-type(3) .card-txt {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .card-item:nth-of-type(3) .card-ttl {
    margin-top: -2px;
    margin-bottom: 9px;
  }

  .card-item:nth-of-type(3) .card-img-wrap {
    padding-left: 0;
  }

  .card-item:nth-of-type(3) .card-em {
    margin-top: 13px;
  }

  .card-item:nth-of-type(3) .card-txt {
    margin-top: 10px;
  }
}

/* fv
============================================================================================================ */

/* 共通設定 */
.fv {
  position: relative;
  padding: 90px 0;
  background: #ebf3ff;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .fv {
    padding: min(calc(90 / 750 * 100vw), 90px) 0 min(calc(16 / 750 * 100vw), 16px);
  }
}

.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56%;
  background-color: #ebf3ff;
  z-index: -1;
  display: none;
}

.fv::after {
  content: "";
  position: absolute;
  top: 56%;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 767 / 61;
  background: url("../img/fv_curve_sp.png") no-repeat center top;
  background-size: cover;
  z-index: -1;
  display: none;
}

@media screen and (max-width: 767px) {
  .fv {
    background: none;
  }

  .fv::before,
  .fv::after {
    display: block;
  }
}

.fv .arrow {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  font-size: 1.7rem;
}

.fv .arrow::before {
  content: "＞";
  color: #2864f0;
  position: absolute;
  left: -1.3em;
}

@media screen and (max-width: 767px) {
  .fv .arrow {
    position: unset;
    transform: none;
    padding-top: min(calc(30 / 750 * 100vw), 30px);
  }

  .fv .arrow::before {
    content: "＞";
    position: unset;
    left: unset;
  }
}

.fv .flex {
  justify-content: center;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .fv .flex {
    align-items: center;
  }
}

.fv .flex.star {
  flex-direction: column;
  align-items: center;
}

.fv .flex.star .star_icon {
  font-size: 0;
}

.fv .flex.star .star_icon img {
  width: 100%;
  max-width: 51px;
}

@media screen and (max-width: 767px) {
  .fv .flex.star .star_icon img {
    max-width: min(calc(77 / 750 * 100vw), 77px);
  }
}

.fv h1 .text1::before,
.fv h1 .text1::after {
  content: "";
  display: block;
  width: 20px;
  height: 25px;
  background: url("../img/fv_line_pc.png") no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .fv h1 .text1::before,
  .fv h1 .text1::after {
    width: min(calc(29 / 750 * 100vw), 29px);
    height: min(calc(37 / 750 * 100vw), 37px);
    background: url("../img/fv_line_sp.png") no-repeat center / contain;
  }
}

.fv h1 .text1::before {
  left: -30px;
}

@media screen and (max-width: 767px) {
  .fv h1 .text1::before {
    left: min(calc(30 / 750 * 100vw), -30px);
  }
}

.fv h1 .text1::after {
  right: -30px;
  transform: translateY(-50%) scaleX(-1);
}

@media screen and (max-width: 767px) {
  .fv h1 .text1::after {
    right: min(calc(30 / 750 * 100vw), -30px);
  }
}

.svg-curve {
  width: 100vw;
  height: 400px;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}

.svg-curve svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleY(-1);
}

.fv .texts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 54px;
}

@media screen and (max-width: 767px) {
  .fv .texts {
    gap: min(calc(20 / 750 * 100vw), 20px);
    padding-top: min(calc(54 / 750 * 100vw), 54px);
  }
}

.fv h1 .text1 {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  color: #fa6414;
}

@media screen and (max-width: 767px) {
  .fv h1 .text1 {
    font-size: clamp(12px, calc(36 / 750 * 100vw), 36px);
  }
}

.fv h1 .text2 {
  display: block;
  font-size: 38px;
  line-height: calc(55 / 40);
  color: #2864f0;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .fv h1 .text2 {
    font-size: clamp(12px, calc(58 / 750 * 100vw), 58px);
  }
}

.fv .texts .flex_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fv .texts .flex_wrap .img-wrap img {
  width: 100%;
  max-width: 439px;
}

@media screen and (max-width: 767px) {
  .fv .texts .flex_wrap .img-wrap img {
    width: 100%;
    max-width: min(calc(658 / 750 * 100vw), 658px);
  }
}

.fv .merits img {
  width: 100%;
  max-width: 153px;
}

@media screen and (max-width: 767px) {
  .fv .merits img {
    max-width: min(calc(230 / 750 * 100vw), 230px);
  }
}

.fv .btn_wrap {
  width: 100%;
}

.fv h1 .text2 .highlight-box {
  color: #fff;
  background-color: #2864f0;
  padding: 0 10px;
  margin-right: 4px;
}

.fv h1 .text2.op0 {
  opacity: 0;
}

.fv h1 .text2 .js-query-output {}

.fv .merits {
  display: flex;
  justify-content: center;
}

.fv .merits li+li {
  margin-left: 20px;
}

.fv .merits li img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .fv .left_container {
    width: 600px;
  }

  .fv .right_container {
    width: 453px;
    margin-left: 40px;
  }

  .fv .pc-mp4-back {
    overflow: hidden;
  }

  .fv video {
    width: 490px;
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {

  .fv .merits li+li {
    margin-left: 11px;
  }

  .fv .pc-mp4-back {
    width: 90%;
    margin-bottom: 20px;
    border-top-right-radius: 7vw;
    border-top-left-radius: 7vw;
    overflow: hidden;
    background: #fff;
  }

  .fv .pc-mp4-back video {
    width: 98%;
    margin: 0 auto;
  }
}

/* tab
============================================================================================================ */
.tab-pc {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.tab-sp {
  display: none;
}

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

.tab-area {
  margin: 0 auto;
  width: 1001px;
  margin-top: 66px;
}

@media screen and (max-width: 767px) {
  .tab-area {
    margin-top: 36px;
    width: 344px;
  }
}

.tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.tab-menu li {
  bottom: 0;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  border: solid 2px #2864f0;
  border-bottom: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  cursor: pointer !important;
}

.tab-menu li .txt-l {
  font-size: 1.8rem;
}

.tab-menu li .tab-click {
  position: absolute;
  top: -31px;
  display: block;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
}

.tab-menu li .tab-click span {
  font-size: 2rem;
  letter-spacing: 0.07em;
}

.tab-menu li.active {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  background-color: #2864f0;
}

.tab-menu li.active .tab-click {
  display: none;
}

.tab-menu li.active .tab-tap {
  display: none;
}

.tab-menu li.active .txt-l {
  font-size: 2.6rem;
}

.tab-menu li:nth-of-type(1) {
  width: 168px;
  height: 41px;
  padding-top: 9px;
  left: 167px;
  margin-right: 555px;
  margin-top: 16px;
}

.tab-menu li:nth-of-type(1).active {
  width: 229px;
  height: 57px;
  margin-top: 0;
  margin-left: -30px;
  padding-top: 14px;
  margin-right: 447px;
}

.tab-menu li:nth-of-type(2) {
  width: 208px;
  height: 41px;
  padding-top: 10px;
  margin-top: 16px;
}

.tab-menu li:nth-of-type(2).active {
  width: 278px;
  height: 57px;
  right: 112px;
  padding-top: 17px;
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .tab-menu li {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 1.4rem;
    line-height: 0.61;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    margin-bottom: -2px;
  }

  .tab-menu li .txt-l {
    font-size: 1.5rem;
  }

  .tab-menu li .tab-tap {
    position: absolute;
    top: -17px;
    display: block;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 0.61;
    letter-spacing: 0.06em;
    text-align: center;
    color: #2864f0;
  }

  .tab-menu li .tab-tap span {
    font-size: 1.55rem;
  }

  .tab-menu li.active {
    font-size: 1.7rem;
  }

  .tab-menu li.active .txt-l {
    font-size: 1.8rem;
  }

  .tab-menu li:nth-of-type(1) {
    width: 130px;
    height: 40px;
    margin-left: -160px;
    margin-right: 0;
    margin-top: 6px;
    padding-top: 13px;
  }

  .tab-menu li:nth-of-type(1).active {
    width: 157.5px;
    height: 44px;
    margin-right: 173px;
    margin-left: -156px;
  }

  .tab-menu li:nth-of-type(2) {
    margin-right: 0;
    margin-top: 6px;
    width: 158.5px;
    height: 40px;
    padding-top: 13px;
  }

  .tab-menu li:nth-of-type(2).active {
    width: 195px;
    height: 44px;
    margin-left: 100px;
    right: -70px;
  }
}

.tab-item {
  border-radius: 10px;
  background-color: #fff;
  border: solid 2px #2864f0;
  display: none;
  background-size: 1000px 332px;
  background-position: left 0 top 50%;
  background-repeat: no-repeat;
  position: relative;
}

.tab-item::after,
.tab-item::before {
  content: "";
  display: block;
  position: absolute;
  border: none;
  width: 20px;
  height: 4px;
  background: #fff;
}

.tab-item::before {
  top: -3.2px;
  left: 21px;
}

.tab-item::after {
  bottom: -3.2px;
  right: 19px;
}

.tab-item.active {
  display: block;
}

.tab-item:nth-of-type(1) {
  background-image: url(../img/tab-arrow-bg2.png);
  padding-bottom: 55px;
}

.tab-item:nth-of-type(2) {
  background-image: url(../img/tab-arrow-bg.png);
}

@media screen and (max-width: 767px) {
  .tab-item {
    background-size: 344px 506px;
  }

  .tab-item::before,
  .tab-item::after {
    width: 4px;
    height: 11px;
  }

  .tab-item::before {
    left: -3.02px;
    top: 22px;
  }

  .tab-item::after {
    right: -3.2px;
    bottom: 22px;
  }

  .tab-item:nth-of-type(1) {
    background-image: url(../img/sp-tab-arrow-bg2.png);
    padding-bottom: 36px;
  }

  .tab-item:nth-of-type(2) {
    background-image: url(../img/sp-tab-arrow-bg.png);
    padding-bottom: 47px;
  }
}

.tab-item-inner {
  height: 332px;
  width: 100%;
  max-width: 482px;
}

.tab-text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0.06em;
  text-align: center;
  color: #1e1e1e;
  padding-top: 41px;
  padding-left: 10px;
  margin-bottom: 23px;
}

.sec3 .tab-text .txt-blue {
  padding-left: 0;
}

.border-btn {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  width: 133px;
  height: 35px;
  border-radius: 17.1px;
  border: solid 2px #aac8ff;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
}

.border-btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 28px;
  height: 24px;
  background-image: url(../img/tab-arrow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -39px;
}

.blue-btn {
  display: block;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  width: 133px;
  height: 35px;
  border-radius: 17.1px;
  border: solid 2px #2864f0;
  background-color: #2864f0;
  margin: 0 auto;
  margin-top: 50px;
}

.tab-em {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  padding-left: 10px;
  margin-top: 19px;
}

.tab-em span {
  font-size: 2.2rem;
}

.tab-small {
  font-size: 1.2rem;
  line-height: 2.08;
  letter-spacing: 0.1em;
  text-align: center;
  color: #1e1e1e;
  padding-left: 10px;
  margin-top: 5px;
}

.tab-item-inner2 {
  margin-left: 80px;
}

.tab-item-inner2 .img-wrap {
  margin-top: 15px;
}

.tab-item-inner2 .tab-em {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  margin-top: 11px;
}

.tab-item-inner2 .tab-em span {
  font-weight: 600;
}

.tab-item-inner2 .tab-em .txt-l {
  font-size: 2.4rem;
  font-weight: 500;
}

.tab-item-inner2 .tab-em.txt-border::after {
  width: 283px;
}

.tab2-txt {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .tab-text {
    font-size: 1.4rem;
    line-height: 0.61;
    margin-bottom: 29px;
    padding-left: 0;
  }

  .tab-item-inner {
    height: 100%;
  }

  .tab-item-inner .border-btn {
    display: inline-block;
    width: 110px;
    height: 29px;
    border-radius: 14.15px;
    line-height: 25px;
    font-size: 1.4rem;
    margin-right: 37px;
  }

  .tab-item-inner .border-btn::before {
    width: 23px;
    height: 20.5px;
    -webkit-transform: translate(0, -50%) rotate(-90deg);
    transform: translate(0, -50%) rotate(-90deg);
    top: 50%;
    left: 116px;
  }

  .tab-item-inner .blue-btn {
    display: inline-block;
    margin-top: 0;
    width: 110px;
    height: 29px;
    border: solid 2px #2864f0;
    background-color: #2864f0;
    border-radius: 14.15px;
    line-height: 25px;
    font-size: 1.4rem;
  }

  .tab-item-inner .tab-em {
    font-size: 1.7rem;
    line-height: 0.59;
    font-weight: 700;
    margin-top: 26px;
    padding-left: 0;
  }

  .tab-item-inner .tab-em span {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 0.59;
  }

  .tab-item-inner .tab-small {
    line-height: 0.74;
    font-size: 1.15rem;
    padding-left: 0;
    margin-top: 18px;
  }

  .tab-item-inner2 {
    margin-left: 0;
    margin-top: 58px;
  }

  .tab-item-inner2 .tab2-txt {
    font-size: 1.4rem;
    line-height: 1.61;
  }

  .tab-item-inner2 .tab-em {
    font-size: 1.7rem;
    line-height: 0.59;
    font-weight: 700;
    margin-top: 20px;
  }

  .tab-item-inner2 .tab-em.txt-border::after {
    width: 250px;
    left: 51%;
    bottom: -5px;
  }
}

.tab-item:nth-of-type(1) .img-wrap {
  margin-left: 130px;
  margin-top: 60px;
  margin-right: 131px;
}

.tab-item:nth-of-type(1) p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-align: center;
  color: #1e1e1e;
  margin-top: 66px;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.tab-item:nth-of-type(1) p .txt-bold {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .tab-item:nth-of-type(1) p {
    font-size: 1.7rem;
    line-height: 1.25;
    margin-top: 30px;
  }

  .tab-item:nth-of-type(1) .img-wrap {
    margin: 0;
    margin-top: 42px;
  }
}

.text-area-list {
  margin-top: 26px;
  margin-left: 57px;
}

.text-area-list li {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0.06em;
  color: #2864f0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .text-area-list {
    margin-top: 39.5px;
    margin-left: 0;
    padding-left: 13px;
    padding-right: 10px;
  }

  .text-area-list li {
    font-size: 1.4rem;
    line-height: 1.54;
  }
}

/* sec1 */
.sec {
  width: 100%;
}

.sec1 {
  max-width: 905px;
  margin: 0 auto;
  margin-top: 100px;
}

.sec1 .cta_btn {
  margin-top: 24px;
}

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

  .sec1 .cta_btn {
    margin-top: 34px;
  }
}

.sec3 {
  padding-top: 225px;
}

.sec3 .ttl {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.33;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  padding-left: 20px;
}

.sec3 .ttl span {
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.sec3 .txt-blue {
  letter-spacing: -0.08em;
}

.sec3 .txt-blue span {
  letter-spacing: normal;
}

.sec3 .cta_btn {
  margin-top: 56px;
}

@media screen and (max-width: 767px) {
  .sec3 {
    padding-top: 75px;
  }

  .sec3 .ttl {
    padding-left: 34px;
  }

  .sec3 .txt-blue {
    letter-spacing: 0;
    padding-left: 0;
  }

  .sec3 .txt-blue span {
    letter-spacing: -0.04em;
  }

  .sec3 .cta_btn {
    margin-top: 41px;
  }
}

@media screen and (max-width: 767px) {
  .sec1 .img-res {
    width: 119px;
    height: 133px;
  }
}

/* 230614_add
============================================================================================================ */
.flex {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.form_fv {
  padding: 98px 0 106px;
  width: 453px;
  min-height: 723px;
  background-color: rgba(255, 255, 255, 0.93);
  border-radius: 43px;
}

.form_fv .logo {
  margin-top: 40px;
  margin-bottom: 68px;
}

.form_fv .logo img {
  width: 200px;
  height: auto;
}

.form_fv .lp_signup_personal_form_container_root form {
  margin: 0 auto;
  width: 80%;
}

.form_fv .lp_signup_personal_form_container_root label span {
  text-align-last: left;
}

.form_fv .lp_signup_personal_form_container_root label label {
  margin-bottom: 20px !important;
}

.form_fv .lp_signup_personal_form_container_root button {
  margin: 60px auto 44px;
}

.main_form {
  margin-top: 0;
}

.form_fv .other-links {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.form_fv .other-links li {
  font-size: 1.3rem;
  white-space: nowrap;
  letter-spacing: 0;
}

.flex .right_container {
  backface-visibility: red;
}

@media screen and (min-width: 768px) {
  .flex .left_container {
    position: relative;
    z-index: 2;
  }

  .flex .right_container {
    padding-bottom: 9px;
    position: relative;
    z-index: 4;
  }
}


/* 230913_add
============================================================================================================ */

.inner {
  margin: 0 auto;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .sec_merit {
    margin: 64px 0;
  }

  .merit_item .item {
    margin: 0 1vw;
    width: 30.3vw;
  }
}

/* sec_qa
============================================================================================================ */
.sec_qa {
  padding-top: 150px;
  margin-bottom: 60px;
  position: relative;
}

.sec_qa .point_title {
  display: table !important;
  margin: 0 auto 60px;
}

.sec_qa .contents>* {
  border-top: 1px solid #eaeaea;
  text-align: left;
}

.sec_qa .contents section {
  border-bottom: 1px solid #eaeaea;
  transition: background .2s ease-in-out;
}

.sec_qa .contents section.open {
  background-color: #ebf3ff;
}

.sec_qa .contents section h3 {
  position: relative;
  display: flex;
  align-items: center;
  height: 170px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: normal;
  cursor: pointer;
}

.sec_qa .contents section h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 2px solid #AEC3E6;
  border-right: 2px solid #AEC3E6;
  transform: rotate(45deg);
  transition: transform .3s;
}

.sec_qa .contents section.open h3::after {
  transform: translateY(5px) rotate(225deg);
}

.sec_qa .contents section h3>* {
  position: relative;
  padding-left: 50px;
  padding-right: 40px;
}

.sec_qa .contents section h3>*::before {
  content: "Q";
  color: #fff;
  background-color: #2864f0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  left: 0;
  transform: translateY(-50%);
}

.sec_qa .contents section .a {
  overflow: hidden;
  height: 0;
  transition: height .3s;
  background-color: #ebf3ff;
}

.sec_qa .contents section .a>* {
  position: relative;
  padding-left: 50px;
  padding-bottom: 50px;
  font-size: 2rem;
  line-height: 2;
}

.sec_qa .contents section .a>*::before {
  content: "A";
  font-weight: bold;
  color: #2864f0;
  background-color: #dce8ff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.sec_qa .contents section .a ul {
  display: flex;
  flex-wrap: wrap;
  margin: 8px 0;
}

.sec_qa .contents section .a ul li {
  margin: 8px 8px 8px 0;
  background-color: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  padding: 5px 20px;
  font-size: 2rem;
  letter-spacing: 0;
}

@media screen and (min-width: 768px),
print {
  .sec_qa .ttl {
    font-size: 3.8rem;
  }

  .sec_qa .contents {
    max-width: 1030px;
    margin: auto;
    padding: 30px 20px 0;
  }

  .sec_qa .contents section h3,
  .sec_qa .contents section .a {
    padding-left: 32px;
    padding-right: 50px;
  }

  .sec_qa .contents section h3 {
    transition: background .2s ease-in-out;
  }

  .sec_qa .contents section h3:hover {
    background-color: #ebf3ff;
  }
}

@media screen and (max-width: 767px) {
  .sec_qa {
    padding-top: 75px;
    margin-bottom: 45px;
  }

  .sec_qa .point_title {
    margin-bottom: 40px;
  }

  .sec_qa .contents {
    margin-top: 20px;
  }

  .sec_qa .contents section h3 {
    height: 120px;
    padding: 0 7.5vw;
    font-size: 1.4rem;
  }

  .sec_qa .contents section h3::after {
    right: 7.5vw;
    top: 48%;
  }

  .sec_qa .contents section h3>* {
    padding-right: 20px;
  }

  .sec_qa .contents section h3>*::before {
    width: 30px;
    height: 30px;
    top: 10px;
    font-size: 1.5rem;
  }

  .sec_qa .contents section .a {
    padding: 0 5vw 0 7.5vw;
  }

  .sec_qa .contents section .a>* {
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .sec_qa .contents section .a>*::before {
    width: 30px;
    height: 30px;
    top: 1px;
    font-size: 1.5rem;
  }

  .sec_qa .contents section .a ul {
    margin: 4px 0;
  }

  .sec_qa .contents section .a ul li {
    margin: 4px 4px 4px 0;
    padding: 12px 25px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* sec_sv
============================================================================================================ */

.sec_sv .ttl {
  margin: 100px auto 30px;
}

.sec_sv ul {
  margin: 10px auto 40px;
  padding-left: 40px;
  width: 720px;
}

@media screen and (max-width: 767px) {
  .sec_sv .ttl {
    margin-top: min(calc(60 / 750 * 100vw), 60px);
  }

  .sec_sv ul {
    width: 90%;
    padding: 10px 4px 0 8px;
    line-height: normal;
    text-align: left;
  }

  .sec_sv li {
    margin-bottom: 3px;
  }
}

/* .nayami (add 2024.05)
============================================================================================================ */

.sec.nayami {
  width: 756px;
  margin: 100px auto 0;
  padding: 40px 0 0;
  border: solid 2px #2864f0;
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.sec.nayami .texts {
  margin-top: 35px;
  padding: 0 0 40px 310px;
  text-align: left;
  background: url("../img/nayami_fig_01.svg") no-repeat 50px 0 / 164px auto;
}

.sec.nayami .copy {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.sec.nayami ul {
  margin-top: 20px;
}

.sec.nayami ul li {
  padding-left: 29px;
  font-size: 2rem;
  line-height: calc(34 / 20);
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #6e6b6b;
  background: url("../img/check_01.png") no-repeat 0 8px / 23px auto;
}

.sec.nayami .mask {
  background: #fff;
  position: absolute;
  z-index: 4;
}

@media screen and (min-width: 768px) {
  .sec.nayami .mask.m1 {
    width: 15px;
    height: 2px;
    left: 15px;
    top: -2px;
  }

  .sec.nayami .mask.m2 {
    width: 15px;
    height: 2px;
    right: 15px;
    bottom: -2px;
  }
}

@media screen and (max-width: 767px) {
  .sec.nayami {
    width: calc(686 / 750 * 100%);
    max-width: 343px;
    margin: 35px auto 0;
    padding: 25px 0 0;
    border-radius: 9px;
  }

  .sec.nayami .texts {
    margin-top: 25px;
    padding: 0 5px 25px 138px;
    background-size: 98px auto;
    background-position: 17px 14px;
  }

  .sec.nayami .copy {
    font-size: 1.4rem;
  }

  .sec.nayami ul {
    margin-top: 10px;
  }

  .sec.nayami ul li {
    padding-left: 17px;
    font-size: 1.2rem;
    line-height: 1.3;
    background-size: 12.5px auto;
    background-position: 0 3px;
  }

  .sec.nayami ul li+li {
    margin-top: 0.3em;
  }

  .sec.nayami .mask.m1 {
    width: 8px;
    height: 2px;
    right: 9px;
    top: -2px;
  }

  .sec.nayami .mask.m2 {
    width: 8px;
    height: 2px;
    right: 59px;
    bottom: -2px;
  }

  .sec.nayami .mask.m3 {
    width: 2px;
    height: 8px;
    left: -2px;
    bottom: 44px;
  }
}

/* .benri (add 2024.05) > .text-wrap
============================================================================================================ */

.sec.benri {
  margin-top: 100px;
}

.sec.benri .text-wrap {
  width: 894px;
  margin: 65px auto 0;
  padding-left: 304px;
  background: url(../img/benri_fig_01.png) no-repeat 14px 0 / 245px auto;
}

.sec.benri .shadow-box {
  width: 590px;
  height: 151px;
  padding-top: 32px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  display: inline-block;
}

.sec.benri .shadow-box .text1 {
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 500;
}

.sec.benri .shadow-box .text2 {
  margin-top: 1em;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: calc(28 / 20);
  font-weight: 500;
  color: #6e6b6b;
}

.sec.benri .text-wrap .text3 {
  padding-top: 58px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  font-weight: 700;
  position: relative;
}

.sec.benri .text-wrap .text3::before {
  width: 0;
  height: 0;
  content: "";
  display: block;
  border-width: 24px 22px 0 022px;
  border-color: #93b1f7 transparent transparent transparent;
  border-style: solid;
  position: absolute;
  left: 50%;
  top: 19px;
  transform: translateX(-50%);
}

.sec.benri .text-wrap .text3 .border {
  position: relative;
  display: inline-block;
  letter-spacing: 0.1em;
}

.sec.benri .text-wrap .text3 .border .on {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 4;
}

.sec.benri .text-wrap .text3 .border::after {
  width: 100%;
  height: 8px;
  background: #fff0d2;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 2;
}

.sec.benri .text-wrap .text3 .kome {
  font-size: 1.1rem;
  vertical-align: 1em;
}

.sec.benri .text-wrap .note {
  margin-top: 1.5em;
  font-size: 1.2rem;
  color: #6e6b6b;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .sec.benri {
    margin-top: 40px;
  }

  .sec.benri .text-wrap {
    width: calc(690 / 750 * 100%);
    margin: 20px auto 0;
    padding: 140px 0 0;
    background-size: 122px auto;
    background-position: center top;
  }

  .sec.benri .shadow-box {
    width: 100%;
    max-width: 345px;
    margin: 0 auto;
    height: auto;
    padding: 25px 10px 20px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: block;
  }

  .sec.benri .shadow-box .text1 {
    font-size: 1.7rem;
  }

  .sec.benri .shadow-box .text2 {
    font-size: 1.5rem;
  }

  .sec.benri .text-wrap .text3 {
    font-size: 2rem;
    line-height: calc(55 / 41);
  }

  .sec.benri .text-wrap .text3 .border::after {
    bottom: 0;
  }

  .sec.benri .text-wrap .text3 .kome {
    font-size: 1.1rem;
    vertical-align: 1em;
  }

  .sec.benri .text-wrap .note {
    margin-top: 0.9em;
    font-size: 1rem;
  }
}

/* .benri (add 2024.05) > .points
============================================================================================================ */

.sec.benri .points li {
  position: relative;
}

.sec.benri .points li .label {
  width: 103px;
  height: 42px;
  border: solid 3px #2864f0;
  border-radius: 21px;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.sec.benri .points li .pic {
  height: 198px;
  margin-top: 16px;
}

.sec.benri .points li:nth-child(1) .pic {
  background: url("../img/benri_fig_02.svg") no-repeat center 21px / 156px auto;
}

.sec.benri .points li:nth-child(2) .pic {
  background: url("../img/benri_fig_03.svg") no-repeat center top / 197px auto;
}

.sec.benri .points li:nth-child(3) .pic {
  background: url("../img/benri_fig_04.svg") no-repeat center 22px / 211px auto;
}

.sec.benri .points li .desc {
  margin-top: 1.1em;
  font-size: 2rem;
  line-height: calc(25 / 20);
  letter-spacing: 0.06em;
  font-weight: 500;
}

.sec.benri .points li .note {
  margin-top: 0.7em;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #6e6b6b;
}

.sec.benri .cta-buttons a.box_btn {
  white-space: nowrap;
}

.sec.benri .cta-buttons li:last-child a.box_btn {
  background: #fbc464;
}

@media screen and (min-width: 768px) {
  .sec.benri .points {
    width: 1060px;
    margin: 90px auto 0;
    display: flex;
    justify-content: center;
  }

  .sec.benri .points li {
    min-width: 350px;
  }

  .sec.benri .points li:nth-child(2)::before,
  .sec.benri .points li:nth-child(2)::after {
    content: "";
    display: block;
    width: 0;
    height: 223px;
    border-left: dashed 2px #aaa7a7;
    position: absolute;
    top: 70px;
  }

  .sec.benri .points li:nth-child(2)::before {
    left: 0;
  }

  .sec.benri .points li:nth-child(2)::after {
    right: 0;
  }

  .sec.benri .cta-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 0 45px;
  }

  .sec.benri .cta-buttons li:last-child a.box_btn:hover {
    background: #fcd38b !important;
  }
}

@media screen and (max-width: 767px) {
  .sec.benri .points {
    width: calc(690 / 750 * 100%);
    max-width: 345px;
    margin: 0 auto;
  }

  .sec.benri .points li {
    padding: 35px 0;
  }

  .sec.benri .points li+li {
    border-top: dashed 2px #aaa7a7;
  }

  .sec.benri .points li .label {
    width: 118px;
    height: 36px;
    border-radius: 18px;
    font-size: 2rem;
    border-width: 2px;
  }

  .sec.benri .points li .pic {
    margin-top: 0;
  }

  .sec.benri .points li:nth-child(1) .pic {
    height: 154px;
    background-position: center center;
    background-size: 111px auto;
  }

  .sec.benri .points li:nth-child(2) .pic {
    height: 159px;
    background-position: center center;
    background-size: 119px auto;
  }

  .sec.benri .points li:nth-child(3) .pic {
    height: 140px;
    background-position: center center;
    background-size: 125px auto;
  }

  .sec.benri .points li .desc {
    margin-top: 0;
    font-size: 1.7rem;
    line-height: calc(49 / 34);
  }

  .sec.benri .points li .note {
    margin-top: 0.5em;
    font-size: 1rem;
  }

  .sec.benri .cta-buttons li+li {
    margin-top: 20px;
  }
}