入札情報
// // サムネイルクリックでiframeに差し替え
// document.addEventListener("DOMContentLoaded", function() {
// const lazyVideos = document.querySelectorAll(".youtube-lazy");
//
// lazyVideos.forEach(el => {
// el.addEventListener("click", function() {
// const videoId = this.dataset.id;
//
// if (!videoId) return;
//
// // iframeを生成
// const iframe = document.createElement("iframe");
// iframe.src = "https://www.youtube.com/embed/" + videoId + "?autoplay=1&muted=1&playsinline=1&rel=0";
// iframe.frameBorder = "0";
// iframe.allowFullscreen = true;
// iframe.allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share";
// iframe.title = "YouTube video player";
// iframe.setAttribute("playsinline", ""); // iPhone対応
// iframe.style.width = "100%";
// iframe.style.height = "100%";
//
// // サムネイルをiframeに置き換え
// this.innerHTML = "";
// this.appendChild(iframe);
// }, { passive: true }); // スクロール警告回避
// });
// });