使い方
// スムーススクロールなしで即時移動
document.querySelector("#search_input").scrollIntoView()
// スムーススクロールで画面中央に表示(オプション利用)
document.querySelector("#block_" + no).scrollIntoView({ behavior: "smooth", block: "center", inline: "nearest" });
参考
https://developer.mozilla.org/ja/docs/Web/API/Element/scrollIntoView
https://teratail.com/questions/109422