@charset "utf-8";

.list figure {
  width: 100%;
  aspect-ratio: 4 / 3; /* ここで4:3固定 */
  margin: 0;
  overflow: hidden; /* cover部分のはみ出しを隠す */
}

.list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

