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

/* //////////////////////////////////////////////////
[GLOBAL]
////////////////////////////////////////////////// */

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Cormorant:300,600");

.sp_only{
	display:none;
}
header{
    width:100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index:5;
}
header .h-inner{
    width: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.langbtn{
    position: absolute;
    left: 20px;
    top: 20px;
    line-height: 1;
    font-size: 2rem;
    font-family: "Times New Roman", Garamond, serif;
    z-index:10;
}
.langbtn a{
    color: #fff;
}
.langbtn a span{
    display: block;
    position: relative;
}
.toggle{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index:10;
}
.toggle.open{
    top: 30px;
}
.toggle span{
    display: block;
    background: #fff;
    height: 1px;
    width: 30px;
    margin-bottom: 8px;
    -moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    position: relative;
}
.toggle.open span{
    background: #5e5853;
}
.toggle.open span.line2{
    display: none;
}
.toggle.open span.line1{
    transform: rotate(45deg);
}
.toggle.open span.line3{
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
}
.navigation-box{
    background: rgba(255,255,255,0.9);
    width: 100%;
    height: 100vh;
    position: relative;
    float: right;
    display: none;
}
.navigation-box ul{
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
	 width: 100%;
}
.navigation-box ul li{
    text-align: right;
    font-family: "Times New Roman", Garamond, serif;
    font-size: 4rem;
    padding-right: 20px;
    margin-bottom: 20px;
    line-height: 1;
    border-right: 6px solid transparent;
    -moz-transition: 0.1s ease-in-out;
	-webkit-transition: 0.1s ease-in-out;
	transition: 0.1s ease-in-out;
}
.navigation-box ul li:hover{
    border-right: 6px solid #5e5853;
}

footer{
    width:100%;
    position: relative;
    background: #2a2725;
    color: #fff;
    font-size: 1rem;
    padding: 10px 2%;
    box-sizing: border-box;
}
footer .f-inner{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.totop {
    position: fixed;
    right: 11px;
    bottom: 10px;
    padding: 20px;
    z-index: 10;
    background: transparent;
}
.totop a{
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
}
.totop span {
    display: block;
    border-top: #434344 solid 2px;
    border-right: #434344 solid 2px;
    width: 100%;
    height: 100%;
    transform: rotate(-45deg);
}

@media only screen and (max-width: 767px){

	.sp_only{
		display:block;
	}
    header{
    }
    header .h-inner{
    }
	.navigation-box ul li {
    	font-size: 24px;
    	padding-right: 12px;
    	margin-bottom: 20px;
	}
    footer{
		padding: 10px 2% 88px;
    }
    footer .f-inner{
    }
}


/* //////////////////////////////////////////////////
[COMMON]
////////////////////////////////////////////////// */

.btn a:hover {
	filter: alpha(opacity=70); -ms-filter: "alpha(opacity=70)"; -moz-opacity: 0.7; -khtml-opacity: 0.7; opacity: 0.7; zoom: 1;
	-moz-transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
    -webkit-backface-visibility: hidden; /*追加*/
    backface-visibility: hidden;/*追加*/}
.btn a{display:block; cursor: pointer;}

.grayscale img{
	-webkit-filter: grayscale(100%);
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: grayscale(100%);
	-moz-transition: 1.5s linear;
	-webkit-transition: 1.5s linear;
	transition: 1.5s linear;
}
.grayscale.clear img{
	-webkit-filter: grayscale(0%);
	filter: none;
}
.scaledelay img{transition-delay: 1s;}


#reservation_btn {
    position: fixed;
    bottom: 80px;
    right: -2px;
	 transition: 1s;
	 opacity:0;
    width: 70px;
}
#reservation_btn a {
    padding: 30px 22px 28px 16px;
    display: block;
	background-color: rgba(0,0,0,0.8);
    border: 1px solid #FFF;
    color: #fff;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.29em;
    border-radius: 5px 0px 0px 5px;
}
#reservation_btn a:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 767px){
    .spdelay img{transition-delay: 2s;}
	#reservation_btn{
		width: calc(100% - 40px);
		bottom: -2px;
		right: auto;
		left: 20px;
		z-index:1;
	}
	#reservation_btn a	{
		padding: 10px 0 15px;
		-ms-writing-mode: lr-tb;
		writing-mode: initial;
		border-radius: 5px 5px 0 0;
	}
	.totop{
		background-color: rgba(225,225,225,0.9);
		display:none !important;
	}
	.pc_only{
		display:none;
	}
}