
@charset "UTF-8";


#flow_parts + section .flow_wrap {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}
#flow_parts + section .step {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 30%;
}
#flow_parts + section .step-number {
  font-size: 12px;
  font-weight: bold;
  color: var(--i_main_color);
  margin-right: 15px;
  text-align: center;
  line-height: 1.1;
}
#flow_parts + section .step-number span {
  font-size: 35px;
}
#flow_parts + section .step-content h2 {
  font-size: 18px;
  margin: 0;
  color: var(--i_txt_color);
}
#flow_parts + section .step-content p {
  font-size: 14px;
  color: var(--i_txt_color);
  margin: 0;
}
#flow_parts + section .step-icon {
  width: 30px;
  height: 30px;
  margin-left: 20px;
}
#flow_parts + section .title_area{
  display: flex;
}

@media screen and (max-width: 900px){
   #flow_parts + section .flow_wrap {
        flex-direction: column;
        align-items: center;
   }
   #flow_parts + section .step {
        width: min(95%,300px);
        justify-content: normal;
        margin-bottom: 20px;
        gap: 20px;
   }
}


/*--- MVのレイアウト修正 ---*/

@keyframes slide05{
  0%{
    opacity: 1;
    transform: translate(100%, 0);
  }
  20%{
    opacity: 1;
    transform: translate(0, 0);
  }
  70%{
    opacity: 1;
    transform: translate(0, 0);
  }
  100%{
    opacity: 1;
    transform: translate(0, 0);
  }
}