
@charset "UTF-8";

/*====================================

    header

====================================*/ 

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    z-index: 3;
    border-bottom: 1px solid #0097e0;
    padding: 10px;
}
#header nav .logos {
    width: 200px;
    float: left;
}
#header nav .logos div {
    float: left;
    padding: 0 !important;
    margin: 0 !important;
}
#header nav .logos div:first-child {
    width: 93px;
}
#header nav .logos div:last-child {
    width: 88px;
}
#header nav .logos div a {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    display: block;
}
#header nav .logos div a:hover {
    filter: alpha(opacity=60);
    -moz-opacity:0.6;
    opacity:0.6;
    -ms-filter: "alpha(opacity=60)";
    -moz-opacity:0.6;
    -khtml-opacity: 0.6;
    zoom:1;
}
#header nav .logos img {
    height: : 100%;
    line-height: 0;
}
#header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 20px 0 0;
}
#header nav ul li {
    float: left;
    text-align: center;
    margin-left: 1.5em;
}
#header nav ul li:first-child {
    width: 120px;
    border-right: 1px solid #ccc;
    padding-right: 20px;
}
#header nav ul li:first-child img {
    width: 100%;
}
#header nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 100%;
    text-align: center;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
#header nav ul li:hover a,
#header nav ul li:hover a span {
    color: #0097e0;
}
#header nav ul li a span {
    display: block;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-size: 60%;
    margin-top: -15px;
}
.menu-left {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    z-index: 10;
    display: block !important;
    float: right;
    max-height: none;
}
.menu-left:before {
    content: '';
    display: table;
    clear: both;
}




