/*
Theme Name: スーツケース修理王
Version: 1.0
*/

.popup  {
    position: fixed;
    z-index:99999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display:none;
}
.popup.open{
    display:flex;
    align-items: center;
    justify-content: center;
} 
.popup_overlay {
    position: fixed;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.popup_content {
    width: 350px;
    height: 350px;
    background: #fff;
    position: relative;
    border-radius: 20px;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
}
.popup_title{
    color: #422900;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
}	
.popup_btn {
    background: #06c755;
    color: #fff;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 22px;
    border-radius: 30px;
    gap: 10px;
}
.popup_close {
    position: absolute;
    right: 0;
    top: -35px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.popup_close:before{
    content:'';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform .3s;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.popup_close:after{
    content:'';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: transform .3s;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media only screen and (max-width: 767px){
    #gtranslate{
        width: 96px;
        position: static;
    }
    #gtranslate .gt_switcher{
        width: 100px;
    }
    #gtranslate .gt_switcher .gt_selected a{
        width: 85px;
        font-size: 11px;
    }
    #gtranslate .gt_switcher a img{
        width: 15px;
        height: 15px;
    }
    #gtranslate .gt_switcher .gt_selected a:after{
        height: 15px;
    }
    .l-header__menu{
        gap: 2vw;
    }
}