/* 共通 */
section:nth-child(even) {
  background: #f2f0e9;
}

h3 {
  text-align: center;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-size: 26px;
}

h4 {
  text-align: center;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-size: 18px;
}

h5 {
  font-weight: 600;
  text-align: center;
}

/* リモートの流れ */
.top-sec_title-text {
  margin-bottom: 30px;
}
.flow-chart {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: auto;
}
.chart {
  flex: 1;
  max-width: 28%;
}
#step1 {
  color: #3261AB;
}
#step2 {
  color: #009F8C;
}
#step3 {
  color: #22A222;
}
.step-wrap {
  margin-bottom: 20px;
}
.step-wrap > span {
  font-weight: bold;
}
.step-num {
  font-size: 22px;
}
.next-arrow {
  flex: 1;
  max-width: 3%;
  font-size: 34px;
  color: gray;
  margin: auto;
}

/* 事前準備セクション */
.details-flex-box {
  display: flex;
}

.details-img {
  flex: 1;
  max-width: 25%;
  display: flex;
  justify-content: center;
}
.details-img > img {
  vertical-align: middle;
  margin: auto;
}

.details-text {
  flex: 1;
  max-width: 75%;
}
.indent {
  margin-left: 25px;
}
.cp_link {
  padding: 0.1em 0.3em;
  position: relative;
  display: inline-block;
  transition: .3s;
  color: #22a222;
}
.cp_link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #22a222;
  transition: .3s;
}
.cp_link:hover::after {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .flow-chart {
    flex-direction: column;
    width: 100%;
  }

  .chart {
    max-width: none;
  }

  .details-text {
    max-width: none;
  }
}