@charset "utf-8";

/* ------- INDEX ---------------------------------------------- */
.process-flow{
  counter-reset: number 0;
}
.process-flow-item > dt{
  background-color: #A02B2E;
  color: #FFF;
  font-family: 'Lora', serif;
  font-weight: 400;
  line-height: 1;
}
.process-flow-item > dt:after{
  counter-increment: number 1;
  content: " " counter(number,decimal-leading-zero);
}
.process-flow-item > dd{
  background-color: #F3F3F2;
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
}
@media print, screen and (min-width:781px) {
  .process-flow-item{
    display: flex;
    margin-top: 50px;
  }
  .process-flow-item > dt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 130px;
    position: relative;
  }
  .process-flow-item > dt:before{
    background: url("../img/ic_arrow_flow.svg") no-repeat;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
  }
  .process-flow-item:last-child > dt:before{
    display: none;
  }
  .process-flow-item > dt:after{
    font-size: 6.0rem;
    margin-top: 10px;
  }
  .process-flow-item > dd{
    font-size: 2.6rem;
    padding: 45px 80px;
    width: calc(100% - 130px);
  }
}
@media screen and (max-width: 780px) {
  .process-flow-item{
    margin: 45px 20px 0;
    position: relative;
  }
  .process-flow-item:before{
    background: url("../img/ic_arrow_flow.svg") no-repeat;
    content: "";
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,100%);
  }
  .process-flow-item:last-child:before{
    display: none;
  }
  .process-flow-item > dt{
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 13px 13px;
    position: relative;
  }
  .process-flow-item > dt:after{
    font-size: 3.0rem;
    margin-left: 10px;
  }
  .process-flow-item > dd{
    border-left: 4px solid #A02B2E;
    border-right: 4px solid #A02B2E;
    border-bottom: 4px solid #A02B2E;
    font-size: 2.2rem;
    text-align: center;
    padding: 30px 15px;
  }
}
@media (hover: hover) and (pointer: fine){
}

