@charset "UTF-8";
/*ーーーーーーーーーー
***
共通要素は
/assets/css/common_renew.css　にまとめて書いておきます
***
ーーーーーーーーーーー*/
@import url("/assets/css/common_renew.css");
/*ーーーーーーーーーー

ーーーーーーーーーーー*/
.flow {
  padding: 20px 40px 20px;
}
.flow__step {
  position: relative;
  padding-left: 50px;
  border-left: 4px solid #3eab52; /* 縦ライン */
}
.flow__step:last-child {
  margin-bottom: 0; /* 最後は余白調整 */
  border-left: 4px solid #3eab52; /* 縦ライン */
}
/* 丸に番号 */
.flow__step::before {
  content: attr(data-step);
  position: absolute;
  left: -33px;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  background: #fff;
  border: 4px solid #3eab52;
  color: #3eab52;
  font-size: 2.5em;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
/* スマホ対応 */
@media (max-width: 768px) {
  .flow {
    padding: 10px 20px;
  }
  .flow__step {
    padding-left: 30px;
    border-left: 3px solid #3eab52;
  }
  .flow__step::before {
    font-size: 2.0em;
    border-width: 3px;
    left: -0.85em;
  }
}
/* 見出し */
.flow__heading {
  padding-top: 0.5em !important;
}