/* ホットスポット共通 */
.bar-usagi-hotspot {
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
}

/* ▼TAPヒント */
.tap-hint {
    position: absolute;
    font-family: 'DotGothic16', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: #000;
    pointer-events: none;
    animation: tapHint 4.5s ease-in-out forwards;
}

@keyframes tapHint {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-8px);
    }
}

/* モーダル */
.bar-modal {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hidden {
    display: none;
}

.bar-modal-inner {
    background: #4a4a4a;
    border: 3px solid #555;
    border-radius: 4px;
    padding: 24px 28px;
    width: 80%;
    font-family: 'DotGothic16', sans-serif;
    color: #f0ece4;
    box-shadow: inset 0 0 0 1px #fff;
}

.bar-drink-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #888;
    color: #f0ece4;
    font-family: 'DotGothic16', sans-serif;
    font-size: 18px;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.bar-input-submit,
.bar-input-back {
    display: block;
    margin: 8px auto 0;
    background: none;
    border: 1px solid #888;
    color: #f0ece4;
    font-family: 'DotGothic16', sans-serif;
    font-size: 18px;
    padding: 4px 16px;
    cursor: pointer;
}

/* ドリンクリスト */
.bar-drink-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    line-height: 2;
    font-size: 16px;
}

.bar-drink-list li {
    cursor: pointer;
}

.bar-drink-list li:hover {
    color: #F5C800;
}

/* やめるボタン */
.bar-modal-close {
    display: block;
    margin: 0 auto;
    background: none;
    border: 1px solid #888;
    color: #f0ece4;
    font-family: 'DotGothic16', sans-serif;
    font-size: 22px;
    padding: 4px 16px;
    cursor: pointer;
}

/* スワイプヒント */
#swipe-hint {
    position: absolute;
    top: 85%;
    left: 85%;
    font-size: 40px;
    pointer-events: none;
    animation: swipeHint 1.2s ease-in-out forwards;
}

@keyframes swipeHint {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-90px);
    }
}

/* ===========================
   PCレイアウト
=========================== */
@media (min-width: 600px) {
    .bar-drink-list {
        font-size: 14px;
    }

    #swipe-hint {
        display: none !important;
    }
}