@charset "UTF-8";

/*-------------------------------------------
ご利用の流れ
-------------------------------------------*/
.flow {
  margin-bottom: 100px;
}
.flow .item {
  display: flex;
  margin-bottom: 50px;
}
.flow .item .step {
  width: 160px;
  height: 140px;
  background-color: #ffed58;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 20px;
  margin-right: 7%;
  text-align: center;
}
.flow .item .step .title {
  display: block;
  font-size: 18px;
}
.flow .item .step .no {
  display: block;
  font-size: 56px;
}
.flow .item .text dt {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
}
.flow .item .text .small {
  font-size: 15px;
}
.flow .item .text dd {
  line-height: 1.8;
}
.flow .item .text a {
  text-decoration: underline;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {

 /*-------------------------------------------
  ご利用の流れ
  -------------------------------------------*/
  .flow {
    margin-bottom: 40px;
  }
  .flow .item {
    margin-bottom: 30px;
  }
  .flow .item .step {
    width: 80px;
    height: 80px;
    padding-top: 10px;
    margin-right: 20px;
  }
  .flow .item .step .title {
    font-size: 14px;
  }
  .flow .item .step .no {
    font-size: 32px;
  }
  .flow .item .text dt {
    font-size: 18px;
  }
  .flow .item .text dd {
    font-size: 14px;
  }
}