お問い合わせ

アメリカンヴィンテージ 日野町

アメリカンヴィンテージスタイル

▼LDK

友人を招くから明るく開放的に、ちょっと自慢できる広さで大人カッコイイLDKのアメリカンヴィンテージスタイル。
コンセプトに合わせたオリジナルのテレビボード、スケルトン階段、家具の配色、間接照明でカッコイイ空間が完成しました。

▼リビング

階段も家具の一部として、ソファーから見たときの壁がアシンメトリーにしています。

▼リビングから見上げた吹抜け

▼キッチンスペース

▼玄関ホール

▼キッチンダイニング

▼書斎

▼吹き抜け

// --- スムーズスクロール処理(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); } } } }); });