@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&display=swap');

/* 指定
---------------------------------------------------------- */
.c-card__price {
  width: 50%;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, calc(0.659rem + 0.45vw), 1rem);
  line-height: 1.4;
  color: #fff;
  background-color: #212121;
  text-align: center;
  margin: 0.5em 0 1em;
  padding: 0.4em 0.2em;
}
.c-card__tax {
  font-size: 0.85em;
  opacity: 0.9;
  margin-left: 0.25em;
}
/* 一覧グリッド */
.productGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}
/* カード */
.productCard {
  border: 2px solid #333;
  padding: 4px;
  background: #fff;
}
/* 赤い発売日ラベル */
.productCard__badge {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, calc(0.659rem + 0.45vw), 1rem);
  line-height: 1.1;
  background: #e60012;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
}
/* 画像 */
.productCard img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}
/* 商品名 */
.productCard__title {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: clamp(0.688rem, calc(0.619rem + 0.34vw), 0.875rem);
  line-height: 1.1;
  line-height: 1.4;
}