  @charset "UTF-8";
/*
ヒラギノの代替（基本フォントはこれ）
https://fonts.google.com/noto/specimen/Noto+Sans+JP?subset=japanese&query=noto+sans
Regular 400
Medium 500
Bold 700
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;900&family=Noto+Sans+JP:wght@400;500;700&family=Oswald:wght@400;600;700&display=swap");
.electricity-main {
  width: 66.14%;
  max-width: 764px;
  margin: 0 auto;
}
.electricity-main figure {
  width: 66.5%;
  max-width: 469px;
  margin: 60px auto 20px;
}
@media only screen and (max-width: 767px) {
  .electricity-main {
    width: 100%;
  }
  .electricity-main figure {
    margin: 30px auto 0;
  }
}

.img_electricity02 {
  width: 63%;
  max-width: 695px;
  margin: 0 auto;
  padding: 42px 0 0;
}
@media only screen and (max-width: 767px) {
  .img_electricity02 {
    width: 100%;
    padding: 20px 0;
  }
}

.img_electricity02__text {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .img_electricity02__text {
    margin-top: 25px;
  }
  .img_electricity02__text .inner {
    width: calc(100% - 40px);
  }
}

.box-case_electricity .box-case_electricity-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*  justify-content: space-between;*/
  flex-wrap: wrap;
  margin-top: 30px;
}
.box-case_electricity .box-case_electricity-inner > * {
  width: 21.1%;
	margin-right: 5.2%;
  margin-bottom: 50px;
}
.box-case_electricity .box-case_electricity-inner > *:nth-child(4n) { margin-right: 0;}
.box-case_electricity .box-case_electricity-inner dl {
  margin-top: 5px;
  font-size: clamp(1.2rem, 1.43vw, 1.6rem);
  font-weight: bold;
}
.box-case_electricity .box-case_electricity-inner dl dt {
  border-bottom: solid 1px #949DA2;
  margin-bottom: 7px;
}
.box-case_electricity .box-case_electricity-inner dl dd {
  line-height: 1.5;
}
.box-case_electricity .box-case_electricity-inner dl .company {
  font-size: 1.4rem;
  font-weight: normal;
}
.box-case_electricity .box-case_electricity-inner dl .company img {
  height: 17px;
}
@media only screen and (max-width: 767px) {
  .box-case_electricity .box-case_electricity-inner {
	  justify-content: space-between;
	}
  .box-case_electricity .box-case_electricity-inner > * {
    width: 48.5%;
    margin-bottom: 25px;
  }
	.box-case_electricity .box-case_electricity-inner > * { margin-right: 0;}
  .box-case_electricity .box-case_electricity-inner dl dt {
    font-size: 1.2rem;
  }
  .box-case_electricity .box-case_electricity-inner dl .company {
    font-size: 1.2rem;
  }
}

.text-category {
  font-size: 1.2rem;
  font-weight: bold;
}
.text-category img {
  width: 26px;
  /* margin-left: 10px; */
  margin-right: 6px;
}

.box-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-service > * {
  width: 49.2%;
  background: #fff;
  margin-bottom: 20px;
}
.box-service .box-service_card {
  border: solid 1px #D9DFE2;
  color: #2D3133;
  font-size: 1.4rem;
}
.box-service .box-service_card .img {
  position: relative;
}
.box-service .box-service_card .img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 54px;
  height: 54px;
}
.box-service .box-service_card .img .icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #2D3133;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  z-index: -1;
}
.box-service .box-service_card .body {
  padding: 20px 28px 30px;
  position: relative;
}
.box-service .box-service_card .body .header {
  font-family: 'Noto Sans JP';
  font-size: clamp(2.4rem, 3.9vw, 4.8rem);
  font-weight: bold;
  line-height: 1.32;
}
.box-service .box-service_card .body .tag {
  background: #B7A453;
  border-radius: 4px;
  color: #fff;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  font-weight: bold;
  display: inline-block;
  line-height: 1.33;
  margin: 5px 0 0;
  padding: 3px 10px;
}
.box-service .box-service_card .body .title {
  font-size: clamp(1.2rem, 1.9vw, 2.4rem);
  font-weight: bold;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .box-service .box-service_card .body .title {
    min-height: 2.8em;
  }
}
.box-service .box-service_card .body .text {
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
  margin-top: 15px;
}
.box-service .box-service_card .body .category {
  position: absolute;
  top: 20px;
  right: 12px;
}
.box-service .box-service_card .body .category img {
  width: 36px;
  margin-right: 6px;
}
.box-service .box-service_card:hover {
  border: solid 1px #005E3C;
  text-decoration: none;
}
.box-service .box-service_card:hover .img .icon:before {
  background: #408B46;
}
.box-service .box-service_card:hover .body .header,
.box-service .box-service_card:hover .body .title {
  color: #408B46;
}
@media only screen and (max-width: 767px) {
  .box-service > * {
    width: 100%;
  }
  .box-service .box-service_card {
    font-size: 1.2rem;
  }
  .box-service .box-service_card .img .icon {
    width: 27px;
    height: 27px;
  }
  .box-service .box-service_card .img .icon:before {
    width: 48px;
    height: 48px;
  }
  .box-service .box-service_card .body {
    padding: 10px 15px 15px;
  }
  .box-service .box-service_card .body .header {
    font-size: 1.8rem;
  }
  .box-service .box-service_card .body .tag {
    font-size: 1.1rem;
    padding: 3px;
    margin: 5px 0 10px;
  }
  .box-service .box-service_card .body .title {
    font-size: 1.6rem;
  }
  .box-service .box-service_card .body .category img {
    width: 26px;
  }
}

/*
.page-title {
  &__category {
    .title {

      &.icon-ennesmart {
        &:before {
          background: url(/about/images/icon_cat_ennesmart.png) no-repeat center center;
          background-size: contain;
        }
      }
      &.icon-enneteye {
        &:before {
          background: url(/about/images/icon_cat_enneteye.png) no-repeat center center;
          background-size: contain;
        }
      }
      &.icon-infoennet {
        &:before {
          background: url(/about/images/icon_cat_infoennet.png) no-repeat center center;
          background-size: contain;
        }
      }
      &.icon-ennegreen {
        &:before {
          background: url(/about/images/icon_cat_ennegreen.png) no-repeat center center;
          background-size: contain;
        }
      }
      &.icon-enneev {
        &:before {
          background: url(/about/images/icon_cat_enneev.png) no-repeat center center;
          background-size: contain;
        }
      }
      &.icon-ennebattery {
        &:before {
          background: url(/about/images/icon_cat_ennebattery.png) no-repeat center center;
          background-size: contain;
        }
      }

    }
  }
}

@include mq($break_sp){
  .page-title {
    &__category {
      .title {
        &:before {
          top: -80px;
          width: 61px;
          height: 70px;
        }
      }
    }
  }
}

 */
.page-title .img_catch_item.info {
  position: absolute;
  bottom: -28px;
  left: 43%;
  width: 25vw;
  max-width: 309px;
}
@media only screen and (max-width: 767px) {
  .page-title .img_catch_item.info {
    display: none;
  }
}

.box-catch_copy.es {
  background-image: url(/about/images/ennesmart/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  background-size: 420px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.es {
    background-position: calc(100% - 10px) 90%;
    background-size: 50%;
  }
}
.box-catch_copy.enneteye {
  background-image: url(/about/images/enneteye/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  background-size: 258px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.enneteye {
    background-position: calc(100% - 10px) 90%;
    background-size: 44%;
  }
}
.box-catch_copy.infoennet {
  background-image: url(/about/images/infoennet/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 43px) center;
  background-size: 222px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.infoennet {
    background-position: calc(100% - 10px) 90%;
    background-size: 34%;
  }
}
.box-catch_copy.ennegreen {
  background-image: url(/about/images/ennegreen/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: 283px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.ennegreen {
    background-position: calc(100% - 10px) 90%;
    background-size: 50%;
  }
}
.box-catch_copy.ennebattery {
  background-image: url(/about/images/ennebattery/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 48px) center;
  background-size: 201px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.ennebattery {
    background-position: calc(100% - 10px) 90%;
    background-size: 40%;
  }
}
.box-catch_copy.enneev {
  background-image: url(/about/images/enneev/bg_box_catch.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 41px) center;
  background-size: 242px;
}
@media only screen and (max-width: 767px) {
  .box-catch_copy.enneev {
    background-position: calc(100% - 10px) 90%;
    background-size: 50%;
  }
}

.box-plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3% 0 1%;
}
.box-plan > * {
  width: 24%;
  max-width: 292px;
}
@media only screen and (max-width: 767px) {
  .box-plan > * {
    width: 49%;
    margin-bottom: 8px;
  }
}

.box-text_commentary {
  width: 77.9%;
  max-width: 900px;
  margin: 25px auto;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  overflow: hidden;
}
.box-text_commentary > p {
  width: 100%;
  background-color: #408B46;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 2px;
  margin: 0;
}
.box-text_commentary .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 34px;
}
.box-text_commentary .wrap dl {
  width: 47.4%;
}
.box-text_commentary .wrap dl dt {
  color: #005E37;
  font-weight: bold;
}
.box-text_commentary .wrap dl dd {
  font-size: 1.3rem;
  margin-top: 5px;
  line-height: 1.53;
}
.box-text_commentary .wrap dl dd + dt {
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .box-text_commentary {
    margin: 0 auto;
    width: 100%;
  }
  .box-text_commentary > p {
    font-size: 1.5rem;
  }
  .box-text_commentary .wrap {
    flex-direction: column;
    padding: 15px;
  }
  .box-text_commentary .wrap dl {
    width: 100%;
  }
  .box-text_commentary .wrap dl + dl {
    margin-top: 15px;
  }
}

/*
.list-information_number {
  li {
    font-size: 1.2rem;
    text-indent: -3.5em;
    padding-left: 3.5em;
    span {
      margin-right: 2rem;
    }
  }
  &.list-flex {
    width: 75%;
    margin: 70px auto 0;
  }

  @include mq($break_sp){
    &.list-flex {
      width: 100%;
      margin: 30px auto 0;
    }
  }
}

 */
.box-capmaign {
  width: 66.9%;
  max-width: 773px;
  margin: 0 auto;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .box-capmaign {
    width: 100%;
    font-size: 1.4rem;
  }
}

.area-performance {
  padding: 110px 0;
}
.area-performance .container-inner + .container-inner {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .area-performance {
    padding: 50px 0;
  }
  .area-performance .container-inner + .container-inner {
    margin-top: 40px;
  }
}

.box-performance {
  background: #fff;
  padding: 80px 10.93% 40px;
  position: relative;
  /*
  &:before {
    content: '';
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: $base_font_color;
    border-radius: 50%;
  }

   */
}
.box-performance.performance01 {
  padding-left: 0;
  padding-right: 0;
    /*
    &:before {
      content: '環境性';
    }

     */
}
.box-performance.performance01 figure {
  width: 100%;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-performance.performance01 figure img {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .box-performance.performance01 figure {
    flex-direction: column;
  }
  .box-performance.performance01 figure img {
    width: 100%;
  }
}
.box-performance.performance02 {
    /*
    &:before {
      content: '信頼性';
    }

     */
}
.box-performance.performance02 figure {
  width: 100%;
  margin: 0 auto 30px;
}
.box-performance.performance03 {
    /*
    &:before {
      content: '経済性';
    }

     */
}
.box-performance.performance03 figure {
  width: 67.1875%;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
  .box-performance {
    padding: 40px 15px 20px;
  }
  .box-performance:before {
    font-size: 1.5rem;
    top: -30px;
    width: 60px;
    height: 60px;
  }
  .box-performance.performance01 figure {
    width: 100%;
    margin: 0 auto 25px;
  }
  .box-performance.performance02 figure {
    width: 100%;
    margin: 0 auto 15px;
  }
  .box-performance.performance03 figure {
    width: 100%;
    margin: 0 auto 25px;
  }
}

.box-introduction_ex {
  width: 64%;
  margin: 0 auto;
}
.box-introduction_ex figure {
  width: 83%;
  margin: 100px auto 75px;
}
@media only screen and (max-width: 767px) {
  .box-introduction_ex {
    width: calc(100% - 40px);
  }
  .box-introduction_ex figure {
    width: 100%;
    margin: 50px auto 40px;
  }
}

#box-flow_point {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #box-flow_point {
    margin-left: -20px;
    margin-right: -20px;
  }
}
#box-flow_point:before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  width: 2px;
  height: 87%;
  background: #CADE9D;
}
@media only screen and (max-width: 767px) {
  #box-flow_point:before {
    left: 24px;
    height: 83%;
  }
}
#box-flow_point dt,
#box-flow_point dd {
  padding-left: 95px;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dt,
  #box-flow_point dd {
    padding-left: 70px;
  }
}
#box-flow_point dt {
  color: #005E37;
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  counter-increment: number;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dt {
    font-size: 1.8rem;
  }
}
#box-flow_point dt[class*='step']:before {
  content: 'STEP';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: #005E37;
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  font-weight: normal;
  text-align: center;
  padding-top: 5px;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dt[class*='step']:before {
    font-size: 1.1rem;
    width: 50px;
    height: 50px;
  }
}
#box-flow_point dt[class*='step']:after {
  content: counter(number);
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 3.5rem;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dt[class*='step']:after {
    width: 50px;
    height: 50px;
    font-size: 2.0rem;
  }
}
#box-flow_point dd {
  line-height: 1.5;
  position: relative;
}
#box-flow_point dd + dt {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dd + dt {
    margin-top: 40px;
  }
}
#box-flow_point dd .box-flow_point-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
#box-flow_point dd .box-flow_point-text > div {
  width: 456px;
  background: #E6EFCF;
}
#box-flow_point dd .box-flow_point-text > div:before {
  content: '';
  border-left: 25px solid transparent;
  border-top: 25px solid #6DAD19;
  position: absolute;
  top: 0;
  right: 0;
}
#box-flow_point dd .box-flow_point-text > div:after {
  content: '';
  border-left: 24px solid transparent;
  border-top: 24px solid #fff;
  position: absolute;
  top: 0;
  right: 0;
}
#box-flow_point dd .box-flow_point-text > div > div {
  position: relative;
  padding: 1em 1.5em 1em 4.2em;
}
#box-flow_point dd .box-flow_point-text > div > div:before {
  content: '';
  border-right: 25px solid transparent;
  border-bottom: 25px solid #6DAD19;
  position: absolute;
  bottom: 0;
  left: 0;
}
#box-flow_point dd .box-flow_point-text > div > div:after {
  content: '';
  border-right: 24px solid transparent;
  border-bottom: 24px solid #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
#box-flow_point dd .box-flow_point-text > div > div .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #005E37;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dd .box-flow_point-text > div > div {
    padding-left: 3.2em;
  }
  #box-flow_point dd .box-flow_point-text > div > div .title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  #box-flow_point dd .box-flow_point-text > div {
    width: 100%;
  }
}
#box-flow_point dd .box-flow_point-text[class*='step'] > div > div > div {
  position: relative;
}
#box-flow_point dd .box-flow_point-text[class*='step'] > div > div > div:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -6em;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: #99bf32;
  border-radius: 50%;
  border: solid 5px #E6EFCF;
}
@media only screen and (max-width: 767px) {
  #box-flow_point dd .box-flow_point-text[class*='step'] > div > div > div:before {
    left: -5em;
    width: 60px;
    height: 60px;
  }
}
#box-flow_point dd .box-flow_point-text.step02 > div > div > div:before {
  background: #99bf32 url(../images/enneev/icon_step02.png) no-repeat center center;
  background-size: contain;
}
#box-flow_point dd .box-flow_point-text.step03 > div > div > div:before {
  background: #99bf32 url(../images/enneev/icon_step03.png) no-repeat center center;
  background-size: contain;
}
#box-flow_point dd .box-flow_point-text.step06 > div > div > div:before {
  background: #99bf32 url(../images/enneev/icon_step06.png) no-repeat center center;
  background-size: contain;
}
#box-flow_point dd .box-flow_point-text.step07 > div > div > div:before {
  background: #99bf32 url(../images/enneev/icon_step07.png) no-repeat center center;
  background-size: contain;
}

.green_img03 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  margin-top: 50px;
}
.green_img03 .title {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
}
.green_img03 .img_graph02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 65%;
}
.green_img03 .img_graph02 > * {
  width: 48%;
}
.green_img03 .img_graph02 figcaption {
  color: #000;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
}
.green_img03 .img_graph02 figcaption em {
  color: #408B46;
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
	font-weight: bold;
}
.green_img03 .img_text02 {
  width: 32%;
}
.green_img03 .img_text02 > * + * {
  margin-top: 25px;
}
.green_img03 .title strong {
    font-size: clamp(1.8rem, 1.4vw, 1.8rem);
    font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .green_img03 {
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
  }
  .green_img03 > * {
    width: 100% !important;
    max-width: none !important;
  }
  .green_img03 > * + * {
    margin-top: 25px;
  }
  .green_img03 .title {
    font-size: 1.4rem;
  }
  .green_img03 .img_graph02 {
    flex-direction: column;
  }
  .green_img03 .img_graph02 > * {
    width: 100%;
  }
}

.box-catch_copy-point .box-point_list.features ul li .header {
  margin: 0;
}

/*-------230612追記----------*/
.nol-margin{
  margin-left: 0;
}