@charset "utf-8";

/* Nav
-------------------------------------------*/
.nav-button {
  	display: none;
	}
nav {
	margin-left: auto;
	}
nav ul{
	display: flex;
    align-items: center;
	}
.nav-wrap li:nth-child(2) {
	border-left:none;
	}
.nav-wrap li {
	padding: 0 28px 0 0;
	text-align: center;
	}
.nav-wrap li:last-child {
	padding: 0;
	}
.nav-wrap li a {
	font-size: 1.6rem;
	font-weight: normal;
	letter-spacing: 0.1em;
    color: #242424;
	}
.nav-wrap li a:hover {
	text-decoration: none;
	}
.nav-wrap.open {
  	display: block;
	}
.open li a{
	color: #fff !important;
	}
.nav-wrap.close {
  	display: none;
	}

@media screen and (min-width: 991px) {	
	.nav-wrap {
    	display: block !important;
  		}
	.nav_logo{display: none;}
	.reserv{display: none;}
	}

@media screen and (max-width: 990px) {
	.nav_logo a img{
		width: 220px;
		}
	.nav-button {
		display: block;
		cursor: pointer;
		}
	.nav-wrap {
		position: fixed;
    	left: 0;
    	top: 0;
    	display: none;
    	z-index: 10;
    	background-color: rgba(62, 58, 57, 0.9);
    	width: 100%;
    	height: 100%;
		}
	.nav-wrap ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
    	height: 100%;
 		}
	.nav-wrap li {
		display: block;
		text-align: center;
		padding: 12px 0;
		border-left: none;
		}	
	.nav-wrap li a {
    	color: #000;
		font-size: 16px;
		}
	.nav-wrap li a span {
		display: none;
		}
	.nav-wrap li:last-child {
		padding: 20px 0 0 0 ;
		}

/* ナビボタン
-------------------------------------------*/
.nav-button,
.nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
	}
.nav-button {
    z-index: 20;
    position: absolute;
    width: 26px;
    height: 24px;
	top: 20px;
	right: 20px;
	}
.home .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3e3a39;
    border-radius: 4px;
	}
.nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #222;
    border-radius: 4px;
	}
.change-color .nav-button span {
	background-color: #222;
	}
.nav-button span:nth-of-type(1) {
    top: 0;
	}
.nav-button span:nth-of-type(2) {
    top: 11px;
	}
.nav-button span:nth-of-type(3) {
    bottom: 0;
	}
	
/* ナビボタン エフェクト
-------------------------------------------*/
.nav-button:not(.active):hover span:nth-of-type(1) {
	top: 0px;
	}
.nav-button:not(.active):hover span:nth-of-type(3) {
  	bottom: 0px;
	}
.nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  	}
.nav-button.active span:nth-of-type(2) {
    opacity: 0;
  	}
.nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  	}
.nav-button.active span {
	background-color: #fff;
  	}
	
}