お問い合わせ

近江八幡桐原郵便局

発注  :郵便局長 W様

工事場所:滋賀県近江八幡市
竣工  :R2.9
構造  :S造
延床面積:148.4㎡
階数  :2F

増築工事

// --- スムーズスクロール処理(Elementorポップアップ対応) --- function scrollToAnchor(targetID) { const target = document.querySelector(targetID); if (target) { const y = target.getBoundingClientRect().top + window.pageYOffset - OFFSET; window.scrollTo({ top: y, behavior: "smooth" }); history.replaceState(null, null, targetID); } } // 通常のアンカーリンクすべてに対応(ポップアップ内外問わず) document.querySelectorAll('a[href^="#"], a[href*="#"]').forEach(link => { link.addEventListener("click", function (e) { const href = link.getAttribute("href"); if (!href || !href.includes("#")) return; const url = new URL(href, window.location.origin); const hash = url.hash; const samePage = url.pathname === window.location.pathname; if (hash && samePage) { const targetID = hash; const targetElement = document.querySelector(targetID); if (targetElement) { e.preventDefault(); // ポップアップ内なら閉じる if (link.closest('.elementor-popup-modal')) { if (typeof jQuery !== 'undefined' && typeof jQuery.magnificPopup !== 'undefined') { jQuery.magnificPopup.close(); } setTimeout(() => { scrollToAnchor(targetID); }, 400); // ポップアップ閉じ後にスクロール } else { // 通常のアンカー移動 scrollToAnchor(targetID); } } } }); });