.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;
}

.ttl-batch span {
  letter-spacing: -0.02em;
}

/* 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: 1.7rem;
  font-weight: 700;
  line-height: 1.71;
  letter-spacing: 0.06em;
  margin-top: 5px;
  padding-right: 13px;
  margin-bottom: 23px;
}

@media screen and (max-width: 767px) {
  .card-ttl {
    line-height: 2.04;
    padding-right: 0;
    margin-top: 3px;
    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: 1.7rem;
  font-weight: 700;
  line-height: 1.41;
  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 {
    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;
  }
}

/* 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: 144px;
}

.sec1 .cta_btn {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .sec1 {
    margin-top: 45px;
  }
  .sec1 .cta_btn {
    margin-top: 34px;
  }
}

.sec2 {
  margin-top: 116px;
}

.sec2-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  color: #2864f0;
  letter-spacing: 0.08em;
  margin-bottom: 23px;
}

.sec2-txt {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.08em;
  text-align: center;
  color: #2864f0;
  margin-top: 49px;
}

.sec2 .cta_btn {
  margin-top: 59px;
}

p.sec2-ttl {
  position: relative;
  display: inline-block;
  padding-left: 10px;
  margin-top: 53px;
  margin-bottom: 12px;
}

p.sec2-ttl::before, p.sec2-ttl::after {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

p.sec2-ttl::before {
  background-image: url(../img/sec2-ttl-left.png);
  left: -29px;
}

p.sec2-ttl::after {
  background-image: url(../img/sec2-ttl-right.png);
  right: -29px;
}

.sec2-inner {
  height: 342px;
  background: #ebf3ff;
  position: relative;
  padding-top: 45px;
  margin-bottom: 33px;
}

.sec2-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 589px;
  height: 226px;
  background-image: url(../img/sec2-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -49px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.sec2-inner .img-wrap {
  padding-right: 17px;
}

@media screen and (max-width: 767px) {
  .sec2 {
    margin-top: 50px;
  }
  .sec2-ttl {
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .sec2-inner {
    padding-top: 28px;
    height: 260px;
  }
  .sec2-inner::after {
    width: 294.5px;
    height: 113.5px;
    bottom: -24px;
  }
  .sec2-inner .img-wrap img {
    margin: 0 auto;
    padding-left: 4px;
    padding-right: 0;
  }
  .sec2-inner2 .img-wrap img {
    margin: 0 auto;
    padding-left: 2px;
    padding-right: 0;
  }
  p.sec2-ttl {
    margin-top: 14px;
    margin-bottom: 10px;
  }
  p.sec2-ttl::before, p.sec2-ttl::after {
    width: 24.5px;
    height: 32px;
  }
  p.sec2-ttl::before {
    left: -25px;
  }
  p.sec2-ttl::after {
    right: -25px;
  }
  .sec2-txt {
    font-size: 1.4rem;
    line-height: 1.54;
    margin-top: 38px;
  }
  .sec2 .cta_btn {
    margin-top: 38px;
  }
}

.sec3 {
  padding-top: 190px;
}

.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;
  }
}

.sec4 {
  margin-bottom: 120px;
  padding-top: 192px;
}

.sec4 .ttl {
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.1em;
  color: #1e1e1e;
  padding-left: 116px;
  position: relative;
}

.sec4 .ttl .txt-bold:nth-of-type(2) {
  letter-spacing: normal;
}

.sec4 .ttl .txt-bold:nth-of-type(3) {
  letter-spacing: -0.08em;
}

.sec4 .ttl .txt-bold:nth-of-type(4) {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
}

.sec4 .light-icon::before {
  left: 0;
}

.sec4 .cta_btn {
  margin-top: 55px;
}

.sec4 .tab-area {
  margin-top: 64px;
}

.sec4 .tab-menu li:nth-of-type(1) {
  width: 237px;
  margin-left: -35px;
  margin-right: 547px;
}

.sec4 .tab-menu li:nth-of-type(1).active {
  color: #fefeff;
  width: 324px;
  margin-left: -80px;
  margin-right: 423px;
}

.sec4 .tab-menu li:nth-of-type(1).active span {
  letter-spacing: 0.02em;
}

.sec4 .tab-menu li:nth-of-type(1).active span:last-of-type {
  font-size: 2.6rem;
}

.sec4 .tab-menu li:nth-of-type(2) {
  width: 167px;
}

.sec4 .tab-menu li:nth-of-type(2).active {
  width: 226px;
}

.sec4 .tab-text-area {
  width: 372px;
}

.sec4 .tab-text-area p {
  font-size: 1.7rem;
  line-height: 1.47;
  letter-spacing: 0.06em;
  color: #1e1e1e;
  text-align: left;
  font-weight: normal;
  margin-top: 0;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  margin-bottom: 11px;
}


.sec4 .tab-item .tab-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 58px;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2864f0;
  width: 313px;
  border: solid 1px #2864f0;
  margin: 53px auto 22px;
  position: relative;
}
.sec4 .tab-item:nth-of-type(2) .tab-title{
  width: 369px;
  margin-left: 0;
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.sec4 .tab-item .tab-title::before, .sec4 .tab-item .tab-title::after{
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 16px;
  background: #fff;
}
.sec4 .tab-item .tab-title::before{
  left: -2px;
  bottom: 0;
}
.sec4 .tab-item .tab-title::after{
  right: -2px;
  top: 0;
}
.sec4 .tab-text-area p:nth-of-type(2) .text-style-1 {
  letter-spacing: 0.08em;
}

.sec4 .tab-text-area p:nth-of-type(2) .text-style-2 {
  letter-spacing: 0.04em;
}

.sec4 .tab-text-area p:nth-of-type(2) .text-style-3 {
  letter-spacing: 0.04em;
}

.sec4 .tab-text-area p:nth-of-type(2) .text-style-4 {
  letter-spacing: 0.08em;
}

.sec4 .tab-text-area p:nth-of-type(2) .text-style-5 {
  letter-spacing: 0.1em;
}

.sec4 .tab-text-area p:nth-of-type(4) {
  width: 377px;
  margin-bottom: 20px;
}

.sec4 .tab-text-area p:nth-of-type(4) .text-style-1 {
  letter-spacing: 0.1em;
}

.sec4 .tab-text-area p:nth-of-type(4) .text-style-2 {
  letter-spacing: 0.08em;
}

.sec4 .tab-text-area p:nth-of-type(n+5) {
  font-weight: 700;
  text-align: center;
  color: #2864f0;
  margin-bottom: 0;
  display: inline-block;
}

.sec4 .tab-text-area p:nth-of-type(n+5) span {
  font-weight: 600;
}

.sec4 .tab-item:nth-of-type(1) {
  padding-bottom: 32px;
}
.sec4 .tab-item:nth-of-type(2) {
  padding-bottom: 19px;
}

.sec4 .tab-item:nth-of-type(1), .sec4 .tab-item:nth-of-type(2) {
  background-image: none;
}

.sec4 .tab-item:nth-of-type(1) .img-wrap {
  margin-top: 30px;
  margin-left: 71px;
  margin-right: 72px;
}

.sec4 .tab-item:nth-of-type(2) .img-wrap {
  margin-left: 121px;
  margin-top: 54px;
  margin-right: 124px;
}

.sec4 .tab-item:nth-of-type(2) .img-wrap p {
  padding-right: 10px;
  margin-bottom: 31px;
}

.sec4 .tab-item:nth-of-type(2) .img-wrap p:nth-of-type(1) {
  margin-top: 24px;
}

.sec4 .tab-item:nth-of-type(2) .tab-text-area p:nth-of-type(2) span {
  letter-spacing: 0.08em;
}

.sec4 .tab-item:nth-of-type(2) .tab-text-area p:nth-of-type(3) {
  letter-spacing: 0.04em;
}

.sec4 .tab-item:nth-of-type(2) .tab-text-area p:nth-of-type(4) {
  margin-top: 25px;
  width: 186px;
}

.sec4 .tab-item:nth-of-type(2) .tab-text-area p:nth-of-type(n+4) {
  font-weight: 700;
  text-align: center;
  color: #2864f0;
  margin-bottom: 0;
  display: inline-block;
}

.sec4 .tab-item:nth-of-type(2) .tab-text-area p:nth-of-type(n+4) span {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .sec4 {
    padding-top: 83px;
    margin-bottom: 53px;
  }
  .sec4 .ttl {
    line-height: 0.5;
    padding-left: 104px;
  }
  .sec4 .ttl .txt-l {
    font-size: 2.5rem;
  }
  .sec4 .ttl-batch {
    font-size: 1.4rem;
    width: 70.5px;
    height: 20px;
    margin-top: -9px;
    margin-left: -7px;
    padding-top: 1.3px;
  }
  .sec4 .ttl-batch span {
    font-size: 1.5rem;
  }
  .sec4 .cta_btn {
    margin-top: 40px;
  }
  .sec4 .light-icon::before {
    left: 3px;
  }
  .sec4 .tab-area {
    margin-top: 40px;
  }
  .sec4 .tab-menu li:nth-of-type(1) {
    width: 181px;
    margin-left: -164px;
    margin-right: 2px;
  }
  .sec4 .tab-menu li:nth-of-type(1).active {
    width: 212.5px;
    margin-left: -163px;
    margin-right: 170px;
    padding-top: 14px;
  }
  .sec4 .tab-menu li:nth-of-type(1).active span {
    letter-spacing: 0.02em;
  }
  .sec4 .tab-menu li:nth-of-type(1).active span:last-of-type {
    font-size: 1.9rem;
  }
  .sec4 .tab-menu li:nth-of-type(2) {
    width: 121.5px;
  }
  .sec4 .tab-menu li:nth-of-type(2).active {
    width: 150.5px;
  }
  .sec4 .tab-item {
    border-radius: 5px;
  }
  .sec4 .tab-item:nth-of-type(1) {
    padding-bottom: 21px;
  }
  .sec4 .tab-item:nth-of-type(2) {
    padding-bottom: 39px;
  }
  .sec4 .tab-sp-txt {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 37.5px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #2864f0;
    width: 276.5px;
    height: 39.5px;
    border: solid 1px #2864f0;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 22px;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-sp-txt {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 37.5px;
    letter-spacing: 0.06em;
    text-align: center;
    color: #2864f0;
    margin-top: 20px;
    width: 212px;
    margin-bottom: 10px;
  }
  .sec4 .tab-item:nth-of-type(1) .img-wrap {
    margin: 0;
  }
  .sec4 .tab-item .tab-text-area p.sp-txt {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.48;
    letter-spacing: 0.02em;
    color: #1e1e1e;
    border: none;
    text-align: left;
    width: 90%;
    margin: 1.2rem auto 0;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area p.sp-txt:nth-of-type(3) {
    margin-bottom: 17px;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area {
    max-width: 340px;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area p.txt-blue {
    font-size: 1.4rem;
    line-height: 1.59;
    text-align: center;
    color: #2864f0;
    font-weight: 700;
    margin: 0;
    width: 100%;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area p.txt-blue:last-of-type {
    width: 100%;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area p.txt-border::after {
    width: 234.5px;
  }
  .sec4 .tab-item:nth-of-type(1) .tab-text-area p.txt-border:last-of-type::after {
    width: 273.5px;
  }
  .sec4 .tab-item:nth-of-type(2) .img-wrap {
    margin: 0;
  }
  .sec4 .tab-item:nth-of-type(2) .img-wrap p {
    margin-bottom: 22px;
  }

  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.sp-txt:nth-of-type(2) {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.sp-txt .text-style-1 {
    letter-spacing: normal;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.sp-txt .text-style-2 {
    letter-spacing: 0.06em;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.sp-txt .text-style-3 {
    letter-spacing: 0.04em;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area {
    max-width: 340px;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.txt-blue {
    font-size: 1.4rem;
    line-height: 1.59;
    text-align: center;
    color: #2864f0;
    font-weight: 700;
    margin: 0;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.txt-blue:last-of-type {
    width: 100%;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.txt-border::after {
    width: 149px;
  }
  .sec4 .tab-item:nth-of-type(2) .tab-text-area p.txt-border:last-of-type::after {
    width: 294.5px;
  }
}

.sec4 .tab-txt-border {
  position: relative;
}

.sec4 .tab-txt-border::before, .sec4 .tab-txt-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 16px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .sec4 .tab-txt-border::before, .sec4 .tab-txt-border::after {
    height: 10px;
  }
}

.sec4 .tab-txt-border::before {
  left: -2px;
  bottom: 0;
}

.sec4 .tab-txt-border::after {
  right: -2px;
  top: 0;
}

.sec5 {
  padding-top: 50px;
  padding-bottom: 44px;
  background-color: #ebf3ff;
}

.sec5 ul {
  margin-top: -7px;
  padding-right: 61px;
}

.sec5 li {
  margin: 0 auto;
  max-width: 933px;
  height: 279px;
  background-image: url(../img/voice-bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 93px;
  padding-left: 241px;
  margin-bottom: 50px;
}

.sec5 li span {
  font-weight: 700;
  color: #2864f0;
}

.sec5 li p {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 1.7rem;
  line-height: 1.59;
  letter-spacing: 0.075em;
  color: #1e1e1e;
  text-align: left;
}

.sec5 li p:last-of-type {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.2rem;
  line-height: 1.08;
  letter-spacing: 0.1em;
  color: #1e1e1e;
  margin-top: 20px;
}

.sec5 li:nth-of-type(2) {
  background-image: url(../img/voice-bg2.png);
  max-width: 936px;
  height: 276px;
  margin-bottom: 32px;
  padding-left: 238px;
  padding-top: 98px;
}

.sec5 li:nth-of-type(2) p:last-of-type {
  margin-top: 41px;
}

.sec5 li:nth-of-type(3) {
  background-image: url(../img/voice-bg3.png);
  max-width: 933px;
  height: 287px;
  padding-top: 102px;
}

.sec5 li:nth-of-type(3) p:last-of-type {
  margin-top: 23px;
}

@media screen and (max-width: 767px) {
  .sec5 {
    padding-top: 47px;
  }
  .sec5 .ttl {
    margin-bottom: 35px;
  }
  .sec5 ul {
    padding-right: 0;
  }
  .sec5 li {
    width: 314.5px;
    height: 311px;
    margin: 0 auto;
    padding-top: 110px;
    padding-left: 29px;
    background-image: url(../img/sp-voice-bg1.png);
  }
  .sec5 li p {
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.54;
  }
  .sec5 li p:last-of-type {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 1.15rem;
    line-height: 1.22;
    margin-top: 12px;
    text-align: center;
    padding-right: 29px;
  }
  .sec5 li:nth-of-type(2) {
    background-image: url(../img/sp-voice-bg2.png);
    width: 314.5px;
    height: 334.5px;
    margin-top: 20px;
    padding-left: 29px;
    padding-top: 119px;
  }
  .sec5 li:nth-of-type(2) p:last-of-type {
    margin-top: 3px;
  }
  .sec5 li:nth-of-type(3) {
    background-image: url(../img/sp-voice-bg3.png);
    width: 315px;
    height: 344.5px;
    margin-top: -11px;
    padding-left: 29px;
    padding-top: 112px;
  }
  .sec5 li:nth-of-type(3) p:last-of-type {
    margin-top: 8px;
  }
  .sec5 li span {
    font-weight: 500;
  }
}

#main {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  #main {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .sec1 .img-res {
    width: 119px;
    height: 133px;
  }
  .sec2-inner .img-res {
    width: 302px;
    height: 84px;
  }
  .sec2-inner2 .img-res {
    width: 346px;
    height: 188px;
  }
}

/* 230614_add
============================================================================================================ */
.flex{
  display: flex;
  justify-content: center;
}

.form_fv {
  padding: 120px 0;
  width: 100%;
  max-width: 440px;
  background-color: rgba(255, 255, 255, 0.93);
  border: 1px solid #e2e2e2;
  border-radius: 24px;
}

.form_fv {
  margin-left: clamp(-70px, -6vw, -100px);
  width: 440px;
  min-height: 500px;
  background-color: rgba(255, 255, 255, 0.93);
  border: 1px solid #e2e2e2;
  border-radius: 24px;
}

.form_fv .logo{
  margin-top: 40px;
  margin-bottom: 30px;
}

.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:  12px!important;
}

.form_fv .lp_signup_personal_form_container_root button{
  margin:  30px auto;
}

.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 {
    position: relative;
    z-index: 4;
  }
}


/* 230913_add
============================================================================================================ */
.sec_qa{
  margin-bottom: 0; 
}

.sec_merit{
  margin: 100px 0; 
  padding: 60px 0 20px;
  background-color: #ebf3ff;
}

.inner{
  margin: 0 auto;
  max-width: 1000px;
}

.flex.-c{
  justify-content: center;
}

.merit_item{
  margin-top: 40px;
}

.merit_item .item{
  margin: 0 20px;
  max-width: 185px;
}

.merit_item .item img{
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sec_merit{
    margin: 64px 0; 
  }
  
  .merit_item .item{
    margin: 0 1vw;
    width: 30.3vw;
  }
}

.sec4 .tab-item:nth-of-type(1) .img-wrap img {
  max-width: 100%;
  width: 854px;
  height: auto;
}
.sec4 .ttl-batch {
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sec4 .ttl {
    padding-left: 0;
    line-height: unset;
  }
  .sec4 .ttl-batch {
    position: relative;
    left: unset;
    top: unset;
    margin: 0;
    line-height: 1.3;
  }
  .sec4 .tab-item:nth-of-type(1) .img-wrap img {
    padding-top: 21px;
    width: 90%;
  }
}