@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@500&display=swap');

/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
	/* font-size: 62.5%; */
	font-size: 0.6944444444444444vw;
	
}



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--main: #AB8469;
	--sub: #220a05;
	--gray:#191819;
	--title: 'Stardos Stencil', cursive;
	--nav: 'Cormorant SC', serif;
}

body {
	color: #fff;
	font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	font-weight: 500;
	
}
body[class*="page"]{
	background: url(../img/texture-2.jpg) no-repeat center center/cover;
	background-attachment: fixed;
	
}


a {
	color: inherit;
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	width: 100%;
	position: absolute;
	top: 0;
	display: flex;
	justify-content:left;
	align-items: flex-start;
	height: auto;
	padding: 3rem 5.5vw 0;
	z-index: 50;
	gap: 19.3vw;

}



header a {
	color: #fff;
}



@media screen and (max-width: 768px) {
	header {
		padding: 2rem 4%;
	}

	header h1 {
		width: 8rem;
	}

}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
.gnav{
	padding-top: 1rem;
}
ul.gnav-menu {
	display: flex;
	align-items: center;
}

ul.gnav-menu>li:last-of-type a {
	display: inline-block;
	width: 2.6rem;
}

ul.gnav-menu>li:last-of-type a img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

ul.gnav-menu>li:not(:first-child) {
	margin-left: 6.25vw;
}

ul.gnav-menu a {
	font-weight: 500;
	color: #fff;
	font-family: var(--nav);
	line-height: 1.88;
	letter-spacing: .1em;
	position: relative;
	transition: .3s;
}

ul.gnav-menu a:after {
	position: absolute;
	bottom: -2em;
	left: 0;
	transform-origin: center top;
	width: 100%;
	height: 2px;
	opacity: 0;
	visibility: hidden;
	background: var(--main);
	content: "";
	transition: .3s;
}

ul.gnav-menu a:hover {
	color: var(--main);
	opacity: 1;
}


ul.gnav-menu a:hover::after {
	bottom: -1em;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 768px) {
.gnav{
	display: none;
}
	}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(../img/top-kv-1.jpg) no-repeat center / cover;
	position: relative;
}

.page-ttl>div {
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36rem;
}

.page-ttl h2 {
	color: #fff;
	font-size: 3.6rem;
	font-family: var(--nav);
	font-weight: normal;
	line-height: 1;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	.page-ttl>div {
		background: rgba(0, 0, 0, 0.5);
		height: 30rem;
	}
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-left: 10rem;
	margin-bottom: 4rem;
	font-weight: normal;
	font-size: 1.2rem;
}

.heading-1::after {
	content: "";
	width: 100%;
	height: 0.12rem;
	background: var(--color-gold);
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 0;
}

.heading-1>span {
	display: flex;
	align-items: center;
	padding-right: 1.5rem;
	position: relative;
	z-index: 2;
}

.heading-1>span>span:first-of-type {
	color: var(--main);
	font-size: 2.6rem;
	letter-spacing: 0.15em;
	font-weight: 700;
	background: #000;
}

.heading-1>span>span:last-of-type {
	padding-right: 2rem;
	padding-left: 1.5rem;
	background: #000;
}

.heading-1.grey>span>span:first-of-type {
	background: #151513;
}

.heading-1.grey>span>span:last-of-type {
	background: #151513;
}

.heading-2 {
	color: #fff;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

@media screen and (max-width: 768px) {
	.heading-1 {
		margin-left: 3rem;
	}
}



/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.3);
	font-size: 3rem;
	margin-bottom: 3rem;
	position: relative;
	color: var(--gray);
	font-weight: bold;
	font-family: var(--title);
}

.ttl:after {
	border-bottom: solid 4px var(--main);
	bottom: -4px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}

@media screen and (max-width: 768px) {
	.ttl {
		font-size: 2rem;
	}
	.ttl:after {
		width: 40%;
	}
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;

}

dl.detail dt {
	font-weight: bold;
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
}

dl.detail dd {
	padding: 1.5rem;
	width: 75%;

}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}

dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(255,255,255,0.8);
}

dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}

	dl.detail dt {
		font-weight: bold;
		padding: 1.2rem 1.2rem 0 1.2rem;
		width: 100%;
	}

	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}

	dl.bk dt {
		border-bottom: none;
	}

	dl.wt dt {
		border-bottom: none;
	}
}



/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	justify-content: center;
	width: 90%;
	margin: 8rem auto;
}

.gallery-list li {
	list-style: none;
	margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
	border-radius: 50%;
	height: 11vw;
	width: 11vw;
	object-fit: cover;
}

.gallery-list span {
	display: block;
	font-size: 1.2rem;
	line-height: 1.7;
	margin: 1.2rem 0 0 0;
	text-align: center;
	width: 14vw;
}

.object-fit-img {
	object-fit: contain;
	font-family: 'object-fit: contain;'
}

@media screen and (max-width: 768px) {
	.gallery-list {
		margin: 4rem auto;
		width: 95%;
	}

	.gallery-list li {
		margin: 0 .5rem 1.5rem .5rem;
	}

	.gallery-list img {
		width: 17vw;
		height: 17vw;
	}

	.gallery-list span {
		font-size: 1rem;
		line-height: 1.6;
		margin: 1rem auto 0 auto;
		width: 20vw;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background:var(--gray);
}

.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.gnav-sp-menu li {
	font-size: 1.8rem;
	text-align: center;
	font-family: var(--nav);
}

.gnav-sp-menu li:last-of-type {
	width: 2.4rem;
	margin: 0 auto;
}

.gnav-sp-menu li a {
	display: block;
	padding: 1.5rem 0;
	white-space: nowrap;
	color: #fff;
}



.gnav-sp-menu li a i {
	margin-left: 1rem;
	font-size: 2.4rem;
	margin-top: 0.3rem;
}

/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: #191919;
}

.toggle-btn span {
	display: block;
	position: absolute;
	left: 1.5rem;
	width: 3rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}

.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}

/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	justify-content: space-between;
}

ul.lcmenu li {
	width: 49%;
	text-align: center;
	font-family: var(--title);
}

ul.lcmenu li a {
	display: block;
	padding: 1.8rem 0 2rem 0;
	background: #333;
	white-space: nowrap;
	font-size: 1.6rem;
	color: #fff;
}

ul.lcmenu li.current a {
	color: #000;
	background: var(--main);
}

@media screen and (max-width: 768px) {
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}
}




/*  ----------------------------------------------------------

menu

----------------------------------------------------------  */
dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
	border-bottom: solid 1px rgba(122,91,69,0.3);
}
dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
	border-top: solid 1px rgba(122,91,69,0.3);
}
dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd{
	background:rgba(122,91,69,0.1);

}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd){
	background: none !important;
}
dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd{
	background: none !important;
}

dl.menu-list {
	display: flex;
	flex-wrap: wrap;
}

dl.menu-list dt {
	font-size: 1.6rem;
	padding: 1.5rem;
	width: 70%;
	font-weight: bold;
}

dl.menu-list dt span {
display: inline-block;
}

dl.menu-list dd {
	padding: 1.5rem;
	width: 30%;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	font-size: 1.8rem;
}

dl.menu-list dt.thumb {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

dl.menu-list dt.thumb i:first-of-type {
	width: 16rem;
	display: block;
}

p.menu-list__text{
	font-size: 2rem;
}
p.menu-list__text2{
	font-size: 1.8rem;
	line-height: 1.6;
	margin-bottom: 3rem;
	text-align: justify;
}
p.menu-list__text3{
text-align: right;
margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
.page-menu dl.menu-list dt,
.page-menu dl.menu-list dd{
	
	padding: 1.2rem;
}
	.page-drink dl.menu-list {
		display: block;
	}
	.page-drink dl.menu-list dt {
		width: 100%;
		border-bottom: none;
		padding: 1.5rem 1.5rem 0 1.5rem;		
	}
	.page-drink dl.menu-list dd {
		width: 100%;
		border-top: none;
		padding: 0 1.5rem 1.5rem 1.5rem;				
	}
	.page-drink dl.menu-list dt:first-child + dd {
		border-top: none;
	}

	p.menu-list__text3{
		font-size: 1.4rem;
		margin-bottom: 4rem;
		}

}





/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
	color: #fff;
}

.container .wrap {
	display: flex;
	justify-content: space-between;
}

.container .wrap.reverse {
	flex-direction: row-reverse;
}

.container .wrap>figure {
	width: 35%;
}

.container .wrap>div {
	width: 60%;
}

@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}

	.container .wrap {
		display: block;
	}

	.container .wrap>figure {
		width: 100%;
		margin-bottom: 2rem;
	}

	.container .wrap>div {
		width: 100%;
	}
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
	position: fixed;
	z-index: 999;
	bottom: 25rem;
	right: 1rem;
	width: 6.5rem;
	height: 6.5rem;
	border: 1px solid var(--main);
	border-radius: 50%;
	background-color: #fff;
	color: #000;
}

#page-top a {
	width:100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: .2rem;
}

#page-top a span {
	font-family: var(--nav);
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .2em;
}
@media screen and (max-width: 768px) {
	#page-top {
		width: 4rem;
		height: 4rem;
		bottom: 7rem;
	}
	#page-top a span {
		font-size: 1rem;
	}

}




/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

a.line {
	text-decoration: underline;
}

a:hover.line {
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

@media screen and (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

@media screen and (max-width: 768px) {
	a[href^="tel:"] {
		text-decoration: underline;
	}
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
	.txt-vertical.not {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* position */
.hv-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	width: 100%;
	z-index: 99;
}

/* map */
.gmap iframe {
	width: 100%;
	height: 40rem;
}

/* margin */
.mb-10 {
	margin-bottom: 1rem !important;
}

.mb-15 {
	margin-bottom: 1.5rem !important;
}

.mb-20 {
	margin-bottom: 2.0rem !important;
}

.mb-25 {
	margin-bottom: 2.5rem !important;
}

.mb-30 {
	margin-bottom: 3.0rem !important;
}

.mb-35 {
	margin-bottom: 3.5rem !important;
}

.mb-40 {
	margin-bottom: 4.0rem !important;
}

.mb-45 {
	margin-bottom: 4.5rem !important;
}

.mb-50 {
	margin-bottom: 5.0rem !important;
}

.mb-55 {
	margin-bottom: 5.5rem !important;
}

.mb-60 {
	margin-bottom: 6.0rem !important;
}

.mb-65 {
	margin-bottom: 6.5rem !important;
}

.mb-70 {
	margin-bottom: 7.0rem !important;
}

.mb-75 {
	margin-bottom: 7.5rem !important;
}

.mb-80 {
	margin-bottom: 8.0rem !important;
}

.mb-85 {
	margin-bottom: 8.5rem !important;
}

.mb-90 {
	margin-bottom: 9.0rem !important;
}

.mb-95 {
	margin-bottom: 9.5rem !important;
}

.mb-100 {
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation: fadeInUp 0.6s ease;
	-moz-animation: fadeInUp 0.6s ease;
	-ms-animation: fadeInUp 0.6s ease;
	animation: fadeInUp 0.6s ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both
}

.fade {
	opacity: 0;
}

.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}

.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}

.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}

.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}

.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}