.bus-scene {
position: relative;
width: 100%;
height: 200px;
background: linear-gradient(to top, #cce7ff 40%, #ffffff 100%);
overflow: hidden;
border-radius: 16px;
}
.moving-background {
position: relative;
width: 100%;
height: 200px;
background: url(‘https://www.telework.info/wp-content/uploads/sites/6/2025/11/city-background.png’) repeat-x;
background-size: cover;
animation: move-bg 20s linear infinite;
overflow: hidden;
}
@keyframes move-bg {
from { background-position: 0 0; }
to { background-position: -1000px 0; }
}
.bus {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 120px;
z-index: 10;
}
// URLパラメータ取得
const params = new URLSearchParams(window.location.search);
const hall = params.get(“hall”);
// 3秒後に自動遷移
setTimeout(() => {
if (hall) {
window.location.href = `../../auction-house/auction-hall-${hall}/`;
} else {
window.location.href = “../”; // 失敗時に戻る
}
}, 3000);