@charset "UTF-8";
/* =========================================================
   カード列数調整
   1920px前後：5列
   狭くなるにつれて 4 → 3 → 2列
   ========================================================= */
.catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* li側に既存の幅指定がある場合をリセット */
.catalog-card {
  width: auto !important;
  max-width: none !important;
  display: flex;
}

/* 5列 → 4列 */
@media screen and (max-width: 1600px) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* 4列 → 3列 */
@media screen and (max-width: 1280px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* 3列 → 2列 */
@media screen and (max-width: 960px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* スマホは1列にしたい場合 */
@media screen and (max-width: 640px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=./catalog_add.css.map */