
@charset "UTF-8";

#flow_parts + .block_html .flow_wrapper{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
 
}



#flow_parts + .block_html .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 40px 40px 155px;
  box-shadow: 2px 5px 10px rgb(0 0 0 / 20%);
  position: relative;
  margin-top: -45px;
  margin-bottom: 40px;

}

#flow_parts + .block_html .box .midashi{
  width: 25%;
  font-size: 2rem;
  font-weight: bold;
}

#flow_parts + .block_html .box .text{
  width: 70%;
}

#flow_parts + .block_html .step{
    background: #82b1d0;
    width: 93px;
    height: 67px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 25px;
    text-align: center;
    padding: 7px;
    position: relative;
 }

#flow_parts + .block_html .step::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #82b1d0 transparent transparent transparent;
    border-width: 10px 10px 10px 10px;
}

#flow_parts + .block_html .step span{
  display: block;
  font-size: 3rem;
}

@media screen and (max-width: 768px){
 #flow_parts + .block_html .step{
    
    width: 100%;
    height: auto;
    padding: 1rem 0;
}

#flow_parts + .block_html .box{
    margin-top: 0;
    padding: 20px 40px 30px 40px;
}
}


/*-----------------------------調整---------------------------------*/
#flow_parts + .block_html .box {
    position: relative;
    margin-bottom: 100px;
}

#flow_parts + .block_html .box:after {
    content:"";
    width:0;
    height:0;
    border-style:solid;
    border-width: 50px 50px 0 50px;
    border-color: rgba(51,51,51,0.8) transparent transparent transparent;
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

#flow_parts + .block_html .box:last-child:after {
    display: none;
}

#flow_parts + .block_html .box .text {
    font-size: 2rem;
}

@media screen and (max-width: 768px){
#flow_parts + .block_html .box {
    justify-content: center;
}

#flow_parts + .block_html .box .text {
    width: 100%;
    text-align: center;
}

#flow_parts + .block_html .box:after {
    border-width: 25px 25px 0 25px;
    bottom: -65px;
}
}