巨乳

const showStart = new Date("2026-01-13T12:48:00"); const showEnd = new Date("2026-02-2T23:59:59"); const now = new Date(); if (now >= showStart && now <= showEnd) { window.addEventListener("DOMContentLoaded", function () { setTimeout(function () { document.getElementById("saleBanner").style.display = "block"; }, 2000); // 2秒後に表示 }); }