@charset "UTF-8";
body {
  opacity: 1;
}
body.preload {
  opacity: 0;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
}
/* ------------------------------
    btn
------------------------------ */

.btn_inquiry {
  background: rgb(0, 173, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 173, 0, 1) 0%,
    rgba(56, 219, 125, 1) 100%
  );
}
.btn_download {
  background: rgb(221, 39, 17);
  background: linear-gradient(
    90deg,
    rgba(221, 39, 17, 1) 0%,
    rgba(225, 155, 25, 1) 100%
  );
}

@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
}

/* ------------------------------
    ttl
------------------------------ */
.ttl {
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
.ttl1 {
  font-size: 4.2rem;
  text-align: center;
  line-height: 1;
  font-weight: bold;
}
.ttl1_sub {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 1.5em;
  text-align: center;
  font-weight: bold;
}
.ttls,
.mid,
.mids {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
  .ttl1 {
    font-size: 5.4vw;
    line-height: 1.2;
  }
  .ttl1_sub {
    font-size: 3.7vw;
    margin-top: 1em;
  }
}

/* ------------------------------
    navbox
------------------------------ */
.navbox {
  padding: 15px 0;
  align-items: center;
}
.navbox .logo {
  width: 207px;
}
.navbox .gnav {
  align-items: center;
  padding-top: 8px;
}
.navbox .gnav li {
}
.navbox .gnav li a {
  padding-left: 7px;
  padding-right: 7px;
  line-height: 1;
}
.navbox .btn {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  border-radius: 20px;
  padding-bottom: 0.1em;
  box-shadow: 0px 0px 8px 0px rgb(63 63 63 / 20%);
}
.navbox .btn_navinquiry {
  background: #515151;
  width: 130px;
}
.navbox .btn_download {
  width: 180px;
}

@media screen and (min-width: 769px) {
  .navbox {
    width: 100%;
    max-width: 1307px;
    padding-right: 10px;
    padding-left: 10px;
    min-width: 1180px;
  }
  .navbox .gnav li + li {
    margin-left: 18px;
  }
}
@media screen and (max-width: 768px) {
  .navbox {
    padding: 0;
    align-items: center;
  }
  .navbox .logo {
    width: 33.1vw;
    margin-top: 0;
  }
  .navbox .gnav {
    align-items: center;
    padding: 10vw 10vw 13vw;
  }
  .navbox .gnav li {
  }
  .navbox .gnav li + li {
    margin-top: 6.6vw;
  }
  .navbox .gnav li a {
    line-height: 1;
    color: #fff;
    text-align: center;
    font-size: 3.7vw;
    display: block;
    padding: 3.3vw 0;
  }
  .navbox .btn {
    display: flex !important;
    height: 13.3vw;
    border-radius: 7vw;
    padding: 0 0 0.2em !important;
    box-shadow: none;
    font-size: 4vw !important;
  }
  .navbox .btn_navinquiry {
    background: #fff;
    color: #515151 !important;
    width: 100%;
    margin-top: 3.3vw;
  }
  .navbox .btn_download {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/

header {
  width: 100%;
  background: #fff;
  padding: 15px 0 0 0;
  position: fixed;
  top: 0;
  z-index: 99;
}

@media screen and (min-width: 769px) {
  header {
    min-width: 1260px;
    transition: 0.3s;
  }
  header.scroll {
    padding-top: 0;
  }
  header.scroll .navbox {
    padding-bottom: 19px;
  }
  header.scroll .navbox .gnav {
    padding-top: 4px;
  }
  header.scroll .navbox .logo {
    width: 165px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0;
  }
  header .wrap {
    height: 13vw;
    align-items: center;
    width: 100%;
    z-index: 10;
  }
  header .logo {
    margin-left: 2.6vw;
  }
  header .btns {
    padding-right: 13vw;
    display: flex;
  }
  header .btns a {
    display: block;
    width: 13vw;
  }
  .menu_opn {
    width: 100%;
    height: calc(100% - 13vw);
    position: fixed;
    left: 0;
    top: 13vw;
    z-index: -1;
    overflow-y: hidden;
    display: none;
  }
  .menu_opn.on {
    width: 100%;
    height: 100%;
  }
  .menu_opn.off {
  }

  .menu_bg {
    background: #515151;
    background-size: cover;
    position: fixed;
    width: 100%;
    height: calc(100% - 13vw);
    left: 0;
    top: 13vw;
    z-index: -10;
    display: block;
  }

  .menu_opn .menu_inner {
    width: 100%;
    height: 100%;
    padding: 0 0 20vw;
    overflow-y: scroll;
  }
}

/*------------
sp ハンバーガー
------------*/
.is_gnavOpen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/*.is_gnavOpen { width: 100%; height: 100%; overflow: hidden; }*/
/* gnav背景 */
.js_gnavLayer {
  display: none;
}
@media screen and (min-width: 769px) {
  header .bl_navTrigger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .bl_navTrigger,
  header .bl_navTrigger span {
    display: inline-block;
    transition: all 0.4s;
  }
  header .bl_navTrigger {
    position: fixed;
    top: 0;
    right: 0;
    width: 13vw;
    height: 13vw;
    background: #fff;
    z-index: 999;
  }
  header .bl_navTrigger span {
    width: 6.6vw;
    height: 0.8vw;
    position: absolute;
    left: 3.35vw;
    background-color: #515151;
    top: 50%;
    transform: translateY(-50%);
  }
  header .bl_navTrigger span:nth-of-type(1) {
    margin-top: -2.3vw;
  }
  header .bl_navTrigger span:nth-of-type(2) {
  }
  header .bl_navTrigger span:nth-of-type(3) {
    margin-top: 2.1vw;
  }

  header .bl_navTrigger.active span:nth-of-type(1) {
    transform: translateY(1.6vw) rotate(-45deg);
  }
  header .bl_navTrigger.active span:nth-of-type(2) {
    display: none;
  }
  header .bl_navTrigger.active span:nth-of-type(3) {
    transform: translateY(-2.6vw) rotate(45deg);
  }
}
/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/

footer {
  width: 100%;
  position: relative;
}
.foot1 {
  padding: 40px 0;
}
.foot_pdf {
  padding-bottom: 30px;
  margin-top: -10px;
  border-bottom: 1px solid #c5c5c5;
  margin-bottom: 38px;
}
.foot_pdf .pdf_img {
  width: 460px;
}
.foot_pdf .pdf_img img {
  width: 380px;
}
.foot_pdf .pdf_txt {
  flex: 1;
}
.foot_pdf .pdf_txt1 {
  font-size: 2.25rem;
}
.foot_pdf .pdf_txt2 {
  font-size: 3.46rem;
  border-bottom: 4px solid #008ef2;
  padding-bottom: 0.4em;
  padding-top: 10px;
  margin-bottom: 16px;
}
.foot_pdf .pdf_txt3 {
  line-height: 1.7;
  margin-bottom: 1em;
}
.foot_pdf .pdf_listwrap {
  padding: 20px 52px 20px 28px;
}
.foot_pdf .pdf_listwrap .mid {
  font-size: 2.14rem;
  margin-bottom: 0.5em;
  line-height: 1;
}
.foot_pdf .pdf_list li + li {
  margin-top: 0.6em;
}
.copyright {
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
  footer {
  }
  .foot1 {
    padding: 8vw 0;
  }
  .foot_pdf {
    padding-bottom: 2vw;
    margin-top: 0;
    margin-bottom: 4vw;
  }
  .foot_pdf .pdf_img {
    width: 100%;
  }
  .foot_pdf .pdf_img img {
    width: 70%;
  }
  .foot_pdf .pdf_txt {
    margin-bottom: 3vw;
  }
  .foot_pdf .pdf_txt1 {
    font-size: 4.2vw;
  }
  .foot_pdf .pdf_txt2 {
    font-size: 5.4vw;
    border-width: 2px;
    padding-bottom: 0.4em;
    padding-top: 1.3vw;
    margin-bottom: 2vw;
  }
  .foot_pdf .pdf_txt3 {
    font-size: 3.5vw;
  }
  .foot_pdf .pdf_listwrap {
    padding: 3vw 4vw;
  }
  .foot_pdf .pdf_listwrap .mid {
    font-size: 4vw;
  }
  .foot_pdf .pdf_list {
    font-size: 3.2vw;
  }
  .foot_pdf .pdf_list li + li {
    margin-top: 0.5em;
  }
  .foot_pdf .pdf_list ul + ul {
    margin-top: 0.5em;
  }
  .copyright {
    font-size: 2.6vw;
    margin-top: 6vw;
  }
  footer .navbox {
    padding: 2vw 0;
  }
  footer .navbox .logo {
    width: 24vw;
    display: block;
    margin: 0 auto;
  }
}

/* ------------------------------
    cta
------------------------------ */
.cta {
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.cta_lead {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
.cta_lead .txt {
  position: relative;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
.cta_lead .txt:before,
.cta_lead .txt:after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: calc(100% + 0.3em);
  max-height: 2.7em;
  border-radius: 3px;
  top: 50%;
  background: #515151;
}
.cta_lead.txt_wh .txt:before,
.cta_lead.txt_wh .txt:after {
  background: #fff;
}

.cta_lead .txt:before {
  left: -1.2em;
  transform: rotate(-14deg) translateY(-50%);
}
.cta_lead .txt:after {
  right: -1.2em;
  transform: rotate(14deg) translateY(-50%);
}
.cta .wrap {
  z-index: 1;
  padding: 46px 54px 50px;
}
.cta .ttl {
  margin-bottom: 0.8em;
  font-size: 3.4rem;
}
.cta .txt1 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.cta .cta_lead {
  margin-bottom: 30px;
}
.cta .txt2 {
  font-size: 1.8rem;
  margin-bottom: 2em;
}
.cta_btns {
  display: flex;
  justify-content: space-between;
}
.cta .btn {
  display: flex;
  height: 80px;
  border-radius: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  position: relative;
  font-size: 2.2rem;
  line-height: 1;
}
.cta .btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-left: none;
  border-bottom: none;
  top: 50%;
  right: 45px;
  transform-origin: center;
  transform: rotate(45deg) translateY(-50%);
}
.cta .btn_inquiry {
  width: 460px;
}
.cta .btn_download {
  width: 604px;
}
.cta .btn_download .txt_sub {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.55em 1.2em 0.65em;
  border-radius: 2em;
  margin-right: 6px;
}
@media screen and (min-width: 769px) {
}

@media screen and (max-width: 768px) {
  .cta {
  }
  .cta_lead {
    margin-bottom: 1em;
    padding: 0 6vw 0;
  }
  .cta_lead .txt {
    font-size: 4.4vw;
  }
  .cta_lead .txt:before,
  .cta_lead .txt:after {
    width: 2px;
    height: calc(100% + 0.3em);
    max-height: auto;
    border-radius: 3px;
  }

  .cta_lead .txt:before {
    left: -0.4em;
  }
  .cta_lead .txt:after {
    right: -0.4em;
  }
  .cta .wrap {
    padding: 6vw 3vw;
  }
  .cta .ttl {
    font-size: 5.4vw;
    line-height: 1.3;
  }
  .cta .txt1 {
    font-size: 4.2vw;
    margin-bottom: 0.5em;
  }
  .cta .cta_lead {
    margin-bottom: 3vw;
  }
  .cta .txt2 {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
  .cta_btns {
    display: block;
  }
  .cta .btn {
    height: 15vw;
    border-radius: 8vw;
    font-size: 4.2vw;
  }
  .cta .btn:after {
    width: 2.6vw;
    height: 2.6vw;
    right: 8vw;
  }
  .cta .btn_inquiry {
    width: 100%;
  }
  .cta .btn_download {
    width: 100%;
    margin-top: 2vw;
  }
  .cta .btn_download .txt_sub {
    display: block;
    font-size: 3vw;
    padding: 0.2em;
    border-radius: 2em;
    margin-right: 0;
    margin-bottom: 0.5em;
  }
}

/* ------------------------------
    mv
------------------------------ */
.mv {
  position: relative;
  z-index: 0;
  height: 600px;
}
.mv_blk1 {
}

.mv_blk2 {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
}
.mv_blk3 {
  width: 100%;
  height: 1350px;
  transform: skewY(-20deg);
  position: absolute;
  transform-origin: top center;
  top: 500px;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .mv .wrap {
    width: 1240px;
  }
  .mv_blk1 {
    width: 827px;
    height: 527px;
    position: relative;
    line-height: 1;
  }
  .mv_img1 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 288px;
  }
  .mv_img1_1 {
  }
  .mv_img1_2 {
  }
  .mv_blk2 {
    width: 529px;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: 200vw;
    padding-top: 3.4vw;
  }
  .mv .wrap {
    width: 100%;
  }

  .mv_blk1 {
    height: 185.4vw;
    position: relative;
    line-height: 1;
  }
  .mv_img1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .mv_blk2 {
    top: 119vw;
  }
  .mv_blk3 {
    height: 433vw;
    top: 167vw;
    background: linear-gradient(
      65deg,
      rgba(1, 47, 145, 1) 40%,
      rgba(92, 153, 255, 1) 75%,
      rgba(128, 225, 186, 1) 99%
    );
  }
}

/* ------------------------------
    sec1
------------------------------ */
.sec1 {
  padding: 76px 0 52px;
}
/*--sec1_1--*/
.sec1_1 .txt2 {
  line-height: 1;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 1.75em;
}

.sec1_1 .txt2 span {
  display: inline-block;
  position: relative;
}
.sec1_1 .txt2 span:before {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: calc(100% + 0.4em);
  height: 0.5em;
  left: -0.2em;
  bottom: -0.4em;
  opacity: 0.2;
}
.sec1_1 .prob_arw {
  width: 118px;
  margin: 27px auto 50px;
  display: block;
}
/*--sec1_2--*/
.sec1_2 {
  padding: 0px 0 46px;
  flex-wrap: wrap;
}

.sec1_2box {
  padding: 50px 40px 40px;
}
.sec1_2box + .sec1_2box {
}
.sec1_2 .ttls {
  align-items: center;
  margin-bottom: 20px;
}
.sec1_2 .ttls .num {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: bold;
  width: 87px;
  height: 87px;
  border-radius: 50%;
}
.sec1_2 .ttls .num1 {
  display: block;
  text-align: center;
  margin-bottom: 0.05em;
}
.sec1_2 .ttls .num2 {
  display: block;
  font-size: 4.1rem;
  text-align: center;
}

.sec1_2 .ttls .txt {
  flex: 1;
  line-height: 1;
  margin-left: 18px;
  margin-bottom: 20px;
  white-space: nowrap;
  font-weight: bold;
}
.sec1_2 .ttls .txt1 {
  display: block;
  margin-bottom: 0.58em;
  font-size: 2.4rem;
}
.sec1_2 .ttls .txt2 {
  font-size: 3rem;
}

.sec1_2boxs {
}
.sec1_2boxs .img {
  width: 160px;
  margin-right: 20px;
}

.sec1_2boxs .list {
  flex: 1;
}
.sec1_2boxs .list li {
}
.sec1_2boxs .list li + li {
  margin-top: 0.5em;
}

/*--sec1_3--*/
.sec1_3 {
}
.sec1_3 .ttls {
  font-size: 3rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.sec1_3 .ttls .large {
  font-size: 120%;
}
.prb_solve {
  display: block;
  margin: 0 auto;
  width: 1009px;
}
@media screen and (min-width: 769px) {
  .sec1_2box {
    width: 590px;
  }
  .sec1_2box:nth-of-type(n + 3) {
    margin-top: 18px;
  }
}

@media screen and (max-width: 768px) {
  .sec1 {
    padding: 10vw 0 8vw;
  }
  /*--sec1_1--*/
  .sec1_1 .txt2 {
    font-size: 4.4vw;
    margin-top: 1em;
  }

  .sec1_1 .prob_arw {
    width: 14vw;
    margin: 6vw auto 8vw;
    display: block;
  }
  /*--sec1_2--*/
  .sec1_2 {
    padding: 0px 0 6vw;
  }

  .sec1_2box {
    padding: 4vw;
  }
  .sec1_2box + .sec1_2box {
    margin-top: 4vw;
  }
  .sec1_2 .ttls {
    position: relative;
    margin-bottom: 3vw;
    align-items: center;
  }
  .sec1_2 .ttls .num {
    line-height: 1.2;
    width: 14vw;
    height: 14vw;
    /* position: absolute;
        top: 0;
        left: 0;*/
    padding-top: 1vw;
  }
  .sec1_2 .ttls .num1 {
    font-size: 2.8vw;
  }
  .sec1_2 .ttls .num2 {
    font-size: 6vw;
  }

  .sec1_2 .ttls .txt {
    line-height: 1.3;
    margin-bottom: 0;
    white-space: pre-wrap;
    display: flex;
    flex-wrap: wrap;
    margin-left: 2vw;
  }
  .sec1_2 .ttls .txt1 {
    margin-bottom: 0.2em;
    font-size: 3.7vw;
    display: block;
  }
  .sec1_2 .ttls .txt2 {
    font-size: 5.6vw;
    display: inline-block;
  }

  .sec1_2boxs {
  }
  .sec1_2boxs .img {
    width: 40vw;
    margin: 0 auto 3vw;
  }

  .sec1_2boxs .list {
    font-size: 3.2vw;
  }

  /*--sec1_3--*/
  .sec1_3 {
  }
  .sec1_3 .ttls {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
  .sec1_3 .ttls .large {
    font-size: 140%;
  }
  .prb_solve {
    width: 100%;
  }
}

/* ------------------------------
    sec2
------------------------------ */
.sec2 {
  padding: 0px 0 84px;
}

/*--sec2_1--*/
.sec2_1 {
  padding: 80px 0 34px;
  margin-bottom: 50px;
  position: relative;
}
.sec2_1:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: #f4f4f4;
  width: calc(50vw + 300px);
  height: 100%;
}
.sec2_1 .inner {
}
.sec2_1 .ttl1 {
  text-align: left;
  margin-bottom: 40px;
}
.sec2_1img {
  width: 610px;
  margin-left: -57px;
}
.sec2_1txt {
  flex: 1;
  padding-left: 37px;
}
.sec2_1checkli {
}
.sec2_1checkli li {
  position: relative;
  background: url("../img/ico_check.svg") center left;
  background-repeat: no-repeat;
  background-size: 30px;
  padding: 0.2em 0 0.2em 50px;
  font-size: 1.8rem;
  font-weight: bold;
}
.sec2_1checkli li + li {
  margin-top: 18px;
}

/*--sec2_2--*/
.sec2_2 {
  padding: 0px 0 16px;
}

.feat_arw {
  display: block;
  margin: 0 auto;
  width: 243px;
}
.sec2_2li {
  margin-top: -15px;
  align-items: flex-end;
}
.sec2_2li li {
  width: 228px;
}
/*--sec2_3--*/
.sec2_3 {
  padding: 90px 0 0;
  background: url("../img/feat_solve_bg.png") bottom center;
  background-repeat: no-repeat;
  background-size: 1360px;
  height: 298px;
}

.sec2_3txt {
  font-size: 3rem;
  font-weight: bold;
}
.sec2_3txt .large {
  font-size: 150%;
}

/*--sec2_4--*/
.sec2_4 {
  padding: 0px 0 16px;
}

.sec2_4 .ttls {
  font-size: 4rem;
  line-height: 1.37;
  padding-bottom: 18px;
  margin-bottom: 28px;
  position: relative;
}
.sec2_4 .ttls:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fff;
  border-radius: 6px;
}
.sec2_4 .img {
  width: 50%;
  background: url("../img/feat_img5.png") center no-repeat;
  background-size: cover;
}
.sec2_4 .txt {
  width: 50%;
  padding-top: 80px;
  padding-bottom: 76px;
}
.sec2_4 .txt .inner {
  width: 605px;
  margin: 0 0 0 auto;
  padding-right: 70px;
}
.sec2_4checkli {
  padding-left: 3px;
}
.sec2_4checkli li {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 48px;
  position: relative;
}
.sec2_4checkli li:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 0.3em;
  width: 27px;
  height: 30px;
  background: url("../img/ico_check2.svg") top left;
  background-repeat: no-repeat;
  background-size: 27px;
}

.sec2_4checkli li + li {
  margin-top: 1.2em;
}

@media screen and (min-width: 769px) {
  .sec2_2li {
    width: 1038px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 768px) {
  .sec2 {
    padding: 0px 0 8vw;
  }

  /*--sec2_1--*/
  .sec2_1 {
    padding: 6vw 0 8vw;
    margin-bottom: 6vw;
    position: relative;
    overflow: hidden;
  }
  .sec2_1:before {
    width: 95vw;
  }
  .sec2_1 .inner {
  }
  .sec2_1 .ttl1 {
    text-align: left;
    margin-bottom: 5vw;
  }
  .sec2_1img {
    width: 100vw;
    margin-left: -6vw;
  }
  .sec2_1txt {
    padding-left: 6vw;
  }
  .sec2_1checkli li {
    background-position: top left;
    background-size: 6vw;
    padding: 0 0 0.2em 8vw;
    font-size: 3.9vw;
  }
  .sec2_1checkli li + li {
    margin-top: 1.4vw;
  }

  /*--sec2_2--*/
  .sec2_2 {
    padding: 0px 0 2vw;
  }

  .feat_arw {
    display: block;
    margin: 0 auto;
    width: 32vw;
  }
  .sec2_2li {
    margin-top: -2vw;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .sec2_2li li {
    width: 47%;
  }
  .sec2_2li li:nth-of-type(n + 3) {
    margin-top: 4vw;
  }
  /*--sec2_3--*/
  .sec2_3 {
    padding: 12vw 0 5vw 3vw;
    background-repeat: no-repeat;
    background-size: 130vw;
    height: auto;
  }

  .sec2_3txt {
    font-size: 4vw;
  }
  .sec2_3txt .large {
    font-size: 150%;
  }

  /*--sec2_4--*/
  .sec2_4 {
    padding: 0px 0 0;
  }

  .sec2_4 .ttls {
    font-size: 4.9vw;
    line-height: 1.3;
    padding-bottom: 3vw;
    margin-bottom: 5vw;
  }
  .sec2_4 .ttls:before {
    height: 3px;
  }
  .sec2_4 .img {
    width: 100%;
    height: 90vw;
    background-size: cover;
  }
  .sec2_4 .txt {
    width: 100%;
    padding: 6vw 3vw;
  }
  .sec2_4 .txt .inner {
    width: 100%;
    margin: 0 0 0 auto;
    padding-right: 0;
  }
  .sec2_4checkli {
    padding-left: 0;
  }
  .sec2_4checkli li {
    font-size: 3.7vw;
    padding-left: 5.6vw;
  }
  .sec2_4checkli li:before {
    left: 0;
    top: 0.3em;
    width: 4vw;
    height: 4vw;
    background-size: contain;
  }

  .sec2_4checkli li + li {
    margin-top: 0.8em;
  }
}

/* ------------------------------
    sec3
------------------------------ */
.sec3 {
  padding: 80px 0;
}
.sec3 .ttl {
  font-size: 4rem;
  line-height: 1.4;
  margin-bottom: 36px;
}
.sec3 .ttl .large {
  font-size: 150%;
}
.sec3blk {
  overflow: visible;
  padding: 60px 45px 40px;
}
.sec3blk + .sec3blk {
  margin-top: 85px;
}
.sec3blk .num {
  line-height: 1;
  position: absolute;
  font-size: 15.7rem;
  top: -0.35em;
  right: 80px;
  font-weight: 900;
  color: #008ef2;
  opacity: 0.27;
}
.sec3blk .ttls {
  margin-bottom: 30px;
}
.sec3blk .ttls .txt1 {
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5em;
}
.sec3blk .ttls .txt2 {
  font-size: 4.2rem;
  /*    background: linear-gradient(transparent 80%, #FFCF00 0%);*/
}
.sec3_check {
}
.sec3_check .img {
  width: 225px;
  margin-right: 57px;
  padding-bottom: 33px;
}
.sec3_check .txt {
  flex: 1;
}
.sec3_check .ttlss {
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1;
  padding: 0.4em 0 0.53em 0.8em;
  border-radius: 5px;
  margin-bottom: 28px;
}
.sec3checkli {
  padding-bottom: 46px;
}
.sec3checkli li {
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 42px;
  position: relative;
  line-height: 1;
}
.sec3checkli li:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../img/ico_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
}
.sec3checkli li + li {
  margin-top: 20px;
}

/*--sec3_1--*/
.sec3_1 {
}

.reason1_img1 {
  margin-top: -24px;
}
.sec3_1boxs {
  padding: 50px 45px 44px 58px;
}
.sec3_1boxs .mark {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  height: 49px;
  width: 137px;
}
.sec3_1boxs .img {
  width: 310px;
  margin-left: 40px;
}
.sec3_1boxs .txt {
  flex: 1;
}
.sec3_1boxs .mid {
  font-size: 3rem;
  line-height: 1.35;
  padding-top: 20px;
  margin-bottom: 0.4em;
}

/*--sec3_2--*/
.sec3_2 {
}

.sec3_2boxs {
  margin-top: 43px;
  position: relative;
  margin-bottom: 50px;
}
.sec3_2boxs .mid {
  font-size: 3rem;
  padding: 0.4em 0;
}
.reason2_img2 {
  position: absolute;
  z-index: 2;
  width: 118px;
  top: -43px;
  left: 50px;
}
.reason2_img3 {
  position: absolute;
  z-index: 2;
  width: 118px;
  top: -33px;
  right: 70px;
}
.sec3_2boxs .txt {
  padding: 35px 50px 50px;
}
.sec3_2boxs .mids {
  line-height: 1;
  font-size: 3rem;
  margin-bottom: 1em;
}
.sec3_2flow {
  position: relative;
}
.sec3_2flow + .sec3_2flow {
  margin-top: 25px;
}
.sec3_2flow li {
  background: #fff;
  position: relative;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 18px 40px 18px 34px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.sec3_2flow li + li:before,
.sec3_2flow + .sec3_2flow:before {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  height: 42px;
  background: url("../img/reason2_arw1.svg");
  background-size: contain;
  z-index: 2;
}
.sec3_2flow_end {
  margin-top: 30px;
  padding-top: 50px;
  background: url("../img/reason_arw2.svg") center top;
  background-size: 56px;
  background-repeat: no-repeat;
  font-size: 2.4rem;
  line-height: 1.4;
}
.sec3_2_solve {
  font-size: 3rem;
}
.sec3_2_solve .large {
  font-size: 150%;
}

/*--sec3_3--*/
.sec3_3 {
}

.sec3_3boxs {
  padding: 70px 53px 50px;
}

.sec3_3boxs .mark {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  height: 49px;
  width: 137px;
  padding-bottom: 0.1em;
}
.sec3_3boxs .mid {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}
.sec3_3boxs .mid .txt1 {
  font-size: 3rem;
  margin-right: 18px;
  padding-bottom: 10px;
  line-height: 1;
}
.sec3_3boxs .mid .txt1 .mlarge {
  font-size: 120%;
}
.sec3_3boxs .mid .txt1 .large {
  font-size: 5.7rem;
  font-weight: 900;
}
.sec3_3boxs .mid .txt2 {
  width: 387px;
}
.sec3_3imgbox {
}
.sec3_3imgbox .img {
  width: 329px;
  margin-right: 28px;
}
.sec3_3imgbox .img p {
  padding-top: 12px;
  font-weight: bold;
}
.sec3_3imgbox .txt {
  flex: 1;
  /*    font-weight: bold;*/
}
.sec3_3imgbox .txt p + p {
  margin-top: 1.5em;
}

@media screen and (min-width: 769px) {
  .sec3_2flow li {
    width: 320px;
  }
  .sec3_2flow li + li:before {
    left: -33px;
    top: 50%;
    transform: translateY(-50%);
  }
  .sec3_2flow + .sec3_2flow li + li:before {
    left: auto;
    right: -33px;
    transform: translateY(-50%) rotate(180deg);
  }
  .sec3_2flow + .sec3_2flow:before {
    top: -33px;
    right: 139px;
    transform: rotate(90deg);
  }
}

@media screen and (max-width: 768px) {
  .sec3 {
    padding: 8vw 0;
  }
  .sec3 .ttl {
    font-size: 4.8vw;
    line-height: 1.4;
    margin-bottom: 6vw;
  }
  .sec3 .ttl .large {
    font-size: 150%;
  }
  .sec3blk {
    padding: 8vw 3vw 3vw;
  }
  .sec3blk + .sec3blk {
    margin-top: 8vw;
  }
  .sec3blk .num {
    font-size: 10vw;
    top: -0.35em;
    right: 3vw;
  }
  .sec3blk .ttls {
    margin-bottom: 4vw;
  }
  .sec3blk .ttls .txt1 {
    font-size: 4.2vw;
    line-height: 1.3;
    margin-bottom: 1vw;
    padding-left: 23vw;
  }
  .sec3blk .ttls .txt2 {
    font-size: 5.6vw;
  }
  .sec3_check {
  }
  .sec3_check .img {
    width: 22vw;
    margin-right: 0;
    padding-bottom: 0;
    position: absolute;
    top: 2vw;
    left: 0;
  }
  .sec3_check .ttlss {
    font-size: 3.8vw;
    padding: 0.4em;
    border-radius: 5px;
    margin-bottom: 3vw;
    line-height: 1.3;
  }
  .sec3checkli {
    padding-bottom: 6vw;
  }
  .sec3checkli li {
    font-size: 3.4vw;
    padding-left: 5.4vw;
    line-height: 1.3;
  }
  .sec3checkli li:before {
    width: 4vw;
    height: 4vw;
    top: 0.2em;
  }
  .sec3checkli li + li {
    margin-top: 2vw;
  }

  /*--sec3_1--*/
  .sec3_1 {
  }

  .reason1_img1 {
    margin-top: -6vw;
  }
  .sec3_1boxs {
    padding: 0 3vw 3vw;
  }
  .sec3_1boxs .mark {
    position: absolute;
    border-bottom-right-radius: 1.3vw;
    font-size: 4vw;
    height: 8vw;
    width: 24vw;
    padding-top: 1vw;
  }
  .sec3_1boxs .img {
    width: calc(100% + 6vw);
    margin: 0 auto 0 -3vw;
  }
  .sec3_1boxs .txt {
    flex: 1;
  }
  .sec3_1boxs .mid {
    font-size: 4.4vw;
    padding-top: 3vw;
    margin-bottom: 0.4em;
  }
  .sec3_1boxs p {
    font-size: 3.2vw;
  }

  /*--sec3_2--*/
  .sec3_2 {
  }

  .sec3_2boxs {
    margin-top: 0;
    margin-bottom: 3vw;
  }
  .sec3_2boxs .mid {
    font-size: 4.4vw;
    padding: 2vw;
    line-height: 1.3;
  }
  .reason2_img2 {
    width: 14vw;
    top: 0vw;
    left: -2vw;
  }
  .reason2_img3 {
    width: 14vw;
    top: 2vw;
    right: -2vw;
  }
  .sec3_2boxs .txt {
    padding: 5vw 3vw 3vw;
  }
  .sec3_2boxs .mids {
    line-height: 1.3;
    font-size: 4.8vw;
    margin-bottom: 0.5em;
  }
  .sec3_2flow {
    position: relative;
  }
  .sec3_2flow + .sec3_2flow {
    margin-top: 2vw;
  }
  .sec3_2flow li + li {
    margin-top: 2vw;
  }
  .sec3_2flow li {
    border-radius: 1.3vw;
    padding: 3vw 3vw;
    font-size: 3.2vw;
  }
  .sec3_2flow li + li:before,
  .sec3_2flow + .sec3_2flow:before {
    width: 6vw;
    height: 6vw;
    background-repeat: no-repeat;
    background-size: contain;
    top: -4vw;
    left: 50%;
    margin-left: -3vw;
    transform: rotate(90deg);
  }
  .sec3_2flow_end {
    margin-top: 3vw;
    padding-top: 6vw;
    background-size: 8vw;
    background-repeat: no-repeat;
    font-size: 3.7vw;
    line-height: 1.4;
  }
  .sec3_2_solve {
    font-size: 3.7vw;
  }
  .sec3_2_solve .large {
    font-size: 140%;
  }

  /*--sec3_3--*/
  .sec3_3 {
  }

  .sec3_3boxs {
    padding: 10vw 3vw 3vw;
  }

  .sec3_3boxs .mark {
    border-bottom-right-radius: 1.3vw;
    font-size: 3.7vw;
    height: 8vw;
    width: 24vw;
    padding-bottom: 0.1em;
  }
  .sec3_3boxs .mid {
    margin-bottom: 4vw;
    text-align: center;
  }
  .sec3_3boxs .mid .txt1 {
    font-size: 4vw;
    margin-right: 0;
    padding-bottom: 2vw;
    line-height: 1;
    display: inline-block;
  }
  .sec3_3boxs .mid .txt1 .large {
    font-size: 160%;
  }
  .sec3_3boxs .mid .txt2 {
    width: 50vw;
  }
  .sec3_3imgbox {
  }
  .sec3_3imgbox .img {
    width: 80%;
    margin: 0 auto 4vw;
  }
  .sec3_3imgbox .img p {
    padding-top: 1vw;
    font-weight: bold;
    font-size: 2.9vw;
  }
  .sec3_3imgbox .txt {
    font-size: 3.2vw;
  }
  .sec3_3imgbox .txt p + p {
    margin-top: 0.5em;
  }
}

/* ------------------------------
    sec4
------------------------------ */
.sec4 {
  padding: 80px 0;
}
.sec4 .ttl1 {
  margin-bottom: 34px;
}
.sec4box {
  position: relative;
}
.sec4 .cost_img1 {
  position: absolute;
  top: -14px;
  left: 87px;
  z-index: 2;
  width: 210px;
}
.sec4 .ttls {
  padding: 30px 30px 30px 323px;
  position: relative;
  font-size: 3.4rem;
  line-height: 1;
}
.sec4 .ttls .txt1 {
  display: block;
  margin-bottom: 13px;
}
.sec4 .ttls .txt2 {
  font-size: 130%;
}
.sec4_info {
  line-height: 1;
  padding: 19px 18px 15px 0;
}
.cost_img {
  display: block;
  width: 1095px;
  margin: 0 auto 57px;
}

@media screen and (min-width: 769px) {
}

@media screen and (max-width: 768px) {
  .sec4 {
    padding: 8vw 0;
  }
  .sec4 .ttl1 {
    margin-bottom: 6vw;
  }
  .sec4box {
    position: relative;
  }
  .sec4 .cost_img1 {
    top: -2vw;
    left: auto;
    right: 3vw;
    width: 20vw;
  }
  .sec4 .ttls {
    padding: 5vw 3vw 3vw;
    font-size: 4.2vw;
    line-height: 1.2;
  }
  .sec4 .ttls .txt1 {
    display: block;
    margin-bottom: 1vw;
    font-size: 3.4vw;
  }
  .sec4 .ttls .txt2 {
    font-size: 130%;
  }
  .sec4_info {
    padding: 3vw 3vw 6vw;
    font-size: 3vw;
  }
  .cost_img {
    width: 84vw;
    margin: 0 auto 6vw;
  }
}

/* ------------------------------
    sec5
------------------------------ */
.sec5 {
  padding: 76px 0;
}
.sec5 .ttl1 {
  line-height: 1.4;
}
.sec5_img {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.sec5_img img {
  height: 70px;
  width: auto;
}
.sec5_info {
  margin-top: 45px;
}

@media screen and (min-width: 769px) {
  .sec5_img img + img {
    margin-left: 28px;
  }
}

@media screen and (max-width: 768px) {
  .sec5 {
    padding: 8vw 0;
  }
  .sec5_img {
    flex-wrap: wrap;
    margin-top: 8vw;
  }
  .sec5_img img {
    height: 9.4vw;
    width: auto;
  }
  .sec5_info {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}

/* ------------------------------
    sec6
------------------------------ */
.sec6 {
  padding: 80px 0 134px;
  border-top: 1px solid #c5c5c5;
}
.sec6_li {
  margin-top: 50px;
}
.sec6_li li {
  width: 270px;
}
.sec6_li li:nth-child(2) {
  width: 246px;
}
.sec6_li li:nth-child(3) {
  width: 295px;
}
.sec6_li li:nth-child(4) {
  width: 297px;
}
.sec6_li li + li {
}
.sec6_img {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.sec6_li p {
  text-align: center;
  line-height: 1.3;
}

@media screen and (min-width: 769px) {
}

@media screen and (max-width: 768px) {
  .sec6 {
    padding: 8vw 0 14vw;
  }
  .sec6_li {
    margin-top: 6vw;
    flex-wrap: wrap;
  }
  .sec6_li li {
    width: 48% !important;
    padding-bottom: 10vw;
    position: relative;
  }
  .sec6_li li:nth-child(n + 3) {
    margin-top: 4vw;
  }
  .sec6_img {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
  }
  .sec6_li p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 3.2vw;
    line-height: 1.3;
    height: 8vw;
  }
}

/* ------------------------------
    sec7
------------------------------ */
.sec7 {
  padding: 86px 0 82px;
  position: relative;
}
.sec7:before,
.sec7:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
}
.sec7:before {
  z-index: -1;
  background: #fff;
  position: absolute;
  transform-origin: center top;
  top: -3660px; /*height/2 + 896*/
  transform: skewY(-20deg);
  left: 0;
  height: 3000px;
}

.sec7:after {
  z-index: -2;
  background: rgb(1, 47, 145);
  background: linear-gradient(
    65deg,
    rgba(1, 47, 145, 1) 0%,
    rgba(92, 153, 255, 1) 56%,
    rgba(128, 225, 186, 1) 90%
  );
  bottom: 0;
  height: calc(100% + 2160px);
}
.sec7 .ttl1_sub {
  margin-bottom: 40px;
}
.sec7blk {
  padding: 90px 40px 36px;
  position: relative;
}
.sec7blk:before {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  background: #515151;
  left: -10px;
  top: -10px;
}
.sec7blk:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: #515151;
  right: -10px;
  top: -10px;
  display: none;
}
.sec7blk + .sec7blk {
  margin-top: 30px;
}
.sec7_blkswrap {
  margin-top: 30px;
}
.sec7blk .name {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  height: 66px;
  font-size: 2.2rem;
  font-weight: 900;
  top: 0;
  left: 0;
  padding: 0 30px 0.1em;
}
.sec7blk .imgbox {
  margin-bottom: 30px;
}
.sec7blk .img {
  width: 311px;
  margin: 0 auto;
}
.sec7blk .ttls {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.sec7blk .ttls_sub {
  letter-spacing: normal;
}
.sec7blk .txtbox {
  letter-spacing: normal;
}
.sec7blk .txtbox + .txtbox {
  margin-top: 1em;
}
.sec7blks .midbox {
  margin-bottom: 27px;
}

@media screen and (min-width: 769px) {
  .sec7blks {
    width: 386px;
  }
  .sec7blks + .sec7blks {
    margin-top: 0;
  }
  .sec7blk .name {
    border-bottom-right-radius: 30px;
  }

  .sec7blk .imgbox {
    justify-content: center;
  }
  .sec7blk .imgbox .img {
    margin: 0 50px 0 0;
  }
  .sec7blk .imgbox .ttlsbox {
    width: 600px;
  }

  .sec7blks {
    padding: 84px 20px 32px;
  }
  .sec7blks:after {
    display: block;
  }
  .sec7blks .name {
    width: 100%;
    text-align: center;
    border-bottom-right-radius: 0;
  }
  .sec7blks .ttls {
    margin-top: 27px;
    height: 130px;
    line-height: 1.4;
  }
  .sec7blk2 .imgbox {
    margin-top: 7px;
  }
}

@media screen and (max-width: 768px) {
  .sec7 {
    padding: 8vw 0;
  }
  .sec7:before,
  .sec7:after {
    width: 100%;
  }
  .sec7:before {
    top: -250vw;
    height: 100vw;
  }

  .sec7:after {
    background: linear-gradient(
      65deg,
      rgba(1, 47, 145, 1) 20%,
      rgba(92, 153, 255, 1) 87%,
      rgba(128, 225, 186, 1) 95%
    );
    height: calc(100% + 170vw);
  }
  .sec7 .ttl1_sub {
    margin-bottom: 6vw;
  }
  .sec7blk {
    padding: 0 3vw 4vw;
    position: relative;
  }
  .sec7blk:before {
    width: 5vw;
    height: 5vw;
    left: -1vw;
    top: -1vw;
  }
  .sec7blk:after {
    width: 5vw;
    height: 5vw;
    right: -1vw;
    top: -1vw;
    display: block;
  }
  .sec7blk + .sec7blk {
    margin-top: 3vw;
  }
  .sec7_blkswrap {
    margin-top: 3vw;
  }
  .sec7blk .name {
    position: relative;
    width: calc(100% + 6vw);
    margin-left: -3vw;
    line-height: 1.3;
    height: auto;
    font-size: 4.2vw;
    padding: 3vw 3vw 3.4vw;
    margin-bottom: 6vw;
  }
  .sec7blk .imgbox {
    margin-bottom: 4vw;
  }
  .sec7blk .img {
    width: 90%;
    margin: 0 auto 4vw;
  }
  .sec7blk .ttls {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
  .sec7blk .ttls_sub {
    letter-spacing: normal;
    font-size: 3.2vw;
  }
  .sec7blk .txtbox {
    letter-spacing: normal;
  }
  .sec7blk .txtbox + .txtbox {
    margin-top: 1em;
  }
  .sec7blks .midbox {
    margin-bottom: 4vw;
  }
}

/* ------------------------------
    sec8
------------------------------ */
.sec8 {
  padding: 80px 0;
}
.sec8 .ttl1_sub {
  margin-bottom: 40px;
}
.sec8blk + .sec8blk {
  margin-top: 32px;
}
.sec8blk .ttls {
  padding: 25px 40px;
}
.sec8blk .ttls .num {
  font-size: 10.3rem;
  font-weight: 900;
  margin-right: 30px;
  line-height: 1;
}
.sec8blk .ttls .txt {
  flex: 1;
  line-height: 1.4;
}
.sec8blk .ttls .txt1 {
  display: block;
  font-size: 4rem;
  margin-bottom: 10px;
  line-height: 1;
}
.sec8blk .ttls .txt2 {
  font-size: 2rem;
}
.sec8blk .ttls .txt3 {
  font-size: 2.6rem;
}
.sec8blk .blk_inner {
  padding: 40px 50px 50px;
}
.sec8_tbl1 {
  margin-bottom: 50px;
}

/*--sec8_1--*/
.sec8_1 {
  padding: 0px 0 0;
}

.sec8_1 .mid {
  display: flex;
  height: 69px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 0.1em;
  margin-bottom: 38px;
  font-size: 3.5rem;
}
.eff1_img1 {
  display: block;
  margin: 0 auto 40px;
  width: 1081px;
}
.sec8_1_arwtxt {
  position: relative;
  background: url("../img/eff1_arw.svg") center bottom;
  background-repeat: no-repeat;
  background-size: 249px;
  padding-bottom: 86px;
  padding-top: 23px;
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 22px;
}
.sec8_1_arwtxt .large {
  font-size: 150%;
}
.sec8_tbl2 {
  width: 960px;
  margin: 0 auto;
}

/*--sec8_2--*/
.sec8_2box {
  position: relative;
  padding: 40px 40px 46px;
  overflow: visible;
}

.sec8_2box:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 46px 20px;
  border-color: transparent transparent #f4f4f4 transparent;
  top: -40px;
  left: 156px;
}
.sec8_2box .mid {
  font-size: 3.5rem;
  margin-bottom: 1em;
  line-height: 1;
}
.sec8_2box .img {
  width: 310px;
  margin-right: 40px;
}
.sec8_2box .txt {
  flex: 1;
}
.sec8_2box .txt li + li {
  margin-top: 1em;
}

.sec8_2box .mids {
  font-size: 1.8rem;
}
.sec8_2box .txt p {
  letter-spacing: normal;
  padding-left: 0.5em;
}

/*--sec8_3--*/
.sec8_3_1 {
  padding-bottom: 50px;
  border-bottom: 1px solid #c5c5c5;
  margin-bottom: 50px;
}
.sec8_3txt {
  font-size: 3rem;
  padding-top: 1em;
}
.sec8_3txt .large {
  font-size: 120%;
}
.sec8_3_3 {
  margin-top: 30px;
}
.sec8_3_3 .txt1 {
  display: block;
  margin: 0 auto 20px;
}
.sec8_3_3 .txt2 {
  margin-bottom: 40px;
}
.sec8_3_3 .txt2_mark {
  background: linear-gradient(transparent 10%, #008ef2 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 10px 0 5px;
  font-size: 3.4rem;
  line-height: 1.8;
}
.sec8_3_3 .txt2_mark .large {
  font-size: 130%;
}
.eff3_scene {
}
.eff3_scene li {
  width: 242px;
  font-size: 2rem;
  line-height: 1;
}
.eff3_scene li img {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .sec8_tbl1 li {
    width: 360px;
  }
  .eff3_scene {
    width: 881px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .sec8 {
    padding: 8vw 0;
  }
  .sec8 .ttl1_sub {
    margin-bottom: 6vw;
  }
  .sec8blk + .sec8blk {
    margin-top: 4vw;
  }
  .sec8blk .ttls {
    padding: 4vw 3vw;
  }
  .sec8blk .ttls .num {
    font-size: 5.8vw;
    margin-right: 0;
    display: block;
  }
  .sec8blk .ttls .txt {
    line-height: 1.4;
  }
  .sec8blk .ttls .txt1 {
    font-size: 5.4vw;
    margin-bottom: 1.3vw;
    line-height: 1.3;
  }
  .sec8blk .ttls .txt2 {
    font-size: 3.7vw;
  }
  .sec8blk .ttls .txt3 {
    font-size: 4.2vw;
  }
  .sec8blk .blk_inner {
    padding: 4vw 3vw;
  }
  .sec8_tbl1 {
    margin-bottom: 6vw;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
  }
  .sec8_tbl1 li + li {
    margin-top: 2vw;
  }

  /*--sec8_1--*/
  .sec8_1 {
  }

  .sec8_1 .mid {
    height: auto;
    padding: 2vw 0 3vw;
    margin-bottom: 4vw;
    font-size: 4vw;
  }
  .eff1_img1 {
    display: block;
    margin: 0 auto 6vw;
    width: 100%;
  }
  .sec8_1_arwtxt {
    background-size: 30vw;
    padding-bottom: 12vw;
    padding-top: 0;
    font-size: 4.2vw;
    margin-bottom: 3vw;
  }
  .sec8_1_arwtxt .large {
    font-size: 140%;
  }
  .sec8_tbl2 {
    overflow: scroll;
    padding-bottom: 2vw;
    width: 100%;
  }
  .sec8_tbl2 img {
    width: 128vw;
    max-width: 128vw;
  }

  /*--sec8_2--*/
  .sec8_2box {
    padding: 5vw 3vw 3vw;
    overflow: visible;
  }
  .sec8_2box:before {
    border-width: 0 3vw 6vw 3vw;
    top: -5.4vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec8_2box .mid {
    font-size: 4.8vw;
    margin-bottom: 0.6em;
    line-height: 1.4;
  }
  .sec8_2box .img {
    width: 80%;
    margin: 0 auto 4vw;
  }
  .sec8_2box .txt {
  }
  .sec8_2box .txt li + li {
    margin-top: 0.4em;
  }

  .sec8_2box .mids {
    font-size: 4vw;
  }
  .sec8_2box .txt p {
    font-size: 3.4vw;
  }

  /*--sec8_3--*/
  .sec8_3_1 {
    padding-bottom: 6vw;
    margin-bottom: 6vw;
  }
  .sec8_3txt {
    font-size: 4.2vw;
    padding-top: 1em;
  }
  .sec8_3txt .large {
    font-size: 120%;
  }
  .sec8_3_3 {
    margin-top: 4vw;
  }
  .sec8_3_3 .txt1 {
    display: block;
    margin: 0 auto 2vw;
    width: 30vw;
  }
  .sec8_3_3 .txt2 {
    margin-bottom: 5vw;
  }
  .sec8_3_3 .txt2_mark {
    padding: 2vw 0 1.8vw;
    font-size: 3.7vw;
    line-height: 2.2;
  }
  .sec8_3_3 .txt2_mark .large {
    font-size: 130%;
  }
  .eff3_scene {
    width: 90%;
    margin: 0 auto;
  }
  .eff3_scene li {
    width: 31%;
    font-size: 3.4vw;
  }
  .eff3_scene li img {
    margin-bottom: 2vw;
  }
}

/* ------------------------------
    sec9
------------------------------ */
.sec9 {
  padding: 80px 0;
}
.sec9li {
  margin-top: 40px;
}
.sec9li > li {
}
.sec9li > li + li {
}
.sec9li .num {
  position: absolute;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.57rem;
  font-weight: 900;
  border-bottom-right-radius: 30px;
}
.sec9li .img {
}
.sec9li .txt {
  padding: 20px 24px 30px;
  font-weight: bold;
}

.sec9li .ttls {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.sec9_checkli {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 26px;
}
.sec9_checkli li {
  padding-left: 50px;
  background: url("../img/ico_check.svg") center left;
  background-repeat: no-repeat;
  background-size: 32px;
}
.sec9_checkli li + li {
  margin-top: 0.8em;
}
.sec9_hangli {
  line-height: 1.2;
}
.sec9_hangli li + li {
  margin-top: 0.5em;
}

@media screen and (min-width: 769px) {
  .sec9li > li {
    width: 386px;
  }
}

@media screen and (max-width: 768px) {
  .sec9 {
    padding: 8vw 0;
  }
  .sec9li {
    margin-top: 6vw;
  }
  .sec9li > li {
  }
  .sec9li > li + li {
    margin-top: 3vw;
  }
  .sec9li .num {
    width: 2.4em;
    height: 2.4em;
    font-size: 7vw;
    border-bottom-right-radius: 4vw;
  }
  .sec9li .txt {
    padding: 4vw;
  }

  .sec9li .ttls {
    font-size: 5.8vw;
    margin-bottom: 2.6vw;
  }
  .sec9_checkli {
    font-size: 3.9vw;
    margin-bottom: 3vw;
  }
  .sec9_checkli li {
    padding-left: 5.6vw;
    white-space: nowrap;
    background-size: 4vw;
  }
  .sec9_checkli li + li {
    margin-top: 0.5em;
  }
  .sec9_hangli {
    font-size: 3.4vw;
  }
  .sec9_hangli li + li {
    margin-top: 0.3em;
  }
}

/* ------------------------------
    sec10
------------------------------ */
.sec10 {
  padding: 80px 0;
}
.sec10_box {
  padding: 50px;
  margin-bottom: 55px;
}
.sec10_ttl_sub {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 2.4rem;
}
.sec10_ttl_sub .large {
  font-size: 130%;
}
.sec10_box .ttls {
  font-size: 3rem;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec10_boxs_inner {
  padding: 36px 43px;
}
.sec10_boxs_inner .img {
  width: 490px;
}
.sec10_boxs_inner .txt {
  flex: 1;
  padding-top: 20px;
}
.sec10_boxs_inner .txt .large {
  font-size: 130%;
}

@media screen and (min-width: 769px) {
}

@media screen and (max-width: 768px) {
  .sec10 {
    padding: 8vw 0;
  }
  .sec10_box {
    padding: 6vw 3vw;
    margin-bottom: 8vw;
  }
  .sec10_ttl_sub {
    margin-top: 3vw;
    margin-bottom: 4vw;
    font-size: 3.2vw;
  }
  .sec10_ttl_sub .large {
    font-size: 120%;
  }
  .sec10_box .ttls {
    font-size: 4vw;
    height: 8vw;
  }
  .sec10_boxs_inner {
    padding: 4vw 3vw;
  }
  .sec10_boxs_inner .img {
    width: 100%;
  }
  .sec10_boxs_inner .txt {
    padding-top: 4vw;
    font-size: 3.4vw;
  }
  .sec10_boxs_inner .txt .large {
    font-size: 130%;
  }
}

/* ------------------------------
    sec11
------------------------------ */
.sec11 {
  padding: 84px 0 85px;
}
.sec11 .ttl1_sub {
  margin-bottom: 40px;
}
.qabox {
}
.qabox + .qabox {
  margin-top: 26px;
}
.qa_q {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px 15px 33px;
  border-radius: 4em;
  /*font-weight: bold;*/
  cursor: pointer;
  transition: 0.3s;
}
.qa_q .ico_q {
  font-size: 3rem;
  line-height: 1;
  width: 1.5em;
  margin-top: -0.2em;
}
.qa_q .txt {
  flex: 1;
}
.qa_q .ico_mark {
  width: 40px;
  height: 40px;
  margin-left: 40px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}
.qa_q .ico_mark:before,
.qa_q .ico_mark:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #008ef2;
}
.qa_q .ico_mark:before {
  width: 20px;
  height: 5px;
}
.qa_q .ico_mark:after {
  width: 5px;
  height: 20px;
}
.qa_q.active .ico_mark:after {
  display: none;
}
.qa_a {
  display: none;
  padding: 20px 36px;
}

@media screen and (min-width: 769px) {
  .qa_q:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .sec11 {
    padding: 8vw 0;
  }
  .sec11 .ttl1_sub {
    margin-bottom: 6vw;
  }
  .qabox + .qabox {
    margin-top: 4vw;
  }
  .qa_q {
    padding: 1.3vw 3vw;
    border-radius: 4em;
  }
  .qa_q .ico_q {
    font-size: 6vw;
    width: 1.5em;
    margin-top: -0.2em;
  }
  .qa_q .txt {
    line-height: 1.3;
    margin-right: 3vw;
  }
  .qa_q .ico_mark {
    width: 7vw;
    height: 7vw;
    margin-left: 0;
  }
  .qa_q .ico_mark:before,
  .qa_q .ico_mark:after {
    border-radius: 6px;
  }
  .qa_q .ico_mark:before {
    width: 4vw;
    height: 3px;
  }
  .qa_q .ico_mark:after {
    width: 3px;
    height: 4vw;
  }
  .qa_a {
    display: none;
    padding: 3vw 4vw;
    font-size: 3.2vw;
  }
}

.mv_img1_2 img {
  max-width: 415px;
}