/* サイトマップ全体のコンテナ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 20px 0;
  align-items: start;
}

/* カテゴリーごとのカード */
.sitemap-section {
  background: #ffffff;
  border: 1px solid #eee;
  border-top: 4px solid #25abc1; /* フリューゲルブルー */
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 親ページ（見出し） */
.sitemap-parent {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
}

/* 子ページのリスト */
.sitemap-child-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 子ページの各項目 */
.sitemap-child-item {
  margin: 5px 0;
}

.sitemap-child-link {
  font-size: 15px;
  color: #555;
  text-decoration: none;
  display: block;
  padding: 2px 0;
  transition: all 0.2s;
}

.sitemap-child-link:hover {
  color: #25abc1;
  padding-left: 5px; /* ホバー時に少し右に動く演出 */
}