.content_bg_area {
  padding-top: 0;
}

/* page flow */
/* ============================================ */
.page_flow{
  counter-reset: step;
}
.flow_description{
  position: relative;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto 70px;
  z-index: 2;
}
.page_flow .round_box{
  padding: 40px 80px;
}
.page_flow .round_box h3{
  font-size: 20px;
  font-weight: bold;
  color: #1d7cd1;
  margin-bottom: 20px;
}
.page_flow .round_box ul li:not(:last-child){
  margin-bottom: 10px;
}
.flow_box{
  position: relative;
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 80px;
  margin-bottom: 50px;
}
.flow_box:last-child{
  margin-bottom: 70px;
}
.flow_box::before{
  counter-increment: step;
  content: counter(step,decimal-leading-zero);
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background-color: #0b9eeb;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 30px;
}
.flow_box:not(:last-child)::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #0b9eeb transparent transparent transparent;
}
.flow_text h4{
  font-size: 24px;
  font-weight: bold;
  color: #1d7cd1;
  margin-bottom: 20px;
}
.flow_text p{
  margin-bottom: 20px;
}
.flow_pic_heading{
  font-weight: bold;
  margin-bottom: 10px;
}
.flow_pic_label li{
  display: inline-block;
  padding: 10px 40px;
  background-color: #daf0ff;
  border-radius: 50vw;
  font-size: 14px;
}
.flow_pic_label li.remove{
  background-color: #f3faff;
  color: #cacaca;
}
.flow_pic_label li:not(:last-child){
  margin-right: 15px;
}
@media (max-width: 768px){
  .flow_description{
    margin: 0 auto 10%;
  }
  .page_flow .round_box{
    padding: 5%;
  }
  .page_flow .round_box h3{
    font-size: 18px;
    margin-bottom: 5%;
  }
  .flow_box{
    padding: 5%;
    margin-bottom: 8%;
  }
  .flow_box:last-child{
    margin-bottom: 10%;
  }
}
@media (max-width: 430px){
  .flow_box{
    display: block;
  }
  .flow_box::before{
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0;
    margin-bottom: 3%;
  }
  .flow_box:not(:last-child)::after{
    bottom: -15px;
    border-width: 15px 15px 0 15px;
  }
  .flow_text h4{
    font-size: 18px;
    margin-bottom: 5%;
  }
  .flow_text p{
    margin-bottom: 5%;
  }
  .flow_pic_heading{
    margin-bottom: 3%;
  }
  .flow_pic_label li{
    padding: 5px 30px;
  }
  .flow_pic_label li:not(:last-child){
    margin-right: 3%;
  }
}
