@charset "utf-8";

/* common
---------------------------------------------------------------------------*/
:root {
	--color-text: #ECEAE4;
	--color-bg: #817563;
	--color-border: #ACA497;
	--font-mincho: '秀英明朝 M', '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
	--font-serif: 'AGaramondPro-Regular', serif;

	--easeInSine     : cubic-bezier(0.47, 0, 0.745, 0.715);
	--easeOutSine    : cubic-bezier(0.39, 0.575, 0.565, 1);
	--easeInOutSine  : cubic-bezier(0.445, 0.05, 0.55, 0.95);
	--easeInQuad     : cubic-bezier(0.55, 0.085, 0.68, 0.53);
	--easeOutQuad    : cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--easeInOutQuad  : cubic-bezier(0.455, 0.03, 0.515, 0.955);
	--easeInCubic    : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	--easeOutCubic   : cubic-bezier(0.215, 0.61, 0.355, 1);
	--easeInOutCubic : cubic-bezier(0.645, 0.045, 0.355, 1);
	--easeInQuart    : cubic-bezier(0.895, 0.03, 0.685, 0.22);
	--easeOutQuart   : cubic-bezier(0.165, 0.84, 0.44, 1);
	--easeInOutQuart : cubic-bezier(0.76, 0, 0.24, 1);
	--easeInQuint    : cubic-bezier(0.755, 0.05, 0.855, 0.06);
	--easeOutQuint   : cubic-bezier(0.23, 1, 0.32, 1);
	--easeInOutQuint : cubic-bezier(0.86, 0, 0.07, 1);
	--easeInExpo     : cubic-bezier(0.95, 0.05, 0.795, 0.035);
	--easeOutExpo    : cubic-bezier(0.19, 1, 0.22, 1);
	--easeInOutExpo  : cubic-bezier(1, 0, 0, 1);
	--easeInCirc     : cubic-bezier(0.6, 0.04, 0.98, 0.335);
	--easeOutCirc    : cubic-bezier(0.075, 0.82, 0.165, 1);
	--easeInOutCirc  : cubic-bezier(0.785, 0.135, 0.15, 0.86);
	--easeInBack     : cubic-bezier(0.6, -0.28, 0.735, 0.045);
	--easeOutBack    : cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--easeInOutBack  : cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
	overflow-y: scroll;
	background: #817563 url(img/share/bg-pattern.jpg) repeat left top;
	color: var(--color-text);
	font-size: 15px;
	font-family: var(--font-mincho);
	line-height: 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none !important;
}

body.noscroll { position: fixed; width: 100%; }

::-moz-selection { background: #70624B; color: var(--color-text); }
::selection { background: #70624B; color: var(--color-text); }

p { font-size: 15px; line-height: 2.2; letter-spacing: 0.22em; margin-bottom: 1em; }
p:last-child { margin-bottom: 0 !important; }
address,i { font-style: normal; }
img { max-width: none; }

.block { display: inline-block !important; }
.wide { display: inline-block !important; }
.narrow { display: none !important; }
.nav-sp, .btn-nav { display: none !important; }

/* #loading
------------------------------------*/
#loading {
	display: block;
	opacity: 1;
	position: fixed;
	top: 50%;
	left: 50%;
	border: 1px solid var(--color-text);
	border-top-color: transparent;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	z-index: 99999;
	animation: spin .45s infinite linear;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* link
------------------------------------*/
a { color: var(--color-text); text-decoration: none; transition: .15s ease-out; -webkit-transform: translateZ(0); }
.hover { cursor: pointer; transition: .15s ease-out; }
a:hover,.hover:hover { text-decoration: none; opacity: 0.6; }

.line {
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-decoration-color: rgba(236,234,228,0.5);
}

/* .btn
------------------------------------*/
.txt-link a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
	text-decoration-color: rgba(236,234,228,0.5);
}

.txt-link.en a {
	font-family: var(--font-serif);
	font-size: 17px;
	letter-spacing: 0.04em;
}

/* .gnav
------------------------------------*/
.gnav ul {
	display: flex;
	flex-direction: row-reverse;
}

.gnav li a {
	display: inline-block;
	padding: 0 14px 30px;
}

.gnav li a img {
	width: 24px;
}

/* .sns
------------------------------------*/
.sns li a {
	display: block;
	padding: 10px;
}


/* wrap
---------------------------------------------------------------------------*/
#wrap {
	min-width: 1240px;
}


/* header
---------------------------------------------------------------------------*/
header {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 10;
	opacity: 0;
}

header .logo {
	display: none;
}

header .gnav {
	position: absolute;
	top: 80px;
	right: 85px;
}

header .sns {
	position: absolute;
	top: 70px;
	right: 335px;
}


/* footer
---------------------------------------------------------------------------*/
footer {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 500px 0 75px 125px;
	opacity: 0;
}

footer .logo {
	position: absolute;
	bottom: 114px;
	right: 132px;
}

footer .gnav {
	position: absolute;
	bottom: 95px;
	right: 245px;
}

footer .gnav li a img {
	width: 22px;
}

footer .sns {
	display: flex;
	flex-direction: row-reverse;
	position: absolute;
	bottom: 120px;
	left: 120px;
}

.copyright {
	font-family: var(--font-serif);
	font-size: 15px;
	letter-spacing: 0.09em;
}


/* contents
---------------------------------------------------------------------------*/
#mainContents {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}

.contents {
	opacity: 0;
}

.fade {
	opacity: 0;
}

/* .sec-common
------------------------------------*/
.sec-common {
	position: relative;
	width: calc(100% - 190px);
	max-width: 1250px;
	margin: 0 auto;
}

.sec-title-v {
	position: absolute;
	top: 40px;
	left: 0;
	font-size: 18px;
	letter-spacing: 0.3em;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	opacity: 0;
}

/* .img-main
------------------------------------*/
.img-main {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 62.75vw;
	min-height: 800px;
	max-height: 100vh;
}

.img-main a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 1 !important;
}

.img-main h1 {
	position: absolute;
	top: 85px;
	left: 85px;
	z-index: 2;
	opacity: 0.95;
}

.img-main h2 {
	position: absolute;
	bottom: 95px;
	left: 135px;
	z-index: 2;
	opacity: 0;
}

.img-main figure,
.img-main picture {
	width: 100%;
	height: 100%;
}

.img-main figure img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/* .img-center
------------------------------------*/
.img-center {
	width: calc(100% - 160px);
	max-width: 1280px;
	margin: 0 auto;
}

.img-center img {
	width: 100%;
}

/* .attention-list
------------------------------------*/
.attention-list li {
	position: relative;
	margin: 0 0 6px;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.14em;
}

.attention-list li:last-of-type {
	margin-bottom: 0;
}

.attention-list li:before {
	display: block;
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}


/* page top
---------------------------------------------------------------------------*/
.top-bg,
.top-bg-black {
	position: fixed;
	top: 0;
	left: 0;
	background-color: #37332D;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0;
	pointer-events: none;
}

.top-bg:has(+ #mainContents #topContents) {
	opacity: 1;
}

.top-bg-black {
	background-color: #000000;
	z-index: 1;
}

#topContents {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

header:has(+ .top-bg + #mainContents #topContents) {
	display: none;
	top: 50%;
	transform: translateY(-50%) !important;
	padding-left: 70px;
	opacity: 0;
}

header:has(+ .top-bg + #mainContents #topContents) .logo {
	display: block;
}

header:has(+ .top-bg + #mainContents #topContents) .gnav {
	top: 50px;
	right: 90px;
}

header:has(+ .top-bg + #mainContents #topContents) .sns {
	top: 40px;
}

#mainContents:has(#topContents) + footer {
	display: none;
}

/* .img-top
------------------------------------*/
.slider-top {
	overflow: hidden;
	position: relative !important;
	width: 100% !important;
	height: 100vh !important;
}

.slider-top .slick-track,
.slider-top .slick-list {
	width: 100% !important;
	height: 100%;
}

.slider-top .inner {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.slider-top .img .inner:first-of-type {
	opacity: 1;
}

.slider-top .inner img {
	position: relative;
	object-fit: cover;
	width: 100%;
	height: 100%;
	z-index: 0;
}


/* page about
---------------------------------------------------------------------------*/
#aboutContents {
	overflow: hidden;
}

#aboutContents .img-main {
	margin-bottom: 110px;
}

/* .sec-about1
------------------------------------*/
.sec-about1 {
	margin-bottom: 170px;
	padding: 95px 0 0 100px;
}

.sec-about1 .img {
	position: absolute;
	top: 115px;
	left: 580px;
	z-index: 0;
}

.sec-about1 .img picture {
	display: block;
	opacity: 0;
}

.sec-about1 .img picture:nth-of-type(2) { display: block; position: absolute; top: 204px; left: 280px; }

.sec-about1 .slider-about {
	display: block;
	overflow: hidden;
	width: 576px;
	height: 432px;
	margin: 92px 0 0 56px;
	opacity: 0;
}

.sec-about1 .slider-about .slick-list,
.sec-about1 .slider-about .slick-track {
	width: 100% !important;
}

.sec-about1 .slider-about .inner {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100%;
	opacity: 0;
}

.sec-about1 .slider-about .inner:first-of-type {
	position: static !important;
	opacity: 1;
}

.sec-about1 .slider-about .inner img {
	width: 100%;
	height: auto;
}

.sec-about1 .txt {
	position: relative;
	z-index: 1;
}

.sec-about1 .txt h3 {
	margin-bottom: 42px;
	font-size: 24px;
	line-height: 1.65;
	letter-spacing: 0.32em;
}

.sec-about1 .txt h3:not(:first-of-type) {
	margin-top: 60px;
	margin-bottom: 25px;
}

.sec-about1 .txt p {
	margin-bottom: 16px;
	line-height: 2.1;
}

.sec-about1 .txt p.name {
	margin-top: 26px;
	font-size: 17px;
	letter-spacing: 0.14em;
}

/* .slider-loop
------------------------------------*/
.slider-loop-wrap {
	margin-left: 80px;	
}

.slider-loop {
	display: flex;
	width: 100%;
	margin-bottom: 120px;
}

/* .sec-about2
------------------------------------*/
.sec-about2 {
	margin-top: -40px;
	margin-bottom: 170px;
	padding: 90px 0 0 100px;
}

.sec-about2 .sec-inner {
	display: flex;
}

.sec-about2 h3 {
	margin-right: 150px;
	font-size: 24px;
	line-height: 1.7;
	letter-spacing: 0.32em;
}

.sec-about2 .txt {
	padding: 5px 0 0;
}

.sec-about2 .txt p {
	letter-spacing: 0.24em;
}


/* page dish-drink
---------------------------------------------------------------------------*/
#dish-drinkContents .img-main {
	margin-bottom: 150px;
}

/* .sec-dish
------------------------------------*/
.sec-dish {
	margin-top: -40px;
	margin-bottom: 130px;
	padding: 125px 0 0 145px;
}

.sec-dish .sec-inner {
	display: flex;
	flex-wrap: wrap;
}

.sec-dish p {
	letter-spacing: 0.32em;
}

.sec-dish .inner1 {
	margin-right: 120px;
}

.sec-dish .inner1 .dl-line,
.sec-dish .inner2 .dl-wrap {
	margin-top: 65px;
}

.sec-dish .dl-wrap {
	display: flex;
}

.sec-dish .dl-wrap h3 {
	margin-right: 35px;
}

.sec-dish .dl-wrap h3,
.sec-dish .dl-line,
.sec-dish .dl-txt {
	font-size: 17px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.sec-dish .inner1 .dl-line { width: 390px; }
.sec-dish .inner2 .dl-line { width: 260px; }

.sec-dish .dl-line > div {
	display: -webkit-box;
	display: flex;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 12px;
	padding-bottom: 3px;
}

.sec-dish .dl-line > div:last-of-type {
	margin-bottom: 0;
}

.sec-dish .dl-line dt {
	width: 130px;
	min-width: 130px;
}

.sec-dish .dl-txt {
	margin-top: 26px;
	font-size: 16px;
	line-height: 1.9;
}

.sec-dish .dl-txt > div {
	display: flex;
}

.sec-dish .dl-txt dt {
	width: 72px;
	min-width: 72px;
	font-size: 15px;
}

.sec-dish .dl-txt dd {
	letter-spacing: 0.16em;
}

.sec-dish .attention-list {
	width: 100%;
	margin-top: 80px;
}

/* .img-dish-drink
------------------------------------*/
.img-dish-drink {
	margin-bottom: 100px;
}

/* .sec-drink
------------------------------------*/
.sec-drink {
	margin-top: -40px;
	padding: 90px 0 0 145px;
}


/* page restaurant
---------------------------------------------------------------------------*/
#restaurantContents .img-main {
	margin-bottom: 150px;
}

/* .sec-restaurant
------------------------------------*/
.sec-restaurant {
	margin-top: -40px;
	margin-bottom: 200px;
	padding: 135px 0 0 185px;
}

.sec-restaurant .sec-inner {
	display: flex;
}

.sec-restaurant figure {
	position: relative;
	align-self: flex-start;
	width: 402px;
	min-width: 402px;
	margin: 5px 115px 25px 0;
}

.sec-restaurant figure img {
	opacity: 0;
}

.sec-restaurant figure .img2 {
	position: absolute;
	bottom: -80px;
	left: -180px;
}

.sec-restaurant .txt > p {
	letter-spacing: 0.32em;
}

.sec-restaurant .txt dl {
	display: flex;
	flex-wrap: wrap;
	margin: 45px 0 35px;
}

.sec-restaurant .txt dl,
.sec-restaurant .txt dl p {
	font-size: 17px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.sec-restaurant .txt dl > div {
	margin-right: 35px;
}

.sec-restaurant .txt dt {
	margin-bottom: 5px;
	font-size: 17px;
	letter-spacing: 0.1em;
}

.sec-restaurant .txt dd {
	font-size: 16px;
}

.sec-restaurant .txt dd p.en {
	margin-top: 12px;
	font-family: var(--font-serif);
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.sec-restaurant .txt dl > div.column2 {
	display: flex;
	width: 100%;
	margin-bottom: 40px;
}

.sec-restaurant .txt dl > div.column2 dt {
	width: 125px;
	min-width: 125px;
}

.sec-restaurant .txt dl > div.column2 dd {
	font-size: 17px;
}

.sec-restaurant .txt dl > div.column2 dd p {
	margin-bottom: 14px;
	letter-spacing: 0.18em;
}

.sec-restaurant .txt dl > div.column2 dd p.size-s {
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: 0.14em;
}

.sec-restaurant .txt dl > div.column2 dd p.size-s span {
	font-size: 13px;
}

.sec-restaurant .txt > p.size-s {
	margin-bottom: 8px;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.16em;
}

/* .img-restaurant
------------------------------------*/
.img-restaurant {
	margin-bottom: 100px;
}

/* .sec-access
------------------------------------*/
.sec-access {
	margin-top: -40px;
	margin-bottom: 200px;
	padding: 90px 0 0 260px;
}

.sec-access .sec-inner {
	display: flex;
	align-items: flex-end;
}

.sec-access .map {
	position: relative;
	overflow: hidden;
	width: 364px;
	min-width: 364px;
	height: 454px;
	margin-right: 85px;
	filter: grayscale(100%) sepia(15%) hue-rotate(-15deg) saturate(2) brightness(0.95) contrast(1.05);
}

.sec-access .txt address {
	margin-bottom: 24px;
	font-size: 17px;
	letter-spacing: 0.16em;
}

.sec-access .txt address em {
	display: block;
	margin-bottom: 16px;
	font-size: 13px;
	letter-spacing: 0.16em;
}

.sec-access .txt p {
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.18em;
}

.sec-access .txt .txt-link {
	margin-top: 30px;
}


/* media query
---------------------------------------------------------------------------*/
@media (max-width: 1380px) {
	header .gnav,
	header .sns {
		margin-right: -20px;
	}
	footer {
		padding-left: 80px;
	}
	footer .logo,
	footer .gnav {
		margin-right: -45px;
	}
	footer .sns {
		margin-left: -45px;
	}
	.sec-about2 h3 {
		margin-right: 100px;
	}
	.sec-dish,
	.sec-drink {
		padding-left: 130px;
	}
	.sec-dish p {
		letter-spacing: 0.22em;
	}
	.sec-dish .inner1 {
		margin-right: 60px;
	}
	.sec-restaurant {
		padding-left: 125px;
		white-space: nowrap;
	}
	.sec-restaurant figure {
		margin-right: 80px;
	}
	.sec-access {
		padding-left: 150px;
	}
	.sec-access .map {
		margin-right: 65px;
	}
}