@charset "UTF-8";
/* wrapper
----------------------------------------------- */
#wrapper {
  overflow: hidden;
  padding: 100px 0 0;
}

@media (max-width: 1024px) {
  #wrapper {
    padding: 60px 0 0;
  }
}
.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header
----------------------------------------------- */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
  z-index: 99;
}

.show #header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  /* Firefox */
  -webkit-transition: all 0.3s !important;
  /* Chrome&Safari */
}

#header .headerin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  padding: 0 80px;
  position: relative;
}

#header .headermess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .headerlogo {
  margin-right: 55px;
  position: relative;
}

#header .headerlogo a:hover {
  opacity: 0.8;
}

#header .gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

#header .gnavi a {
  color: #000;
  font-weight: 400;
  display: block;
  letter-spacing: 0;
  position: relative;
}

#header .gnavi a:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#header .gnavi a:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#header .headerbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

#header .headerbtn .headercta {
  width: 160px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  color: #fff;
  background: #ACC61A;
  border-radius: 40px;
}

#header .headerbtn .headerjoin {
  width: 176px;
  height: 50px;
  border: 2px #58BAA0 solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  color: #58BAA0;
  background: #fff;
  border-radius: 40px;
}

#header .fixbtn {
  display: none;
}

.hamburger {
  display: none;
}

@media (max-width: 1024px) {
  #header .headerin {
    height: 60px;
    padding: 0 20px;
  }
  #header .headerlogo {
    width: 80px;
  }
  #js-nav-bg {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 70px 40px 50px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
    position: relative;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #ACC61A;
  }
  .nav-open .hamburger_border {
    background-color: #fff;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  /* 表示された時用のCSS */
  .nav-open #js-nav-bg {
    display: block;
    right: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(194, 209, 22, 0.8)), color-stop(rgba(146, 199, 84, 0.8)), to(rgba(88, 186, 160, 0.8)));
    background: linear-gradient(to right, rgba(194, 209, 22, 0.8), rgba(146, 199, 84, 0.8), rgba(88, 186, 160, 0.8));
  }
  .nav-open .hamburger_border_top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 20px;
    margin-bottom: 15px;
  }
  #header .gnavi {
    display: block;
  }
  #header .gnavi li {
    margin-right: 0;
  }
  #header .gnavi a {
    font-size: 20px;
    display: block;
    letter-spacing: 0.1em;
    padding: 15px 0;
    color: #fff;
    position: relative;
  }
  #header .gnavi a:before {
    display: none;
  }
  #header .gnavi a:hover:before {
    display: none;
  }
  #header .headerbtn {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    background: #fff;
    padding: 0 20px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
  }
  #header .headerbtn .headercta {
    width: 160px;
    height: 40px;
    font-size: 12px;
  }
  #header .headerbtn .headerjoin {
    width: 160px;
    height: 40px;
    border: 1px #58BAA0 solid;
    font-size: 12px;
  }
  .show #header {
    -webkit-transform: none;
            transform: none;
  }
  .show #header .headerbtn {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    /* Firefox */
    -webkit-transition: all 0.3s !important;
    /* Chrome&Safari */
  }
  #header .fixbtn {
    display: block;
  }
  #header .fixbtn {
    width: 400px;
    max-width: 90%;
    margin: 30px auto 0;
  }
  #header .fixbtn li + li {
    margin-top: 15px;
  }
  #header .fixbtn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    height: 54px;
    border-radius: 40px;
  }
  #header .fixbtn .headercta {
    background: #fff;
    color: #71B7A1;
    border: 1px #71B7A1 solid;
  }
  #header .fixbtn .headerjoin {
    background: -webkit-gradient(linear, left top, right top, from(#C2D116), color-stop(#92C754), to(#58BAA0));
    background: linear-gradient(to right, #C2D116, #92C754, #58BAA0);
    color: #fff;
  }
}
@media (max-width: 767px) {
  #header .headerbtn {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #header .headerbtn li {
    width: 48%;
  }
  #header .headerbtn .headercta {
    width: 100%;
  }
  #header .headerbtn .headerjoin {
    width: 100%;
  }
}
/* footer
----------------------------------------------- */
#footer {
  background: #FAFAFA;
  padding: 65px 20px;
}

#footer .footerlogo {
  text-align: center;
}

#footer .footerlogo a:hover {
  opacity: 0.8;
}

#footer .footername {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.05em;
}

#footer .fnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 30px;
}

#footer .fnavi li {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.05em;
}

#footer .fnavi li a {
  display: block;
  text-decoration: underline;
}

#footer .fnavi li a:hover {
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  #footer {
    padding: 30px 20px;
  }
  #footer .fnavi {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    margin-top: 20px;
  }
  #footer .fnavi li {
    width: 48%;
    text-align: center;
    margin: 10px 0;
  }
  #footer .copyright {
    margin-top: 20px;
  }
}
/* anchor
----------------------------------------------- */
.anchor {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  margin-top: -100px;
  padding-top: 100px;
}

.anchor_other {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

@media (max-width: 1024px) {
  .anchor {
    margin-top: -60px;
    padding-top: 60px;
  }
  .anchor_other {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    margin-top: -60px;
    padding-top: 60px;
  }
}
/* H
----------------------------------------------- */
.hdl {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.5;
  color: #393939;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .hdl {
    font-size: 24px;
  }
}
/* btn
----------------------------------------------- */
.btncta a {
  background: #ACC61A;
  width: 280px;
  height: 70px;
  padding: 0 40px 0 30px;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  position: relative;
}

.btncta a:before {
  position: absolute;
  content: "";
  background: url(../img/arrow_cta.svg) center center no-repeat;
  right: 28px;
  height: 100%;
  width: 10px;
  top: 0;
  z-index: 0;
}

.btnjoin a {
  background: #fff;
  border: 3px #58BAA0 solid;
  width: 280px;
  height: 70px;
  padding: 0 40px 0 30px;
  font-size: 18px;
  color: #58BAA0;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 40px;
  position: relative;
}

.btnjoin a:before {
  position: absolute;
  content: "";
  background: url(../img/arrow_join.svg) center center no-repeat;
  right: 28px;
  height: 100%;
  width: 10px;
  top: 0;
  z-index: 0;
}

@media (max-width: 767px) {
  .btncta a {
    width: 240px;
    height: 60px;
    font-size: 16px;
  }
  .btnjoin a {
    border: 2px #58BAA0 solid;
    width: 240px;
    height: 60px;
    font-size: 16px;
  }
}
/* online
----------------------------------------------- */
.online {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  padding: 30px 20px 50px;
}

.online .onlineimg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.online .onlinein {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.online .onlinetit {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #393939;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .online {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .online .onlineimg {
    margin: 0 0 30px;
  }
  .online .onlinetit {
    font-size: 18px;
  }
}
/* contact
----------------------------------------------- */
.contact {
  background: #F0F4F5;
  padding: 95px 20px 0;
  border-radius: 120px 120px 0 0;
  position: relative;
}

.contact .ctabox {
  max-width: 990px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact .hdl {
  margin-bottom: 65px;
}

.contact .ctadet {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.contact .ctabor {
  background: #fff;
  width: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 145px 40px 50px;
  border-radius: 20px;
}

.contact .ctaimg {
  margin-bottom: 100px;
  position: relative;
}

.contact .ctaimg:before {
  position: absolute;
  content: "";
  left: -10px;
  top: -10px;
  background: #D9D9D9;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact .ctaimg img {
  position: relative;
  z-index: 1;
}

.contact .ctaintro {
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 5px;
}

.contact .ctaintro .sml {
  font-weight: 400;
}

.contact .ctanote {
  line-height: 1.6;
  font-weight: 400;
  padding-left: 25px;
}

.contact .ctaform {
  max-width: 410px;
}

@media (max-width: 1024px) {
  .contact .ctabox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .ctaleft {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .contact {
    padding: 40px 20px;
    border-radius: 60px 60px 0 0;
  }
  .contact .hdl {
    margin-bottom: 40px;
  }
  .contact .ctadet {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contact .ctabor {
    width: auto;
    padding: 40px 30px 30px;
  }
  .contact .ctaimg {
    margin-bottom: 50px;
  }
  .contact .ctanote {
    padding-left: 15px;
  }
}
/* faq
----------------------------------------------- */
.faq {
  background: #fff;
  padding: 95px 0;
  position: relative;
}

.faq .hdl {
  margin-bottom: 55px;
}

.faq .faqbox + .faqbox {
  margin-top: 30px;
}

.faq .faqbox .faqico {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  width: 75px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq .faqbox .qbox {
  background: #E8E8E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 20px 20px 30px;
  border-radius: 18px;
}

.faq .faqbox .qbox .faqico {
  color: #393939;
}

.faq .faqbox .qbox .qtxt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.faq .faqbox .abox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0 0 30px;
}

.faq .faqbox .abox .faqico {
  color: #ACC61A;
}

.faq .faqbox .abox .atxt {
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
  .faq .hdl {
    margin-bottom: 40px;
  }
  .faq .faqbox .faqico {
    font-size: 24px;
    width: 40px;
  }
  .faq .faqbox .qbox {
    padding: 15px 20px;
  }
  .faq .faqbox .qbox .faqico {
    color: #393939;
  }
  .faq .faqbox .qbox .qtxt {
    font-size: 16px;
  }
  .faq .faqbox .abox {
    padding: 20px 0 0 20px;
  }
}
/* about
----------------------------------------------- */
.about {
  background: #F0F4F5;
  padding: 95px 20px;
}

.about .hdl {
  margin-bottom: 65px;
}

.about .aboutbox {
  max-width: 840px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about .aboutbox li {
  width: 47.6%;
  padding: 40px 20px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 18px;
}

.about .aboutbox .aboutimg {
  text-align: center;
  margin-bottom: 8px;
}

.about .aboutbox .abouttit {
  text-align: center;
  color: #393939;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about .aboutbox .abouttxt {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #565656;
}

.about .aboutdet {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #393939;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}

.about .aboutmess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.about .aboutmess li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.about .aboutmess li + li {
  padding-left: 35px;
  margin-left: 35px;
}

.about .aboutmess li + li:before {
  position: absolute;
  content: "";
  background: #000;
  width: 1px;
  height: 100px;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.about .aboutmess .messimg01 {
  margin-right: 30px;
  position: relative;
}

.about .aboutmess .messimg01:before {
  position: absolute;
  content: "";
  background: #D9D9D9;
  left: -5px;
  top: -5px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about .aboutmess .messimg01 img {
  position: relative;
  z-index: 1;
}

.about .aboutmess .messimg02 {
  margin-right: 10px;
}

@media (max-width: 1024px) {
  .about .aboutmess {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .about .aboutmess li {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about .aboutmess li + li {
    padding: 50px 0 0;
    margin: 50px 0 0;
    border-top: 1px #000 solid;
  }
  .about .aboutmess li + li:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 40px 20px;
  }
  .about .hdl {
    margin-bottom: 40px;
  }
  .about .aboutbox li {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .about .aboutbox .aboutimg {
    text-align: center;
    margin-bottom: 8px;
  }
  .about .aboutbox .abouttit {
    font-size: 18px;
  }
  .about .aboutdet {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .about .aboutmess li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about .aboutmess li + li {
    padding: 30px 0 0;
    margin: 30px 0 0;
  }
  .about .aboutmess .messimg01 {
    margin: 0 0 20px;
    position: relative;
  }
  .about .aboutmess .messimg02 {
    margin: 0 0 20px;
  }
}
/* case
----------------------------------------------- */
.case {
  padding: 96px 0 110px;
  position: relative;
}

.case .caseinner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 97px;
}

.case .hdl {
  margin-bottom: 50px;
}

.case .caseslider .slick-arrow {
  border: none;
  background: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: none;
  width: 56px;
  height: 56px;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 1;
}

.case .caseslider .slick-prev {
  background: url(../img/prev_slider.svg) center center no-repeat;
  left: -87px;
}

.case .caseslider .slick-next {
  background: url(../img/next_slider.svg) center center no-repeat;
  right: -87px;
}

.case .caseslider .slick-slide {
  padding: 0 16px;
}

.case .caseslider .casebox {
  background: #FAFAFA;
  padding: 40px 35px 25px 35px;
  border-radius: 30px 0 30px 0;
}

.case .caseslider .casetit {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.case .caseslider .casetit .green {
  color: #C2D116;
}

.case .caseslider .casesolu li + li {
  margin-top: 15px;
}

.case .caseslider .casesolu li {
  padding-left: 15px;
}

.case .caseslider .casesolu .themetit {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}

.case .caseslider .casesolu .themetit:before {
  position: absolute;
  content: "";
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 7px #757575 solid;
  border-right: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  z-index: 2;
}

.case .caseslider .casesolu .solutit {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}

.case .caseslider .casesolu .solutit:before {
  position: absolute;
  content: "";
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-left: 7px #ACC61A solid;
  border-right: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  z-index: 2;
}

.case .caseslider .casesolu .solutxt {
  font-weight: 500;
  line-height: 1.7;
}

.case .caseslider .caseintro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #565656;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.case .caseslider .caseintro img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .case {
    padding: 40px 0 50px;
  }
  .case .caseinner {
    padding: 0 40px;
  }
  .case .hdl {
    margin-bottom: 40px;
  }
  .case .caseslider .slick-arrow {
    width: 26px;
    height: 26px;
  }
  .case .caseslider .slick-prev {
    background: url(../img/prev_slider.svg) center center no-repeat;
    background-size: 26px 26px;
    left: -30px;
  }
  .case .caseslider .slick-next {
    background: url(../img/next_slider.svg) center center no-repeat;
    background-size: 26px 26px;
    right: -30px;
  }
  .case .caseslider .slick-slide {
    padding: 0 10px;
  }
  .case .caseslider .casebox {
    padding: 20px;
  }
  .case .caseslider .casetit {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .case .caseslider .casesolu li + li {
    margin-top: 10px;
  }
  .case .caseslider .casesolu .themetit {
    font-size: 16px;
  }
  .case .caseslider .casesolu .solutit {
    font-size: 16px;
  }
  .case .caseslider .caseintro img {
    width: 60px;
    margin-right: 20px;
  }
}
/* information
----------------------------------------------- */
.information {
  background: #E7EFF1;
  padding: 30px 20px;
}

.information .inforbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.information .inforimg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.information .infortit {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.information .infortxt {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.information .inforbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}

@media (max-width: 1024px) {
  .information .inforbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .information .inforimg {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .information .infortit {
    font-size: 18px;
  }
  .information .infortxt {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .information .inforimg {
    margin-bottom: 0;
  }
  .information .inforbtn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .information .inforbtn p {
    margin: 10px 0;
  }
}
/* drive
----------------------------------------------- */
.drive {
  background: #ACC61A;
  padding: 95px 20px 0;
  position: relative;
}

.drive .driveinner {
  max-width: 1080px;
  margin: 0 auto;
}

.drive .drivecap {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.drive .hdl {
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}

.drive .drivetxt {
  text-align: center;
  margin-bottom: 65px;
  line-height: 2;
}

@media (max-width: 767px) {
  .drive {
    padding: 40px 20px 0;
  }
  .drive .drivecap {
    font-size: 18px;
  }
  .drive .hdl {
    margin-bottom: 20px;
  }
  .drive .drivetxt {
    text-align: left;
    margin-bottom: 40px;
  }
}
.drive .drivebox {
  background: #fff;
  padding: 70px 20px;
  -webkit-box-shadow: 0px 0px 20px rgba(157, 157, 157, 0.25);
          box-shadow: 0px 0px 20px rgba(157, 157, 157, 0.25);
  border-radius: 25px 25px 0 0;
}

.drive .driveblock {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.drive .driveblock + .driveblock {
  margin-top: 120px;
}

.drive .driveblock .hdl {
  color: #393939;
  margin-bottom: 60px;
}

.drive .what01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
}

.drive .what01 .tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-right: 60px;
}

.drive .what01 .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drive .what02 {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 50px;
}

.drive .what02 .tit {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-right: 35px;
}

.drive .what02 .whatbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.drive .what02 .whatbox li {
  text-align: center;
  position: relative;
}

.drive .what02 .whatbox li + li:before {
  position: absolute;
  content: "";
  background: url(../img/arrow_what.svg) center center no-repeat;
  width: 90px;
  height: 117px;
  right: calc(100% + 10px);
  top: 0;
  z-index: 0;
}

.drive .what02 .whatbox .boximg {
  margin-bottom: 5px;
}

.drive .what02 .whatbox .boxtxt {
  color: #565656;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.drive .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -60px;
}

.drive .feature li {
  width: 28%;
  margin-bottom: 60px;
}

.drive .feature .featimg {
  text-align: center;
  margin-bottom: 15px;
}

.drive .feature .feattit {
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.drive .feature .feattxt {
  line-height: 1.6;
  color: #565656;
}

@media (max-width: 1024px) {
  .drive .what01 {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drive .what01 .tit {
    margin: 0 0 30px;
  }
  .drive .what02 {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drive .what02 .tit {
    margin: 0 0 30px;
  }
  .drive .feature li {
    width: 31%;
  }
}
@media (max-width: 767px) {
  .drive .drivebox {
    padding: 40px 20px;
  }
  .drive .driveblock + .driveblock {
    margin-top: 60px;
  }
  .drive .driveblock .hdl {
    margin-bottom: 40px;
  }
  .drive .what01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drive .what01 .tit {
    font-size: 18px;
  }
  .drive .what02 {
    margin-top: 40px;
  }
  .drive .what02 .tit {
    font-size: 18px;
  }
  .drive .what02 .whatbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .drive .what02 .whatbox li + li {
    margin-top: 80px;
  }
  .drive .what02 .whatbox li + li:before {
    position: absolute;
    content: "";
    background: url(../img/arrow_what.svg) center center no-repeat;
    background-size: 60px 13px;
    width: 60px;
    height: 13px;
    right: auto;
    -webkit-transform: translate(-50%, 0) rotate(90deg);
            transform: translate(-50%, 0) rotate(90deg);
    left: 50%;
    top: -40px;
    z-index: 0;
  }
  .drive .feature {
    margin-bottom: -30px;
  }
  .drive .feature li {
    width: 48%;
    margin-bottom: 30px;
  }
  .drive .feature .feattit {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
/* problem
----------------------------------------------- */
.problem {
  background: #fff;
  padding: 125px 20px 95px;
}

.problem .hdl {
  margin-bottom: 75px;
}

.problem .problembox {
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -50px;
}

.problem .problembox li {
  width: 33%;
  margin-bottom: 50px;
}

.problem .problembox .proimg {
  text-align: center;
  margin-bottom: 15px;
}

.problem .problembox .proimg img {
  width: 166px;
}

.problem .problembox .protit {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.problem .problembox .protxt {
  color: #565656;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

.problem .problemdet {
  text-align: center;
  margin-top: 55px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #393939;
}

@media (max-width: 767px) {
  .problem {
    padding: 60px 20px 40px;
  }
  .problem .hdl {
    margin-bottom: 40px;
  }
  .problem .problembox {
    margin-bottom: -30px;
  }
  .problem .problembox li {
    width: 48%;
    margin-bottom: 30px;
  }
  .problem .problembox .proimg {
    margin-bottom: 10px;
  }
  .problem .problembox .proimg img {
    width: 83px;
  }
  .problem .problembox .protit {
    font-size: 16px;
  }
  .problem .problemdet {
    margin-top: 30px;
    font-size: 18px;
  }
}
/* main
----------------------------------------------- */
.main {
  background: url(../img/bg_main.jpg) center center no-repeat;
  background-size: cover;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 110px;
     -moz-column-gap: 110px;
          column-gap: 110px;
}

.main .maincont {
  color: #fff;
}

.main .maintit {
  font-size: 60px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.main .maintit .titline {
  border-bottom: 5px #fff solid;
}

.main .maindet {
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.main .maintxt {
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main .mainform {
  max-width: 500px;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.main .mainform .satori__submit_group {
  margin: 0;
  padding: 1em;
}

@media (max-width: 1024px) {
  .main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding: 50px;
  }
  .main .maincont {
    margin-bottom: 50px;
  }
  .main .mainform {
    max-width: 500px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .main {
    padding: 30px 20px;
  }
  .main .maincont {
    margin-bottom: 30px;
  }
  .main .maintit {
    font-size: 30px;
  }
  .main .maintit .titline {
    border-bottom: 2px #fff solid;
  }
  .main .maindet {
    font-size: 18px;
  }
  .main .maintxt {
    font-size: 28px;
  }
}
/* main
----------------------------------------------- */
.form_block1 {
  width: 460px !important;
  border-radius: 10px;
  padding: 40px;
  background-color: #fafafa;
}
@media (max-width: 460px) {
  .form_block1 {
    width: 100% !important;
    padding: 20px 20px 40px;
  }
}
.form_block1 h1 {
  font-size: 20px !important;
  text-align: center;
}
.form_block1 h3 {
  font-size: 16px !important;
  text-align: center;
  padding-bottom: 20px;
}

.form_block2 {
  width: 100%;
  padding: 0 0 40px;
  max-width: 460px;
}
.form_block2 h1 {
  display: none;
}
.form_block2 h3 {
  display: none;
}