@charset "utf-8";
/* ===================================================
	Reset
====================================================== */
#customer_header *,
#customer_footer * { -webkit-box-sizing: content-box; box-sizing: content-box;}

#customer_header h1,
#customer_header h2,
#customer_header h3,
#customer_header h4,
#customer_header h5,
#customer_header h6,
#customer_footer h1,
#customer_footer h2,
#customer_footer h3,
#customer_footer h4,
#customer_footer h5,
#customer_footer h6 { margin: 0;}

#customer_header ul,
#customer_header ol,
#customer_header li,
#customer_footer ul,
#customer_footer ol,
#customer_footer li { padding: 0; margin: 0; list-style-type: none;}

#customer_header dl,
#customer_footer dl { padding: 0; margin: 0;}

#customer_header p,
#customer_footer p { padding: 0; margin: 0;}


/* ===================================================
	Custom CSS
	※ 予約番自体のコンテンツに影響するのを避けるため、
	　必ず #customer_header または #customer_footer からの継承で記述してください。
====================================================== */
:root {
	--color-green: #0d593e;
	--color-green-02: #007449;
	--color-green-03: #f0f4e2;
	--color-green-bg: #f1f3e9;
	--color-yellow: #a48533;
	--color-yellow-02: #bc9426;
}
body { min-width: 1100px; background: #fff; color: #000;}

#customer_header,
#customer_footer {
	font-size: 16px; font-weight: normal; line-height: 1.5;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt"; letter-spacing: 0.08em;
}

#customer_header #header_wrap,
#customer_header #nav_wrap,
#customer_footer #footer_wrap {
	padding: 0; margin: 0;
}

#customer_header #header,
#customer_header #customer_header #gnav ul,
#customer_footer #footer {
	padding: 0; margin: 0 auto;
	-webkit-box-sizing: border-box; box-sizing: border-box;
}

#customer_header dt,
#customer_footer dt { font-weight: normal;}

#customer_header a,
#customer_footer a { color: #000; text-decoration: none; transition: opacity 0.5s ease; }

#customer_header img,
#customer_footer img { max-width: 100%; height: auto; }

#customer_header .ofi,
#customer_footer .ofi { object-fit: cover; }
#customer_header .garamond,
#customer_footer .garamond {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
}
#customer_header .sp,
#customer_footer .sp { display: none;}
#customer_header .inner_md,
#customer_footer .inner_md { width: 1200px; max-width: 89%; margin: 0 auto; }
#customer_header .inner_lg,
#customer_footer .inner_lg { width: 1400px; max-width: 89%; margin: 0 auto; }
#webc_con .webc_pagetop { display: none !important; }

@media screen and (orientation:landscape) {
	body { width: 100%;}
}
@media screen and (hover: hover) and (min-width: 769px) {
	#customer_header a:hover,
	#customer_footer a:hover { opacity: 0.7; }
}
@media screen and (max-width: 768px) {
	body { min-width: 0;}
	#customer_header .pc,
	#customer_footer .pc { display: none !important;}
	#customer_header .sp,
	#customer_footer .sp { display: block;}
	#customer_header .inner_md,
	#customer_footer .inner_md,
	#customer_header .inner_lg,
	#customer_footer .inner_lg { max-width: 92%; }
}


/* Common Parts
------------------------------------------------------ */
#customer_header .cmn_logo,
#customer_footer .cmn_logo {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: var(--color-green);
	letter-spacing: 0.2em;
}
#customer_header .cmn_logo img,
#customer_footer .cmn_logo img {
	margin: 15px 0;
}
#customer_header .cmn_logo .en,
#customer_footer .cmn_logo .en {
	font-size: 22px;
	letter-spacing: 0.3em;
}
@media screen and (min-width: 769px) {
	#customer_header .tel-link,
	#customer_footer .tel-link {
		pointer-events: none;
	}
}
@media screen and (max-width: 768px) {
	#customer_header .cmn_logo .en,
	#customer_footer .cmn_logo .en {
		font-size: 17px;
	}
	#customer_header .cmn_logo img,
	#customer_footer .cmn_logo img {
		width: min(45vw, 200px);
	}
}

#customer_header .cmn_run,
#customer_footer .cmn_run {
	position: relative;
	display: inline-block;
	padding: 5px 0;
}
#customer_header .cmn_run.center::after,
#customer_footer .cmn_run.center::after {
	position: absolute;
    left: 0;
    bottom: 0;
    content: '';
	width: 100%;
    height: 1.5px;
    background-color: #444; /* 適宜指定 */
	transform: scale(0);
    transition: transform 0.5s ease;
}
#customer_header .cmn_run.lr::after,
#customer_footer .cmn_run.lr::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #444;
	transform-origin: left;
	transform: scale(0);
	transition: transform 0.5s ease;
}
#customer_header .link_arrow,
#customer_footer .link_arrow {
	display: inline-flex;
	align-items: center;
	column-gap: 8px;
}
#customer_header .link_arrow::after,
#customer_footer .link_arrow::after {
	content: '';
	width: 15px;
	height: 15px;
	background: url(../img/link_arrow.svg)no-repeat center/contain;
}
@media screen and (hover: hover) and (min-width: 769px) {
	#customer_header .cmn_run:hover,
	#customer_footer .cmn_run:hover {
		opacity: 1;
	}
	#customer_header .cmn_run:hover::after,
	#customer_footer .cmn_run:hover::after {
		transform: scale(1);
	}
	#customer_header .link_arrow:hover .cmn_run::after,
	#customer_footer .link_arrow:hover .cmn_run::after {
		transform: scale(1)
	}
}

/* .open_menu */
#customer_header .open_menu,
#customer_footer .open_menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 0;
}
#customer_header .open_menu::before,
#customer_header .open_menu span::before,
#customer_header .open_menu span::after,
#customer_footer .open_menu::before,
#customer_footer .open_menu span::before,
#customer_footer .open_menu span::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background-color: #000;
	transition: background-color 0.5s ease, opacity 0.3s ease, transform 0.5s ease;
}
#customer_header .open_menu span::before,
#customer_footer .open_menu span::before {
	margin: 12px 0;
}
/* openしたとき */
#customer_header:has(:target) .open_menu::before {
	transform: rotate(45deg) translate(9px,9px);
}
#customer_header:has(:target) .open_menu span::after {
	transform: rotate(-45deg) translate(9px,-9px);
}
#customer_header:has(:target) .open_menu span::before {
	opacity: 0;
}
@media screen and (max-width: 768px) {
	#customer_header .open_menu::before,
	#customer_header .open_menu span::before,
	#customer_header .open_menu span::after,
	#customer_footer .open_menu::before,
	#customer_footer .open_menu span::before,
	#customer_footer .open_menu span::after {
		width: 35px;
		background-color: #000;
	}
	#customer_header .open_menu span::before,
	#customer_footer .open_menu span::before {
		margin: 8px 0;
	}
	#customer_header:has(:target) .open_menu::before {
		transform: rotate(45deg) translate(7px,7px);
	}
	#customer_header:has(:target) .open_menu span::after {
		transform: rotate(-45deg) translate(6px,-6px);
	}
}

/* .cmn_btn */
#customer_header .cmn_btn,
#customer_footer .cmn_btn {
	display: block;
	padding: 0;
	line-height: 60px;
	font-size: 16px;
	text-align: center;
	transition: opacity 0.5s ease, background-color 0.5s ease;
}
#customer_header .cmn_btn.green,
#customer_footer .cmn_btn.green {
	color: #fff;
	background-color: var(--color-green);
}
#customer_header .cmn_btn.yellow,
#customer_footer .cmn_btn.yellow {
	color: #fff;
	background-color: var(--color-yellow);
}
#customer_header .cmn_btn.arrow,
#customer_footer .cmn_btn.arrow {
	position: relative;
}
#customer_header .cmn_btn.arrow::after,
#customer_footer .cmn_btn.arrow::after {
	position: absolute;
	top: calc(50% - 5px);
	right: 15px;
	content: '';
    display: block;
    width: 28px;
    height: 5px;
    border-right: 1.5px solid;
    border-bottom: 1px solid;
    transform: skew(55deg);
}
@media screen and (hover: hover) and (min-width: 769px) {
	#customer_header .cmn_btn.green:hover,
	#customer_footer .cmn_btn.green:hover {
		opacity: 1;
		background-color: var(--color-green-02);
	}
	#customer_header .cmn_btn.yellow:hover,
	#customer_footer .cmn_btn.yellow:hover {
		opacity: 1;
		background-color: var(--color-yellow-02);
	}
}
@media screen and (max-width: 768px) {
	#customer_header .cmn_btn,
	#customer_footer .cmn_btn {
		line-height: 55px;
	}
	#customer_header .cmn_btn.arrow,
	#customer_footer .cmn_btn.arrow {
		padding: 0 20px 0 10px;
	}
	#customer_header .cmn_btn.arrow::after,
	#customer_footer .cmn_btn.arrow::after {
		width: 20px;
		height: 4px;
	}
}

/* Header
------------------------------------------------------ */
/* Safari */
#customer_header ::-webkit-details-marker {
	display: none !important;
}

#customer_header #header_wrap {
	position: relative;
}
#customer_header #g_header {
	display: flex;
    align-items: center;
	width: 100%;
	filter: drop-shadow(0 0 4px rgba(0 0 0 / 60%));
	transition: background-color 0.5s ease, filter 0.5s ease;
}
#customer_header #g_header .logo {
	padding: 0 30px;
	transition: opacity 0.5s ease;
}
#customer_header #g_header .logo a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #fff;
	transition: color 0.5s ease, opacity 0.5s ease;
}
#customer_header #g_header .logo span {
	display: inline-block
}
#customer_header #g_header .logo a img {
	transition: opacity 0.5s ease;
}
#customer_header #g_header .logo a .green {
	opacity: 0;
	position: absolute;
	right: 0;
}
#customer_header .hd_inner {
	flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
#customer_header .hd_nav {
	display: flex;
	align-items: center;
}
#customer_header .hd_nav li {
	padding: 0 15px;
}
#customer_header .hd_nav li .cmn_run {
	display: inline-block;
	font-size: 18px;
	color: #fff;
	transition: color 0.5s ease;
}
#customer_header .hd_nav li .cmn_run:hover {
	opacity: 1;
}
#customer_header .hd_nav li .cmn_run::after {
	background-color: #007f41;
}
#customer_header #g_header .lang_menu {
	position: relative;
	margin: 0 15px;
	color: #fff;
}
#customer_header #g_header .lang_menu .acc_tit {
	position: relative;
	border-bottom: 1px solid;
	padding: 5px 25px 5px 0;
}
#customer_header #g_header .lang_menu .acc_tit:hover {
	cursor: pointer;
}
#customer_header #g_header .lang_menu .acc_tit::after {
	position: absolute;
    right: 3px;
    top: calc(50% - 4px);
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-right: 1px solid;
	border-bottom: 1px solid;
    transform: rotate(45deg) skew(10deg, 10deg);
}
#customer_header #g_header .lang_menu[open] .acc_tit::after {
    transform: rotate(225deg) skew(10deg, 10deg);
}
#customer_header #g_header .lang_menu .acc_contents {
	border: 1px solid rgba(255 255 255 / 50%);
    border-top: none;
	box-sizing: border-box;
	background-color: rgba(0 0 0/8%);
    width: 100%;
	position: absolute;
	top: 35px;
}
#customer_header #g_header .lang_menu .acc_contents li+li {
	border-top: 1px dashed rgba(255 255 255 / 50%);
}
#customer_header #g_header .lang_menu .acc_contents li a {
	display: block;
    padding: 6px;
	font-size: 15px;
    text-align: center;
    color: #fff;
	transition: opacity 0.5s, color 0.5s, filter 0.5s;
}
#customer_header #g_header .open_menu {
	width: 100px;
	height: 90px;
}
#customer_header #g_header .open_menu::before,
#customer_header #g_header .open_menu span::before,
#customer_header #g_header .open_menu span::after {
	background-color: #fff;
}
@media screen and (min-width: 769px) {
	#customer_header #g_header {
		width: 100%;
		min-width: 1100px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 99;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #g_header {
		position: absolute;
		z-index: 10;
	}
	#customer_header #g_header .logo {
		padding: 10px 4%;
		font-size: 13px;
	}
	#customer_header #g_header .logo a img {
		width: max(100px, 22vw);
	}
	#customer_header #g_header .lang_menu {
		margin: 0 4vw 0 0;
	}
	#customer_header #g_header .open_menu {
		display: none;
	}
}


/* G-nav
------------------------------------------------------ */
#customer_header #gnav_wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
    width: 100%;
    height: 100vh;
    min-height: 100dvh;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
    display: flex;
}
#customer_header:has(:target) #gnav_wrap,
#customer_header #header_wrap :has(:target) {
	opacity: 1;
	pointer-events: auto;
}
#customer_header #gnav_wrap::before {
	content: '';
	display: block;
	width: calc(100% - 800px);
	min-height: 100vh;
	background: url(../img/gnav_bg.webp) no-repeat center left / cover;
}
#customer_header #gnav {
	width: 800px;
	max-width: 100%;
	padding: 70px 8.5% 110px;
	background-color: #f9faf6;
	overflow: scroll;
	box-sizing: border-box;
	scrollbar-width: none;/* scrollbar非表示 */
}
#customer_header #gnav .logo {
	text-align: center;
}
#customer_header #gnav .tel {
	margin-top: 15px;
    text-align: center;
	font-size: 18px;
}
#customer_header #gnav .tel-link {
	margin-left: 5px;
	font-size: 30px;
}
#customer_header #gnav .g_menu {
	column-count: 2;
	column-gap: 11%;
	margin-top: 10px;
}
#customer_header #gnav .g_menu li a {
	break-inside: avoid;
	display: block;
    line-height: 70px;
	border-bottom: 1px solid #aaa;
    padding: 0 20px;
	transition: background-color 0.5s ease;
}
#customer_header #gnav .g_menu_sub {
	display: flex;
	column-gap: 50px;
	padding: 30px 0 40px;
}
#customer_header #gnav .g_menu_sub li a {
	color: #444;
}
#customer_header #gnav .cmn_btn {
	line-height: 70px;
	padding: 0 20px;
}
#customer_header #gnav .g_reserve {
	text-align: center;
}
#customer_header #gnav .g_reserve li+li {
	margin-top: 20px;
}
#customer_header #gnav .open_menu {
    position: absolute;
    top: 20px;
    right: 5%;
}

@media screen and (hover: hover) and (min-width: 769px) {
	#customer_header #gnav .g_menu li a:hover {
		opacity: 1;
		background-color: var(--color-green-03);
	}
}
@media screen and (min-width: 769px) {
	#customer_header #gnav .open_menu {
		top: 0;
		right: 0;
		width: 100px;
		height: 90px;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #gnav {
		padding: 60px 8% calc(env(safe-area-inset-bottom) + 120px);
	}
	#customer_header #gnav .tel-link {
		font-size: 24px;
	}
	#customer_header #gnav .g_menu {
		column-gap: 8%;
		margin-top: 20px;
	}
	#customer_header #gnav .g_menu li a {
		line-height: inherit;
		padding: 15px 10px;
	}
	#customer_header #gnav .g_menu_sub {
		flex-wrap: wrap;
		gap: 0 20px;
		padding: 25px 0 30px;
	}
	#customer_header #gnav .g_reserve li+li {
		margin-top: 12px;
	}
	#customer_header #gnav .cmn_btn {
		line-height: 60px;
	}
}


/* ---------------------------------------------------
	side_nav
------------------------------------------------------ */
#customer_header #side_nav {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 101;
}
#customer_header #side_nav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	letter-spacing: 0.1em;
	transition: background-color 0.5s ease;
}
#customer_header #side_nav .close {
	display: none;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 59.5px;
	background-color: #fff;
}
#customer_header:has(:target) #side_nav .close {
	display: block;
	pointer-events: auto;
}
#customer_header #side_nav .yellow {
	color: #fff;
	background-color: var(--color-yellow);
}
#customer_header #side_nav .green {
	color: #fff;
	background-color: var(--color-green);
}
#customer_header #side_nav .open_menu {
	justify-content: center;
	font-size: 0;
}

@media screen and (hover: hover) and (min-width: 769px) {
	#customer_header #side_nav .yellow:hover {
		opacity: 1;
		background-color: var(--color-yellow-02);
	}
	#customer_header #side_nav .green:hover {
		opacity: 1;
		background-color: var(--color-green-02);
	}
}
@media screen and (min-width: 769px) {
	#customer_header #side_nav {
		display: none !important;
	}
	#customer_header #side_nav.show {
		opacity: 1;
		pointer-events: auto;
		filter: drop-shadow(-2px 2px 5px rgba(0 0 0 / 25%)) blur(0);
	}
	#customer_header #side_nav li a {
		row-gap: 12px;
		width: 60px;
		height: 200px;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #side_nav {
		display: flex;
		background-color: #fff;
	}
	#customer_header #side_nav li {
		width: 25vw;
	}
	#customer_header #side_nav li a {
		justify-content: space-between;
		height: 100%;
		padding: 8px 8px calc(env(safe-area-inset-bottom) + 10px);
		box-sizing: border-box;
		font-size: 13px;
		letter-spacing: 0.04em;
	}
	#customer_header #side_nav .v_rl {
		writing-mode: horizontal-tb;
	}
}
@media screen and (max-width: 359px) {
	#customer_header #side_nav li a {
		font-size: 12px;
		letter-spacing: 0;
	}
}


/* Main img
------------------------------------------------------ */
#customer_header #main_img {
	position: relative;
	width: 100%;
	background: #f5f5f5;
	text-align: center;
}
#customer_header #main_img::before {
	position: absolute;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 180px;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
}
#customer_header #main_img>picture .ofi {
	width: 100%;
	min-height: 600px;
}
#customer_header #main_img .txt {
	position: absolute;
	top: 0;
	left: 7%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 86%;
	height: 100%;
	z-index: 1;
	color: #fff;
	text-shadow: 0 0 18px rgba(0 0 0 / 75%);
}
#customer_header #main_img .txt h1 {
	font-size: 46px;
	letter-spacing: 0.05em;
}
#customer_header #main_img .txt .garamond {
	font-size: 22px;
	letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
	#customer_header #main_img>picture .ofi {
		min-height: 300px;
	}
	#customer_header #main_img .txt h1 {
		font-size: 30px;
	}
	#customer_header #main_img .txt .garamond {
		font-size: 16px;
	}
}
@media screen and (max-width: 359px) {
	#customer_header #main_img .txt h1 {
		font-size: 28px;
	}
}


/* breadcrumb
------------------------------------------------------ */
#customer_footer #breadcrumb { padding: 30px 0; }
#customer_footer #breadcrumb li { display: inline-block; line-height: 1.6; }
#customer_footer #breadcrumb li:before { content: '>'; margin: 0 5px;}
#customer_footer #breadcrumb li:first-child:before { display: none;}
@media screen and (max-width: 768px) {
	#customer_footer #breadcrumb { padding: 20px 0; font-size: 14px; }
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#customer_footer #footer_wrap {
	background-color: #f9faf6;
}
#customer_footer .ft_image {
	padding: 100px 0;
	color: #fff;
	background: url(../img/ft_img_pc.webp)no-repeat center/cover;
}
#customer_footer .ft_image .tit {
	font-size: 20px;
	text-align: center;
}
#customer_footer .ft_image .tit span {
	display: block;
	font-size: 60px;
	letter-spacing: 0.1em;
}
#customer_footer .ft_image ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 20px;
	margin-top: 35px;
}
#customer_footer .ft_image ul li {
	width: 290px;
	max-width: 100%;
}
#customer_footer .ft_image ul li:last-child {
	width: 100%;
	margin-top: 40px;
	text-align: center;
}
#customer_footer .ft_image li .link_arrow {
	border-bottom: 1px solid;
	color: #fff;
}
#customer_footer #footer .box1 {
	padding: 60px 0 40px;
	text-align: center;
}
#customer_footer #footer address {
	margin: 30px 0 0;
	line-height: 1.8;
}
#customer_footer #footer address span {
	display: inline-block;
}
#customer_footer #footer .box1 .sns {
	margin-top: 15px;
}
#customer_footer #footer .box2 {
	color: #fff;
	background-color: var(--color-green);
}
#customer_footer #fnav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 2em;
	padding: 40px 0;
}
#customer_footer #fnav li a {
	color: #fff;
}
#customer_footer #fnav li a::after {
	background-color: #fff;
}
#customer_footer #copy {
	padding: 25px 4%;
	font-size: 13px;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#customer_footer .ft_image {
		padding: 55px 0 65px;
		background: url(../img/ft_img_sp.webp)no-repeat center/cover #191919;
	}
	#customer_footer .ft_image .tit {
		font-size: 18px;
	}
	#customer_footer .ft_image .tit span {
		font-size: 36px;
	}
	#customer_footer .ft_image ul {
		flex-direction: column;
		align-items: center;
		gap: 12px 0;
		margin-top: 20px;
	}
	#customer_footer .ft_image ul li:last-child {
		margin-top: 15px;
	}
	#customer_footer #footer .box1 {
		padding: 50px 0 40px;
	}
	#customer_footer #footer address {
		margin: 25px 0 0;
	}
	#customer_footer #fnav {
		gap: 10px 0;
		width: 380px;
	}
	#customer_footer #fnav li {
		width: 50%;
		padding: 0 0 0 2em;
		box-sizing: border-box;
	}
	#customer_footer #copy {
		padding: 15px 4% calc(env(safe-area-inset-bottom) + 70px);
		font-size: 12px;
	}
}



/* ---------------------------------------------------
	更新履歴
------------------------------------------------------



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