@charset "utf-8";

/* ロゴ */
.header-logo img{
    padding: 10px 0px 0px 20px;
}
.header-logo img{
    width: 350px;
}
.header-logo a {
    text-decoration: none;
}

.header-menu-container {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0px;
    background-color: white;
    z-index: 999;
    color: #3B4043; /* メニューのフォント色 */
}
.header-menu-right {
    padding-top: 10px;
}

/* ハンバーガーメニュー */
.hamburger {
    margin: 0px auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hamburger .btn-gNav {
    position: fixed;
    top: 10px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    margin-top: 10px;
}

.hamburger .gNav-menu a {
    text-decoration: none;
    color: #3B4043; /* ハンバーガーの色 */
}
@media (hover: hover) {
.hamburger .gNav-menu a:link,
.hamburger .gNav-menu a:visited,
.hamburger .gNav-menu a:active,
.hamburger .gNav-menu a:hover {
    color: #3B4043;
}
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #3B4043;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #3B4043;
}

.hamburger .btn-gNav.open span:nth-child(2) {
    opacity: 0;
    background: #3B4043;
}

.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #3B4043;

}
.btn-gNav {
    display: none;
}
.gNav .gNav-menu {
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
    align-items: center;
    padding-right: 30px;
    text-align: center;
    line-height: 1.4em;
}
.gNav .gNav-menu ol,
.gNav ul {
    list-style: none;
    list-style-type: none;
}
.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 15px;
}
.header-menu-eng {
    color: #0272AA;
    font-size: 12px;
}
.header-menu-left {
    display: flex;
    align-items: center;
}


/*-- スマホサイズ --*/
@media screen and (max-width: 869px) {

    .header-logo img{
        width: 250px;
    }

    .header-menu-container {
        display: block;
    }
    .header-menu-right {
        padding-top: 0px;
    }
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* width: 80%; */
        height: 100%;
        /* background-color: rgba(0, 0, 0, 0.8); */
        background-color: #ffffff;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 100px;
        transition: .3s;
 
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        font-size: 18px;
    }

    .gNav-menu-contact {
        padding-top: 40px !important;
    }
    .hamburger .gNav-menu a {
        color: #3B4043; /* ハンバーガーの色 */
    }

    .header-logo-sp img{/*ロゴ画像サイズ*/
        width: 100%;
    }
}