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

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

@media screen and (min-width: 0px) and (max-width: 640px) {
.hdr-top .ht-r {
	display: none;
}
	
.hdr-nav {
	display: none;
}

.sp-wrap {
	width: 98%;
	margin: 0 auto 10px;
	padding: 10px 0 0;
}
	
.sp-tel {
	width: 90%;
	margin: 0 auto 10px;
	        padding: 4px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
	border-radius: 10px;
	background-color: #fff8ef;	
}
	
.sp-tel .tel {
	color: #EE7800;
	font-size: 160%;
}

.sp-tel .tel a {
    color: #EE7800;
}

.sp-nav {
	width: 100%;
	height: 100vh;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #FFF;
	border-top: solid 10px #62BB46;
	transform: translateY(-140%);
	transform: translateX(100%);
/*transform: translateX(0);*/
	transition: all 0.3s;
}
	
.sp-nav .slogo {
	width: 50%;
	max-width: 500px;
}

.sp-nav ul.snav-list {	
	width: 100%;
	margin: 0 auto 20px;
	padding: 0;
	position: relative;
	overflow: hidden;
	list-style: none;
	display: block;
	justify-content: space-between;
	font-size: 90%;
	font-weight: normal;
	letter-spacing: 0.05em;
	border-top: solid 1px #cecece;
}

.sp-nav ul.snav-list li {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: visible;
	font-weight: bold;
	border-bottom: solid 1px #cecece;
}

.sp-nav ul.snav-list a {
	display: flex;
	width: 90%;
	padding: 3px 5%;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #36831E;
	
	transition: all 0.3s ease-in-out;
}

.sp-nav ul.snav-list a:after {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	background-image: url("../img/hdr_sparr.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

#openSidebarMenu:checked ~ .sp-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: fixed;
    z-index: 300;
    height: 30px;
    width: 30px;
    top: 25px;
    right: 10px;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 60%;
    margin:5px auto 0;
    background-color: #36831e;
	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;
}


}