.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;

}

.flow_design ul {
  padding: 0;
    width: 100%;
}

.flow_design li {
  list-style-type: none;
}

.flow_design dd {
  margin-left: 0;
}

.flow_design p {
  margin-left: 0;
}


.flow > li {
  width: 100%;
  padding: 20px 10px;;
}

.flow > li:not(:last-child) {
  border-bottom: 3px solid #ccc;
  position: relative;
}

.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #ccc;
}

.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow > li h3 {
  color: #be000b;
  font-size: 1.625em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;

}

.flow > li dl {
  margin: 0;
}

.flow > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}

.flow > li dl dt .icon {
  font-size: 0.6em;
  color: #fff;
  background: #B058D6;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}


@media screen and (max-width: 767px) {

}