@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- FLOW --------------
***************************************/
.flow_wrap .flow_block {
  position: relative;
}
.flow_wrap .flow_block:not(:last-child) {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .flow_wrap .flow_block:not(:last-child) {
    margin-bottom: 80px;
  }
}
.flow_wrap .flow_block:not(:last-child):after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -100px;
  right: 0;
  left: 0;
  margin: auto;
  width: 329px;
  height: 50px;
  background: url(../img/common/arrow_step.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .flow_wrap .flow_block:not(:last-child):after {
    bottom: -60px;
    width: 230px;
    height: 35px;
  }
}
.flow_wrap .h3_step {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--base-color02);
  margin: 0 0 15px;
}
@media (max-width: 767px) {
  .flow_wrap .h3_step {
    font-size: 2.2rem;
  }
}
.flow_wrap .h3_step .num {
  color: #fff;
  padding: 3px 20px 5px;
  text-align: center;
  border-radius: 100vh;
  background: var(--base-color02);
  font-size: 1.8rem;
  margin-right: 15px;
  min-width: 90px;
}
@media (max-width: 767px) {
  .flow_wrap .h3_step .num {
    padding: 3px 10px 5px;
    margin-right: 8px;
    font-size: 1.4rem;
  }
}