</body>の前に挿入されている、以下のJavascriptが原因です。
<script type="text/javascript">
jQuery.noConflict();
(function( $ ) {
$(function() {
// More code using $ as alias to jQuery
$("area[href*=\\#],a[href*=\\#]:not([href=\\#]):not([href^='\\#tab']):not([href^='\\#quicktab']):not([href^='\\#pane'])").click(function() {
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html,body').animate({
scrollTop: target.offset().top - 120
},900 ,'easeInBounce');
return false;
}
}
});
});
})(jQuery);
</script>
#global_menu_nav も除外( :not([href^='#global_menu_nav'])
) するようにしてください。
ハッシュリンクのクリックスクロールを、プラグインで制御されている場合は、プラグイン側の除外設定に追加してください。
https://digipress.info/manual/f-a-q/
【モバイルテーマ関連】
↓
【モバイルテーマのハンバーガーメニューをタップしてもメニューが表示されません。】