/* 親UL直下のLI（= a., b.）だけマーカーを消す */
.md-typeset .list-custom > ul > li::marker {
  content: "";             /* マーカー自体を消す */
}

/* 子UL（= 入れ子の箇条書き）を “白抜き” にする */
.md-typeset .list-custom ul ul {
  list-style: circle;      /* circle = 白抜き。disc = 黒丸 */
}

/* 必要に応じて左余白の微調整（任意） */
.md-typeset .list-custom ul {
  padding-left: 1.2rem;    /* テーマに合わせて 1.0〜1.5rem 程度で調整 */
}
/* nested (level-2) list under the numbered item -> hollow, white bullets */
.md-typeset .ventilation-rules ol > li > ul {
  list-style-type: circle;
}
.md-typeset .ventilation-rules ol > li > ul li::marker {
  color: var(--md-default-fg-color); /* テーマの前景色（ダーク時は白） */
}