/* トップページ。最新のお知らせ */
.news__inner {
  display: grid;
  max-width: 1000px;
  margin: auto;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.news__lead {
  display: grid;
  align-self: center;
}
.news__more {
  text-align: end;
}
.newsCard__item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.8rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  color: inherit;
}
.newsCard__item:hover{ opacity: .8; }
.newsCard__meta {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.newsCard__date {
  margin-top: 0;
  color: rgba(0,0,0,0.8);
}
.newsCard__badge {
  line-height: normal;
  color: rgba(0,0,0,0.8);
  padding: 0 10px;
  border: 1px solid rgba(0,0,0,0.8);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-right: 10px;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .news__inner {
    grid-template-columns: 280px 1fr;
    gap: 30px;
  }
  .news__more {
    text-align: start;
  }
}
/* トップページ。新カテゴリ導線 */
.top-cate__title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #111;
}

.top-cate-hero { display: block; margin-bottom: 20px;}
.top-cate-hero__image img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;

}
.category-nav__link:hover { opacity: 0.8; }
.category-nav__title {
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid #444;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.category-nav__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-nav__list a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
}
.category-nav__thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.category-nav__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-nav__name {
  font-size: 12px;
  line-height: 1.4;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-card a {
  display: block;
  text-decoration: none;
  color: #111;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ddd;
  margin-bottom: 8px;
  overflow: hidden;
}

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

.product-card__name {
  font-size: 12px;
  text-align: center;
  margin: 0 0 4px;
}

.product-card__price {
  font-size: 11px;
  text-align: center;
  color: #444;
  margin: 0;
}
@media (min-width: 600px) {
  .product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

}

@media (min-width: 769px) {
  .top-cate-hero {
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-rows: 50px 1fr;
    gap: 0 28px;
    align-items: stretch;
    margin-bottom: 36px;
  }
  .top-cate-hero__image {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
  }
  .category-nav__title {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
    margin-bottom: 0;
  }
  .category-nav {
    grid-column: 2;
    grid-row: 2;
  }

  /* カテゴリ */
  .category-nav__title {
    text-align: right;
    font-size: 13px;
    margin-bottom: 14px;
  }
  .category-nav__list { gap: 14px 18px; }
  .category-nav__thumb {
    width: 50px;
    height: 50px;
  }
  .category-nav__name { font-size: 13px; }

  /* 商品一覧（6列） */
  .product-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .product-card__name { font-size: 13px; }
  .product-card__price { font-size: 12px; }
}
.product-card__image--swap {
  position: relative;
  overflow: hidden;
}
.product-card__image--swap .product-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

@media (min-width: 769px) {
  .product-card__image--swap .product-card__img--primary { transition: opacity 0.35s ease; }
  .product-card:hover .product-card__img--primary,
  .product-card a:hover .product-card__img--primary { opacity: 0; }
  .product-card:hover .product-card__img--hover,
  .product-card a:hover .product-card__img--hover { opacity: 1; }
}