@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');




/* ----------------
	common
 ---------------- */


/* ---- reset ---- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
hr,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
	margin: 0;
}

body {
	-webkit-text-size-adjust: 100%;
}

li {
	list-style: none;
}

a,
button {
	-webkit-tap-highlight-color: transparent;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption,
th {
	text-align: left;
}

button {
	padding: 0;
	border-style: none;
	border-radius: 0;
	background-color: transparent;
	outline: none;
	cursor: pointer;
	appearance: none;
	line-height: 1;
}

input,
select,
textarea {
	padding: 0;
	border-style: none;
	border-radius: 0;
	background-color: transparent;
	outline: none;
	appearance: none;
	font-family: inherit;
	line-height: 1;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}


/* ---- font ---- */

html {
	font-size: 62.5%;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "Hiragino kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: normal;
	font-feature-settings: "palt";
	letter-spacing: .1em;
	line-height: 1;
}

@media screen\0 {

	/* to avoid IE text bottom space */
	body {
		font-family: Meiryo, sans-serif;
	}
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
}

.eng {
	font-family: 'EB Garamond', Garamond, serif;
}

.ast {
	font-family: sans-serif;
}

@media screen and (max-width: 767px) {

	body {
		font-size: 1.4rem;
	}

}


/* ---- basics ---- */

body {
	position: relative;
	color: #000;
	background-color: #fff;
}

a {
	text-decoration: underline;
	color: #000;
}

a:link {
	color: #000;
	text-decoration: underline;
}

a:visited {
	color: #000;
	text-decoration: underline;
}

a:hover {
	color: #000;
	text-decoration: none;
}

a:active {
	color: #000;
	text-decoration: none;
}

strong,
em,
b {
	font-weight: bold;
	font-style: normal;
}

@media screen and (min-width: 768px) {
	.pc-hidden {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.sp-hidden {
		display: none;
	}
}


/* ---- container ---- */

section,
.section {
	padding: 0 50px;
}

section>.inner,
.section>.inner {
	max-width: 980px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {

	section,
	.section {
		padding: 0 5vw;
	}

	section>.inner,
	.section>.inner {
		max-width: none;
		margin: 0;
	}

}


/* ---- heading ---- */

h1 {
	padding: 75px 0;
	border-top: 26px solid #7b0100;
	color: #7b0100;
	text-align: center;
}

h1 span:first-child {
	display: block;
	font-size: 5rem;
	font-weight: normal;
	letter-spacing: .12em;
}

h1 span:last-child {
	display: block;
	margin-top: 20px;
	font-size: 2.1rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {

	h1 {
		padding: 10vw 0;
		border-top: 12px solid #7b0100;
	}

	h1 span:first-child {
		font-size: 6.4vw;
		letter-spacing: .05em;
	}

	h1 span:last-child {
		margin-top: 4vw;
		font-size: 1.4rem;
	}

}


/* ---- fixed contact ---- */

.fixed-contact {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 100;
	width: 68px;
	height: 210px;
	background-color: #7b0100;
	text-decoration: none !important;
	transition: background-color .2s;
}

.fixed-contact:hover {
	background-color: #7b0100;
}

.fixed-contact img {
	display: block;
	width: 22px;
}

.fixed-contact span {
	display: block;
	color: #fff;
	font-size: 2rem;
	text-indent: .5em;
	writing-mode: vertical-rl;
	font-feature-settings: initial;
}

@media screen and (max-width: 767px) {

	.fixed-contact {
		width: 40px;
		height: 110px;
		transition: none;
	}

	.fixed-contact:hover {
		background-color: #7b0100;
	}

	.fixed-contact img {
		width: 18px;
	}

	.fixed-contact span {
		font-size: 1.3rem;
	}

}


/* ---- main visual ---- */

.main-visual img {
	display: block;
	width: 100%;
}


/* ---- period ---- */

.period {
	margin-top: 70px;
	color: #7b0100;
	font-size: 4.2rem;
	letter-spacing: .07em;
	text-align: center;
}

@media screen and (max-width: 767px) {

	.period {
		margin-top: 10vw;
		font-size: 5vw;
	}

}


/* ---- outline ---- */

.outline {
	margin-top: 40px;
}

.outline dt {
	margin-top: 50px;
	color: #7b0100;
	font-size: 2.3rem;
	font-weight: bold;
}

.outline dd {
	margin-top: 15px;
}

.outline table {
	width: 100%;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
}

.outline table th {
	padding: 13px 0;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	background-color: #ededee;
	font-size: 1.9rem;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	vertical-align: middle;
}

.outline table td {
	padding: 13px 20px;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	font-size: 1.9rem;
	line-height: 1.8;
	vertical-align: middle;
}

.outline table td span {
	font-size: 1.7rem;
}

.outline table td strong {
	color: #a09a5f;
}

.outline table td a {
	display: inline-block;
	position: relative;
	margin-left: 50px;
	padding-left: .7em;
	font-size: 2.7rem;
	font-weight: bold;
}

.outline table td a:first-child {
	margin-left: 0;
}

.outline table td a::before {
	content: "＞";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2.7rem;
	font-weight: bold;
	transform-origin: 0 50%;
	transform: scale(.7);
}

.outline table.txt th {
	width: 180px;
}

.outline table.txt td {
	width: calc(100% - 180px);
}

.outline table.num th {
	width: 60px;
}

.outline table.num td {
	width: calc(100% - 60px);
}

@media screen and (max-width: 767px) {

	.outline {
		margin-top: 4vw;
	}

	.outline dt {
		margin-top: 8vw;
		font-size: 1.6rem;
	}

	.outline dd {
		margin-top: 3vw;
	}

	.outline table th {
		padding: 7px 0;
		font-size: 1.3rem;
	}

	.outline table td {
		padding: 7px 10px;
		font-size: 1.3rem;
		line-height: 1.7;
	}

	.outline table td span {
		display: block;
		font-size: 1.1rem;
		line-height: 1.3;
	}

	.outline table td a {
		margin-left: 0;
		font-size: 1.6rem;
	}

	.outline table td a::before {
		font-size: 1.6rem;
	}

	.outline table.txt th {
		width: 100px;
	}

	.outline table.txt td {
		width: calc(100% - 100px);
	}

	.outline table.num th {
		width: 40px;
	}

	.outline table.num td {
		width: calc(100% - 40px);
	}

}


/* ---- menu ---- */

.menu h2 {
	margin-top: 150px;
	color: #7b0100;
	font-size: 4.2rem;
	text-align: center;
	text-transform: uppercase;
}

.menu h3 {
	margin: 100px 0 40px;
	padding: 24px 20px;
	background-color: #7b0100;
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

.menu h2+h3 {
	margin-top: 50px;
}

.menu h3 span {
	margin-left: .4em;
	font-size: 2.1rem;
}

.menu h3+p {
	margin: -20px 0 35px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.menu h4 {
	position: relative;
	padding: 10px 0;
	border-bottom: 1px solid #000;
	color: #7b0100;
	font-size: 3.6rem;
	font-weight: bold;
	cursor: pointer;
}

.menu h4::after {
	content: "";
	display: block;
	position: absolute;
	right: 6px;
	top: 50%;
	width: 11px;
	height: 11px;
	border-right: 2px solid #7b0100;
	border-bottom: 2px solid #7b0100;
	transform-origin: 70% 70%;
	transform: translateY(-50%) rotate(45deg);
	transition: transform .2s ease-out;
}

.menu h4.open::after {
	transform: translateY(-50%) rotate(-135deg);
}

.menu h4 .s1 {
	display: inline-block;
	font-size: 2.5rem;
	transform: translate(.4em, -.1em);
}

.menu h4 .s2 {
	display: inline-block;
	font-size: 2.1rem;
	transform: translate(.4em, -.1em);
}

.menu span {
	font-weight: bold;
	color: #bba36d;
}

.menu h3~ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu h3~ul>li {
	width: 47%;
	padding-bottom: 50px;
}

.menu dl {
	display: none;
}

.menu dt {
	margin-top: 35px;
	color: #a09a5f;
	font-size: 2rem;
	font-weight: bold;
}

.menu dd {
	margin-top: 10px;
	font-size: 1.6rem;
	letter-spacing: normal;
	line-height: 1.7;
}


.menu h4+ul {
	display: none;
}

.menu h4+ul li {
	margin-top: 10px;
	font-size: 1.6rem;
	letter-spacing: normal;
	line-height: 1.7;
}

.menu h4+ul li:first-child {
	margin-top: 35px;
}

@media screen and (max-width: 1079px) {

	.menu dd {
		font-size: 1.3rem;
	}

	.menu h4+ul li {
		font-size: 1.3rem;
	}

}

@media screen and (max-width: 767px) {

	.menu h2 {
		margin-top: 15vw;
		font-size: 7vw;
	}

	.menu h3 {
		margin: 6vw 0 5vw;
		padding: 3vw 0;
		font-size: 4.5vw;
	}

	.menu h2+h3 {
		margin-top: 5vw;
	}

	.menu h3 span {
		margin-left: 0;
		font-size: 3.8vw;
	}

	.menu h3+p {
		margin: -3vw 0 4vw;
		font-size: 1.3rem;
		font-weight: normal;
		text-align: left;
	}

	.menu h4 {
		padding: 10px 0;
		font-size: 2.3rem;
	}

	.menu h4 .s1 {
		font-size: 1.7rem;
		transform: translate(.4em, -.05em);
	}

	.menu h4 .s2 {
		font-size: 1.5rem;
		transform: translate(.4em, -.1em);
	}

	.menu h3~ul {
		display: block;
	}

	.menu h3~ul>li {
		width: auto;
		padding-bottom: 5vw;
	}

	.menu dt {
		margin-top: 5vw;
		font-size: 1.5rem;
	}

	.menu dd {
		margin-top: 7px;
		font-size: 1.4rem;
		line-height: 1.6;
	}

	.menu h4+ul li {
		margin-top: 7px;
		font-size: 1.4rem;
		line-height: 1.6;
	}

	.menu h4+ul li:first-child {
		margin-top: 5vw;
	}

}


/* ---- drink ---- */

.drink h2 {
	margin-top: 150px;
	color: #7b0100;
	font-size: 4.2rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.drink h2+p {
	margin-top: 12px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}

.drink .menu-list,
.drink dl {
	margin-top: 16px;
	padding: 30px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.drink dl {
	padding: 5px 0 30px;
}

.drink dt {
	margin-top: 30px;
	color: #7b0100;
	font-size: 2rem;
	font-weight: bold;
}

.drink dd {
	margin-top: 10px;
}

.drink dd p {
	font-size: 1.7rem;
	line-height: 1.6;
}

.drink dd p+p {
	margin-top: 25px;
	font-size: 1.4rem;
	line-height: 1.5;
}

@media screen and (max-width: 767px) {

	.drink h2 {
		margin-top: 15vw;
		font-size: 7vw;
	}

	.drink h2+p {
		margin-top: 3vw;
		font-size: 1.5rem;
		line-height: 1.4;
	}

	.drink .menu-list {
		padding: 5vw 0;
	}

	.drink dl {
		margin-top: 4vw;
		padding: 1vw 0 5vw;
	}

	.drink dt {
		margin-top: 5vw;
		font-size: 1.6rem;
		line-height: 1.4;
	}

	.drink dd {
		margin-top: 8px;
	}

	.drink dd p {
		font-size: 1.4rem;
		line-height: 1.6;
	}

	.drink dd p+p {
		margin-top: 4vw;
		font-size: 1.2rem;
		line-height: 1.5;
	}

}


/* ---- option ---- */

.option {
	margin-top: 150px;
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #f4ecc4;
}

.option h2 {
	color: #c62a4b;
	font-size: 4.2rem;
	text-align: center;
	text-transform: uppercase;
}

.option h2+p {
	margin-top: 12px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}

.option .row {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}

.option .col {
	width: 47%;
}

.option h3 {
	padding-bottom: 12px;
	border-bottom: 1px solid #000;
	color: #7b0100;
	font-size: 2.3rem;
	font-weight: bold;
}

.option table {
	width: 100%;
	margin-top: 12px;
	font-size: 1.7rem;
	line-height: 1.8;
}

.option th {
	width: 100%;
	padding-right: .5em;
	font-weight: normal;
}

.option td {
	white-space: nowrap;
}

.option table.liq {
	width: auto;
	margin-top: 0;
}

.option table.liq th {
	width: auto;
}

.option table.liq td {
	white-space: normal;
}

.option .col p {
	margin-top: 30px;
	font-size: 1.7rem;
	line-height: 1.8;
}

.option .col p.note {
	font-size: 1.3rem;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {

	.option {
		margin-top: 15vw;
		padding-top: 10vw;
		padding-bottom: 10vw;
	}

	.option h2 {
		font-size: 7vw;
	}

	.option h2+p {
		margin-top: 10px;
		font-size: 5vw;
	}

	.option .row {
		display: block;
		margin-top: 0;
	}

	.option .col {
		width: auto;
		margin-top: 8vw;
	}

	.option h3 {
		padding-bottom: 8px;
		font-size: 1.6rem;
	}

	.option table {
		margin-top: 10px;
		font-size: 1.4rem;
		line-height: 1.7;
	}

	.option th {
		vertical-align: top;
	}

	.option td {
		vertical-align: top;
	}

	.option .col p {
		margin-top: 4vw;
		font-size: 1.4rem;
		line-height: 1.7;
	}

	.option .col p.note {
		font-size: 1.2rem;
		line-height: 1.5;
	}

}


/* ---- notice ---- */

.notice {
	margin-top: 50px;
}

.notice p {
	font-size: 1.3rem;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {

	.notice {
		margin-top: 10vw;
	}

	.notice p {
		font-size: 1.2rem;
	}

}


/* ---- covid ---- */

.covid {
	margin-top: 150px;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #e6e6e6;
}

.covid h2 {
	font-size: 2.3rem;
	line-height: 1.3;
	text-align: center;
}

.covid h2+p {
	margin-top: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	text-align: center;
}

.covid ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 840px;
	margin: 20px auto 0;
}

.covid li {
	width: 23%;
}

.covid li img {
	display: block;
	width: 100%;
	image-rendering: -webkit-optimize-contrast;
}

.covid ul+p {
	margin-top: 30px;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
}

.covid .safety {
	margin-top: 25px;
	text-align: center;
}

.covid .safety a {
	color: #7b0100;
	font-size: 1.6rem;
}

.covid .safety img {
	display: inline-block;
	width: 208px;
	margin-bottom: 10px;
}


@media screen and (max-width: 767px) {

	.covid {
		margin-top: 10vw;
		padding-top: 8vw;
		padding-bottom: 8vw;
	}

	.covid h2 {
		font-size: 5vw;
	}

	.covid h2+p {
		margin-top: 3vw;
		font-size: 1.4rem;
	}

	.covid ul {
		width: 80%;
		max-width: 400px;
		margin: 1vw auto 0;
	}

	.covid li {
		width: 48%;
		margin-top: 3vw;
	}

	.covid ul+p {
		margin-top: 5vw;
		font-size: 1.4rem;
		text-align: left;
	}

	.covid .safety {
		margin-top: 4vw;
	}

	.covid .safety a {
		font-size: 1.4rem;
	}

	.covid .safety img {
		width: 160px;
	}

}


/* ---- contact ---- */

.contact {
	padding-top: 80px;
	padding-bottom: 80px;
}

.contact h2 {
	font-size: 2.7rem;
	font-weight: bold;
	text-align: center;
}

.contact h2+p {
	margin-top: 40px;
	font-size: 2.2rem;
	text-align: center;
}

.contact .eng {
	margin-top: 15px;
	font-size: 4.5rem;
	letter-spacing: .08em;
	text-align: center;
}

.contact .eng a {
	text-decoration: none;
	pointer-events: none;
}

.contact p:last-child {
	margin-top: 20px;
	font-size: 1.6rem;
	text-align: center;
}

@media screen and (max-width: 767px) {

	.contact {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}

	.contact h2 {
		font-size: 5vw;
	}

	.contact h2+p {
		margin-top: 7vw;
		font-size: 1.6rem;
	}

	.contact .eng {
		margin-top: 3vw;
		font-size: 8.5vw;
	}

	.contact .eng a {
		pointer-events: auto;
	}

	.contact .eng small {
		font-size: 0.7em;
	}

	.contact p:last-child {
		margin-top: 4vw;
		font-size: 1.4rem;
	}

}


/* ---- footer ---- */

footer {
	padding: 35px 0;
	background-color: #7b0100;
}

footer ul {
	display: flex;
	justify-content: center;
}

footer li {
	padding: 0 15px;
	border-right: 1px solid #fff;
}

footer li:last-child {
	border-right-style: none;
}

footer a:link,
footer a:visited {
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
	opacity: 1;
	transition: opacity .2s;
}

footer a:hover,
footer a:active {
	color: #fff;
	text-decoration: none;
	opacity: .7;
}

footer .copy{
	box-sizing: border-box;
	display: block;
	margin-top: 45px;
	color: white;
	font-size: 12px;
	text-align: center;
}
@media screen and (max-width: 767px) {

	footer {
		padding: 8vw 0;
	}

	footer a:link,
	footer a:visited {
		font-size: 1.3rem;
		transition: none;
	}

	footer a:hover,
	footer a:active {
		opacity: 1;
	}

}


/* ---- page top button ---- */

.page-top {
	display: block;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 100;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #7b0100;
	transform: translateY(100px);
	transition: transform .3s ease-out, background-color .2s;
}

.page-top:hover,
.page-top:active {
	background-color: #7b0100;
}

.page-top.show {
	transform: translateY(0);
}

.page-top.floor {
	position: absolute;
	bottom: 100px;
	transform: translateY(0);
}

.page-top::after {
	content: "";
	display: block;
	position: absolute;
	left: 20px;
	top: 22px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
}

.page-top span {
	display: none;
}

#page-top-ceil {
	position: absolute;
	left: 0;
	top: 200vh;
	bottom: 0;
	z-index: -100;
	width: 1px;
	pointer-events: none;
}

#page-top-floor {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -100;
	width: 1px;
	height: 90px;
	pointer-events: none;
}

@media screen and (max-width: 767px) {

	.page-top {
		width: 40px;
		height: 40px;
	}

	.page-top:hover,
	.page-top:active {
		background-color: #7b0100;
	}

	.page-top.floor {
		bottom: calc(25px + 16vw);
	}

	.page-top::after {
		left: 15px;
		top: 17px;
	}

	#page-top-ceil {
		top: 150vh;
	}

	#page-top-floor {
		height: calc(15px + 16vw);
	}

}

/* 230406追加 */
.printBtn {
	margin-top: 1.5em;
	text-align: center;
}

.printBtn a {
	transition: all 0.5s ease 0s;
}

.printBtn a:hover {
	opacity: 0.7;
}

/* 230406追加 */
.printBtn {
	margin-top: 1.5em;
	text-align: center;
}

.printBtn a {
	transition: all 0.5s ease 0s;
}

.printBtn a:hover {
	opacity: 0.7;
}

/* 230410追加 */
.menuImage {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.menuImage li {
	width: 48.5%;
}

@media screen and (max-width: 767px) {
	.menuImage {
		margin-top: 8vw;
	}
}