/*
Theme Name: うえだ歯科医院
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/**** 共通スタイル ****/
.vk-mobile-nav-menu-btn {
    all: unset !important;
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 99999 !important;
    width: 50px !important;
    height: 50px !important;
    border: 1px solid #cccccc !important;
    border-radius: 5px !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    background-image: url('https://activestyle3.heteml.net/ueda-dental.net/wp-content/uploads/2025/05/menu02.svg') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* ホバー時のスタイル */
.vk-mobile-nav-menu-btn:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    border-color: #aaaaaa !important;
}

/* ボタンが「CLOSE」状態のとき */
.vk-mobile-nav-menu-btn.menu-open {
    background: url('https://activestyle3.heteml.net/ueda-dental.net/wp-content/uploads/2025/05/close02.svg') center 50% no-repeat rgba(255, 255, 255, .8) !important;
    border-color: #333 !important;
}

/* CLOSE状態のホバー時 */
.vk-mobile-nav-menu-btn.menu-open:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    border-color: #888888 !important;
}

/**** スマホ用（幅768px以下） ****/
@media (max-width: 768px) {
    .vk-mobile-nav-menu-btn {
        display: block !important; /* 表示する */
        top: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
}

/**** タブレット用（幅768px～1024px） ****/
@media (min-width: 768px) and (max-width: 1024px) {
    .vk-mobile-nav-menu-btn {
        display: block !important; /* 表示する */
        top: 15px; /* 少し位置を下げる */
        right: 15px; /* 余白を調整 */
        width: 60px; /* 一回り大きく */
        height: 60px; /* 一回り大きく */
    }
}

/**** PC用（幅1024px以上） ****/
@media (min-width: 1024px) {
    .vk-mobile-nav-menu-btn {
        display: none !important; /* PCでは非表示にする */
    }
}


