#hd01 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: inline-block;
    width: 376px;
    height: 80px;
    transition: all 0.4s ease;
}
.hd-logo { height: 100%; margin-bottom: 0; }
.hd-logo a {
    line-height: 1;
    display: block;
    width: 100%;
    height: 100%;
    padding: 4px 25px 0 17px;
    background-color: #fff;
    border-radius: 0 0 10px 0;
}

/*--- LIST STYLE ---*/
.g-nav-list {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    animation: nav-move-t .75s forwards;
    transition-duration: .5s;
    transition-timing-function: ease-in-out;
    transition-property: opacity;
}
.nav-list {
    list-style: none;
    display: block;
    height: 100vh;
    margin: 0 auto;
    padding: 120px 60px 80px;
    overflow-y: auto;
}
.nav-list > li:not(:last-child) { margin-bottom: 27px; }
.nav-list > li a {
    color: #006EBA;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3em;
    letter-spacing: 0.1em;
    position: relative;
    display: block;
    padding: 0;
    cursor: pointer;
}
.nav-list > li span[lang="ja"] {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1;
}
.nav-list > li a::after {
    content: "";
    line-height: 1;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: 0.5em;
    background-color: #C3C3C3;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

/*--- OPEN NAVI ---*/
#g-nav.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 32, 69, .9);
    -webkit-animation: appear .3s ease;
    animation: appear .5s ease;
}
@-webkit-keyframes appear {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
@keyframes appear {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
#g-nav.panelactive .g-nav-list {
    animation: nav-move .5s forwards;
}
@keyframes nav-move {
    0% { opacity: 0; visibility: hidden; height: 0; }
    100% { opacity: 1; visibility: visible; height: auto; }
}
@keyframes nav-move-t {
    0% { opacity: 1; visibility: visible; height: auto; }
    100% { opacity: 0; visibility: hidden; height: 0; }
}

/*--- MENU / CLOSE BTN ---*/
.openbtn {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: #00AE6F;
    background: linear-gradient(45deg, rgba(83,217,169,1) 0%, rgba(0,174,111,1) 80%);
    border-radius: 0 0 0 10px;
}
.openbtn::before {
    content: "menu";
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.07em;
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.openline {
    display: block;
    width: 40px;
    height: 26px;
    position: relative;
	cursor: pointer;
    display: flex;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
}
.openbtn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    border-radius: 0;
	background-color: #fff;
    transition-duration: .4s;
    transition-timing-function: ease-in-out;
    transition-property: width,background-color,border-color,color,fill,opacity;
  }
.openbtn span:nth-of-type(1) { top: 0; }
.openbtn span:nth-of-type(2) { top: 10px; }

/* OPEN Anime */
#g-nav.panelactive .openbtn::before {
    content: "close";
    color: #fff !important;
}
.openbtn.active span { width: 36px!important; }
.openbtn.active span:nth-of-type(1) { top: 3px!important; }
.openbtn span:nth-of-type(1) { animation: menu07-bar01 .75s forwards; }
@keyframes menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
.openbtn span:nth-of-type(3) { animation: menu07-bar02 .75s forwards; }
@keyframes menu07-bar02 {
    0% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(-26deg); }
    50% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
}
/* CLOSE Anime */
.openbtn.active span:nth-of-type(1) { animation: active-menu07-bar01 .75s forwards; }
@keyframes active-menu07-bar01 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, 5px); transform: translate(-50%, 5px) rotate(26deg); }
}
.openbtn.active span:nth-of-type(2) { animation: active-menu07-bar03 .75s forwards; }
@keyframes active-menu07-bar03 {
    0% { -webkit-transform: translate(-50%, 0); transform: translate(-50%, 0) rotate(0); }
    50% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(0); }
    100% { -webkit-transform: translate(-50%, -5px); transform: translate(-50%, -5px) rotate(-26deg); }
}

/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 992px) {
    .openbtn { display: none; }
    .g-nav-list {
        opacity: 1;
        visibility: visible;
        max-width: none;
        height: 80px;
        animation: none;
        transition: all 0s ease;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    }
    .nav-list {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        margin: 0 auto;
        margin-right: 3vw;
        padding: 0;
        text-align: center;
    }
    .nav-list > li { height: 100%; margin: 0 15px; }
    .nav-list > li:not(:last-child) { margin-bottom: 0; }
    .nav-list > li span[lang="ja"] {
        font-size: 15px;
        line-height: 80px;
    }
    .nav-list > li span[lang="en"] { display: none; }
    .nav-list > li a { display: block; line-height: 80px; }
    .nav-list > li a::after { display: none; }
}
@media screen and (max-width: 991px) {
    #hd01 {
        width: 330px;
        filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
        -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    }
    .hd-logo a {  padding: 9px 25px 0 17px; }
}
@media screen and (max-width: 575px) {
    #hd01 { width: 248px; height: 67px; }
    .hd-logo a { padding: 8px 12px 0 5px; }
    .openbtn { width: 72px; height: 67px; }
    .openbtn::before { top: 33px; }
}