Trying NOT to match a Japanese word using RegEx negative lookbehind
You need to avoid matching the numbers after a digit or digit + the separator, so you need to add (?<![0-90-9])(?<![0-90-9][,,、])
right after (?<!次の)
:
(?<!検索結果:)(?<!次の)(?<![0-90-9])(?<![0-90-9][,,、])(?:[〇一二三四五六七八九十百千万億兆0-90-9]|京+)[,,、]?.+[〇一二三四五六七八九十百千万億兆京0-90-9].+件
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
See the regex demo.