/******************************************************

fonts

******************************************************/
.flow_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-left: 64px;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
}
.flow_list_item {
  width: 85%;
  background-color: #f5f1ed;
  padding: 30px;
}
#subpage .flow .item .flow_list .flow_list_item h4 {
  text-align: center;
  color: #cea104;
  font-weight: bold;
  font-size: 18px;
}
#subpage .flow .item .flow_list .flow_list_item p {
  padding-left: 0;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 768px){
  .flow_list {
    display: block;
    padding-left: 46px;
    margin-top: 20px;
  }
  .flow_list_item {
    width: 90%;
    padding: 20px;
    margin-bottom: 20px;
  }
  #subpage .flow .item .flow_list .flow_list_item h4 {
    font-size: 15px;
  }
  #subpage .flow .item .flow_list .flow_list_item p {
    font-size: 12px;
  }
}