@charset "UTF-8";

/* flex box */
.flexGroup {
  display:flex;
}
.s_flexList {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.s_flexList.col4 .s_flexList_item {
  width: calc((100% - 12px *3) / 4);
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .s_flexList.col4 .s_flexList_item {
    width: 100%;
  }
}
