body#flow .section .contents {
  padding-left: 2.5rem;
}
@media (max-width: 768px) {
  body#flow .section .contents {
    padding-left: 6.25vw;
  }
}
body#flow .section .contents .step {
  counter-increment: item;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3.75rem;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  body#flow .section .contents .step {
    padding-bottom: 8.3333333333vw;
    padding-left: 12.5vw;
  }
}
body#flow .section .contents .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--key);
}
body#flow .section .contents .step::after {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 0.625rem;
  color: var(--wh);
  font-family: "Staatliches", sans-serif;
  font-size: 3rem;
  background-color: var(--key);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  body#flow .section .contents .step::after {
    width: 12.5vw;
    height: 12.5vw;
    border-radius: 2.0833333333vw;
    font-size: 7.5vw;
  }
}
body#flow .section .contents .step:last-child {
  padding-bottom: 0;
}
body#flow .section .contents .step h3 {
  flex-basis: 100%;
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 768px) {
  body#flow .section .contents .step h3 {
    margin-top: 3.125vw;
    font-size: 4.1666666667vw;
  }
}
body#flow .section .contents .step .info {
  flex-basis: 46%;
}
@media (max-width: 768px) {
  body#flow .section .contents .step .info {
    flex-basis: 100%;
  }
}
body#flow .section .contents .step .info p {
  margin-top: 0.625rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  body#flow .section .contents .step .info p {
    margin-top: 2.0833333333vw;
    font-size: 2.9166666667vw;
  }
}
body#flow .section .contents .step .info p.notes {
  padding-left: 1.05em;
  text-indent: -1.05em;
  color: var(--bk50);
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  body#flow .section .contents .step .info p.notes {
    font-size: 2.5vw;
  }
}
body#flow .section .contents .step figure {
  flex-basis: 46%;
  position: relative;
}
@media (max-width: 768px) {
  body#flow .section .contents .step figure {
    flex-basis: 91.6666666667vw;
    margin-top: 4.1666666667vw;
    margin-left: -18.75vw;
  }
}