<section>
<p>
自分用カウントダウン<br>
<br>
<span class="countdown-text">
あと
<span id="countdown-remain">
x
</span>
日
</span>
</p>
<script src="[下記]"></script>
</section>document.getElementById('countdown-remain').textContent = Math.floor(
(new Date("2025-08-03 10:55:00").getTime() - new Date().getTime())
/
(1000 * 60 * 60 * 24)
);