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

    .floating-bar {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);

        width: 337px;   
        height: 48px;     
        background: #ffffff; 
        border-radius: 28px; 
        border: 1px solid #000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        z-index: 219;
    }

    .bar-item {
        flex: 1;
        height: 100%;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        color: #000000;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 13px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500; 
    }

    /* 真ん中の区切り線 */
    .bar-divider {
        width: 1px;
        background: #000000;
        height: 28px;
    }

.contact-floating-btn-phone-icon .fa-phone:before {
    font-size: 18px !important;
    color: #000 !important;
    position: relative !important;
    top:0 !important;
}


    /* SVGのメールアイコン */
    .bar-icon-img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        display: block;
        filter: brightness(0);
    }
}

/* PCは非表示 */
@media screen and (min-width: 520px) {
    .floating-bar {
        display: none;
    }
}
