@charset "UTF-8";
/*定義カラー*/
.flow__section {
  padding: 80px 0;
}

.flow__h2 {
  font-weight: bold;
  text-align: center;
  font-size: 1.6em;
  color: #66AB69;
}
@media screen and (max-width: 1024px) {
  .flow__h2 {
    font-size: 2em;
  }
}
@media screen and (max-width: 820px) {
  .flow__h2 {
    font-size: 1.7em;
  }
}
@media screen and (max-width: 540px) {
  .flow__h2 {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 430px) {
  .flow__h2 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 400px) {
  .flow__h2 {
    font-size: 1em;
  }
}
@media screen and (max-width: 360px) {
  .flow__h2 {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 320px) {
  .flow__h2 {
    font-size: 0.8em;
  }
}

picture {
  display: block;
  padding: 50px 0;
}
@media screen and (max-width: 540px) {
  picture {
    padding: 30px 0;
  }
}

@media screen and (max-width: 1024px) {
  .common__p {
    text-align: left;
  }
}

/*pre*/
.pre__section {
  padding-top: 0;
}

/*END pre*/
/*stflow*/
.stflow__section {
  background: #81B681;
  color: #fff;
}
.stflow__section .flow__h2 {
  color: #fff;
}

/*END stflow*/
/*chart*/
.flowchart__section .flowchart__box {
  padding-top: 80px;
}
@media screen and (max-width: 430px) {
  .flowchart__section .flowchart__box {
    padding-top: 40px;
  }
}

/*END chart*/
/*アコーディオン*/
.aco-box {
  padding: 24px 20px;
  border-bottom: 2px solid #E7F3E7;
}
@media screen and (max-width: 540px) {
  .aco-box {
    padding: 24px 0;
  }
}
@media screen and (max-width: 400px) {
  .aco-box {
    padding: 16px 0;
  }
}

.sup-info__item:last-child .aco-box {
  border-bottom: none;
}

.aco-toggle {
  display: none;
}

.aco-Label {
  display: block;
  font-weight: bold;
  padding-right: 5%;
}
@media screen and (max-width: 430px) {
  .aco-Label {
    padding-right: 10%;
    line-height: 1.5em;
  }
}

.aco-Label::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-family: "Font Awesome 5 Free";
  display: block;
  content: "\f105";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 900;
  color: #fff;
  background: #81B681;
  border-radius: 50px;
}

.aco-Label,
.aco-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.aco-content {
  height: 0;
  overflow: hidden;
}

.aco-toggle:checked + .aco-Label + .aco-content {
  height: auto;
  padding-top: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.aco-toggle:checked + .aco-Label::before {
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

/*END アコーディオン*/