@charset "UTF-8";
/* CSS Document */

/* ---------- .pageLead ---------- */

.pageLead {
  padding-top: 70px;
}
.pageLead p:last-child {
  margin-top: 1em;
}



/* ---------- .flow ---------- */

.step {
  background: #f6f8fa;
  margin-bottom: 200px;
  position: relative;
}
.step:last-child {
  margin-bottom: 100px;
}
.step::before{
  content: "";
  display: block;
  width: 40px;
  height: 60px;
  background: #4dcee4;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
.step::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 50px transparent solid;
  border-top: 50px #4dcee4 solid;
  position: absolute;
  top:120%;
  left: 50%;
  transform: translateX(-50%);
}
.step:last-child::before, .step:last-child::after{
  width: 0;
  height: 0;
  border: none;
}

.step h4 {
  max-width: 300px;
  height: 60px;
  line-height: 60px;
  background: #3673b0;
  font-size: 2.1rem;
  color: #fff;
  padding-left: 20px;
  position: relative;
}
.step h4::before {
  content: "";
  display: block;
  border: 30px transparent solid;
  border-top: 60px #3673b0 solid;
  position: absolute;
  top: 0;
  left: 90%;
}
.step-detail {
  font-size: 1.8rem;
  letter-spacing: 0;
  padding: 0 20px 20px;
}
.step-detail p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 1em 0;
}



@media screen and (max-width: 374px) {

  .step h4 {
    max-width: 260px;
  }
  .step h4::before {
    left: 88.5%;
  }



}



@media screen and (min-width: 750px) {

/* ---------- .flow ---------- */

  .step::before{
    top: 115%;
  }
  .step::after{
    top:130%;
  }
  .step h4 {
    height: 65px;
    line-height: 65px;
    font-size: 2.4rem;
  }
  .step h4::before {
    border-top: 65px #3673b0 solid;
  }
  .step-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    padding: 20px 20px 20px 30px;
  }
  .step-detail p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: 1em 0;
  }



}



@media screen and (min-width: 1000px) {

/* ---------- .flow ---------- */

  .step-detail {
    padding: 20px 20px 20px 40px;
  }



}








