/*
Theme Name: app
Theme URI: http://example.com/
Description: child theme for the Xeory
Author: Junya Okubo
Author URI: https://junyaookubo.com/
Template: xeory_extension
Version: 5.2
*/

#header{
    background-color: #fff;
    padding: 13px 50px;
}
#header a{
    color: #707070;
    transition: .5s;
}
#header a:hover{
    text-decoration: none;
    opacity: .6;
}
.headerRight img{
    margin-right: 10px;
    width: 20px;
}
.header_content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerLeft{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerLeft .text {
    text-align: center;
    font-size: 14px;
}
.headerLeft img {
    width: 60px;
    margin-right: 50px;
}

@media screen and (max-width:767px){
    #header{
        padding: 10px 20px;
    }
    .headerLeft .text{
        display: none;
    }
    .headerRight a{
        font-size: 14px;
    }
    .headerLeft img{
        margin-right: 0;
    }
}