/* ------------------------------------------------------
 * Section
------------------------------------------------------ */
.section_flow {
  position: relative;
}
.section_flow .section_inner {
  position: relative;
  z-index: 1;
}
.section_flow .ticker {
  position: absolute;
  top: 90px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section_flow .ticker {
    top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section_flow {
    padding: 45px 0 120px;
  }
}

/* ------------------------------------------------------
 * Step
------------------------------------------------------ */
.section_flow .flow_step .flow_step_flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}
.section_flow .flow_step .flow_step_flex > :last-child {
  margin-bottom: 0 !important;
}
.section_flow .flow_step .flow_step_flex:not(:first-child) {
  margin-top: 48px;
}
.section_flow .flow_step .flow_step_flex > div {
  position: relative;
  max-width: 324px;
  width: 100%;
  padding: 45px 0;
  border-radius: 5px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
.section_flow .flow_step .flow_step_flex > div::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  background-color: #fff;
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
}
.section_flow .flow_step .flow_step_flex:last-child > div::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .section_flow .flow_step {
    position: relative;
    margin: 50px 0 0;
  }
  .section_flow .flow_step::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .section_flow .flow_step .flow_step_flex {
    display: block;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #2D4CB2;
    padding: 30px 15px;
    position: relative;
    z-index: 2;
  }
  .section_flow .flow_step .flow_step_flex:not(:first-child) {
    margin-top: 40px;
  }
  .section_flow .flow_step .flow_step_flex > div {
    max-width: 100%;
    padding: 0;
    margin: 0 0 20px;
    border: 0;
    font-size: 16px;
    line-height: 1.8;
  }
  .section_flow .flow_step .flow_step_flex > div::after {
    display: none;
  }
}