/*-----------------------------------------------------

 plan

-----------------------------------------------------*/
.plan-header-area {
  display: flex;
  width: 100%;
  height: 300px;
  border-top: solid 1px #e6f4e0;
  border-bottom: solid 1px #e6f4e0;
}

.plan-visual {
  width: 50%;
  height: 100%;
}
.plan-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 50%;
  text-align: center;
}
.plan-header .title-greenline {
  margin-bottom: 20px;
}

.plan-point {
  margin: 50px 0 70px;
}
.plan-point .card {
  padding: 20px 40px;
  border-right: solid 1px #2c2626;
}
.plan-point .card:first-child {
  padding-left: 0;
}
.plan-point .card:last-child {
  padding-right: 0;
  border-right: none;
}
.plan-point .card-header {
  font-size: 2rem;
}
.plan-point .card p {
  text-align: center;
}

.example .section-header {
  color: #58b531;
}

.greenbox-area {
  max-width: 1200px;
  margin: auto;
}

.greenbox {
  flex-direction: row;
  width: calc(calc(100% / 3) - 20px);
  max-width: 360px;
  height: auto;
  padding: 20px 30px 30px;
  margin: 10px;
  opacity: 1;
}

.plan-step-area {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.plan-step-left {
  width: calc(100% - 300px);
  padding-right: 5.83%;
}

.plan-step {
  width: 100%;
  margin-top: 35px;
}

.plan-step-item {
  display: flex;
  align-items: center;
  margin-bottom: 65px;
  position: relative;
}
.plan-step-item::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 15px 0 15px;
  border-color: #58b531 transparent transparent transparent;
  position: absolute;
  top: calc(100% + 25px);
  left: 65px;
}

.plan-step-icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  border: solid 1px #58b531;
  border-radius: 50%;
  background: #fff;
}

.plan-step-icon {
  width: 80px;
  height: 80px;
}

.plan-step-item:last-of-type {
  margin-bottom: 0;
}
.plan-step-item:last-of-type::after {
  display: none;
}

.plan-step-text {
  width: calc(100% - 160px);
  padding-left: 30px;
}

.plan-step-header {
  margin-bottom: 10px;
}

.plan-step-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 300px;
}

.plan-step-image {
  opacity: 0;
}

/* plan - Responsive
-----------------------------------------------------*/
@media screen and (max-width: 859px) {
  .plan-point .card {
    width: calc(100% / 3);
  }

  .greenbox {
    padding: 20px;
  }

  .plan-step-area {
    margin: 0;
  }

  .plan-step-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

  .plan-step {
    margin-top: 25px;
  }

  .plan-step-right {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (max-width: 559px) {
  .plan-header-area {
    height: 150px;
  }

  .plan-header .title-greenline {
    margin-bottom: 10px;
  }

  .plan-point {
    margin: 20px 0;
  }
  .plan-point .card {
    width: 100%;
    padding: 30px 20px;
    border-right: none;
    border-bottom: solid 1px #2c2626;
  }
  .plan-point .card:first-child {
    padding-left: 20px;
  }
  .plan-point .card:last-child {
    border-bottom: none;
  }
  .plan-point .card-header {
    font-size: 1.6rem;
  }

  .greenbox {
    width: calc(50% - 10px);
    padding: 10px;
    margin: 5px;
  }

  .plan-step-item {
    margin-bottom: 40px;
  }
  .plan-step-item::after {
    top: calc(100% + 15px);
    left: 35px;
  }

  .plan-step-icon-area {
    width: 100px;
    height: 100px;
  }

  .plan-step-icon {
    width: 60px;
    height: 60px;
  }

  .plan-step-text {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
}
/*-------------------- 20240423 footer追記 ------------------------*/
.footer .footer-nav .footer-menu-item-add {
   font-size: 1.2rem;
    margin: 0 9px;
}
.footer .footer-nav .footer-menu-item-add::before {
  transform: rotate(180deg);
    margin: 0 2px 5px 0;
}
/*----------------- END 20240423 footer追記 -----------------------*/