@charset "utf-8";

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	width: 100%;
	text-align: center;
}
nav ul{
	margin: 0;
	padding: 0;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: flex-end;
	align-items:stretch;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	display: flex;
	position: relative;
	align-items:center;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #705C54!important;
	padding:14px;
	transition:all .3s;
	font-family: 'Zen Maru Gothic', sans-serif!important;
}
@media screen and (max-width:1399px){
	nav ul li{display: block;}
	nav ul li a{
		padding:10px 0;
	}
}

nav ul li li a{
	padding:10px 0;
}
.reseve{
	background-image: url("../img/top/hbbg2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.reseve:hover{
	transition: .5s;
}
.reseve a,.reseve a:hover{
	color: #fff!important;
	line-height: 1.4;
}
.htel{
	background-image: url("../img/top/hbbg1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.htel:hover{
	transition: .5s;
}
.htel a,.htel a:hover{
	line-height: 1.2;
}
.hinsta{
	background: linear-gradient(218deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 45%, rgba(247,186,100,1.00) 90%);
}
.hinsta:hover{
	background: linear-gradient(218deg,rgba(131, 58, 180, 0.5) 0%, rgba(253, 29, 29, 0.5) 45%, rgba(252, 176, 69, 0.5) 90%);
	transition: .5s;
}
.hinsta a,.hinsta a:hover{
	color: #fff!important;
}
@media only screen and (max-width: 1399px) {
.reseve,.htel,.hinsta{display: flex;align-items: center;}
.reseve,.htel{height: 80px; padding: 0 10px;}
.hinsta{padding: 0 10px;}
.reseve a,.htel a{
	display: block;
	text-decoration: none;
	color: #705C54;
	padding:14px;
	transition:all .3s;
	font-family: 'Zen Maru Gothic', sans-serif!important;
}	
li.reseve,li.htel,li.hinsta{display: none;}
}

nav ul li a:hover{
	color: #897972!important;
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
	position: absolute;
	left: 50%;
	top:80px;
	width:180px;
	z-index: 4;
	background-color:rgba(255,255,255,0.95);
	visibility: hidden;
	opacity: 0;
	transform: translate(-50%, 0);
	transition: all .3s;
	border-radius: 0 0 20px 20px;
}
@media only screen and (max-width: 1399px) {
nav li.has-child ul{
	position: absolute;
	left:0;
	transform: translate(0, 0);
	background-color:rgba(251,247,229,0.95);
	opacity: 0;
	border-radius: 0;
}
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(180,169,135,0.60);
	width: 180px;
}
@media only screen and (max-width: 1399px) {
	nav li.has-child ul li a{
		width: 210px;
	}
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#EAEAEA;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#6C8E44;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#ACB853;
}


/*==1399px以下の形状*/
@media screen and (min-width:1399px){
.click-none{
	pointer-events: none;
}
}
@media screen and (max-width:1399px){
	nav{padding: 0;}
	
	nav ul{display: block;}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;
	opacity:1;
	display: none;
	transition:none;
}
	
nav ul li a{
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}


/*========= レイアウトのためのCSS ===============*/

h1{
	font-size:10px!important;
	margin: 0!important;
	padding-bottom: 4px;
	color: #878787;
}

#g-nav{
	width: 72%;
		padding: 0;
	}
@media only screen and (max-width: 1399px) {
	nav{
		background:none;
		width: 100%;
	}
	#g-nav{
		position: absolute;
		top:80px;
		right: -120%;
		padding: 0 20px 120px;
		height: 100vh;
		transition: all 0.6s;
		background-color: rgba(255,255,255,1);
		width: 250px;
		z-index: 999999!important;
		overflow-y: auto;
	}
	#g-nav.panelactive{
		right: 0;
	}
	#g-nav{
		background-color: rgba(255,255,255,0.9);
	}
}
@media only screen and (max-width: 991px) {
	#g-nav{
		top:70px;
	}
}
@media only screen and (max-width: 576px) {
	#g-nav{
		top:50px;
	}
}

.h_navw{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0!important;
	width: 100%;
}
.h_navw.Down{
	display: flex;
	align-items:center;
	justify-content: space-around;
	padding-top: 0!important;
	margin: 0!important;
	width: 100%;
}

@media only screen and (min-width: 1399px) {
	.boxshadow{
	background:rgba(255,255,255,0.84);
	box-shadow: 0 2px 10px 0 rgba(45,45,45,0.36);
}
}
@media only screen and (max-width: 1399px) {
	.h_navw{
		align-items:center;
		padding: 0;
	}
}

