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

/***SMARTPHONE NAV***/

.hdr-sp-wrap {
	display: none;
}

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

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


/***SMARTPHONE NAV***/

.hdr-sp-wrap {
	width: 95%;
	margin: 0 auto;
	padding: 13px 2.5%;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #FFFFFF;
	font-weight: bold;
	
}

.hdr-logo-sp {
	width: 80%;
	line-height: 90%;
}

.hdr-logo-sp a {
	width: 100%;
	display: block;
}

#openSidebarMenu:checked ~ .header { 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: 60%;
    width: 10%;
    top: 10px;
    right: 10px;
}

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

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

.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: 6px;
}

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

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

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

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

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

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

}