/* ================================
   サイトマップ専用CSS
   /css/sitemap.css
   ================================ */

/* コンテナ */
.sitemap-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* タイトル */
.sitemap-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 6px solid #005bac;
  padding-left: 12px;
}

/* グリッドレイアウト（2カラム） */
.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

/* 各ブロック */
.sitemap-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
}

.sitemap-block ul {
  list-style: none;
  padding-left: 0;
}

.sitemap-block li {
  margin: 6px 0;
}

.sitemap-block a {
  color: #005bac;
  text-decoration: none;
}

.sitemap-block a:hover {
  text-decoration: underline;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}
/* カテゴリ見出しの余白（inline-style の置き換え） */
.category-title {
  margin-top: 12px;
  font-weight: bold;
}