@charset "UTF-8";
/* CSS Document */

#sidebarMenu,.openSidebarMenu,.sidebarIconToggle {
    display: none;
}

@media screen and (min-width: 0px) and (max-width: 640px) {

.header {
	width: 100%;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #FFFFFF;
}

.header .hdr-logo {
	width: 30%;
	margin: 10px 0 0;
}

.hdr-nav {
	width: 100%;
	height: 100vh;
	display: block;
	position: fixed;
	top: 40px;
	left: 0;
	z-index: 100;
	background-color: #1D600D;
	
	transform: translateY(0);
	transform: translateX(100%);
/*transform: translateX(0);*/
	transition: all 0.3s;
}

.hdr-nav ul.hnav-list {	
	width: 100%;
	margin: 0 auto 30px;
	padding: 0;
	position: relative;
	overflow: hidden;
	list-style: none;
	display: block;
	justify-content: space-between;
	font-size: 100%;
	font-weight: bold;
	letter-spacing: 0.05em;
}

.hdr-nav ul.hnav-list li {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: visible;
	border-bottom: solid 1px #FFFFFF;
}

.hdr-nav ul.hnav-list a {
	display: flex;
	width: 90%;
	padding: 10px 5%;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	color: #FFFFFF;
	
	transition: all 0.3s ease-in-out;
}

#openSidebarMenu:checked ~ .hdr-nav { transform: translateX(0); }

input#openSidebarMenu[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    display: inline;
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 300;
    height: 100%;
    width: 10%;
    top: 0;
    right: 0;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 60%;
    margin:5px auto 0;
    background-color: #1D600D;
	border-radius: 10px;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    width: 60%;
    margin-top: 5px;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    margin-top: 5px;
}

input#openSidebarMenu[type=checkbox]:checked ~ .sidebarIconToggle .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input#openSidebarMenu[type=checkbox]:checked ~ .sidebarIconToggle .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 10px;
}

input#openSidebarMenu[type=checkbox]:checked ~ .sidebarIconToggle .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -9px;
}

.hnav-other {
	width: 90%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hnav-other ul.icon-list {
	list-style: none;
	width: 80%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.hnav-other ul.icon-list li {
	width: 15%;
}

.hnav-other ul.bnr-list {
	list-style: none;
	width: 100%;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	justify-content: space-between;
}

.hnav-other ul.bnr-list li {
	width: 45%;
}

.hnav-other ul li {
	transition: all 0.3s;
}

.hnav-other ul li:hover {
	opacity: 0.5;	
}

}