@charset "utf-8";
/* common
-------------------------------------------------------------- */

/* flow
-------------------------------------------------------------- */
#flow dt {
  position: relative;
}
#flow dt h3 {
  padding-bottom: 20px;
}
#flow dt::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 1px;
  background: var(--navy);
  content: "";
  z-index: 2;
}
#flow dt::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(32, 47, 84, 0.4);
  content: "";
}
#flow dd {
  padding: 40px 0;
}
#flow dd p {
  padding-bottom: 30px;
  line-height: 2.2;
}
@media (max-width: 767px) {
  #flow dt h3 {
    padding-bottom: 10px;
  }
  #flow dd {
    padding: 20px 0;
  }
  #flow dd p {
    padding-bottom: 20px;
    line-height: 2;
  }
}
/* term
-------------------------------------------------------------- */
#term {
  padding-top: 100px;
}
@media (max-width: 767px) {
  #term {
    padding-top: 0;
  }
}

