/* 導入までの流れ flow */
.ly_flow{
  padding-top: 30px;
}
.m_flow__wrap{
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: flex-end;
  gap: 0 30px;
}
.m_flow__wrap:after{
  position: absolute;
  content: "";
  display: block;
  background-color: var(--emphases-200);
  width: 10px;
  height: calc(100% - 10px);
  bottom: 0;
  left: 55px;
  transform: translateX(-50%);
  z-index: -1;
}
.m_flow__circle-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--primary-700);
  width: 110px;
  height: 110px;
  border-radius: 110px;
}
.m_flow__list{
  counter-reset: list-counter;
}
.m_flow__item{
  position: relative;
  margin-bottom: 90px;
}
.m_flow__item:last-of-type{
  margin-bottom: 0;
  padding-bottom: 10px;
}
.m_flow__item:before{
  position: absolute;
  counter-increment: list-counter;
  content: "0" counter(list-counter);
  display: inline-block;
  font-size: 100px;
  top: 0;
  left: 0;
  color: var(--emphases-200);
  line-height: 1;
  z-index: -1;
  transform: translateY(-50%);
}

.m_flow__item h3{
  font-size: 20px;
  margin-bottom: 20px;
}
.m_flow__flag{
  position: relative;
}
.m_flow__flag:before{
  position: absolute;
  content: "";
  display: block;
  background-color: var(--primary-700);
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 50%;
  left: calc(-30px + (-110px / 2) + -10px);
  transform: translateY(-50%);
}
.m_flow__flag:after{
  position: absolute;
  content: "";
  display: block;
  background-color: var(--primary-700);
  width: 40px;
  height: 2px;
  top: 50%;
  left: calc(-30px + (-110px / 2) + 10px);
  transform: translateY(-50%);
}
.m_flow__item p{
  font-size: var(--fz-s);
}
.m_flow__item--tabindex{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
/* 導入までの流れ flow */
  .ly_flow__inner{
    padding: 0 20px;
  }
  .m_flow__item h3{
    font-size: 18px;
  }
  .m_flow__item:after{
    font-size: 80px;
  }
  .m_flow__wrap{
    grid-template-columns: 90px 1fr;
    gap: 0 20px;
  }
  .m_flow__wrap:after{
    left: 45px;
  }
  .m_flow__circle-wrap{
    width: 90px;
    height: 90px;
  }
  .m_flow__flag:before{
    left: calc(-20px + (-90px / 2) + -10px);
  }
  .m_flow__flag:after{
    left: calc(-20px + (-90px / 2) + 10px);
  }
  .m_flow__item{
    margin-bottom: 70px;
  }
}