@charset "utf-8";

/*予約ボタン各種非表示
---------------------------------------------------------------------------*/

#menubar .btn,
.fixed-booking-nav,
.availability-search,
.reservation-band,
#footermenu li:last-child {
	display: none !important;
}

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

	/* 同じ記述あり */
	body {
		/* padding-bottom: calc(58px + env(safe-area-inset-bottom)); */
	}
}

/*　//予約ボタン各種非表示
---------------------------------------------------------------------------*/





:root {
	--ink: #504a42;
	--deep: #6f2d22;
	--deep-2: #9a3f2c;
	--paper: #f7f4ed;
	--line: rgba(70, 64, 56, 0.18);
	--accent: #9a3f2c;
	--loader-duration: 2.4s;
}

/* サイトを最初に開いたときだけ表示するローディング演出 */
html.is-initial-loading body::before,
html.is-initial-loading body::after {
	content: "";
	position: fixed;
	pointer-events: none;
}

html.is-initial-loading body::before {
	inset: 0;
	z-index: 99998;
	background:
		radial-gradient(ellipse at 50% 45%, rgba(246, 229, 198, .16), transparent 34%),
		repeating-linear-gradient(100deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 7px),
		linear-gradient(145deg, #2f0e0c 0%, #6e271f 52%, #3b110e 100%);
	background-position: 50% 42%;
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

html.is-initial-loading body::after {
	top: 50%;
	left: 50%;
	z-index: 99999;
	width: clamp(140px, 19vw, 220px);
	height: clamp(90px, 15vw, 150px);
	background: url(../images/logo_wh.svg) center / contain no-repeat;
	opacity: 0;
	transform: translate(-50%, calc(-50% + 6px)) scale(.99);
	filter: blur(2px) drop-shadow(0 14px 32px rgba(0, 0, 0, .28));
}

html.is-initial-loading body #container,
html.is-initial-loading body .fixed-booking-nav {
	opacity: 0;
}

html.is-initial-loading.is-loader-ready body::before {
	animation: page-loader-bg-out var(--loader-duration) cubic-bezier(.45, 0, .25, 1) both;
}

html.is-initial-loading.is-loader-ready body::after {
	animation: page-loader-logo-out var(--loader-duration) cubic-bezier(.45, 0, .25, 1) both;
}

html.is-initial-loading.is-loader-ready body #container,
html.is-initial-loading.is-loader-ready body .fixed-booking-nav {
	animation: page-content-in var(--loader-duration) ease-out both;
}

@keyframes page-loader-bg-out {

	0%,
	58% {
		opacity: 1;
		visibility: visible;
		background-position: 50% 42%;
	}

	100% {
		opacity: 0;
		visibility: hidden;
		background-position: 50% 48%;
	}
}

@keyframes page-loader-logo-out {
	0% {
		opacity: 0;
		transform: translate(-50%, calc(-50% + 6px)) scale(.99);
		filter: blur(2px) drop-shadow(0 14px 32px rgba(0, 0, 0, .28));
	}

	24%,
	60% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
		filter: blur(0) drop-shadow(0 14px 32px rgba(0, 0, 0, .28));
	}

	100% {
		opacity: 0;
		transform: translate(-50%, calc(-50% - 5px)) scale(1);
		visibility: hidden;
	}
}

@keyframes page-content-in {

	0%,
	52% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


@media (prefers-reduced-motion: reduce) {
	.fixed-booking-nav a {
		transition-duration: .01s;
	}
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--paper);
	color: var(--ink);
	letter-spacing: .04em;
	background-image: url(../images/bg_01.png);
}

a {
	color: inherit;
}

/* トップの写真と縦書きナビゲーション */
.home header {
	min-height: 100vh;
	margin-bottom: 0;
	padding: 8vh 5vw;
	overflow: hidden;
	isolation: isolate;
}

.home header::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(66, 22, 16, .46), rgba(66, 22, 16, .12) 50%, rgba(66, 22, 16, .46));
}

.home #logo {
	position: relative;
	z-index: 2;
	width: min(38vw, 320px);
	height: auto;
	padding: 2rem;
	background: rgba(82, 29, 21, .2);
	backdrop-filter: blur(3px);
}

.home #logo img {
	width: 100%;
	height: auto;
}

header nav {
	position: relative;
	z-index: 2;
	font-size: .9rem;
}

header nav ul {
	list-style: none;
}

header nav a {
	padding: 1em .65em;
}

.slide1 {
	background-image: url(../images/slide1.jpg);
}

.slide2 {
	background-image: url(../images/slide2.jpg);
}

.slide3 {
	background-image: url(../images/slide3.jpg);
}

.slide1,
.slide2,
.slide3 {
	z-index: 0;
}

.hero-message {
	position: absolute;
	z-index: 2;
	left: 5vw;
	bottom: 6vh;
	margin: 0;
	color: #fff;
	font-size: clamp(1rem, 2vw, 1.45rem);
	line-height: 2;
	letter-spacing: .14em;
	text-shadow: 0 2px 16px #000;
}

/* 下層ヘッダー */
body:not(.home) header {
	justify-content: center;
	padding: 1.5rem 3%;
	/* background: var(--deep); */
	background: transparent;
}

body:not(.home) #logo {
	width: 190px;
}

body:not(.home) #logo img {
	width: 60%;
	margin: 0 auto;
}

main {
	margin-top: 0;
	margin-bottom: 0;
}

section {
	position: relative;
}

.top-intro {
	padding: 0;
	margin-top: 80px;
}

.about-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	max-width: 1200px;
	min-height: 520px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 20px 60px rgba(50, 44, 37, .1);
}

.about-intro-image {
	min-height: 520px;
	margin: 0;
	overflow: hidden;
}

.about-intro-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s ease;
}

.about-intro:hover .about-intro-image img {
	transform: scale(1.025);
}

.about-intro-copy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2.25rem, 4vw, 4rem);
}

.about-intro-copy::before {
	content: "";
	position: absolute;
	top: clamp(2.25rem, 4vw, 4rem);
	left: 0;
	width: 3px;
	height: 72px;
	background: var(--accent);
}

.about-intro-copy .eyebrow {
	margin: 1.5rem 0;
	color: var(--accent);
	font-family: "Cinzel", serif;
	font-size: .7rem;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.about-intro-copy h2 {
	margin-bottom: 2rem;
	font-size: clamp(1.4rem, 2vw, 2rem);
	line-height: 1.75;
	letter-spacing: .12em;
	text-align: left;
	text-indent: 0;
	white-space: nowrap;
}

.about-intro-copy .lead {
	max-width: none;
	margin: 0;
	font-size: 1rem;
	line-height: 2.2;
	text-align: left;
}

.lead {
	max-width: 790px;
	margin: 0 auto;
	font-size: clamp(1rem, 1.45vw, 1.25rem);
	line-height: 2.45;
	text-align: center;
}

.page-hero {
	position: relative;
	min-height: clamp(360px, 58vw, 720px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 -100px 100px;
	background-position: center;
	background-size: cover;
	color: #fff;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(81, 29, 22, .36);
}

.page-hero .title-bg {
	position: relative;
	z-index: 1;
}

.page-hero h2 {
	margin: 0;
	color: #fff;
	text-shadow: 0 2px 16px #000;
}

.page-hero .tate {
	font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.page-hero .yoko {
	letter-spacing: .24em;
}

.section-title {
	margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-title .tate {
	font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

.c2 {
	min-height: 420px;
}

.c2 .image figure,
.c2 .image img {
	width: 100%;
	height: 100%;
}

.c2 .image img {
	min-height: 420px;
	object-fit: cover;
}

.c2 .text .eyebrow {
	font-family: "Cinzel", serif;
	font-size: .72rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-bottom: 0.4em;
}

.c2 .text h2 {
	text-align: left;
	letter-spacing: .12em;
	text-indent: 0;
}

.idx_gallery a {
	opacity: 1;
	transition: all .3s;
}

.idx_gallery a:hover {
	opacity: .8;
}

.gallery-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 3rem;
}

.gallery-strip img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.2rem, 3vw, 3rem);
}

.card {
	background: #fff;
	box-shadow: 0 15px 45px rgba(50, 44, 37, .08);
}

.card>img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card-body {
	padding: clamp(1.25rem, 3vw, 2.4rem);
}

.card h3,
.card h4 {
	margin-top: 0;
	color: var(--deep);
}

.card p:last-child {
	margin-bottom: 0;
}

.card .yoko {
	letter-spacing: 0.3em;
	text-indent: 0.3em;
	font-size: .9em;
	margin-bottom: 2em;
}

.card .card-ttl_idx {
	margin-bottom: 0;
}

.detail-table {
	max-width: 920px;
	margin: 3rem auto 0;
}

.detail-table>div {
	display: grid;
	grid-template-columns: 12rem 1fr;
	gap: 0;
	padding: 1rem .5rem;
	border-bottom: 1px solid var(--line);
}

.detail-table dt {
	font-weight: bold;
	color: var(--deep);
}

.note {
	font-size: .85rem;
	color: #776e65;
}

/* .course-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2rem;
} */

.course-grid {
	display: block;
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

.course-grid+.course-grid {
	margin-top: 4rem;
}

.course-grid.--morning {
	margin-top: 2rem;
}

.course-card {
	background: #fff;
	box-shadow: 0 15px 45px rgba(50, 44, 37, .08);
	margin-top: 1rem;
}

.course-card .main-photo {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.course-card .card-body {
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.course-card h3 {
	margin-top: 0;
	color: var(--deep);
	font-size: 1.35rem;
}

.mini-gallery {
	margin-top: .5rem;
}

.main-slider .slick-slide img {
	transform: scale(1);
	transition: transform 8s ease-out;
	aspect-ratio: 16/ 9;
	object-fit: cover;
}

.main-slider .slick-slide.slick-active img {
	transform: scale(1.08);
}

.mini-gallery .slick-track {
	width: 100% !important;
	display: flex;
	justify-content: center;
	gap: .5em;
}

.mini-gallery .slick-track::before,
.mini-gallery .slick-track::after {
	display: none;
}

.mini-gallery .slick-slide {
	width: calc(100% / 8) !important;
	border: 3px solid transparent;
	box-sizing: content-box;
	transition: all .3s;
}

.mini-gallery .slick-slide.slick-current {
	border: 3px solid #894a3e;
	transition: all .3s;
}

.mini-gallery img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

/* =================================
   メインスライダーの矢印
================================= */

.main-slider {
	position: relative;
}

.main-slider .slick-prev,
.main-slider .slick-next {
	z-index: 10;
	width: auto;
	aspect-ratio: 1;
}

.slick-next:before,
.slick-prev:before {
	font-size: 2.8rem;
	font-weight: 400;
	color: #894a3e;
}

.main-slider .slick-prev {
	left: -3.2rem;
}

.main-slider .slick-next {
	right: -3.2rem;
}

.menu-list {
	display: flex;
	flex-wrap: wrap;
	gap: .2rem 1.1rem;
	padding: 0;
	list-style: none;
	font-size: .9rem;
}

.menu-list li::before {
	content: "◆";
	margin-right: .3em;
	font-size: .65em;
	color: var(--accent);
}

.route-card {
	margin-bottom: 1.5rem;
	padding: clamp(1.25rem, 3vw, 2.5rem);
	background: #fff;
	border-left: 4px solid var(--deep-2);
}

.route-card h3 {
	margin-top: 0;
}

.route-flow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .5rem;
	margin-top: 1rem;
}

.route-flow span {
	padding: 0 .8rem;
}

.route-flow i {
	font-style: normal;
	color: var(--accent);
}

.map-frame iframe {
	display: block;
	height: min(58vw, 580px);
	min-height: 360px;
	border: 0;
}

.reservation-band {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 430px;
	margin-left: -100px;
	margin-right: -100px;
	padding: 4rem 2rem;
	background: url(../images/KBC02097.jpg) center/cover;
	color: #fff;
	text-align: center;
}

.reservation-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(83, 29, 21, .72);
}

.reservation-band>div {
	position: relative;
	z-index: 1;
}

.reservation-band h2 {
	margin-bottom: 1rem;
	color: #fff;
}

.btn-link {
	display: inline-block;
	padding: .8rem 1.8rem;
	border: 1px solid var(--deep-2);
	text-decoration: none;
	letter-spacing: .1em;
	background: var(--deep-2);
	color: #fff;
}

.btn-link.accent {
	background: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

footer {
	padding: 2.5rem 0 1.5rem;
	background:
		radial-gradient(circle at 12% 0%, rgba(190, 121, 94, .18) 0, transparent 36%),
		linear-gradient(125deg, #593d37 0%, #3a3030 48%, #211f21 100%);
	color: #fff;
}

footer a {
	color: #fff;
}

.footer-info {
	font-size: .85rem;
	line-height: 2;
	text-align: center;
}

#footermenu {
	padding: 1rem 2%;
}

.footer-social {
	display: flex;
	justify-content: center;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 50%;
	text-decoration: none;
	font-size: 1rem;
}

.footer-social a:hover {
	opacity: 1;
	background: #fff;
	color: #2d2d2d;
}

.footer-social a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

#menubar {
	background: rgba(76, 25, 19, .9);
	width: 50%;
}

#menubar .brand {
	width: 150px;
	margin: 0 auto 3rem;
}

#menubar .brand img {
	width: 100%;
}

#menubar_hdr {
	background: rgba(122, 50, 38, .88);
}

.redirect-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 2rem;
	background: var(--deep);
	color: #fff;
	text-align: center;
}

.redirect-page img {
	width: 200px;
	margin-bottom: 2rem;
}

@media screen and (max-width:899px) {
	.about-intro {
		grid-template-columns: 1fr;
	}

	.about-intro-image {
		min-height: 360px;
	}

	.page-hero {
		margin-left: -20px;
		margin-right: -20px;
	}

	.reservation-band {
		margin-left: -20px;
		margin-right: -20px;
	}

	.c2 .image img {
		min-height: 300px;
	}

	.card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width:700px) {
	.about-intro-image {
		min-height: 260px;
	}

	.about-intro-copy {
		padding: 2.25rem 1.5rem 2.75rem;
	}

	.about-intro-copy::before {
		top: 2.25rem;
		height: 52px;
	}

	.home header {
		min-height: 80vh;
		padding: 5vh 1rem;
	}

	.home #logo {
		width: min(70vw, 280px);
	}

	.hero-message {
		left: 1.5rem;
		right: 5rem;
		bottom: 2rem;
		font-size: .95rem;
	}

	section+section {
		margin-top: 60px;
	}

	.page-hero {
		min-height: 420px;
		margin-bottom: 60px;
	}

	.lead {
		text-align: left;
	}

	.note {
		text-align: left !important;
	}

	.card-grid,
	.course-grid,
	.gallery-strip {
		grid-template-columns: 1fr;
	}

	.course-grid {
		gap: 0;
	}

	.mini-gallery .slick-track {
		flex-wrap: wrap;
		gap: .5em .7rem;
	}

	.mini-gallery .slick-slide {
		width: calc(100% / 4 - 1rem) !important;
	}

	.detail-table>div {
		grid-template-columns: 1fr;
		gap: .2rem;
	}

	.route-flow {
		flex-direction: column;
		align-items: stretch;
	}

	.route-flow i {
		transform: rotate(90deg);
		text-align: center;
	}

	.reservation-band {
		min-height: 360px;
	}

	.slick-next:before,
	.slick-prev:before {
		font-size: 2.4rem;
	}

	.main-slider .slick-next {
		right: -2.6rem;
	}

	.main-slider .slick-prev {
		left: -2.6rem;
	}
}

/* 空室検索・固定予約ナビ */
.availability-search {
	position: relative;
	z-index: 20;
	margin: 0 auto clamp(5rem, 8vw, 8rem);
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 4vw, 4rem) 0;
}

.home .availability-search {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.availability-search * {
	box-sizing: border-box;
}

.availability-search form {
	margin: 0;
}

.availability-search .form_box {
	max-width: 1320px;
	margin: 0 auto;
	background: rgba(255, 255, 255, .98);
	border: 1px solid rgba(111, 45, 34, .12);
	border-top: 3px solid #b17058;
	box-shadow: 0 22px 65px rgba(50, 30, 24, .2);
}

.availability-search .form_ttl {
	display: grid;
	grid-template-columns: auto auto minmax(240px, 1fr);
	align-items: center;
	gap: 1rem;
	min-height: 92px;
	padding: 1.15rem 1.5rem;
	background: linear-gradient(110deg, var(--deep), #57231b);
	color: #fff;
}

.availability-search .ttl_icon img {
	display: block;
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.availability-search .form_ttl h3 {
	margin: 0;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.15;
}

.availability-search .form_ttl h3 span {
	display: block;
}

.availability-search .form_ttl .en {
	margin-top: .4rem;
	font-family: "Cinzel", serif;
	font-size: .58rem;
	font-weight: 400;
	letter-spacing: .24em;
	text-transform: uppercase;
}

.availability-search .form_guide {
	justify-self: end;
	margin: 0;
	color: rgba(255, 255, 255, .82);
	font-size: .78rem;
	line-height: 1.7;
	letter-spacing: .08em;
}

.availability-search .form_area {
	display: grid;
	grid-template-columns: minmax(160px, 1.25fr) minmax(128px, .9fr) minmax(115px, .8fr) minmax(135px, .9fr) minmax(280px, 1.8fr) minmax(150px, 1fr);
	align-items: end;
	gap: 1rem;
	padding: 1.35rem 1.5rem 1.5rem;
}

.availability-search .title {
	display: block;
	margin: 0 0 .5rem;
	color: #5d5249;
	font-size: .76rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .08em;
}

.availability-search .booking-options {
	display: contents;
}

.availability-search input[type="text"],
.availability-search select {
	width: 100%;
	height: 52px;
	margin: 0;
	padding: 0 .85rem;
	border: 1px solid rgba(80, 74, 66, .24);
	border-radius: 2px;
	background: #fff;
	color: var(--ink);
	font: inherit;
	font-size: .88rem;
	transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.availability-search input[type="text"] {
	cursor: pointer;
	background: #fffdf9;
}

.availability-search input[type="text"]:focus,
.availability-search select:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(154, 63, 44, .13);
}

.availability-search .undecided-control {
	display: flex;
	align-items: center;
	gap: .6rem;
	height: 52px;
	padding: 0 .8rem;
	border: 0;
	border-radius: 2px;
	background: transparent;
	font-size: .8rem;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color .2s, background-color .2s;
}

.availability-search .undecided-control:hover {
	border-color: transparent;
	background: transparent;
}

.availability-search .option-input {
	width: 21px;
	height: 21px;
	margin: 0;
	accent-color: var(--deep-2);
}

.availability-search .check_in.is-disabled {
	opacity: .48;
}

.availability-search .price {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: end;
	gap: .45rem;
}

.availability-search .price-separator {
	display: grid;
	place-items: center;
	height: 52px;
	color: #82776d;
}

.availability-search .search_btn .btn {
	width: 100%;
	height: 52px;
	margin: 0;
	padding: 0 1rem;
	border: 0;
	border-radius: 2px;
	background: linear-gradient(110deg, var(--deep-2), #7d3023);
	color: #fff;
	font: inherit;
	font-size: .9rem;
	font-weight: 600;
	letter-spacing: .1em;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(111, 45, 34, .2);
	transition: filter .25s, transform .25s, box-shadow .25s;
}

.availability-search .search_btn .btn:hover {
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 11px 24px rgba(111, 45, 34, .28);
}

.availability-search .search_btn .btn:focus-visible {
	outline: 3px solid rgba(154, 63, 44, .24);
	outline-offset: 3px;
}

.ui-datepicker {
	z-index: 3000 !important;
}

.fixed-booking-nav {
	position: fixed;
	z-index: 1600;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.fixed-booking-nav,
.fixed-booking-nav *,
.fixed-booking-nav *::before,
.fixed-booking-nav *::after {
	box-sizing: border-box;
}

.fixed-booking-nav a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	width: 74px;
	min-height: 252px;
	padding: 1.2rem .75rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .2);
	border-right: 0;
	border-radius: 11px 0 0 11px;
	background: linear-gradient(135deg, rgba(145, 70, 54, .96) 0%, rgba(111, 45, 34, .96) 48%, rgba(78, 28, 22, .97) 100%);
	color: #fff;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), inset 0 -2px 0 rgba(55, 18, 14, .3), 0 10px 35px rgba(52, 24, 19, .3);
	writing-mode: vertical-rl;
	letter-spacing: .13em;
	transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.fixed-booking-nav a::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 1px;
	left: 1px;
	width: calc(100% - 2px);
	height: 42%;
	border-radius: 10px 0 45% 45%;
	background: linear-gradient(115deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, .15) 38%, rgba(255, 255, 255, 0) 72%);
	pointer-events: none;
}

.fixed-booking-nav a>* {
	position: relative;
	z-index: 1;
}

.fixed-booking-nav .fixed-nav-item:not(.fixed-nav-reserve) {
	display: none;
}

.fixed-booking-nav .fixed-nav-icon {
	display: none;
}

.fixed-booking-nav a:hover {
	opacity: 1;
	transform: translateX(-3px);
	background: linear-gradient(135deg, rgba(156, 77, 59, .98) 0%, var(--deep-2) 52%, rgba(69, 23, 18, .98) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), inset 0 -2px 0 rgba(55, 18, 14, .34), 0 13px 38px rgba(52, 24, 19, .38);
}

.fixed-booking-nav a:active {
	transform: translateX(-1px);
	box-shadow: inset 0 2px 5px rgba(50, 17, 13, .32), 0 6px 18px rgba(52, 24, 19, .28);
}

.fixed-booking-nav .booking-nav-en {
	font-family: "Cinzel", serif;
	font-size: .6rem;
	letter-spacing: .19em;
	text-transform: uppercase;
}

.fixed-booking-nav .booking-nav-jp {
	font-size: .88rem;
	font-weight: 600;
}

@media screen and (max-width:1200px) {
	.availability-search .form_area {
		grid-template-columns: 1.2fr .9fr .8fr .9fr;
	}

	.availability-search .price {
		grid-column: 1 / 4;
	}

	.availability-search .search_btn {
		grid-column: 4;
	}
}

@media screen and (max-width:760px) {
	body {
		/* padding-bottom: calc(58px + env(safe-area-inset-bottom)); */
	}

	#menubar {
		inset: 0;
		z-index: 1700;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: 100dvh;
		padding-bottom: calc(5rem + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior-y: contain;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y;
	}

	#menubar_hdr {
		z-index: 1701;
	}

	.pagetop a {
		right: 12px;
		bottom: calc(58px + env(safe-area-inset-bottom) + 12px);
		z-index: 1590;
		width: 44px;
		line-height: 44px;
	}

	.availability-search {
		margin: 0 0 4rem;
		padding: 1rem;
		background: #fff;
	}

	.availability-search .form_ttl {
		grid-template-columns: auto auto 1fr;
		min-height: 0;
		padding: 1rem 1.1rem;
	}

	.availability-search .form_guide {
		grid-column: 3;
	}

	.availability-search .form_area {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 1.1rem;
		gap: 1rem .8rem;
	}

	.availability-search .price,
	.availability-search .search_btn {
		grid-column: 1 / -1;
	}

	.fixed-booking-nav {
		display: flex;
		left: 0;
		right: 0;
		top: auto;
		bottom: 0;
		transform: none;
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid rgba(80, 74, 66, .14);
		background: rgba(250, 248, 243, .97);
		box-shadow: 0 -5px 18px rgba(45, 38, 31, .09);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	.fixed-booking-nav .fixed-nav-item,
	.fixed-booking-nav .fixed-nav-item:not(.fixed-nav-reserve) {
		display: flex;
		flex: 1 1 25%;
		flex-direction: column;
		gap: .25rem;
		width: auto;
		min-width: 0;
		min-height: 58px;
		padding: .55rem .35rem .45rem;
		overflow: hidden;
		border: 0;
		border-right: 1px solid rgba(80, 74, 66, .15);
		border-radius: 0;
		background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(252, 249, 244, .97) 52%, rgba(235, 228, 218, .97) 100%);
		color: var(--ink);
		box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(111, 45, 34, .1);
		writing-mode: horizontal-tb;
		font-family: inherit;
		font-size: .74rem;
		font-weight: 600;
		line-height: 1;
		letter-spacing: .08em;
	}

	.fixed-booking-nav .fixed-nav-item::before {
		top: 1px;
		left: 1px;
		width: calc(100% - 2px);
		height: 46%;
		border-radius: 0 0 48% 48%;
		background: linear-gradient(110deg, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .16) 45%, rgba(255, 255, 255, 0) 74%);
	}

	.fixed-booking-nav .fixed-nav-item:last-child {
		border-right: 0;
	}

	.fixed-booking-nav .fixed-nav-reserve {
		background: linear-gradient(180deg, #9b4b3a 0%, var(--deep) 52%, #56241c 100%);
		color: #fff;
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), inset 0 -2px 0 rgba(53, 16, 12, .38);
	}

	.fixed-booking-nav .fixed-nav-item:hover {
		transform: none;
		background: linear-gradient(180deg, #fff 0%, #fbf6ef 50%, #e8ded1 100%);
		box-shadow: inset 0 1px 0 #fff, inset 0 -2px 0 rgba(111, 45, 34, .11);
	}

	.fixed-booking-nav .fixed-nav-reserve:hover {
		background: linear-gradient(180deg, #aa5542 0%, var(--deep-2) 52%, #4d1e18 100%);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4), inset 0 -2px 0 rgba(53, 16, 12, .4);
	}

	.fixed-booking-nav .fixed-nav-item:active,
	.fixed-booking-nav .fixed-nav-reserve:active {
		transform: none;
		box-shadow: inset 0 3px 6px rgba(65, 34, 26, .24);
	}

	.fixed-booking-nav .fixed-nav-item:focus-visible {
		position: relative;
		z-index: 1;
		outline: 2px solid var(--accent);
		outline-offset: -3px;
	}

	.fixed-booking-nav .fixed-nav-icon {
		display: block;
		font-size: 1.08rem;
		line-height: 1;
	}

	.fixed-booking-nav .booking-nav-en {
		display: none;
	}

	.fixed-booking-nav .booking-nav-jp {
		font-size: inherit;
		font-weight: inherit;
	}
}

/* w3仕様の共通グローバルナビゲーション */
header,
.home header {
	display: flex;
	position: relative;
	z-index: 110;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 80px;
	margin: 0;
	padding: 0 clamp(1rem, 4vw, 4rem);
	background: rgba(247, 244, 238, .96);
	overflow: visible;
	isolation: auto;
}

body:not(.home) header {
	justify-content: space-between;
	padding: 0 clamp(1rem, 4vw, 4rem);
	/* background: rgba(247, 244, 238, .96); */
	background: transparent;
}

.home header::after {
	content: none;
}

header .logo {
	flex: 0 0 auto;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	background: none;
	backdrop-filter: none;
	order: 0;
}

header .logo img {
	display: block;
	width: 150px;
	max-height: 58px;
	margin: 0;
}

header #menubar,
header #menubar nav {
	writing-mode: horizontal-tb;
	text-orientation: mixed;
	text-shadow: none;
}

.large-screen header #menubar {
	display: block;
	position: static;
	width: auto;
	height: auto;
	margin-left: auto;
	padding: 0;
	overflow: visible;
	background: transparent;
	color: var(--ink);
	text-align: left;
	border: 0;
	animation: none;
	font-size: clamp(.72rem, .82vw, .9rem);
}

.large-screen header #menubar>nav>ul {
	display: flex;
	align-items: center;
	gap: clamp(.65rem, 1.15vw, 1.45rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.large-screen header #menubar a {
	display: block;
	padding: .65rem 0;
	color: inherit;
	text-decoration: none;
	border: 0;
	white-space: nowrap;
}

.large-screen header #menubar a:hover,
.large-screen header #menubar a[aria-current="page"] {
	background: transparent;
	color: var(--accent);
}

.large-screen header #menubar .btn a {
	padding: .7rem 1rem;
	border: 1px solid var(--accent);
	background: var(--accent);
	color: #fff;
}

.large-screen header #menubar .btn a:hover {
	background: var(--deep);
}

.mobile-menu-logo,
header #menubar .sh {
	display: none;
}

#menubar_hdr {
	display: none;
	position: fixed;
	z-index: 2000;
	right: 0;
	top: 0;
	width: 70px;
	height: 70px;
	padding: 0;
	border-bottom-left-radius: 10px;
	background: transparent;
	cursor: pointer;
}

#menubar_hdr span {
	position: absolute;
	left: 18px;
	width: 35px;
	height: 1px;
	border: 0;
	background: var(--ink);
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}

#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}

#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

#menubar_hdr.ham {
	background: var(--accent);
}

#menubar_hdr.ham span {
	background: #fff;
}

#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}

#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}

#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

#menubar-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1800;
	background: rgba(0, 0, 0, .3);
}


@media (max-width: 899px) {
	.small-screen #menubar_hdr {
		display: block;
	}

	.small-screen #menubar {
		display: none;
		position: fixed;
		inset: 0 0 0 auto;
		z-index: 1900;
		width: min(86vw, 420px);
		height: 100vh;
		height: 100dvh;
		max-height: none;
		margin: 0;
		padding: 100px clamp(1.25rem, 5vw, 2.5rem) calc(2rem + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		background: rgba(64, 58, 53, .96);
		color: var(--paper);
		text-align: left;
		border: 0;
	}

	.small-screen #menubar .mobile-menu-logo {
		display: block;
		margin: 0 auto 2.5rem;
		text-align: center;
	}

	.small-screen #menubar .mobile-menu-logo a {
		display: inline-block;
		margin: 0;
		padding: 0;
		background: transparent;
		border: none;
	}

	.small-screen #menubar .mobile-menu-logo img {
		display: block;
		width: 150px;
		max-width: 48vw;
		margin: 0 auto;
	}

	.small-screen #menubar>nav>ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.small-screen #menubar a {
		display: block;
		margin: 0 0 .85rem;
		padding: 1rem 1.25rem;
		border: 1px solid #fff;
		border-radius: 0;
		background: #fff;
		color: #333;
		text-align: left;
		text-decoration: none;
	}

	.small-screen #menubar .btn a {
		border-color: var(--accent);
		background: var(--accent);
		color: #fff;
	}

	.small-screen #menubar .sh {
		display: block;
		padding: 1rem 0 0;
		font-size: .82rem;
		line-height: 1.8;
	}

	body.noscroll {
		overflow: hidden;
	}
}

@media (max-width: 700px) {
	.small-screen #menubar {
		width: 100%;
	}
}

/* 3枚を18秒（6秒間隔）で切り替えるメインビジュアル */
.mainimg.legacy-hero {
	position: relative;
	height: calc(100vh - 80px);
	min-height: 560px;
	overflow: hidden;
	background: #201d1a;
}

.mainimg.legacy-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(20, 17, 14, .38), rgba(20, 17, 14, .05) 60%, rgba(20, 17, 14, .18));
}

.mainimg.legacy-hero .slide {
	position: absolute;
	inset: 0;
	z-index: auto;
	width: 100%;
	height: 100%;
}

.mainimg.legacy-hero .slide>.slide1,
.mainimg.legacy-hero .slide>.slide2,
.mainimg.legacy-hero .slide>.slide3 {
	z-index: 0;
}

/* 表示中の各スライドを、切替までゆっくり拡大する */
.mainimg.legacy-hero .slide>.slide1 {
	animation: slide1 18s linear infinite, opa1 1s linear, legacy-hero-zoom-1 18s linear infinite;
}

.mainimg.legacy-hero .slide>.slide2 {
	animation: slide2 18s linear infinite, legacy-hero-zoom-2 18s linear infinite;
}

.mainimg.legacy-hero .slide>.slide3 {
	animation: slide3 18s linear infinite, legacy-hero-zoom-3 18s linear infinite;
}

@keyframes legacy-hero-zoom-1 {
	0% {
		transform: scale(1.05);
	}

	25% {
		transform: scale(1.10);
	}

	35% {
		transform: scale(1.10);
	}

	90% {
		transform: scale(1.03);
	}

	100% {
		transform: scale(1.05);
	}
}

@keyframes legacy-hero-zoom-2 {

	0%,
	25% {
		transform: scale(1.03);
	}

	60% {
		transform: scale(1.10);
	}

	70% {
		transform: scale(1.10);
	}

	100% {
		transform: scale(1.03);
	}
}

@keyframes legacy-hero-zoom-3 {

	0%,
	60% {
		transform: scale(1.03);
	}

	90% {
		transform: scale(1.10);
	}

	100% {
		transform: scale(1.03);
	}
}

.mainimg.legacy-hero .slide:nth-child(1) .hero-copy {
	animation: slide1 18s linear infinite;
}

.mainimg.legacy-hero .slide:nth-child(2) .hero-copy {
	animation: slide2 18s linear infinite;
}

.mainimg.legacy-hero .slide:nth-child(3) .hero-copy {
	animation: slide3 18s linear infinite;
}

.mainimg.legacy-hero .hero-copy {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: clamp(1.5rem, 9vw, 10rem);
	margin: 0;
	transform: translateY(-50%);
	text-indent: 0;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.mainimg.legacy-hero .hero-copy.right {
	left: auto;
	right: clamp(1.5rem, 9vw, 10rem);
	text-align: right;
}

.mainimg.legacy-hero .hero-copy p {
	margin: 0 0 1rem;
	font-family: "Cinzel", serif;
	font-size: .8rem;
	letter-spacing: .28em;
	text-transform: uppercase;
}

.mainimg.legacy-hero .hero-copy h2 {
	margin: 0;
	font-size: clamp(1.65rem, 3.25vw, 3.65rem);
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: .12em;
}

@media (max-width: 600px) {
	.mainimg.legacy-hero {
		height: calc(100svh - 80px);
		min-height: 500px;
	}

	.mainimg.legacy-hero .hero-copy {
		text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
	}

	.mainimg.legacy-hero .hero-copy,
	.mainimg.legacy-hero .hero-copy.right {
		left: 1.5rem;
		right: 1.5rem;
		text-align: left;
	}

	.mainimg.legacy-hero .hero-copy h2 {
		font-size: clamp(1.8rem, 3.5vw, 3.8rem);
	}
}


@media screen and (max-width:520px) {
	.availability-search .form_ttl {
		grid-template-columns: auto 1fr;
		gap: .75rem;
	}

	.availability-search .ttl_icon img {
		width: 38px;
		height: 38px;
	}

	.availability-search .form_ttl h3 {
		font-size: 1.1rem;
	}

	.availability-search .form_guide {
		grid-column: 1 / -1;
		justify-self: start;
		font-size: .72rem;
	}

	.availability-search .form_area {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.availability-search .price,
	.availability-search .search_btn {
		grid-column: 1 / -1;
	}
}

.linestyle {
	margin: 0;
	line-height: 3rem;
}

.btn-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: .7rem .75rem;
	padding: 0;
}

.btn-list.--food {
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	max-width: 750px;
}

.btn-list-item {
	width: calc(100% / 3 - .5rem);
	list-style-type: none;
}

.btn-list-item .btn-flat-border {
	display: block;
	width: 100%;
	margin: 0;
}

@media screen and (max-width:991px) {
	.btn-list.--food .btn-list-item {
		width: calc(100% / 2 - .5rem);
	}
}

@media screen and (max-width:760px) {
	.btn-list {
		justify-content: space-between;
	}

	.btn-list.--food {
		margin-bottom: 60px;
	}

	.btn-list-item {
		width: calc(100% / 2 - .5rem);
		list-style-type: none;
	}

	.btn-list.--food .btn-list-item {
		width: 100%;
	}
}

@media screen and (max-width:400px) {
	.btn-list-item {
		width: 100%;
	}
}