@charset "utf-8";
/* support.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */
/* base
++++++++++++++++++++++++++++++++++++++++ */

.flow_step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.3;
}
.flow_step.-blue {
  background-color: #daecf2;
}
.flow_step.-red {
  background-color: #ffeeee;
}
.flow_step.-yellow {
  background-color: #fff3d9;
}
.flow_step ._icon {
  background-color: #024f95;
  color: #fff;
  text-align: center;
}
.flow_step.-red ._icon {
  background-color: #cc0000;
}
.flow_step.-yellow ._icon {
  background-color: #9f710c;
}
.flow_step ._num {
  background-color: #465059;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
  border-radius: 50%;
}
  .wrap_arrow {
    position: relative;
    padding-bottom: 40px;
  }
  .wrap_arrow::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0px;
    height: 0px;
    transform: translateX(-50%);
    content: "";
    border-width: 23px 23px 0px;
    border-style: solid;
    border-color: rgb(221, 224, 229) transparent transparent;
  }

@media (max-width: 767.98px) {
  .flow_step {
    min-height: 50px;
    padding: 16px 14px;
    font-size: 1.7rem;
  }
  .flow_step ._icon {
    min-width: 58px;
    margin-right: 11px;
    padding: 3px 5px 1px;
    font-size: 1.2rem;
  }
  .flow_step ._num {
    width: 20px;
    height: 20px;
    margin-right: 9px;
    padding: 1px;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .flow_step {
    min-height: 61px;
    padding: 16px 22px;
    font-size: 2.2rem;
  }
  .flow_step ._icon {
    min-width: 74px;
    margin-right: 19px;
    padding: 3px 13px 2px;
    font-size: 1.4rem;
  }
  .flow_step ._num {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
    margin-right: 10px;
  }
}