/* --- 商品一覧の列数変更 (5列/3列/2列対応) --- */
.c-items::before, .c-items::after {
  content: none;
  display: none;
}
.c-items {
  justify-content: flex-start;
}
.c-items a {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .c-items {
    gap: 20px 20px;
  }
  .c-items a {
    width: calc((100% - 80px) / 5);
  }
}
@media screen and (max-width: 767px) and (min-width: 500px) {
  .c-items {
    gap: 16px 16px;
  }
  .c-items a {
    width: calc((100% - 32px) / 3);
  }
}
@media screen and (max-width: 499px) {
  .c-items {
    gap: 12px 12px;
  }
  .c-items a {
    width: calc((100% - 12px) / 2);
  }
}
