
/* =========================================================
概要
========================================================= */

.overview-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.overview-list img {
  width: 100%;
}
@media only screen and (max-width: 719px) {
  .overview-list {
    grid-template-columns: repeat(3, 1fr);
  }
}