@charset "utf-8";

/* 変数 */
:root {
	--color-primary: #de520d;
	--color-grad: linear-gradient(to right, #de520d 0%, #f5b13b 100%);
	--color-black: #17181a;
	--color-point: #efb32f;
	--color-line: #e3e2df;
	--bg01: url(../img/bg01.webp) center top;
	--bg02: #fff8ea;
}

/* ===================================================
	Reset
====================================================== */
#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 からの継承で記述してください。
====================================================== */
body {
	min-width: 1200px;
}
#customer_header,
#customer_footer {
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 2;
	text-size-adjust: 100%;
	color: var(--color-black);
}
#customer_header img,
#customer_footer img {
	max-width: 100%;
	height: auto;
}
#customer_header a,
#customer_footer a {
	color: var(--color-black);
	text-decoration: none;
	outline: none;
	transition: opacity 0.5s;
}
#customer_header a.link_txt_line,
#customer_footer a.link_txt_line {
	text-decoration: underline;
}
#customer_header .ofi,
#customer_footer .ofi {
	object-fit: cover;
}
#customer_header .br_sp,
#customer_header .view_sp,
#customer_footer .br_sp,
#customer_footer .view_sp {
	display: none;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header a:hover,
	#customer_footer a:hover {
		opacity: 0.6;
	}
	#customer_header a.link_txt:hover,
	#customer_footer a.link_txt:hover {
		text-decoration: underline;
		opacity: 1;
	}
	#customer_header a.link_txt_line:hover,
	#customer_footer a.link_txt_line:hover {
		text-decoration: none;
		opacity: 1;
	}
}
@media screen and (orientation: landscape) {
	body {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	body {
		min-width: 0;
	}
	#customer_header .br_sp,
	#customer_header span.view_sp,
	#customer_footer .br_sp,
	#customer_footer span.view_sp {
		display: inline;
	}
	#customer_header .view_sp,
	#customer_footer .view_sp {
		display: block;
	}
	#customer_header .br_pc,
	#customer_header .view_pc,
	#customer_footer .br_pc,
	#customer_footer .view_pc {
		display: none !important;
	}
}

/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
/* コンテンツ幅 */
#customer_header .inner_md,
#customer_footer .inner_md {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
	#customer_header .inner_md,
	#customer_footer .inner_md {
		width: 86%;
	}
}

/* 矢印 */
#customer_header .cmn_arrow::after,
#customer_footer .cmn_arrow::after {
	width: 8px;
	height: 12px;
	content: "";
	background: url(../img/arrow_gry.svg) no-repeat center center;
	background-size: contain;
}
#customer_header .cmn_arrow.arrow_wht::after,
#customer_footer .cmn_arrow.arrow_wht::after {
	background-image: url(../img/arrow_wht.svg);
}

/* リンク：左から線 */
#customer_header .cmn_link,
#customer_footer .cmn_link {
	position: relative;
	z-index: 0;
	display: inline-block;
	padding: 0 0 5px;
	line-height: 1.6;
}
#customer_header .cmn_link::before,
#customer_footer .cmn_link::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background: var(--color-black);
	transition: width 0.5s;
}
#customer_header .cmn_link.cmn_arrow,
#customer_footer .cmn_link.cmn_arrow {
	display: inline-flex;
	gap: 0 20px;
	align-items: center;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header .cmn_link:hover,
	#customer_footer .cmn_link:hover {
		opacity: 1;
	}
	#customer_header .cmn_link:hover::before,
	#customer_footer .cmn_link:hover::before {
		width: 100%;
	}
}

/* 通常ボタン */
#customer_header .cmn_btn,
#customer_footer .cmn_btn {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--color-line);
	transition: background 0.5s, border-color 0.5s, color 0.5s;
}
#customer_header .cmn_btn.cmn_arrow,
#customer_footer .cmn_btn.cmn_arrow {
	padding: 10px 30px;
}
#customer_header .cmn_btn.cmn_arrow::after,
#customer_footer .cmn_btn.cmn_arrow::after {
	position: absolute;
	top: 50%;
	right: 10px;
	transition: background 0.5s;
	transform: translateY(-50%);
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header .cmn_btn:hover,
	#customer_footer .cmn_btn:hover {
		color: #fff;
		background: var(--color-primary);
		border-color: var(--color-primary);
		opacity: 1;
	}
	#customer_header .cmn_btn.cmn_arrow:hover::after,
	#customer_footer .cmn_btn.cmn_arrow:hover::after {
		background-image: url(../img/arrow_wht.svg);
	}
}

/* グラデーションボタン */
#customer_header .cmn_btn_grad,
#customer_footer .cmn_btn_grad {
	position: relative;
	z-index: 0;
	color: #fff;
	background: var(--color-primary);
	border: none;
}
#customer_header .cmn_btn_grad::before,
#customer_footer .cmn_btn_grad::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--color-grad);
	transition: opacity 0.5s;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header .cmn_btn_grad:hover,
	#customer_footer .cmn_btn_grad:hover {
		opacity: 1;
	}
	#customer_header .cmn_btn_grad:hover::before,
	#customer_footer .cmn_btn_grad:hover::before {
		opacity: 0;
	}
}

/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#customer_header {
	position: relative;
	z-index: 9999;
}
#customer_header #g_header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	min-width: 1200px;
}
#customer_header #g_header .hd_inner {
	position: relative;
	z-index: 1000;
	display: flex;
	align-items: center;
	height: 100px;
	padding: 0 0 0 250px;
	line-height: 1;
}
#customer_header #g_header .hd_inner .logo {
	display: none;
	flex-shrink: 0;
	margin: 15px 25px;
	transition: opacity 0.5s;
}
#customer_header #g_header .hd_inner .main_nav {
	display: flex;
	flex-shrink: 0;
	gap: 0 20px;
	align-items: center;
	margin: 0 15px 0 auto;
}
#customer_header #g_header .hd_inner .main_nav a {
	font-feature-settings: "palt";
	color: #fff;
	letter-spacing: 0.05em;
}
#customer_header #g_header .hd_inner .main_nav .cmn_link::before {
	background: #fff;
}
#customer_header #g_header .hd_inner .main_nav .cmn_link.current::before {
	width: 100%;
}
#customer_header #g_header .hd_inner .main_nav .btn_shop {
	padding: 10px 15px;
	border: 1px solid var(--color-line);
	transition: background 0.5s, border-color 0.5s, color 0.5s;
}
#customer_header #g_header .hd_inner .btns {
	display: flex;
	align-self: stretch;
	width: 310px;
}
#customer_header #g_header .hd_inner .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
#customer_header #g_header .hd_inner li:has(.btn_reserve) {
	flex-grow: 1;
	font-size: 18px;
}
#customer_header #g_header .hd_inner li:has(.btn_menu) {
	position: relative;
	z-index: 0;
}
#customer_header #g_header .hd_inner .btn_menu {
	flex-direction: column;
	width: 100px !important;
	background: var(--color-black);
	transition: background 0.5s;
}
#customer_header #g_header .hd_inner .btn_menu span {
	width: 50px;
	height: 1px;
	background: #fff;
	transition: opacity 0.5s, transform 0.5s;
}
#customer_header #g_header .hd_inner .btn_menu span + span {
	margin: 10px 0 0;
}
#customer_header #g_header .hd_inner .btn_close {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

/* 格納メニュー表示 */
#customer_header #g_header:target .hd_inner :is(.logo, .main_nav, .btn_reserve) {
	pointer-events: none;
	opacity: 0;
}
#customer_header #g_header:target .hd_inner {
	background: rgba(255, 255, 255, 0);
}
#customer_header #g_header:target .hd_inner .btns {
	padding: 0 100px 0 0;
}
#customer_header #g_header:target .hd_inner li:has(.btn_menu) {
	position: fixed;
	top: 0;
	right: 0;
	height: 100px;
}
#customer_header #g_header:target .hd_inner .btn_menu span:first-of-type {
	transform: rotate(45deg);
}
#customer_header #g_header:target .hd_inner .btn_menu span:nth-of-type(2) {
	opacity: 0;
}
#customer_header #g_header:target .hd_inner .btn_menu span:last-of-type {
	transform: rotate(-45deg);
}
#customer_header #g_header:target .hd_inner .btn_menu span + span {
	margin-top: -1px;
}
#customer_header #g_header:target .hd_inner .btn_close {
	pointer-events: auto;
}

/* 言語リンク */
#customer_header #h_lang {
	position: absolute;
	top: 130px;
	right: 35px;
	z-index: 100;
	display: flex;
	align-items: center;
	font-size: 18px;
}
#customer_header #h_lang::before {
	width: 24px;
	height: 24px;
	margin: 0 10px 0 0;
	content: "";
	background: url(../img/icon_lang.svg) no-repeat center center;
}
#customer_header #h_lang li + li::before {
	margin: 0 5px;
	color: #fff;
	content: "/";
}
#customer_header #h_lang a {
	color: rgba(255, 255, 255, 0.5);
}
#customer_header #h_lang a::before {
	background: #fff;
}
#customer_header #h_lang a.current {
	color: #fff;
	pointer-events: none;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header #g_header .hd_inner .main_nav .btn_shop:hover {
		background: rgba(255, 255, 255, 0.5);
		opacity: 1;
	}
	#customer_header #g_header .hd_inner .btn_menu:hover {
		background: #272a30;
		opacity: 1;
	}
}
@media screen and (max-width: 600px) {
	#customer_header #g_header {
		position: fixed;
		min-width: 0;
	}
	#customer_header #g_header .hd_inner {
		height: 80px;
		padding-left: 0;
		background: #fff;
	}
	#customer_header #g_header .hd_inner .logo {
		display: block;
		width: 40%;
		max-width: 300px;
		margin: 10px 2%;
	}
	#customer_header #g_header .hd_inner .btns {
		width: 55%;
		max-width: 250px;
		margin: 0 0 0 auto;
	}
	#customer_header #g_header .hd_inner li:has(.btn_reserve) {
		font-size: 16px;
	}
	#customer_header #g_header .hd_inner .btn_menu {
		width: 70px !important;
	}
	#customer_header #g_header .hd_inner .btn_menu span {
		width: 30px;
	}
	#customer_header #g_header .hd_inner .btn_menu span + span {
		margin-top: 8px;
	}

	/* 格納メニュー表示 */
	#customer_header #g_header:target .hd_inner .btns {
		padding-right: 70px;
	}
	#customer_header #g_header:target .hd_inner li:has(.btn_menu) {
		height: 80px;
	}

	/* 言語リンク */
	#customer_header #h_lang {
		top: 90px;
		right: 15px;
		font-size: 16px;
	}
	#customer_header #h_lang::before {
		width: 20px;
		height: 20px;
		background-size: contain;
	}
}

/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */
#customer_header #g_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	width: 100%;
	height: 100vh;
	pointer-events: none;
	background: url(../img/gnav_bg.webp) no-repeat left center;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.5s;
}
#customer_header #g_nav .gn_inner {
	width: 750px;
	min-width: 50%;
	max-width: 100%;
	padding: 90px 85px;
	margin: 0 0 0 auto;
	overflow: auto;
	background: #fff;
}
#customer_header #g_nav .gn_inner .logo {
	margin: 0 0 50px;
	text-align: center;
}
#customer_header #g_nav .gn_inner :is(.main_nav, .btns, .link) {
	width: 580px;
	max-width: 100%;
	margin: 0 auto;
}
#customer_header #g_nav .gn_inner .main_nav {
	display: flex;
	gap: 0 20px;
	margin-bottom: 35px;
}
#customer_header #g_nav .gn_inner .main_nav ul {
	width: 100%;
	padding: 0 0 0 30px;
	border-left: 1px solid var(--color-line);
}
#customer_header #g_nav .gn_inner .main_nav li {
	padding: 10px 0 5px;
}
#customer_header #g_nav .gn_inner .btns {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}
#customer_header #g_nav .gn_inner .btns li {
	width: calc((100% - 10px) / 2);
}
#customer_header #g_nav .gn_inner .btns li:first-child {
	width: 100%;
}
#customer_header #g_nav .gn_inner .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 70px;
}
#customer_header #g_nav .gn_inner .btns a.btn_reserve {
	min-height: 90px;
}
#customer_header #g_nav .gn_inner .btns a:not(.btn_reserve) {
	color: #fff;
	background: var(--color-black);
	transition: background 0.5s;
}
#customer_header #g_nav .gn_inner .link {
	text-align: center;
}

/* 格納メニュー表示 */
#customer_header #g_header:target #g_nav {
	pointer-events: auto;
	opacity: 1;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header #g_nav .gn_inner .btns a:not(.btn_reserve):hover {
		background: #272a30;
		opacity: 1;
	}
}
@media screen and (max-width: 600px) {
	#customer_header #g_nav {
		height: 100dvh;
		background: none;
	}
	#customer_header #g_nav .gn_inner {
		width: 100%;
		padding: 70px 6% calc(30px + env(safe-area-inset-bottom));
	}
	#customer_header #g_nav .gn_inner .logo {
		width: 150px;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	#customer_header #g_nav .gn_inner :is(.main_nav, .btns, .link) {
		width: 100%;
	}
	#customer_header #g_nav .gn_inner .main_nav ul {
		padding-left: 20px;
		font-size: 14px;
	}
	#customer_header #g_nav .gn_inner .btns {
		flex-direction: column;
		gap: 10px 0;
		margin-bottom: 25px;
	}
	#customer_header #g_nav .gn_inner .btns li {
		width: 100%;
	}
	#customer_header #g_nav .gn_inner .btns a.btn_reserve {
		min-height: 70px;
	}
	#customer_header #g_nav .gn_inner .link {
		font-size: 14px;
	}
}

/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#customer_header #main_img {
	position: relative;
	z-index: 0;
}
#customer_header #main_img::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	content: "";
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}
#customer_header #main_img .ofi {
	width: 100%;
	min-height: 650px;
}
#customer_header #main_img .tit {
	position: absolute;
	top: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	color: #fff;
	text-align: center;
	transform: translateY(-50%);
}
#customer_header #main_img .tit .en {
	margin: 0 0 15px;
	font-size: 23px;
	line-height: 1;
}
#customer_header #main_img .tit h1 {
	font-size: 47px;
	line-height: 1.3;
}

@media screen and (max-width: 600px) {
	#customer_header #main_img::before {
		content: none;
	}
	#customer_header #main_img .ofi {
		height: 100svh;
		min-height: 400px;
	}
	#customer_header #main_img .tit .en {
		margin-bottom: 10px;
		font-size: 16px;
	}
	#customer_header #main_img .tit h1 {
		font-size: 32px;
	}
}

/* breadcrumb */
#customer_header #breadcrumb {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	padding: 0 50px 0 0;
	background: linear-gradient(-135deg, rgba(255, 255, 255, 0) 25px, #fff 25px);
}
#customer_header #breadcrumb li {
	padding: 5px 0 2px;
	font-size: 15px;
	line-height: 1.6;
}

@media screen and (min-width: 601px) {
	#customer_header #breadcrumb li:first-of-type {
		padding: 5px 50px 5px 25px;
		margin: 0 25px 0 0;
		background: linear-gradient(-135deg, rgba(255, 255, 255, 0) 25px, #ecf1f5 25px);
	}
	#customer_header #breadcrumb li + li:not(:nth-of-type(2))::before {
		margin: 0 15px;
		content: "・";
	}
}
@media screen and (max-width: 600px) {
	#customer_header #breadcrumb {
		position: static;
		flex-wrap: wrap;
		padding: 5px 7%;
		background: #ecf1f5;
	}
	#customer_header #breadcrumb li {
		font-size: 12px;
	}
	#customer_header #breadcrumb li + li::before {
		margin: 0 10px;
		content: "-";
	}
}

/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#customer_footer #g_footer {
	background: var(--color-black);
}
#customer_footer #g_footer .inner {
	padding: 110px 0 60px;
	color: #fff;
	text-align: center;
	background: url(../img/ft_img.webp) no-repeat center center;
	background-size: cover;
}
#customer_footer #g_footer .inner .logo {
	margin: 0 0 20px;
	text-align: center;
}
#customer_footer #g_footer .inner address {
	margin-bottom: 0;
	line-height: 2;
}
#customer_footer #g_footer .inner .tel-link {
	color: #fff;
}
#customer_footer #g_footer .inner .time {
	margin: 0 0 20px;
}
#customer_footer #g_footer .inner .link_sns {
	display: flex;
	gap: 0 10px;
	justify-content: center;
	margin: 0 0 70px;
}
#customer_footer #g_footer .inner .btns {
	display: flex;
	gap: 0 20px;
	justify-content: space-between;
	margin-bottom: 25px;
}
#customer_footer #g_footer .inner .btns li {
	width: 365px;
	max-width: 100%;
}
#customer_footer #g_footer .inner .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 70px;
	border: none;
}
#customer_footer #g_footer .inner .link {
	text-align: center;
}
#customer_footer #g_footer .inner .cmn_link {
	color: #fff;
}
#customer_footer #g_footer .inner .cmn_link::before {
	background: #fff;
}
#customer_footer #g_footer .main_nav {
	display: flex;
	gap: 0 20px;
	justify-content: space-between;
	padding: 40px 0 45px;
	border-image-source: linear-gradient(0deg, rgba(227, 226, 223, 0.16) 1px, rgba(227, 226, 223, 0) 0); /* 色と太さ グラデーションで指定 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
#customer_footer #g_footer .main_nav ul {
	width: 100%;
	padding: 0 0 0 30px;
	border-left: 1px solid #fff;
}
#customer_footer #g_footer .main_nav li {
	padding: 10px 0;
}
#customer_footer #g_footer .main_nav a {
	color: #fff;
}
#customer_footer #g_footer .main_nav .cmn_link::before {
	background: #fff;
}
#customer_footer #g_footer .copy {
	padding: 15px 0;
	color: #8b8781;
	text-align: center;
}

@media screen and (max-width: 600px) {
	#customer_footer #g_footer .inner {
		padding: 80px 0 60px;
	}
	#customer_footer #g_footer .inner .logo {
		width: 150px;
		margin: 0 auto 20px;
	}
	#customer_footer #g_footer .inner .link_sns {
		margin-bottom: 40px;
	}
	#customer_footer #g_footer .inner .btns {
		flex-direction: column;
		gap: 10px;
	}
	#customer_footer #g_footer .inner .btns li {
		width: 100%;
	}
	#customer_footer #g_footer .inner .cmn_link {
		font-size: 14px;
	}
	#customer_footer #g_footer .main_nav {
		display: grid;
		grid-template-rows: repeat(2, auto);
		grid-template-columns: repeat(2, 1fr);
		grid-auto-flow: column;
		gap: 0 10px;
	}
	#customer_footer #g_footer .main_nav ul {
		width: auto;
		padding-left: 20px;
		font-size: 14px;
	}
}

/* ---------------------------------------------------
	更新履歴
------------------------------------------------------



------------------------------------------------------ */