/*---------------------------------
  Flow
---------------------------------*/
.flow {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  margin: 20px 0 0;
}
.flow--box {
  width: 200px;
  height: 75px;
  line-height: 75px;
  border: 1px solid #000;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
.flow--arrow {
  flex-grow: 1;
  height: 75px;
  position: relative;
}
.flow--arrow img {
  width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.flow--arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ddd;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flow--time {
  white-space: nowrap;
  font-size: 1.2rem;
  text-align: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .flow {
    flex-direction: column;
    align-content: center;
    align-items: center;
    margin: 40px 0 0;
  }
  .flow--arrow {
    width: 100%;
  }
  .flow--arrow::after {
    width: 3px;
    height: 100%;
  }
  .flow--time {
    font-weight: bold;
    z-index: 2;
  }
}
.contactArea {
  margin: 40px 0 0;
  padding: 20px;
  background: #eeeeee;
}
.contactArea--name {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.contactArea--tel {
  font-family: "Barlow Semi Condensed", sans-serif;
  text-align: center;
  font-weight: bold;
}
.contactArea--number {
  margin-left: 10px;
  font-size: 3.8rem;
}

.anchorh2 {
  margin-top: -60px;
  padding-top: 60px;
}
.anchorh3 {
  margin-top: -80px;
  padding-top: 80px;
}