@charset "UTF-8";

.nav-logo {
    width: 200px;
    padding-left: 16px;
    padding-top: 10px;
}

#g-nav .language {
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Arsenal', sans-serif;
    margin-left: 0px;
    padding-left: 5px;
}

#g-nav .language a {
    color: #666;
    margin-right: 5px;
}

#g-nav .language a:hover {
    color: #fff;
}

.line-left {
    border-left: 1px solid #666;
    padding-left: 12px;
}

#g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 280px;
    height: 100vh;
    background: #fcc800;
    transition: all 0.6s;
    opacity: 0.9;
}

#g-nav.panelactive {
    right: 0;
}

#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* ------------------- list ------------------------*/

#g-nav ul {
    position: absolute;
    z-index: 999;
    top: 3%;
    width: 50%;
    /* left:50%; */
    /* transform: translate(-50%,-50%); */
}

#g-nav li {
    list-style: none;
    text-align: left;
}

ul.menu li:hover a+ul {
    display: block;
}

/* ----------------- Accordion---------------------- */

.accordion-container {
    position: relative;
    width: 100%;
    border-top: none;
    outline: 0;
    cursor: pointer
}

.accordion-container .accordion-title {
    display: block;
    position: relative;
    margin: 0;
    padding: 0.55em 0.55em 0.55em 2em;
    font-size: 1.25em;
    font-weight: normal;
    color: #666;
    background: #fcc800;
    cursor: pointer;
    letter-spacing: 0.06em;
    /* box-shadow: 0 1px 0 #d8b356, 0 -1px 0 #d8b356; */
    /* 区分け線 */
}

.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-container .content-entry.open .accordion-title {
    background-color: #f0b305;
    color: #666;
}

.accordion-container .accordion-title:hover i:before,
.accordion-container .accordion-title:hover i:active,
.accordion-container .content-entry.open i {
    color: #666;
}

.accordion-title a {
    display: block;
    width: 100%;
    height: 100%;
    color: #666;
    letter-spacing: 0.06em;
}

#accordion .children a {
    color: #fcc800;
    font-size: 1rem;
    line-height: 2rem;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
}

#accordion .children a:hover {
    color: #fff;
}

#accordion .children p {
    font-size: 0rem;
    line-height: 1.0;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
}

.accordion-title {
    position: relative;
}

.accordion-title:after {
    content: "";
    position: absolute;
    right: 50px;
    top: 38%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.no-accordion:after {
    border-top: none;
    border-right: none;
    color: #666;
}

.accordion-container .accordion-title.no-accordion:hover {
    background-color: #f0b305;
    color: #666;
}

.accordion-container .accordion-title.no-accordion:hover a {
    color: #666;
}


.accordion-title.open:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 45%;
}

.accordion-content {
    display: none;
    padding-left: 2.3125em;
    padding-top: 12px;
    padding-bottom: 12px;
    /* background-color: #d18e04; */
    background-color: #666;
}

.accordion-container {
    width: 300px;
    margin: 1.3em auto;
}

/* ----------- nav open ------------- */

.openbtn {
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* --------------- /nav -------------------- */