/*****************

おすすめ商品一覧 

******************/



.products-archive .products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
}
.products-archive
.products-card {
    position: relative;
    border: 1px solid #ccc;
    padding: 2rem;
    text-align: center;
    /* transition: box-shadow .2s; */
    background-color: #fff;
    height: 300px;
}
.products-card::before {
    content: '';
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #FF6C00 transparent;
}
/* オーバーレイ用 */
.products-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 108, 0, 0.1); /* 薄いオレンジ */
    opacity: 0;
    transition: opacity 0.3s ease;
}
.products-card::after,
.products-card::before {
  pointer-events: none; /* ← これでクリックを透過 */
}

/* ホバー時に出現 */
.products-card:hover::after {
    opacity: 1;
}
.products-archive .products-thumb img {
  width: auto;
  height: 150px;
  aspect-ratio: 1 / 1;
  /* object-fit: cover; */
}
.products-archive .products-thumb img:hover {
  transform: scale(1.1); 
}
.products-archive .products-title {
  margin-top: 10px;
  font-weight: bold;
}
.products-name{
    font-size: 1.3rem;
    color: #FF6C00;
}

/* おすすめ商品詳細 */
.single-recommended .product-entry__title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.single-recommended .product-entry__thumb img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.single-recommended .product-entry__content {
  line-height: 1.8;
}

/* 商品ヘッダー（画像＋商品名） */
.single-recommended .product-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  justify-content: space-around;
}

.single-recommended .product-head__thumb img {
  max-width: 280px;
  height: auto;
  display: block;
}

.single-recommended .product-head__title h1 {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1.4;
}

.product-entry{
    background-color: #fff;
    padding: 4rem 5rem;
}
.product-head__thumb{
    margin-left: 10rem;
}
.product-meta__table{
    margin-top: 5rem;
}
/* レスポンシブ */
@media (max-width: 1024px) {
  .products-archive .products-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .products-archive .products-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-archive .products-list { grid-template-columns: 1fr; }
  .product-entry{
    background-color: #fff;
    padding: 1rem;
}
.single-recommended .product-head {
    display: block;
}
.product-head__thumb {
    margin: 0 1rem;
}
}