/* ---------- カテゴリグリッド（8つのカテゴリーから探す） ---------- */
.cat-grid-section { margin-bottom: 40px; }
.cat-grid-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.category {
  display: block;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(23, 43, 77, 0.06);
  text-decoration: none;
  background: #fff;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.category:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(37, 99, 235, 0.13);
  border-color: var(--accent);
}
.category .icon {
  height: 43px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.category .icon img {
  width: 36px;
  height: 36px;
  display: block;
}
.category h3 {
  font-size: 14px;
  color: var(--text);
  margin: 6px 0 3px;
  font-weight: 700;
}
.category p {
  font-size: 11px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
