.itempro-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.itempro-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.itempro-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.itempro-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.itempro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itempro-name {
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 10px 4px;
  min-height: 3em;
  overflow: hidden;
}

/* 特徴 */
.itempro-feature {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  padding: 0 10px;
  min-height: 3em; /* 2行分確保 */
  margin-bottom: 6px;
}

.itempro-price {
  font-size: 16px;
  font-weight: bold;
  padding: 0 10px 12px;
}

@media (max-width: 768px) {
  .itempro-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .itempro-list {
    grid-template-columns: 1fr;
  }
}