MACHICOCO WORKS についてよくいただくご質問をまとめました。ここに載っていないことも、お気軽にお問い合わせください。
var menuBtn=document.getElementById('menuBtn'),nav=document.getElementById('nav'); if(menuBtn){menuBtn.addEventListener('click',function(){nav.classList.toggle('open')}); nav.querySelectorAll('a').forEach(function(a){a.addEventListener('click',function(){nav.classList.remove('open')})});} document.querySelectorAll('.faq-q').forEach(function(q){ q.addEventListener('click',function(){ var open=q.getAttribute('aria-expanded')==='true',a=q.nextElementSibling; q.setAttribute('aria-expanded',!open); a.style.maxHeight=open?null:a.scrollHeight+'px'; }); }); var io=new IntersectionObserver(function(es){es.forEach(function(e){if(e.isIntersecting){e.target.classList.add('in');io.unobserve(e.target)}})},{threshold:.12}); document.querySelectorAll('.reveal').forEach(function(el){io.observe(el)});