@charset "UTF-8";



.flowbox {
  position: relative;
}


.flowbox::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  border-left: 2px dotted #b86e55;
  z-index: 0;
}

.flowbox .box {
  margin-top: 50px;
  border-radius: 20px;
  background: #F9F5F0;
  padding: 30px 30px 30px 150px;
  position: relative;
}

@media screen and (max-width: 1010px) {
  .flowbox .box {
    margin-top: 50px;
    padding: 45px 20px 20px 20px;
  }
}

.flowbox .box .flow_title {
  color: #b86e55;
  font-weight: bold;
  padding-bottom: 10px;
}

.flowbox .box span.plan {
  font-weight: bold;
  display: block;
  position: relative;
  padding-left: 20px;
}

.flowbox .box span.plan::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background: #b86e55;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.flowbox .box span.plan:last-child {
  margin-top: 10px;
}


.flow_num {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1000px;
  background-color: #b86e55;
  color: #fff;
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow_num small {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: .875rem;
  letter-spacing: .1em;
  line-height: 1;
  margin-bottom: .25rem;
}

.flow_num span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.75rem;
  letter-spacing: .05em;
  line-height: 1;
}

@media screen and (max-width: 1010px) {
  .flow_num {
    width: 4rem;
    height: 4rem;
    right: 0;
    left: 0;
    top: 5px;
    margin: auto;
  }

  .flow_num small {
    line-height: 1.2;
    font-size: .7rem;
  }

  .flow_num span {
    line-height: 1.2;
    font-size: 1.2rem;
    letter-spacing: .05em;
  }
}