@charset "utf-8";

/* header */

header{
	width:100%;
	position: fixed;
	background-color: #fff;
	z-index: 997;
}
.headerInner{
	width:1320px;
	height:50px;
	margin:0 auto;
	padding:10px 0;
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.headerInner h1{
	width:430px;
}
.headerInner h1 a{
	transition:0.5s;
}
.headerInner h1 a:hover,
.headerInner h1 a:active{
	opacity:0.5;
	transition:0.5s;
}
.headerInner .pcBtn{
	display:flex;
}
.headerInner .pcBtn p{
	width:246px;
	margin-right:10px;            
}
.headerInner .pcBtn p a{
	transition:0.5s;
}
.headerInner .pcBtn p a:hover,
.headerInner .pcBtn p a:active{
	opacity:0.5;
	transition:0.5s;
}
.headerInner .pcBtn ul{
	width:350px;
	display:flex;
	justify-content: space-between;
}
.headerInner .pcBtn ul li{
	width:170px;
	height:100%;
}       

.headerInner .pcBtn ul li.reserve a{
	display: flex;
	height:100%;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.1em;
	transition:0.5s;
color:#ffffff;
	border:1px solid #B4A00D;
	background-color: #B4A00D;
}
.headerInner .pcBtn ul li.reserve a:hover,
.headerInner .pcBtn ul li.reserve a:active{
	color:#fff;
	background-color: #D5C23B;
	transition:0.5s;
}

.headerInner .pcBtn ul li.request a{
	display: flex;
	height:100%;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.1em;
	transition:0.5s;
	background-color: #176A5D;
	border:1px solid #176A5D;
	color: #fff;

}
.headerInner .pcBtn ul li.request a:hover,
.headerInner .pcBtn ul li.request a:active{
	color:#fff;
	background-color: #538168;
	transition:0.5s;
}


.under1200,
.under992{
	display:none;
}
@media (max-width:1452px){
	.headerInner{
		width:90%;
	}
}
@media (max-width:1200px){
	.headerInner{
		height:80px;
	}
	.headerInner .pcBtn{
		flex-direction: column;
		align-items: flex-end;
	}
	.headerInner .pcBtn p{
		width:80%;
		margin-right:0px;
		margin-bottom: 10px;            
	}
	.headerInner .pcBtn ul li a{
		aspect-ratio: 170/30;
	}
	.over1200{
		display:none;
	}
	.under1200{
		display:block;
	}
}
@media (max-width:992px){
	.headerInner{
		height:50px;
		position: relative;
	}
	.headerInner .pcBtn{
		display:none;
	}
	.under992{
		display:block;
	}
	.menuTrigger{
		background-color: #005030;
		padding:10px 15px;
		position: fixed;
		top:0;
		right:0;
		z-index: 999;
		display: flex;
		flex-direction: column;
		width:50px;
		height:50px;
		text-align: center;
		cursor:pointer;
	}
	.menuTrigger span{
		font-size: 12px;
		color:#fff;
	}
	.menuTrigger>.border{
		width:100%;
		height:2px;
		background-color: #fff;
		transition: all 0.5s;
	}
	.menuTrigger>.border:nth-of-type(1){
		margin-top: 4px;
	}
	.menuTrigger>.border:nth-of-type(2){
		margin-top: 7px;
	}
	.menuTrigger>.border:nth-of-type(3){
		margin-top: 7px;
	}
	.menuTrigger>.menuTxt{
		margin-top: 7px;
	}
	.menuTrigger.active>.border:nth-of-type(1){
		transform: translateY(7px) rotate(-30deg);
	}
	.menuTrigger.active>.border:nth-of-type(2){
		opacity:0;
	}
	.menuTrigger.active>.border:nth-of-type(3){
		transform: translateY(-10px) rotate(30deg);
	}
}
@media (max-width:768px){
	.headerInner h1{
		width:62.5%;
	}
}

/* nav */

nav{
	width:100%;
}
.navInner ul{
	width:1320px;
	height:60px;
	margin:0 auto;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.navInner ul li{
	width:20%;
	height:30px;
}
.navInner ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	border-right:1px solid #000;
	transition:0.5s;
	position: relative;
	overflow: hidden;
}
.navInner ul li:first-of-type a{
	border-left:1px solid #000;
}
.navInner ul li a span{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);            
	display: block;
	opacity: 1;
	white-space: nowrap;
	transition: all .5s;
}
.navInner ul li a span:first-of-type{
	font-family: "Oswald", sans-serif;
	font-size: 1.1em;
	letter-spacing: 0.25em;
}
.navInner ul li a span:last-of-type{
	font-family: "Noto Sans JP", system-ui;
	font-size: 1em;
	letter-spacing: 0.25em;
}
.navInner ul li a span:nth-child(2){
	opacity: 0;
	transform: translate(-50%,150%);
}
.navInner ul li:hover a span:nth-child(1){
	opacity: 0;
	transform: translate(-50%,-150%);
}
.navInner ul li:hover a span:nth-child(2){
	opacity:1;
	transform: translate(-50%,-50%);
}
.navInner ul li a.noevent span:nth-child(1){
	opacity:0.5;
}
.navInner ul li:hover a.noevent span:nth-child(1){
	transform: translate(-50%,-50%);
}
.navInner ul li:hover a.noevent span:nth-child(2){
	opacity:0;
}
.navInner ul.under992{
	display:none;
}
@media (max-width:1452px){
	.navInner ul{
		width:90%;
	}
}
@media (max-width:992px){
	nav{
		z-index: 998;
		background-color: #fff;
		position: fixed;
		top:0;
		bottom:0;
		right:0;
		width:90%;
		transform: translateX(100%);
		transition: all 0.5s;
	}
	nav.active{
		transform: translateX(0%);
		transition: all 0.5s;
	}
	.navInner{
		width:100%;
		height:100%;
		display:flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.navInner ul{
		width:90%;
		height: auto;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.navInner ul:first-of-type{
		margin-bottom: 30px;
	}
	.navInner ul:last-of-type li a{
		border-right:none;
	}
	.navInner ul li{
		width: 50%;
		margin-bottom: 10px;
	}
	.navInner ul li a{
		border-right:none;
	}
	.navInner ul li:first-of-type a{
		border-left:none;
	}
	.navInner ul li:nth-of-type(odd) a{
		border-right:1px solid #000;
	}
	.navInner ul:last-of-type li{
		width:48%;
	}
	.navInner ul:last-of-type li a{
		border-right:none;
		border:1px solid #000;
		padding-top:1em;
		padding-bottom: 1em;
	}
	.navInner ul:last-of-type li a:hover,
	.navInner ul:last-of-type li a:active{
		background-color: #000;
		color:#fff;
	}
	.nav_outerWrap.active{
		display:block;
		width:100vw;
		height:100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 996;
		background-color: rgba(177,177,177,0.8);
	}
	.navInner ul.under992{
		display:flex;
	}           
}
@media (max-width:500px){
	.navInner ul li{
		width: 100%;
		height: auto;
	}
	.navInner ul li a{
		font-size: 3vw;
		padding: 0.5em 0;
	}
	.navInner ul li:nth-of-type(odd) a{
		border-right:none;
	}
	.navInner ul.under992 {
		flex-direction: column;
	}
	.navInner ul:last-of-type li{
		width: 90%;
		height: auto;
	}
	.navInner ul:last-of-type li a{
		border: 1px solid #000;
	}
	.navInner ul:last-of-type li:first-of-type a{
		margin-bottom: 10px;
	}

	.navInner ul:last-of-type li a:hover,
	.navInner ul:last-of-type li a:active{
		background-color: #000;
		color:#fff;
	}
	.nav_outerWrap.active{
		display:block;
		width:100vw;
		height:100vh;
		position: fixed;
		top:0;
		left:0;
		z-index: 996;
		background-color: rgba(177,177,177,0.8);
	}
	.navInner ul.under992{
		display:flex;
	}           
}