@charset "utf-8";

/*------------------------------------------------------------
業務の流れ・ご契約の流れ
------------------------------------------------------------*/
/* 流れ共通 */
.flow_step_area {
  margin-left: 20px;
  position: relative;
}
.flow_step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #eee;
  width: 330px;
}
.flow_step_mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 38px;
  background: #222;
  color: #fff;
  padding: 5px;
  line-height: 1.3;
  position:relative;
}
.flow_step_mark span:first-child {
  font-size: 11px;
}
.flow_step_mark span:last-child {
  font-weight: bold;
}
.flow_step + p {
  margin: 15px 0 30px 66px;
}

/* 流れの縦線 */
.flow_step_area:before {
  content: "";
  width: 3px;
  background: #222;
  position: absolute;
  top: 0;
  left: 17px;
  bottom: 0;
  height: 88%;
}