.flow {
  max-width: 128rem;
  margin: 22.4rem auto 11.2rem;
}
@media only screen and (max-width: 767px) {
  .flow {
    width: 67.5rem;
  }
}
.flow-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .flow-inner {
    display: block;
  }
}
.flow-list {
  position: relative;
  padding-left: 4.8rem;
  --line-x: 1.2rem;
  --progress: #0ea5e9;
  --progress-h: 0;
}
.flow-list::after {
  content: "";
  position: absolute;
  left: var(--line-x);
  top: 0.2rem;
  width: 0.2rem;
  height: var(--progress-h);
  background: var(--progress);
  border-radius: 0.2rem;
  transition: height 5s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-list-bl {
  position: relative;
  padding: 1.2rem 0 6rem 4rem;
  opacity: 0;
  width: 62rem;
  transform: translateY(2.4rem);
  transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-list-bl.is-on {
  opacity: 1;
  transform: none;
}
.flow-list-bl span {
  color: #0ea5e9;
  font-size: 1.6rem;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .flow-list-bl span {
    font-size: 2rem;
  }
}
.flow-list-bl h4 {
  margin: 1rem 0 1.4rem;
}
.flow-list-bl::before {
  content: "";
  position: absolute;
  left: calc(var(--line-x) - 5.3rem);
  top: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--progress);
  box-shadow: 0 0 0 0.4rem rgba(14, 165, 233, 0.2);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-list-bl.is-on::before {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=flow.css.map */