Is there a way to change font of `series_annotations` in the `scatter` plot in Plots?

Is there a way to change font of series_annotations in the scatter plot in Plots?

using Plots
f = font(13, "Noto Sans CJK JP")
default(
    titlefont = f,
    legendfont = f,
    guidefont = f,
    tickfont = f)
pyplot()

data_x = rand(3)
data_y = rand(3)
data_label = ["あ", "い", "う"]

scatter(
    data_x,
    data_y,
    title = "散布図",
    series_annotations = data_label)