#hd01 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 109px;
    transition: all 0.4s ease;
    background-color: #fff;
/*
    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 {
    width: 96px;
    display: flex;
    align-items: center;
    margin-left: 1.8%;
}
.hd-logo a { line-height: 1; }

/*--- LIST STYLE ---*/
#g-nav { flex: 1; }
.g-nav-list {
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    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;
*/
    opacity: 1;
    visibility: visible;
    max-width: none;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}
.nav-list > li {
    height: 100%;
    margin: 0 1.2em;
}
.nav-list > li:not(:last-child) { margin-bottom: 0; }
.nav-list > li a {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 109px;
    letter-spacing: 0.02em;
    position: relative;
    display: block;
    padding: 0;
    cursor: pointer;
}
.nav-list > li a:hover,
.nav-list > li.is-active a { color: #007C38; }

.icon-nav-list {
    list-style: none;
    height: 100%;
}
.icon-nav-list > li {
    width: 138px;
    height: 100%;
}
.icon-nav-list > li a {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #007C38;
}
.icon-nav-list > li a .icon {
    display: block;
    width: 52px;
    margin: 0 auto 5px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.icon-nav-list > li a .txt {
    font-size: 15px;
    text-align: center;
}
.icon-nav-list > li a:hover { color: #009945; background-color: #F5F4EC; }
.icon-nav-list > li a:hover .icon { filter: brightness(0) saturate(100%) invert(25%) sepia(88%) saturate(2765%) hue-rotate(142deg) brightness(100%) contrast(103%); }


/*--- OPEN NAVI ---*/
#g-nav.panelactive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100vh;
/*
    opacity: 0;
    visibility: hidden;
    -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: #007C38;
    border-radius: 0 0 0 22px;
}
.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;
    letter-spacing: 0.1em;
}
.openbtn.active span { width: 36px!important; }
.openbtn.active span:nth-of-type(1) { top: -3px !important; }
.openbtn.active span:nth-of-type(2) { top: 4px !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%, -2px); transform: translate(-50%, -2px) rotate(0); }
    100% { -webkit-transform: translate(-50%, -2px); transform: translate(-50%, -2px) rotate(-26deg); }
}

/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 992px) {
    .openbtn { display: none; }
}
@media screen and (max-width: 991px) {
    #hd01 { height: 80px; background-color: transparent; }
    .hd-logo { width: 74px; }
    #g-nav .g-nav-list {
        opacity: 0;
        visibility: hidden;
        display: block;
        width: 100%;
        height: auto;
        max-width: 360px;
        padding: 40px 0 0;
        position: absolute;
        top: 0;
        right: 0;
    }
    #g-nav.panelactive .g-nav-list { opacity: 1; visibility: inherit; }
    .nav-list {
        display: block;
        height: auto;
    }
    .nav-list > li { margin: 0; }
    .nav-list > li a {
        line-height: 70px;
        padding: 0 2.5rem;
    }
    .icon-nav-list { height: auto; margin: 0; padding: 0 0 50px; }
    .icon-nav-list > li { width: 100%; }
    .icon-nav-list > li a {
        width: 90%;
        height: 90px;
        margin-inline: auto;
        margin-top: 15px;
        flex-direction: row;
        gap: 20px;
        border-radius: 50px;
    }
    .icon-nav-list > li a .icon { width: 42px; margin: 0; }
    .icon-nav-list > li a .txt { font-size: 18px; letter-spacing: 0.05em; }
}
@media screen and (max-width: 575px) {
    .g-nav-list { max-width: none; }
    #g-nav .g-nav-list { max-width: none; }
}