/*多言語切替*/
.lang-switcher {
    position: relative;
    display: inline-block;
    z-index: 1100;
}

.lang-current {
    cursor: pointer;
    color: #444;
    font-size: 1.4rem;
    padding: 6px 10px;
    user-select: none;
}

.lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 4px 0;
    margin: 0;
    list-style: none;
    z-index: 1200;
    min-width: 130px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .lang-options li {
        line-height: 1;
        padding: 0.5em 0;
        /*border-bottom: dashed 1px silver;*/
        text-align: center;
        list-style-type: none !important;
    }

       /* .lang-options li:last-of-type {
            border-bottom: none;
        }*/

    .lang-options li a {
        display: block;
        padding: 8px 12px;
        color: #333;
        text-decoration: none;
    }

        .lang-options li a:hover {
            background-color: #f0f0f0;
            color: #000;
        }

/* PCでhover時に表示 */
@media screen and (min-width: 768px) {
    .lang-current:hover #currentLang {
        color: #C8B390;
    }
    
    .lang-current:hover .lang-options {
        display: block;
    }
}
