// 各施設紹介のインクルード fetch("facility-list.html") .then((response) => { return response.text(); }) .then((data) => { document.querySelector("#facility-wrap").innerHTML = data; });