@charset "utf-8";


/* #Merit
/* ------------------------------------------------------------------------ */

#Merit .merit_list{
  display: flex;
  justify-content: center;
  gap: 2.084%;
}
#Merit .merit_list li{
  position: relative;
  width: 100%;
  background-color: #dbf0ff;
  padding: 30px 20px;
  box-sizing: border-box;
}
#Merit .merit_list li:after{
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: 0 auto;
  width: fit-content;
  font-size: 26px;
  font-weight: 700;
  color: #0080c0;
}
#Merit .merit_list li:nth-child(1):after{
  content: '01';
}
#Merit .merit_list li:nth-child(2):after{
  content: '02';
}
#Merit .merit_list li:nth-child(3):after{
  content: '03';
}
#Merit .merit_list li:nth-child(4):after{
  content: '04';
}
#Merit .merit_list li:nth-child(5):after{
  content: '05';
}
#Merit .merit_list li img{
  max-width: 140px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
#Merit .merit_list li p{
  margin-top: 15px;
}

@media screen and (max-width:800px){
  #Merit .merit_list{
    flex-wrap: wrap;
  }
  #Merit .merit_list li{
    width: calc((100% - (2.084% * 2)) / 3);
  }
  #Merit .merit_list li:nth-child(4),
  #Merit .merit_list li:nth-child(5){
    margin-top: 4%;
  }
}
@media screen and (max-width:480px){
  #Merit .merit_list{
    justify-content: flex-start;
  }
  #Merit .merit_list li{
    width: calc((100% - (2.084% * 1)) / 2);
  }
  #Merit .merit_list li:nth-child(3),
  #Merit .merit_list li:nth-child(4),
  #Merit .merit_list li:nth-child(5){
    margin-top: 5%;
  }
  #Merit .merit_list li img{
    max-width: 80%;
  }
}


/* #Flow
/* ------------------------------------------------------------------------ */

#Flow .flow_list li{
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
#Flow .flow_list li + li{
  margin-top: 30px;
}
#Flow .flow_list li:not(:last-child):after{
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #008cba;
  position: absolute;
  left: 60px;
  bottom: -20px;
}
#Flow .flow_list li img{
  max-width: 140px;
}
#Flow .flow_list li .txt h3{
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  gap: 18px;
}
#Flow .flow_list li .txt h3 span{
  font-size: 36px;
  color: #0080c0;  
}

@media screen and (max-width:800px){
  #Flow .flow_list li{
    gap: 20px;
  }
  #Flow .flow_list li + li{
    margin-top: 30px;
  }
  #Flow .flow_list li:not(:last-child):after{
    left: 40px;
  }
  #Flow .flow_list li img{
    max-width: 100px;
  }
  #Flow .flow_list li .txt h3{
    font-size: 22px;
    gap: 18px;
  }
  #Flow .flow_list li .txt h3 span{
    font-size: 30px;
  }
}
@media screen and (max-width:480px){
  #Flow .flow_list li{
    gap: 15px;
  }
  #Flow .flow_list li + li{
    margin-top: 30px;
  }
  #Flow .flow_list li:not(:last-child):after{
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #008cba;
    left: 22px;
  }
  #Flow .flow_list li img{
    max-width: 60px;
  }
  #Flow .flow_list li .txt h3{
    font-size: 17px;
    gap: 12px;
  }
  #Flow .flow_list li .txt h3 span{
    font-size: 18px;
  }
}


/* #Contact
/* ------------------------------------------------------------------------ */
#Contact .txtArea p + h3{
  margin-top: 1em;
}
#Contact .btnArea{
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
#Contact .btnArea a{
  max-width: 360px;
  margin: 0;
}
@media screen and (max-width:480px){
  #Contact .btnArea{
    display: block;
  }
  #Contact .btnArea a{
    margin: 0 auto;
  }
  #Contact .btnArea a + a{
    margin-top: 20px;
  }
}