@charset "utf-8";


/* -- ul#menu -------------------------------------------------------------------------------- */

ul#g-nav {
	list-style-type: none;
	width: 100%;
    height: 100%;
    position: fixed;
	opacity: 0.9;
	z-index: 990;
	display: none;
}

ul#g-nav li {
	text-align: center;
    width: 85%;
    margin: 0 auto;
}

ul#g-nav li a {
    font-size: 2.2rem;
	text-decoration: none;
	display: block;
    color: #bda630;
    position: relative; 
    padding: 2rem 0;
    box-sizing: border-box;
}

/*#g-nav li a:after {
    font-family: 'Font Awesome 5 Free'; 
    content: "\f054"; 
    position: absolute; 
    top: 1.6rem; 
    right: 1.5rem; 
    font-size: 2rem; 
    font-weight: 900;
    color: #fff;
}*/





/* -- div#sp-icon -------------------------------------------------------------------------------- */

div.sp-icon {
	width: 70px;
	height: 64px;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 999;
}

div.sp-icon:hover {
	cursor: pointer;
	opacity: 0.7;
}

div.sp-icon span.menubar,
div.sp-icon span.menubar:before,
div.sp-icon span.menubar:after {
	display: inline-block;
	width: 30px;
	height: 3px;
	background: #fff;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.3s;
}

div.sp-icon span.menubar {
	left: 50%;
	top: 40%;
	transform: translate( -50%, -50% );
}

div.sp-icon span.menubar:before {
	content: "";
	transform: translateY( -10px ) rotate( 0deg );
}

div.sp-icon span.menubar:after {
	content: "";
	transform: translateY( 10px ) rotate( 0deg );
}


div.sp-open span.menubar {
	background: transparent !important;
}

div.sp-open span.menubar:before {
    background: #fff;
	transform: rotate( 45deg ) !important;
}

div.sp-open span.menubar:after {
    background: #fff;
	transform: rotate( -45deg ) !important;
}


div.sp-icon span.text {
    position: absolute;
    bottom: 7px;
    right: 18px;
    font-size: 10px;
}

div.sp-open span.text {
    color: #fff;
}




