特商法・Privacy
現在準備中です。必要に応じて順次更新します。
🛡️ 免責(概要)
- 天然石は天然素材のため個体差があります。
- 効果効能の断定・保証表現は行いません。
- 相談・支援は成果保証ではありません。
- 在留資格関連は行政書士等専門家と連携し、当社単独で申請代行は行いません。
document.getElementById("y").textContent = new Date().getFullYear();
// 延迟加载背景图片
(function(){
const heroMedias = document.querySelectorAll('.hero-media[style*="background-image"]');
const imageObserver = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if(entry.isIntersecting){
const el = entry.target;
el.classList.add('loaded');
observer.unobserve(el);
}
});
}, { rootMargin: '50px' });
heroMedias.forEach(el => imageObserver.observe(el));
})();