.base_items_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin: 0;
  padding: 0;
  justify-content: center; /* 真ん中揃え */
  direction: none;
}

.base_item {
  list-style: none;
  width: calc(33.333% - 1em); /* PC 3列 */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.base_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.base_item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.base_item img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  padding: 0.8em 0.5em;
}

.base_item_title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 0.3em;
  transition: color 0.3s ease;
}

.base_item_title:hover {
 color: #333; /* ホバーで赤に */
}

.base_item_price {
  display: block;
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin-top: 0.3em;
}

/* タブレット 2列 */
@media (max-width: 960px) {
  .base_item {
    width: calc(50% - 1em);
  }
}

/* スマホ 2列 */
@media (max-width: 600px) {
  .base_item {
    width: calc(50% - 0.8em);
  }
}
