/*
 Theme Name:   Garfunkel Child
 Template:     garfunkel
*/

/* ヘッダー言語スイッチャー */
.lang-switcher {
    font-size: 1.1rem;
    padding: 0.6em 0;
}
.lang-switcher ul {
    display: flex;
    gap: 1.2em;
    flex-wrap: wrap;
    margin: 0;
}
.lang-switcher li {
    position: relative;
    list-style: none;
    margin: 0;
    color: #fff;
}
.lang-switcher li:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 50%;
    position: absolute;
    top: 50%;
    left: -0.6em;
    background-color: currentColor;
    transform: translateY(-50%) rotate(25deg);
}
.lang-switcher a {
    display: inline-block;
    padding: 0.2em;
    color: currentColor;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.lang-switcher a:hover {
    opacity: 0.7;
}
.lang-switcher li.current-lang a {
    border-bottom: 2px solid #b93429;
    pointer-events: none;
}
@media screen and (max-width: 800px) {
    .lang-switcher {
        font-size: 0.9rem;
    }
}