/* 言語選択セレクトボックスのスタイル */
.lang-change select {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: "#5d6c72";
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-change select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-change select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.7);
}

/* セレクトボックスのオプションスタイル */
.lang-change option {
    background: #ffffff;
    color: "#5d6c72";
    padding: 8px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .lang-change select {
        padding: 6px 12px;
        font-size: 12px;
    }
}