@charset "utf-8";

* {
  letter-spacing: 0;
}

/****** 共通 ******/

.sec_dl {
  background: #edf2dd;
  border-radius: 15px;
  padding: 67px 5%;
}

.sec_dl .img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
}

.sec_dl .img img:first-of-type {
  max-width: 180px;

}

.sec_dl .img img:last-of-type {
  max-width: 191px;

}

@media screen and (max-width: 968px) {
  .sec_dl .img img:first-of-type {
    max-width: 30vw;
  }

  .sec_dl .img img:last-of-type {
    max-width: 32vw;
  }

  .sec_dl .img {
    margin: 0 auto 20px;
  }

}

@media screen and (min-width: 969px) {
  .sec_dl .img img:first-of-type {
    width: 40%;
  }

  .sec_dl .img img:last-of-type {
    width: 50%;
  }

}

/* btn */
.lp-main .dlBtn {
  text-align: center;
}

.lp-main .dlBtn span {
  display: inline-block;
  color: #006837 !important;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px !important;
  font-size: min(1.6vw, 20px);
  position: relative;
  padding: 0 20px;
}

.lp-main .dlBtn span::before {
  position: absolute;
  content: '';
  background: #006837;
  width: 1px;
  height: 30px;
  transform: rotate(45deg);
  right: 0;
  top: 0;
}

.lp-main .dlBtn span::after {
  position: absolute;
  content: '';
  background: #006837;
  width: 1px;
  height: 30px;
  transform: rotate(-45deg);
  left: 0;
  top: 0;
}

.lp-main .dlBtn a {
  display: block;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, .15);
  border: 3px solid #FFF;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  width: 100%;
  max-width: 450px;
  padding: 15px;
  font-weight: 700;
  transition: 0.3s;
  background: #ed8218;
  margin: 0 auto;
  font-size: 24px;
}

.lp-main .dlBtn a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25);
}

.imgTxt {
  max-width: 1280px;
  margin: 0 auto;
  width: 98%;
}

@media screen and (max-width: 968px) {
  .imgTxt dt img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
  }

  .lp-main .dlBtn span {
    font-size: min(5.6vw, 16px);
  }

  .lp-main .dlBtn a {
    font-size: min(5vw, 18px);
  }

  .lp-main .dlBtn span::before {
    height: 50px;
  }

  .lp-main .dlBtn span::after {
    height: 50px;
  }
}

@media screen and (min-width: 969px) {
  .sec_dl {
    display: flex;
  }

  .sec_dl .img {
    width: 50%;
  }

  .sec_dl .txt {
    width: 50%;
  }

  .imgTxt {
    display: flex;
  }

  .imgTxt.re {
    flex-direction: row-reverse;
  }

  .imgTxt dt {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2%;
  }

  .imgTxt dd {
    width: 50%;
  }
}


/****** mv ******/
.lp-header {
  background: url(../img/mv.png) repeat-x center center/cover;
  max-width: 100%;
  padding: 0;
  position: relative;
}

.lp-header::before {
  position: absolute;
  content: '初期費用0円で\A廃棄コストを削減';
  white-space: pre;
  text-align: center;
  color: #fff;
  font-size: 50px;
  top: 33%;
}

.lp-header .h_top {
  height: 400px;
  position: relative;
  padding: 0;
  margin: 0;
  mix-blend-mode: overlay;
}

.lp-header .h_top::before {
  position: absolute;
  content: '';
  background: url(../img/mv_mark.png) no-repeat center top/contain;
  width: 378px;
  height: 375px;
  top: 80px;
  left: calc(50% - 586px);
}


.lp-header .h_top .txt {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}



.lp-header .h_bottom {
  position: relative;
  padding: 60px 0;
  margin: 0;
}

.lp-header .h_bottom::before {
  position: absolute;
  content: '';
  background: rgba(230, 230, 230, 0.8);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 230px;
}

.lp-header .h_bottom_inner {
  position: relative;
  width: 98%;
  max-width: 1088px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.lp-header .h_bottom_inner img {
  max-width: 511px;
  height: auto;

}


.lp-header .h_bottom h2 {
  color: #00474c;
  font-size: min(2.6vw, 34px);
  margin-left: 3%;
}

.lp-header .h_bottom h2 strong {
  font-weight: bold;
}

.lp-header .h_bottom h2 strong span {
  font-size: 129%;
  display: inline-block;
  margin: 0;
}

.lp-header .h_bottom h2 span {
  font-size: 141%;
  display: block;
  margin-left: -20px;
}


@media screen and (min-width: 969px) {
  .lp-header .h_bottom_inner img {
    width: 50%;
  }

  .lp-header .h_top .txt img {
    max-width: 944px;
  }

  .lp-header .h_bottom {
    margin: -80px 0 0;
  }
}

@media screen and (max-width: 968px) {
  .lp-header::before {
    display: block;
  }

  .lp-header::before {
    font-size: min(7vw, 30px);

  }

  .lp-header .h_top {
    height: 350px;
  }

  .lp-header .h_top::before {
    left: 0;
    width: 250px;
    height: 260px;
  }

  .lp-header .h_top .txt {
    width: 90%;
    top: 45%;
  }

  .lp-header .h_bottom_inner {
    flex-direction: column-reverse;
  }

  .lp-header .h_bottom h2 {
    text-align: center;
    margin: 0 auto;
    font-size: min(7vw, 22px);
  }

  .lp-header .h_bottom_inner img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
  }
}




/****** lp-sec1 ******/

.lp-sec1 {
  width: 98%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 0 50px;
}

.lp-sec1 .imgTxt {
  margin-bottom: 80px;
}

.lp-sec1 .imgTxt dt p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.lp-sec1 .imgTxt dd {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 10px 2% 0;
}

.lp-sec1 .imgTxt dd h3 {
  margin-bottom: 30px;

}

.lp-sec1 .imgTxt dd h3 span {
  color: #006977;
  font-size: min(2vw, 28px);
  border-bottom: 1px solid #006837;
}

.lp-sec1 .imgTxt dd p {
  font-size: clamp(1.2vw, 1.8vw, 33px);
  margin-bottom: 14px;
  line-height: 1.18;
}

.lp-sec1 .imgTxt dd h4 {
  color: #006977;
  font-weight: bold;
  font-size: min(1.8vw, 24px);
}

.lp-sec1 .sec_dl .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
  padding: 0;
}

.lp-sec1 .sec_dl .txt p {
  font-size: 24px;
  padding-left: 6%;
  line-height: 1.16;
}

.lp-sec1 .imgTxt .note {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}

@media screen and (max-width: 968px) {
  .lp-sec1 {
    padding: 60px 0 0;
    width: 92%;
  }

  .lp-sec1 dt img {
    max-width: 100%;

  }

  .lp-sec1 .imgTxt dd p {
    font-size: min(6vw, 22px);
  }

  .lp-sec1 .imgTxt dd h3 span {
    font-size: 20px;
  }

  .lp-sec1 .imgTxt dd h4 {
    font-size: 20px;
  }

  .lp-sec1 .imgTxt .note {
    font-size: 14px;
  }

  .lp-sec1 .sec_dl .txt p {
    padding-left: 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .lp-sec1 .imgTxt {
    margin-bottom: 50px;
  }

  .lp-sec1 .imgTxt dd {
    padding: 0 8%;
  }
}

@media screen and (min-width: 969px) {
  .lp-sec1 .imgTxt dt img {
    max-width: 378px;
  }
}

/****** lp-sec2 ******/

.lp-sec2 .lp-sec2_header {
  background: url(../img/bg.png) no-repeat center center/cover;
  min-height: 575px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* .lp-sec2 .lp-sec2_header::before {
  position: absolute;
  content: '';
  background: url(../img/bg.png) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
} */

.lp-sec2 .lp-sec2_header h2 {
  max-width: 1092px;
  width: 98%;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.lp-sec2 .lp-sec2_header h2 img {
  max-width: 478px;
}

.lp-sec2 .lp-sec2_header h2 span {
  display: block;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.167;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.lp-sec2 .lp-sec2_header h2::before {
  position: absolute;
  content: '';
  background: url(../img/img_kikai.png) no-repeat center center/contain;
  width: min(43vw, 511px);
  height: 310px;
  right: 0;

}

.lp-sec2 h3 {
  text-align: center;
  margin-bottom: 28px;
  margin-top: -80px;
}

.lp-sec2 h3 span {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background: #006977;
  border-radius: 50px;
  padding: 5px 15px;
}

.lp-sec2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  gap: 0 94px;

}

.lp-sec2 li h4 {
  text-align: center;
  color: #006977;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.lp-sec2 li img {
  width: 158px;
  height: 158px;
}

.lp-sec2 .imgTxt {
  margin-bottom: 106px;
  max-width: 1170px;
  gap: 0 10px;
  align-items: center;
}

.lp-sec2 .imgTxt dt img {
  max-width: 480px;
  width: 100%;
}

.lp-sec2 .imgTxt dd {
  text-align: left;
}

.lp-sec2 .imgTxt dd h3 {
  color: #006977;
  font-weight: 400;
  font-size: clamp(1.5vw, 3vw, 47px);
  margin-bottom: 20px;
  text-align: left;
  margin: 0 0 20px;
  line-height: 1.18;
}

.lp-sec2 .imgTxt dd h3 small {
  margin-left: -20px;
}


.lp-sec2 .imgTxt dd p {
  font-weight: 500;
  font-size: 22px;

}

@media screen and (min-width: 1920px) {
  .lp-sec2 .lp-sec2_header {
    background-size: contain;
  }
}

@media screen and (min-width: 969px) {
  .lp-sec2 .lp-sec2_header h2::before {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}

@media screen and (max-width: 968px) {
  .lp-sec2 .lp-sec2_header {
    background-size: cover;
    min-height: 460px;
  }

  .lp-sec2 .lp-sec2_header h2::before {
    top: -100%;
    height: 100%;
  }

  .lp-sec2 li h4 {
    font-size: 18px;
  }

  .lp-sec2 ul {
    gap: 15px 0;
    flex-direction: column;
  }

  .lp-sec2 li {
    margin-bottom: 30px;
  }

  .lp-sec2 li img {
    width: 200px;
    height: 200px;
  }

  .lp-sec2 .imgTxt {
    margin-bottom: 50px;
    width: 92%;
  }

  .lp-sec2 .imgTxt dd {
    padding: 0 8vw 0;
  }

  .lp-sec2 .imgTxt dd h3 {
    font-size: 26px;
  }

  .lp-sec2 .lp-sec2_header h2 span {
    font-size: min(6vw, 18px);
    text-align: center;
  }

  .lp-sec2 .lp-sec2_header h2 img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  .lp-sec2 .imgTxt dd p {
    font-size: 18px;
  }
}

/****** lp-dl-sec ******/
.lp-dl-sec {
  padding: 0;
  position: relative;
}

.lp-dl-sec::before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #006977 transparent transparent transparent;
  border-width: 30px 23.5px 0px 23.5px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.sec_dl_wrap {
  background-color: #f3f7eb;
  width: 100%;
}

.lp-dl-sec .catch {
  text-align: center;
  font-weight: bold;
  color: #006977;
  font-size: 33px;
  margin-bottom: 15px;
}

.lp-dl-sec .sec_dl {
  background: none;
  max-width: 1170px;
  margin: 0 auto;
  padding: 67px 0;
}

.lp-dl-sec .txt {
  padding-left: 10px;
}

.lp-dl-sec .txt h3 {
  color: #006977;
  font-weight: bold;
  font-size: 28px;
}

.lp-dl-sec .txt ol {
  list-style-type: decimal;
  margin-left: 30px;
}

.lp-dl-sec .txt li {
  color: #006977;
  font-size: 22px;
  font-weight: 400;
}

@media screen and (min-width: 969px) {}

@media screen and (max-width: 968px) {
  .lp-dl-sec .catch {
    font-size: min(6vw, 20px);
  }

  .lp-dl-sec .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
    margin-top: 30px;
    padding: 0;
  }

  .lp-dl-sec .txt h3 {
    font-size: min(6vw, 20px);
    text-align: center;
  }

  .lp-dl-sec .txt li {
    font-size: 18px;
  }
}