/* 翻訳ボタン --------------------*/
@media screen and (max-width:767px) { /*SP*/
    #translate_wrapper{
        position: fixed;
        z-index: 999999;
        bottom: 60px;
        right: 200px;
        right: 0;
        display: none;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #translate_wrapper{
        position: fixed;
        z-index: 999999;
        top: 55px;
        right: 200px;
        right: 0;
        display: none;
    }
}
.translate_switcher {
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    border-radius: 2px;
    color: #555;
    display: inline-block;
    line-height: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
    background: #fff;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.4, 0, 1, 1);

    cursor:pointer;
}
.translate-selected {
    padding:8px 10px;
}
.translate-current-lang img {
    width:33px;
    height:auto;
    vertical-align:middle;
    margin-right:6px;
}
.translate-lang-code {
    vertical-align:middle;
    margin-right:6px;
}
.translate_switcher-arrow {
    vertical-align:middle;
}
.translate-options {
    font-weight: normal;
    background:#fff;
    border-top:1px solid #eee;
}
.translate-option a {
    padding:8px 10px;
    display:flex;
    align-items:center;
    text-decoration: none;
    color: #555;
}
.translate-option a img {
    width:33px;
    height:auto;
    margin-right:8px;
}
.translate-option a:hover {
    background:#6070a0;
    color: #fff;
}