.secFlow__list {
  width: 100%;
  display: grid;
  grid-gap: 30px;
  counter-reset: flow_list 0;
}
.secFlow__list .listItem {
  width: 100%;
  display: flex;
  align-items: flex-start;
  grid-gap: 1.25em;
}
@media screen and (min-width: 1200px) {
  .secFlow__list .listItem {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440px) {
  .secFlow__list .listItem {
    font-size: 20px;
  }
}
.secFlow__list .listItem__number {
  background-image: linear-gradient(180deg, #fff 3.125em, transparent 3.125em), linear-gradient(90deg, transparent calc(50% - 0.5px), var(--main) calc(50% - 0.5px), var(--main) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-size: 100%;
  background-repeat: repeat;
  background-position: center;
  color: var(--main);
  font-family: var(--en);
  --lh: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
}
.secFlow__list .listItem__number::before {
  content: "Step";
}
.secFlow__list .listItem__number::after {
  counter-increment: flow_list 1;
  content: counter(flow_list);
  font-size: 187.5%;
  font-weight: 900;
}
.secFlow__list .listItem__inner {
  width: 100%;
  padding: 1.25em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 1.25em;
}
@media screen and (min-width: 768px) {
  .secFlow__list .listItem__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .secFlow__list .listItem__inner {
    grid-gap: 1.875em;
  }
}
.secFlow__list .listItem__img {
  width: 100%;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .secFlow__list .listItem__img {
    width: 30%;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 992px) {
  .secFlow__list .listItem__img {
    width: 25%;
  }
}
.secFlow__list .listItem__txtWrap_ttl {
  margin-bottom: 0.25em;
  font-size: 125%;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .secFlow__list .listItem__txtWrap_ttl {
    font-size: 150%;
  }
}
.secFlow__list .listItem:last-child .listItem__number {
  background: none;
}