/* ================================
   サイトマップ全体
================================ */
.sitemap {
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.sitemap-title {
  font-size: 26px;
  font-weight: bold;
  border-left: 6px solid #0066cc;
  padding-left: 12px;
  margin: 40px 0 25px;
  color: #333;
}

/* ================================
   グリッドレイアウト
================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

/* ================================
   カテゴリーカード
================================ */
.category-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 20px;
  transition: 0.25s;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-color: #0066cc;
}

/* ================================
   カテゴリー名
================================ */
.category-name {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: bold;
  color: #0066cc;
}

.category-name a {
  color: #0066cc;
  text-decoration: none;
}

.category-name a:hover {
  text-decoration: underline;
}

/* ================================
   リンク一覧
================================ */
.category-links a {
  display: inline-block;
  margin: 4px 10px 4px 0;
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
}

.category-links a:hover {
  text-decoration: underline;
}

/* ================================
   スマホ対応
================================ */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 18px;
  }

  .category-name {
    font-size: 17px;
  }

  .category-links a {
    font-size: 14px;
  }
}

