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


/*header
----------------------------------------*/
#head-nav{
	position: fixed;
	background: #fff;
	top: 0;
	width: 100%;
	/*width: 1200px;*/
	/*min-width: 1200px;*/
	z-index: 10000;
	height:140px;
}

#head-nav .inner{
	margin: 0 auto;
	/*min-width: 1200px;*/
}

header {
	padding: 18px 20px;
	/*max-width: 1500px;*/
	margin: 0 auto;
}

header　h1 {
	 display: flex;
	 flex-direction: row;
	 align-items: center;
	 justify-content: space-between;
	 position: relative;
	 height: 70px;
	 padding: 0 1em;
}

header h1.header-logo{
	display: inline-block;
	float: left;
}

header h1 .header-logo img{
	width: 80%;
}


header .tel{
	font-family: 'Cinzel', serif;
	font-size: 1.6rem;
	float: right;
	line-height: 1.2;
	
}

header .tel span{
	font-size: 1.2rem;
	text-align: right;
}

.hours{	
	font-family: 'Noto Sans JP', sans-serif;
	float: right;
	font-size: 0.85rem !important;
}


nav{
	 width: 100%;
	 height: 70px;
	 position: relative;
	/* background: #F6F6F6;*/
}
.drawer {	
	flex-direction: row;
	align-items: center;
	justify-content: space-between;	
	/*height: 70px;*/
	padding: 0 1em;
	display: block;
	position: fixed;
	top: 28px;
	right: 4px
	 
}



.navbar_toggle{
 	z-index:9999;
}
.navbar_toggle_icon {
	 position: relative;
	 display: block;
	 height: 2px;
	 width: 30px;
	 background: #5c6b80;
	 -webkit-transition: ease .5s;
	 transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
	 top: 0;
}
.navbar_toggle_icon:nth-child(2) {
 	margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
	 top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	 top: 10px;
	 -webkit-transform: rotate(45deg);
	 transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	 -webkit-transform: translateY(-50%);
	 transform: translateY(-50%);
	 opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	 top: -10px;
	 -webkit-transform: rotate(-45deg);
	 transform: rotate(-45deg);
}



.menu{
	 -webkit-transform: translateX(-100%);
	 transform: translateX(-100%);
	 -webkit-transition:ease .5s;
	 transition:ease .5s;
	 z-index:1000;
}
.menu ul li{
	 padding: 1.8em;
	 border-bottom: 1px solid #CCC;
}


/*OPEN時の動き*/
.menu.open {
	-webkit-transform:translateX(0);
	transform:translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: rgba(255,255,255,0.90);
	border-top: 1px solid #5c6b80;
	margin-top: -2px;
	height: 100vh;
}



@media screen and (max-width: 767px){
	
	header {
		padding: 18px 12px 15px;
	}
		
	
	#head-nav{
		height:72px;
	}
	header h1.header-logo{
		float: none;
	}
	
	header img{
		width: 60%;
	}

}

@media screen and (min-width: 766px) {
	nav{
	 display: flex;
	 flex-direction: row;
		height: 0;
	}
	.navbar_toggle{
	 display: none;
	}
	.menu{
		 width: 100%;
		 -webkit-transform: translateX(0);
		 transform: translateX(0);
	}
	.menu ul{
		 height: 60px;
		 display: flex;
		 flex-wrap: nowrap;
		 justify-content: space-between;
		 align-items: center;
		background: #fff;
		max-width:1200px;
		margin: 0 auto;
	}
	.menu ul li{
		 padding: 0 1em;
		 border-bottom: none;
		border-left: 1px solid #ccc;
		display: table-cell;
		text-align: center;
		width: calc(1200px/6);
		white-space: nowrap;
		
	}
	.menu ul li:last-child{
		border-right: 1px solid #ccc;
	}
	.menu ul li a{
		 color: #333;
		
	}
}


@media screen and (max-width: 767px) {
	nav{
	 	height: 0;
	}
	
}


@media screen and (max-width: 767px) {
	body{
		margin-top: 72px !important;
	}
	.tel-link{
		background: #0C1E44;
		display: block;
		position: absolute;
		right: 62px;
		top: 0;
		width: 60px;
		height: 72px;
		text-align: center;
		padding: 21px 0 0;
		z-index: 5;
		cursor: pointer;
	}
	.tel-link img{
		max-width: 35%;
		margin: 2px 0 0 0;
	}
}	