#gHeader {
    width: 100%;
    position: fixed;
    top:0;
    left:0;
    z-index:100;
    background: #000;
    color: #fff;
    height:73px;
}

.gHeaderInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}
.logo {
    width: 140px;
}

.logo img {
    width: 100%;
}




.headerText {
    padding-right:5px;
    font-size: 14px;
    font-weight: bold;
    padding-bottom:8px;
}

.menuBtn {
    position: relative;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    bottom:5px;
}

.menuBtn span,
.menuBtn span::before,
.menuBtn span::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: 0.3s;
}

.menuBtn span {
    top: 50%;
}

.menuBtn span::before {
    top: -6px;
}

.menuBtn span::after {
    top: 6px;
}
.menuBtn.is-open span {
    background: transparent;
}

.menuBtn.is-open span::before {
    top: 0;
    transform: translateX(-50%) rotate(45deg);
}

.menuBtn.is-open span::after {
    top: 0;
    transform: translateX(-50%) rotate(-45deg);
}



.gNav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #000;
    z-index: 1000;
    font-weight: bold;
}


.gNav a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-top: 1px solid #333;
}
.gNav a:hover{
    text-decoration: underline;
}

.gNav.is-open {
    display: flex;
}


@media (min-width:1300px){
    .menuBtn {
        display: none;
    }
    .gNav {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 24px;
        width: auto;
        margin-left: auto;
        padding-bottom:8px;
        font-size: 18px;
    }

    .gNav a {
        border-top: none;
        padding: 0;
        white-space: nowrap;
    }

}


/* PC */
@media (min-width:768px){

    .headerText {
        margin-left:2rem;
        font-size: 18px;
        padding-bottom:8.5px;
    }
    .gHeaderInner {
        margin: 0 auto;
        box-sizing: border-box;
    }

}