@charset "UTF-8";

.category-tree ul {
    margin-left: 1em;
    padding-left: 0;
    list-style: none;
}
.parent-name {
    font-weight: bold;
}
.parent-name a {
    text-decoration: none;
}


/* 目次全体 */
.list-mokuji {
  background: #f9f9f9;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 見出しタイトル */
.list-mokuji .mokuji-ttl {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
  padding-left: 0.5em;
  border-left: 4px solid #0073aa;
}

/* リスト全体 */
.list-mokuji ol {
  margin: 0;
  padding-left: 1.2em;
  list-style: decimal;
}

/* 子リスト（h3部分） */
.list-mokuji ol ol {
  margin-top: 0.5em;
  padding-left: 1.5em;
  list-style: disc;
}

/* 各リンク */
.list-mokuji a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

/* hover時 */
.list-mokuji a:hover {
  color: #0073aa;
  text-decoration: underline;
}