できます。
ほとんどの製品で、取っ手を取り付けない仕様にて承ることが可能です。
お問い合わせ時やお見積時に「取っ手無し」とご指定下さい。



document.addEventListener("DOMContentLoaded", async () => { // 製品Q&A右メニュー関連Q&A const links = document.querySelectorAll(".qa_contents .sb-p .sb-25c .faq-relate ul a"); for (const link of links) { try { const res = await fetch(link.href); if (!res.ok) throw new Error("fetch失敗"); const text = await res.text(); const doc = new DOMParser().parseFromString(text, "text/html"); const h1 = doc.querySelector("h1"); if (h1 && h1.textContent.trim()) { // タイトルを挿入 link.textContent = h1.textContent.trim(); } else { // h1が取れない場合は非表示 link.closest("li").style.display = "none"; } } catch (e) { // 通信・解析エラー時 → 非表示 console.warn("タイトル取得失敗:", link.href, e); link.closest("li").style.display = "none"; } } });
ほとんどの製品で、取っ手を取り付けない仕様にて承ることが可能です。
お問い合わせ時やお見積時に「取っ手無し」とご指定下さい。


