@charset "utf-8";


/* -- ul#menu -------------------------------------------------------------------------------- */

ul#g-nav {
	list-style-type: none;
	width: 100%;
    height: 100%;
    position: fixed;
	z-index: 990;
	display: none;
}

ul#g-nav li {
	text-align: center;
}

ul#g-nav li a {
    font-size: 23px;
	text-decoration: none;
	display: block;
    color: #562E00;
    position: relative; 
    padding: 26px 2rem;
    box-sizing: border-box;
	font-weight: normal;
}






/* -- div#sp-icon -------------------------------------------------------------------------------- */

div.sp-icon {
	width: 70px;
	height: 64px;
	position: absolute;
	right: 0px;
	top: 15px;
	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: 35px;
	height: 2px;
	background: #222;
	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( -15px ) rotate( 0deg );
}

div.sp-icon span.menubar:after {
	content: "";
	transform: translateY( 15px ) rotate( 0deg );
}


div.sp-open span.menubar {
	background: transparent !important;
}

div.sp-open span.menubar:before {
    background: #222;
	transform: rotate( 45deg ) !important;
}

div.sp-open span.menubar:after {
    background: #222;
	transform: rotate( -45deg ) !important;
}


div.sp-icon span.text {
    position: absolute;
    bottom: 7px;
    right: 18px;
    font-size: 10px;
    display: none;
}

div.sp-open span.text {
    color: #562E00;
}




