
#message {
    font-weight: bold;
    padding: 10px 0px 10px 0px;
}

#canvas {
    width: 100%;
    margin-top: 20px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    border-radius: 80% 30% 40% 40%/50%;
    color: #d0d0d0;
    background-color: #ffffff;
    transition: background-color 1s;
}

#canvas.highlight {
    background-color: #ff0;
    border: 4px solid #ff0;
    transition-duration: 0s;
}

#gacha-main {
    width: 100%;
}

#gacha-container {
    width: 95%;
    overflow-x: scroll;
    white-space: nowrap;
    background-color: #3366FF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px;
    border: 1px solid gray;
}

.gacha {
    font-weight: bold;
    color: yellow;
}

.gacha-label {
    float: left;
    width: 20px;
    text-align: center;
    font-weight: bold;
    color: white;
}

@media screen and (min-width: 480px) {

    .gacha-button {
        width: 100px;
        height: 30px;
        font-weight: bold;
    }

    .gacha-button-area {
        margin: 15px 0px 10px 0px;
    }

}

@media screen and (max-width: 479px) {

    .gacha-button {
            width: 100%;
            height: 40px;
            font-weight: bold;
        }

    .gacha-button-area {
        margin: 15px 0px 10px 0px;
    }

}

.gacha-counter {
    margin: 15px 0px 5px 0px;
}

/*.gacha-icon:hover {*/
.gacha-icon {
}

.vibration {
    display: inline-block;
    animation: hurueru .1s infinite;
}

@keyframes hurueru {
    0%   {transform: translate(0px, 0px) rotateZ(0deg)}
    25%  {transform: translate(2px, 2px) rotateZ(1deg)}
    50%  {transform: translate(0px, 2px) rotateZ(0deg)}
    75%  {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}



