スムーススクロール設定
<script>
jQuery(function(){
jQuery('a[href^="#"]').click(function() {
var speed = 800;
var href= jQuery(this).attr("href");
var target = jQuery(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top;
jQuery('body,html').animate({scrollTop:position}, speed, 'swing');
return false;
});
});
</script>
※TCD様(https://tcd-theme.com/2019/11/anchor-link.html)のコードのコピペです