@charset "utf-8";
/* ===================================================
	Reset
====================================================== */
:root {
	--bg-reserve: linear-gradient(90deg, rgb(142, 15, 56), rgb(152, 42, 77));
	/* --bg-reserve_hover: linear-gradient(90deg, rgb(152, 42, 77), rgb(152, 42, 77)); */
	/* --bg-daytrip: #371905;
	--bg-daytrip_hover: #592807;
	--txt-point: #c0a459;
	--font-lg: 32px;
	--font-md: 26px; */
}

@media screen and (max-width: 600px) {
	/* :root {
		--font-lg: 28px;
		--font-md: 24px;
	} */
}

/* 左から下線アニメーション付きリンク */
.cmn_link_line {
	position: relative;
	z-index: 0;
	display: inline-block;
	padding: 0 0 3px;
}
.cmn_link_line::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background: #fff;
	transition: width 0.5s;
}

@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_link_line:hover {
		opacity: 1;
	}
	.cmn_link_line:hover::after {
		width: 100%;
	}
}

/* 予約関連ボタン */
.cmn_btn_reserve {
	position: relative;
	background: var(--bg-reserve);
	transition: background 0.5s;
	overflow: hidden;
	z-index: 1;
}
.cmn_btn_reserve::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: #fff;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}
/* .cmn_btn_daytrip {
	background: var(--bg-daytrip);
	transition: background 0.5s;
} */

@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_btn_reserve:hover {
		/* background: var(--bg-reserve_hover); */
		opacity: .9;
	}

	.cmn_btn_reserve:hover::before {
		opacity: .1;
	}
	/* .cmn_btn_daytrip:hover {
		background: var(--bg-daytrip_hover);
		opacity: 1;
	} */
}




#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;}


.br_sp,
.view_sp {
	display: none;
}

@media screen and (max-width: 600px) {
	body {
		min-width: 0;
	}
	.br_sp,
	span.view_sp {
		display: inline;
	}
	.view_sp {
		display: block;
	}
	.br_pc,
	.view_pc {
		display: none !important;
	}

	.flex_col { display: block;}
	a.arrow_link { width: 160px; padding: 0 0 10px;}
}



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

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


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

/* #customer_header #header,
#customer_header #gnav ul,
#customer_footer #footer {
	width: 1100px; max-width: 100%; padding: 0; margin: 0 auto;
	-webkit-box-sizing: border-box; box-sizing: border-box;
} */

#customer_header a,
#customer_footer a { color: #fff; text-decoration: none; outline: none; transition: opacity 0.5s;}
#customer_header a:hover,
#customer_footer a:hover { opacity: 0.6;}
#customer_header a:hover img,
#customer_footer a:hover img { opacity: 0.6;}

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

#customer_header .ver_sp,
#customer_footer .ver_sp { display: none;}

@media screen and (orientation:landscape) {
	body { width: 100%;}
}
@media screen and (max-width: 600px) {
	body { min-width: 0;}

	#customer_header .ver_pc,
	#customer_footer .ver_pc { display: none;}
	#customer_header .ver_sp,
	#customer_footer .ver_sp { display: inline;}
}


/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#customer_header #g_header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 1200px;
	padding: 15px 0;
	transition: background 0.5s;
}
#customer_header #g_header.scroll {
	background: rgba(0, 0, 0, 0.9);
}

#customer_header .pos_fix #g_header.scroll {
	background: inherit;
}

#customer_header .hd_h1 { 
	width: 265px;
	padding: 0 0 0 30px;
	box-sizing: border-box;
}

#customer_header #g_header .h_nav {
	display: flex;
	gap: 0 40px;
	align-items: center;
	margin: 0 0 0 auto;
	transition: opacity 0.5s;
}
#customer_header #g_header .h_nav a {
	position: relative;
	z-index: 0;
	padding: 8px 0;
	text-shadow: 0 0 10px #000;
}
#customer_header #g_header .h_nav a::after {
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 1px;
	content: "";
	background: #fff;
	transition: left 0.5s, right 0.5s;
}

#customer_header #g_header .btn_menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 40px 0 50px;
}
#customer_header #g_header .btn_menu span {
	width: 100%;
	height: 1px;
	background: #fff;
	transition: opacity 0.5s, transform 0.5s, margin 0.5s;
}
#customer_header #g_header .btn_menu span + span {
	margin: 10px 0 0;
}

#customer_header #g_header .btn_menu+.close {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
}

/* #customer_header #g_header .btn_menu.active span + span {
	margin-top: -1px;
}
#customer_header #g_header .btn_menu.active span:first-child {
	transform: rotate(45deg);
}
#customer_header #g_header .btn_menu.active span:nth-child(2) {
	opacity: 0;
}
#customer_header #g_header .btn_menu.active span:last-child {
	transform: rotate(-45deg);
}
#customer_header #g_header:has(.btn_menu.active) :is(.hd_h1, .h_nav) {
	opacity: 0;
} */

#customer_header:has(#g_nav:target) #g_header .btn_menu span + span {
	margin-top: -1px;
}
#customer_header:has(#g_nav:target) #g_header .btn_menu span:first-child {
	transform: rotate(45deg);
}
#customer_header:has(#g_nav:target) #g_header .btn_menu span:nth-child(2) {
	opacity: 0;
}
#customer_header:has(#g_nav:target) #g_header .btn_menu span:last-child {
	transform: rotate(-45deg);
}
#customer_header:has(#g_nav:target) #g_header :is(.hd_h1, .h_nav) {
	opacity: 0;
}
#customer_header:has(#g_nav:target) #g_header .btn_menu+.close {
	display: block;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header #g_header .h_nav a:hover {
		opacity: 1;
	}
	#customer_header #g_header .h_nav a:hover::after {
		right: 0;
		left: 0;
	}
}
@media screen and (max-width: 600px) {
	#customer_header #g_header {
		position: absolute;
		z-index: 10000;
		min-width: 0;
		background: none !important;
	}

	#customer_header .hd_h1 { width: 200px; padding-left: 20px;}
}


/* 固定ボタン */
/* #customer_header .fixed_chat {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
} */
#customer_header .fixed_btns {
	position: fixed;
	top: 250px;
	right: 0;
	z-index: 999;
}
#customer_header .fixed_btns li + li {
	margin: 10px 0 0;
}
#customer_header .fixed_btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 200px;
	box-shadow: 0 0 10px #000;
	writing-mode: vertical-rl;
	transition: all .5s;
}
#customer_header .fixed_btns a img {
	margin: 0 0 10px;
}



@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header .fixed_btns a:hover {
		opacity: 1;
	}

}


@media screen and (max-width: 600px) {
	/* #customer_header .fixed_chat {
		bottom: calc(70px + env(safe-area-inset-bottom));
		left: 10px;
		width: 90px;
	} */
	#customer_header .fixed_btns {
		position: fixed;
		inset: auto 0 0;
		z-index: 999;
		display: flex;
		flex-direction: row-reverse;
	}
	#customer_header .fixed_btns li {
		width: 25%;
	}
	#customer_header .fixed_btns li:nth-of-type(2) { width: 50%;}
	#customer_header .fixed_btns li + li {
		margin: 0;
	}
	#customer_header .fixed_btns a {
		flex-direction: column;
		justify-content: flex-end;
		width: 100%;
		height: calc(40px + env(safe-area-inset-bottom));
		padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
		font-size: 12px;
		line-height: 1;
		box-shadow: none;
		writing-mode: horizontal-tb;
	}
	#customer_header .fixed_btns a img {
		margin-bottom: 5px;
	}
	#customer_header .fixed_btns :is(.btn_tel, .btn_menu) {
		background: #fff;
	}
	#customer_header .fixed_btns .btn_tel {
		color: #444;
	}
	#customer_header .fixed_btns .btn_menu {
		justify-content: center;
	}
	#customer_header .fixed_btns .btn_menu span {
		width: 60%;
		max-width: 40px;
		height: 1px;
		background: #795b00;
	}
	#customer_header .fixed_btns .btn_menu span + span {
		margin: 8px 0 0;
	}
}



/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */
#customer_header #g_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	min-width: 1200px;
	height: 100%;
	overflow: auto;
	pointer-events: none;
	background: #1f1f1f;
	opacity: 0;
	transition: opacity 0.5s;
}
#customer_header #g_nav:target {
	pointer-events: auto;
	opacity: 1;
}
#customer_header #g_nav .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 650px;
	min-height: 100%;
	padding: 97px 0;
	margin: 0 auto;
}
#customer_header #g_nav .logo {
	margin: 0 0 50px;
}
#customer_header #g_nav .tel {
	margin: 0 0 40px;
	font-size: 18px;
}
#customer_header #g_nav .tel .tel-link span {
	font-size: 30px;
}
#customer_header #g_nav .main_nav {
	column-count: 3;
	padding: 0 0 15px;
}
#customer_header #g_nav .main_nav li {
	display: inline-block;
	width: 90%;
	break-inside: avoid;
	margin: 0 0 25px;
}
#customer_header #g_nav .links_reserve {
	width: 100%;
	margin: 0 0 25px;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#customer_header #g_nav .links_reserve li + li {
	margin: 20px 0 0;
}

#customer_header #g_nav .links_reserve li:nth-of-type(1) { width: 100%;}
#customer_header #g_nav .links_reserve li:nth-of-type(2),
#customer_header #g_nav .links_reserve li:nth-of-type(3) { width: 49%;}
#customer_header #g_nav .links_reserve li:nth-of-type(4) { display: table; margin: 20px auto 0;}

#customer_header #g_nav .links_reserve li a { background-color: #000; transition: all 0.5s;}

#customer_header #g_nav .links_reserve .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 70px;
	transition: all 0.5s;
	font-size: 16px;
	padding: 0;
}
#customer_header #g_nav .links_reserve .link {
	display: inline-flex;
	align-items: center;
	background-color: inherit;
}
#customer_header #g_nav .links_reserve .link::before {
	margin: 0 5px 0 0;
	content: "▶︎";
	color: #991d4a;
}
#customer_header #g_nav .links_sns {
	display: flex;
	gap: 0 25px;
	align-items: center;
	justify-content: center;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#customer_header #g_nav .links_reserve li a:hover {
		background-color: #555;
		opacity: 1;
	}

	#customer_header #g_nav .links_reserve .link:hover { background-color: inherit; opacity: .5;}

}

@media screen and (max-width: 600px) {
	#customer_header #g_nav {
		min-width: 0;
	}
	#customer_header #g_nav .inner {
		width: 86%;
		padding: 60px 0 calc(80px + env(safe-area-inset-bottom));
	}
	#customer_header #g_nav .btn_menu {
		position: fixed;
		top: 15px;
		right: 15px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
	}
	#customer_header #g_nav .btn_menu span {
		width: 100%;
		height: 1px;
		background: #fff;
	}
	#customer_header #g_nav .btn_menu span:first-child {
		transform: rotate(45deg);
	}
	#customer_header #g_nav .btn_menu span:last-child {
		margin: -1px 0 0;
		transform: rotate(-45deg);
	}
	#customer_header #g_nav .logo {
		width: 172px;
		margin-bottom: 0px;
	}
	#customer_header #g_nav .tel {
		margin-bottom: 25px;
		font-size: 14px;
	}
	#customer_header #g_nav .tel .tel-link span {
		font-size: 24px;
	}
	#customer_header #g_nav .main_nav {
		column-count: 2;
	}
	#customer_header #g_nav .main_nav li {
		margin-bottom: 15px;
	}
	#customer_header #g_nav .links_reserve li + li {
		margin-top: 15px;
	}
	#customer_header #g_nav .links_reserve li:nth-of-type(2), #customer_header #g_nav .links_reserve li:nth-of-type(3) { width: 100%;}
	#customer_header #g_nav .links_reserve .btn {
		min-height: 60px;
		box-sizing: border-box;
	}
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#customer_header #main_img.main_title { position: relative; width: 100%; min-height: 600px; margin-bottom: 50px;}
#customer_header #main_img.main_title { background: url(../img/title_bg.jpg)no-repeat center; background-size: cover;}


#customer_header #main_img.main_title h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	font-size: 46px;
	color: #fff;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
	transform: translate(-50%, -50%);
	line-height: 1.5;
}
#customer_header #main_img.main_title span {
	display: block;
	font-size: 16px;
	line-height: 1.5;
}


@media screen and (max-width: 600px) {
	#customer_header #main_img.main_title { min-height: 350px;}
	#customer_header #main_img.main_title span { font-size: 15px;}
	#customer_header #main_img.main_title h1 { width: 100%; top: 56%; font-size: 30px;}
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#customer_footer #footer_wrap { background: #000;}
#customer_footer #f_logo { padding: 0 0 65px; background: url(../img/f_photo_pc.jpg)no-repeat center center; background-size: cover;}
#customer_footer #f_logo >img { display: table; margin: 0 auto; padding: 90px 0 30px; width: 278px;}
#customer_footer #f_logo >a { display: block; margin: 25px auto 0; width: 25px;}
#customer_footer #f_logo address { text-align: center; line-height: 1.6;}
#customer_footer #f_logo address span:nth-of-type(1) { padding: 0 10px 0 0;}
#customer_footer #f_logo address .tel-link { display: block; margin: 10px 0 0;}
#customer_footer #f_logo address .tel-link span { font-size: 26px;}
#customer_footer #f_logo address p { margin: 10px 0 0;}
#customer_footer #f_logo address p span:nth-of-type(1) { padding: 0 0 0 20px;}

#customer_footer #f_nav { padding: 60px 0;}
#customer_footer #fnav { display: flex; flex-wrap: wrap; width: 92%; max-width: 1200px; margin: 0 auto;}
#customer_footer #fnav li { width: 20%; padding: 0 0 25px;}
#customer_footer #copyright { text-align: center; padding: 0 0 50px;}

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

	#customer_footer #f_logo { padding: 0 0 30px; background: url(../img/f_photo_sp.jpg)no-repeat center center; background-size: cover;}
	#customer_footer #f_logo >img { width: 185px; padding: 60px 0 30px;}
	#customer_footer #f_logo address > span:nth-of-type(1) { display: block; padding: 0;}
	#customer_footer #f_logo address p span:nth-of-type(1) { display: block; padding: 0;}
	#customer_footer #f_logo >a { margin: 15px auto 0;}
	#customer_footer #fnav { width: 90%;}
	#customer_footer #fnav li { display: inline-block;
	width: 50%;
	padding: 0 0 15px;
	break-inside: avoid;}
	#customer_footer #fnav li:nth-of-type(8) { padding: 0;}
	#customer_footer #copyright { padding: 0 0 100px;}

}
@media screen and (max-width: 480px) {
	/* #f_nav li { width: 100%; margin-right: 0;} */
}


/* ---------------------------------------------------
	Link
------------------------------------------------------ */
.link-run {
	position: relative;
	padding: 0 0 5px;
	color: inherit;
	text-decoration: none;
}
.link-run::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: "";
	background: currentcolor;
	transition: transform 0.5s;
	transform: scaleX(0);
	transform-origin: left center;
}

@media (hover: hover) {
	.link-run:hover {
		opacity: 1;
	}
	.link-run:hover::after {
		transform: scaleX(1);
	}
}
.link-run.run-center::after {
	transform-origin: center;
}
.link-run.run-right::after {
	transform-origin: right center;
}
.link-run.run-current::after {
	transform: scaleX(1);
}
.link-run.run-revers::after {
	transform: scaleX(1);
}

@media (hover: hover) {
	.link-run.run-revers:hover::after {
		transform: scaleX(0);
	}
}


/* clear
------------------------------------------------------ */

#header:after,
#nav_wrap:after,
#gnav ul:after,
#contents_wrap:after,
#footer:after { content: "."; display: block; height: 0px; clear: both; visibility: hidden; font-size: 0;}


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



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