/* 4カテゴリー */
.category-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0 10px 20px;
  max-width: 980px;
  margin: 0 auto;
}

.category-card {
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s;
}

.category-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;　/* 角の丸み */
  object-fit: cover;
}

.category-card span {
  display: block;
  margin-top: 2px;
  font-weight: bold;
}

/* スマホ（2列 2行） */
@media screen and (max-width: 980px) {
  .category-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* info_category */
.info_category {
  margin-bottom: 20px;
}
