@charset "shift_jis";

/*----------------
flow
----------------*/

.flow_design {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  border: solid 5px #c9e1ec;
  padding: 2rem;
  margin: 1rem 0;
  background: #f3f8fb;
}

@media screen and (max-width:767px) {
  .flow_design {
    padding: 0.5rem;
    border-radius: 10px;
    border: solid 3px #c9e1ec;
  }
}

.flow {
  padding-left: 0;

}

.flow>li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow>li:not(:last-child) {
  padding-bottom: 2rem;
}

.flow>li .icon {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #37aae2;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow>li:not(:last-child)::before {
  content: '';
  background: #b3d4e5;
  width: 5px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 17px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow>li dl dt {
  font-size: 1.4em;
  font-weight: 600;
  color: #37aae2;
  line-height: 2em;
}

@media screen and (max-width:767px) {
  .flow>li dl dt {
    font-size: 1.2em;
    line-height: 2em;
  }
}

.flow>li dl dd {
  margin-left: 0;
}

.flowFaq dl {
  padding-top: 25px;
  clear: both;
}

.flowFaq dt {
  font-size: 1.2rem;
  line-height: 35px;
  color: #2592ff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #2592ff;
  font-weight: 800;
}

.flowFaq dt strong {
  background-color: #2592ff;
  color: #ffffff;
  padding: 5px;
  margin-right: 1rem;
}

.flowFaq dd {
  line-height: 1.6em;
  padding-top: 1rem;
  padding-left: 3rem;
}


@media screen and (max-width:767px) {

  .flowFaq dt {
    display: flex;
    font-size: 1.2em;
    line-height: 1.3;
    align-items: start;
    letter-spacing: 0.06rem;
  }

  .flowFaq dd {
    padding-left: 0;
  }
}

