@media screen and (min-width: 769px) {
    #mobile-drawer { display: none; } /* スマホ用ドロワーは非表示 */
}

@media screen and (max-width: 768px) {
    .map-controls {display: none;}

/* ▼▼▼ ドロワーのスタイル ▼▼▼ */
    #mobile-drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 30;
        background-color: #fff;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(calc(100% - 50px)); /* ハンドル分(50px)だけ表示 */
    }
    #mobile-drawer.is-open {
        transform: translateY(0); /* 全て表示 */
    }
    #mobile-drawer.is-hidden {
        display: none;
    }

    #drawer-handle {
        height: 50px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -webkit-tap-highlight-color: transparent; /* タップ時のハイライトを消す */
    }
    .handle-bar {
        width: 40px;
        height: 4px;
        background-color: #ccc;
        border-radius: 2px;
        margin-bottom: 4px;
    }
    .handle-text {
        margin: 0;
        font-size: 14px;
        color: #888;
    }
    #drawer-content {
        padding: 10px 15px 20px;
        text-align: center;
    }
    #drawer-content .toggle-btn {
        width: 80%;
        max-width: 300px;
    }
    /* ▲▲▲ ここまでドロワーのスタイル ▲▲▲ */
}