.productlist-unit{
  border:1px solid #efefef;
  border-radius: 8px;
  box-shadow: 3px 6px 12px -6px rgba(0,0,0,0.2);
  padding: 10px 10px 10px 10px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 0 0 rgba(0,0,0,0);
  height: auto !important;
  margin: 1%;
  width: 31%;
}

.productlist-unit:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} /* 画像にズーム効果 */

.productlist-unit img {
  transition: transform 0.3s ease;
}

.productlist-unit:hover img {
  transform: scale(1.05);
} /* テキストカラー変化 */

.productlist-unit a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.productlist-unit:hover a {
  color: #5ec4e0; /* お好きなブランドカラーに */
}




/* 商品名を2行で固定（高さを揃える） */
#contents .productlist-unit > a:nth-of-type(2){
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;    /* 2行で省略 */
  overflow: hidden;
  line-height: 1.5;
  min-height: calc(1.5em * 2);
  margin-bottom: .4rem;
}
