.flow-area {
  counter-reset: counter;
}

.flow-area .flow-item {
  display: flex;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 15px;
}

.flow-area .flow-item:first-child {
  padding-top: 0;
}

.flow-area .flow-item:last-child {
  padding-bottom: 0;
}

.flow-area .flow-item .flow-item-in.step {
  flex: 0 0 45px;
  max-width: 45px;
  position: relative;
}

.flow-area .flow-item .flow-item-in.step::after {
  content: "";
  background: #ccc;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 30px;
  left: 50%;
  z-index: 0;
}

.flow-area .flow-item:last-child .flow-item-in.step::after {
  display: none;
}

.flow-area .flow-item .flow-item-in.step .num-area {
  display: grid;
  place-content: center;
  background: #b8884d;
  width: 45px;
  height: 45px;
  padding-bottom: 3px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.flow-area .flow-item .flow-item-in.step .num-area .num {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

.flow-area .flow-item .flow-item-in.step .num-area .num::before {
  counter-increment: counter;
  content: counter(counter, decimal-leading-zero);
}

.flow-area .flow-item .flow-item-in.text {
  flex: 0 0 calc(100% - 45px);
  max-width: calc(100% - 45px);
  padding-top: 9px;
  padding-left: 20px;
}

.flow-area .flow-item .flow-item-in.text > .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.flow-area .flow-item .flow-item-in.text > .title .txt-gold {
  padding-left: 16px;
}

.flow-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #e66265;
  border-radius: 3px;
  overflow: hidden;
}

.flow-contact .flow-contact-item p {
  margin-bottom: 0;
}

.flow-contact .flow-contact-item.before {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  background: #e13735;
  display: grid;
  place-content: center;
  width: 100%;
  padding: 4px;
}

.flow-contact .flow-contact-item.tel {
  color: #fff;
  display: block;
  padding: 12px 24px;
}

.flow-contact .flow-contact-item.tel .block-area {
  font-size: 31px;
  line-height: 37.2px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.flow-contact .flow-contact-item.tel .block-area .icon {
  width: 19px;
}

.flow-contact .flow-contact-item.tel .block-area .icon svg {
  fill: #fff;
}

.flow-contact .flow-contact-item.tel .block-area .icon + .text {
  padding-left: 4px;
  margin-top: -4px;
}

.flow-contact .flow-contact-item.tel .block-area + p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  padding-top: 8px;
}

@media screen and (min-width: 992px) {
  .flow-contact {
    justify-content: flex-start;
  }

  .flow-contact .flow-contact-item.tel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(100% - 202px);
    max-width: calc(100% - 202px);
  }

  .flow-contact .flow-contact-item.before {
    flex: 0 0 202px;
    max-width: 202px;
  }

  .flow-contact .flow-contact-item.tel .block-area + p {
    padding-top: 0;
    padding-left: 19px;
  }
}

.flow-item-in-list {
  list-style-type: none;
  margin-bottom: 18px;
}

.flow-item-in-list:last-child {
  margin-bottom: 0;
}

.flow-item-in-list li {
  padding-left: 12px;
  position: relative;
}

.flow-item-in-list li::before {
  content: "";
  background: #333;
  width: 4px;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 0;
}
