/* ナビゲーション横並び（dep_zyokyo.html と統一） */
nav[aria-label="関連リンク"] {
  background-color: #2c2c2c;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}

nav[aria-label="関連リンク"] .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  align-items: center;
}

nav[aria-label="関連リンク"] .nav-links li + li::before {
  content: "|";
  color: #777;
  padding: 0 0.6rem;
  user-select: none;
}

nav[aria-label="関連リンク"] .nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.2rem 0.4rem;
  white-space: nowrap;
}

nav[aria-label="関連リンク"] .nav-links a:hover {
  color: #fff;
  text-decoration: underline;
}