/*
KINHAKU

/*----------------------------------------------
NAVI
------------------------------------------------*/

.header{
 position: fixed; 
 width: 100%;
 height:70px;
 top:0;
 left:0;
 right: 0;	
 margin:0 auto;
 padding: 10px 0 5px;
 font-size: 15px;
	background-color:rgba(191,178,153,0.84);
 color: #ffffff;
 text-align: center;
 z-index: 400;
}


/* 
hamburger Navi
=================================== */
.hamburger {
	position: absolute;
	right: 34px;
	top: 23px;
	width: 38px;
	height: 40px;
	cursor: pointer;
	z-index: 1200;
}

.hamburger__line {
	position: absolute;
	width: 38px;
	height: 1.6px;
	right: 0;
	background-color: #fff;
	transition: all 0.5s;
}

@media (max-width: 599px) {
.hamburger {
	right: 20px;
	z-index: 1200;
}
.hamburger__line {
	position: absolute;
	width: 30px;
	height: 1.6px;
	right: 0;
	background-color: #fff;
	transition: all 0.5s;
}
}

.hamburger__line--1 {
	top: 1px;
}

.hamburger__line--2 {
	top: 11px;
}

.hamburger__line--3 {
	top: 22px;
}

/*After Click*/
.open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 11px;
}

.open .hamburger__line--2 {
	opacity: 0;
}

.open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 11px;
}

/* 
sp-nav(drop navi)
=================================== */
.sp-nav {
	position: fixed;
	top: -100%; /*hidden*/
	left: 0;
	width: 100%; /*drop navi space */
	height: 45vh;
 background-color:rgba(191,178,153,0.84); /*#BFB299 */
	transition: all 0.5s;
	z-index: 1000;
	overflow-y: auto;
	text-align: center;
}
.sp-nav ul{
list-style: none;
text-align: center;
margin-top: 112px;
}
.sp-nav li{
font-size: 18px;
text-align: center;
margin-top: 20px;
}

@media (max-width: 599px) {
.sp-nav {
	position: fixed;
	top: -100%; /*hidden*/
	left: 0;
	width: 100%; /*drop navi space  */
	height: 60vh;
}
}


.sp-nav a{
text-decoration: none; 
color:#ffffff; 
}

.sp-nav a:link{
color:#ffffff; 
}

.sp-nav a:visited { 
color:#ffffff;
}

.sp-nav a:hover { 
color:#593d14;
}


/*slide*/
.open .sp-nav {
	top: 0;
}


/* 
black-bg
=================================== */
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 45vh;
	z-index: 5;
	background-color:rgb(201,194,177,0.7);
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	cursor: pointer;
	z-index: 700;
}

/**/
.open .black-bg {
	opacity: 0.3;
	visibility: visible;
}


