.note-list {
  list-style: none; /* デフォルトの「•」を消す */
  padding-left: 0;
}

.note-list li {
  display: flex; /* ※と本文を水平に並べる */
  gap: 0.2em;    /* ※と本文の間の余白 */
}

.note-list li::before {
  content: "※";  /* 先頭に※を自動挿入 */
  flex-shrink: 0; /* 折り返しても※の幅が潰れないようにする */
}