﻿@charset "UTF-8";

/*----------------------------------------
  特集ページ 全体コンテナ
-----------------------------------------*/
.feature-item-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 2%; /* 商品間の余白（縦 40px / 横 2%） */
  justify-content: flex-start;
  margin-top: 30px;
}

/*----------------------------------------
  個別の商品カード
-----------------------------------------*/
.feature-item {
  width: 23.5%; /* 4カラム計算 */
  margin-bottom: 40px;
  text-align: center;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* 画像エリア */
.feature-item-img {
  position: relative;
  width: 100%;
  background-color: #f9f9f9; /* 画像背景を薄くグレーにして商品を引き立てる */
  margin-bottom: 15px;
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feature-item #productImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* 売り切れ表示 */
.feature-item-sold-out {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 80%;
  height: auto;
  line-height: 2;
  font-size: 12px;
  font-weight: bold;
  opacity: 1;
  z-index: 2;
}

/*----------------------------------------
  テキスト情報
-----------------------------------------*/
.feature-item-product-id {
  font-size: 11px;
  color: #999;
  margin-bottom: 5px;
  order: 1;
}

.feature-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行以上は三点リーダーにする */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3em; /* 高さを固定して揃える */
  order: 2;
}

.feature-item-outline {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  margin-top: auto; /* 下に寄せる */
  order: 3;
}

/*----------------------------------------
  スマホ対応（レスポンシブ）
-----------------------------------------*/
@media screen and (max-width: 1024px) {
  .feature-item {
    width: 31%; /* 3カラム */
  }
}

@media screen and (max-width: 767px) {
  .feature-item-list {
    gap: 20px 4%;
  }
  .feature-item {
    width: 48%; /* 2カラム */
    margin-bottom: 30px;
  }
  .feature-item-name {
    font-size: 12px;
  }
}

/* W2標準の不要な幅指定をリセット */
.pure-u-1-1 a .feature-item-outline,
.pure-u-1-2 a .feature-item-outline,
.pure-u-1-3 a .feature-item-outline {
  width: 100% !important;
}