<!-- これは<body>タグの終了直前に配置します -->
<script>
const now = new Date();
const day = now.getDay();
const hour = now.getHours();
const minute = now.getMinutes();
if (
(day === 0 && hour >= 10 && hour <= 16) ||
(day === 0 && hour === 17 && minute < 1) ||
((day === 0 || day === 3 || day === 4 || day === 5) && hour === 21 && minute >= 30) ||
((day === 0 || day === 3 || day === 4 || day === 5) && (hour === 22 || hour === 23)) ||
(day === 6 && hour >= 10)
) {
document.getElementById('registrationLink').innerHTML = '<a href="https://cosme.owl-horie.com/entry">新規会員登録</a>';
}
</script>