
@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: 8px;
}
#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: 60px;
}
#header nav .logos div:last-child {
    width: 60px;
}
#header nav .logos div a {
    display: block;
}
#header nav .logos img {
    height: : 100%;
    line-height: 0;
}
#header nav ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    clear: both;
}
#header nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
}
#header nav ul li:first-child {
    width: 100%;
}
#header nav ul li:first-child img {
    width: 140px;
    margin: 0 auto;
}
#header nav ul li:last-child {
    border-bottom: none;
}
#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;
    padding: .4em 0;
}
#header nav ul li a span {
    display: block;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 400;
    font-size: 60%;
    margin-top: -10px;
}
.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;
}
@media (min-width: 737px) {
    .menu-left {
        display: block !important;
        float: right;
        max-height: none;
    }
}
.menu-left:before {
    content: '';
    display: table;
    clear: both;
}
.menu-left.collapse {
    max-height: 30em !important;
}

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

    Hamburger

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

.nav-toggle {
    display: block;
    border-radius: 5px;
    background-color: transparent;
    float: right;
    height: 38px;
    width: 38px;
    cursor: pointer;
    padding: 8px 8px;
    border: 1px solid #0097e0;
    background: #0097e0;
}
.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(4.4px, -4.4px);
}
@media (min-width: 737px) {
    .nav-toggle {
        display: none;
    }
}
.nav-toggle span {
    position: relative;
    display: block;
    height: 2px;
    width: 100%;
    margin-top: 4px;
    background-color: #fff;
    transition: all .25s;
}


