body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* スクロールバーを非表示にする */
}

canvas {
    display: block; /* canvasをブロック要素として扱う */
    background: #000; /* 背景を黒にする */
}

#controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
}

#dpad, #action {
    display: flex;
    gap: 20px;
}

#controls button {
    width: 80px;
    height: 80px;
    font-size: 30px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    user-select: none; /* ボタンのテキストを選択不可にする */
}

#shootBtn {
    background-image: url('images/cucumber.svg');
    background-size: 20%;
    background-repeat: no-repeat;
    background-position: center;
}
