.flowListItem {
  background-color: #EEF8FF;
  padding: 15px;
  display: grid;
  gap: 20px;
  align-items: center;
}
.flowListItem:not(:last-of-type) {
  margin: 0 0 50px;
  position: relative;
}
.flowListItem:not(:last-of-type)::after {
  content: "";
  aspect-ratio: 63/42;
  background-color: #FFE500;
  clip-path: polygon(30% 0, 70% 0, 70% 60%, 100% 60%, 50% 100%, 0% 60%, 30% 60%);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  width: 45px;
}

.flowList {
  counter-reset: flowList;
}

.flowListTitle {
  display: flex;
  align-items: center;
  color: #3FA9F5;
  font-size: 1.6rem;
  line-height: 1.3043;
  flex-shrink: 1;
}
.flowListTitle::before {
  content: counter(flowList);
  counter-increment: flowList;
  background-color: #3FA9F5;
  width: 28px;
  aspect-ratio: 1/1;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 14px 0 0;
  flex-shrink: 0;
}

.flowListRed {
  color: #D31A1A;
  font-weight: bold;
}

.supperKome {
  vertical-align: super;
  font-size: 0.6em;
}

.flowListReissue {
  background-color: #FFE6E6;
  width: fit-content;
  display: block;
  text-align: center;
  min-width: 239px;
  border-radius: 50px;
  border: 2px solid #D31A1A;
  color: #D31A1A;
  font-weight: bold;
  margin: 0 0 14px;
  padding: 2px 10px;
}

.alertTitle {
  color: #D31A1A;
  line-height: 1.5;
  font-size: 1.6rem;
  margin: 0 0 5px;
}

.pl50 {
  padding-left: 50px;
}

@media (min-width: 960px) {
  .flowListItem {
    grid-template-columns: 355px 1fr;
    padding: 26px 20px;
    gap: 25px;
  }
  .flowListItem:not(:last-of-type) {
    margin: 0 0 68px;
  }
  .flowListItem:not(:last-of-type)::after {
    top: calc(100% + 13px);
    width: 63px;
  }
  .flowListTitle {
    font-size: 2.3rem;
  }
  .flowListTitle::before {
    width: 37px;
    font-size: 2rem;
  }
  .alertTitle {
    font-size: 2rem;
  }
}

@media (max-width: 959px) {
  .pl50 {
    padding-left: 40px;
  }
}

/*# sourceMappingURL=reissue.css.map*/