Written by Anonymous
<script type="module">
// ここに縮小したコードを貼り付ける
// コメントへ移動するボタン
const button = document.getElementById('go-to-comment');
const comment = document.getElementById('comment-area');
button.addEventListener('click', () => {
comment.scrollIntoView({ behavior: 'smooth' });
});
</script>