@charset "utf-8";

/* ===================================================
	Base CSS
====================================================== */
:root {
	--bg-reserve: #8e7228;
	--bg-reserve_hover: #a8882f;
	--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;
	}
}*/

/* base layout */


#YadoRaku {
	overflow: hidden;
	width: 100%;
	max-width: 950px;
	margin:0 auto;
	/*min-width: 1200px;*/
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.8;
	color: #fff;
	letter-spacing: 0.05em;
	background: #2a2a2a;
	text-size-adjust: 100%;
}
/*
input,
select,
textarea {
	font-size: 16px;
}
.pos_fix {
	overflow: hidden;
}
header,
nav,
footer,
section,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
a {
	box-sizing: border-box;
}*/
#YadoRaku a {
	color: #fff;
	text-decoration: none;
	outline: none;
	transition: opacity 0.5s;
}
a.link_txt_line {
	text-decoration: underline;
}
button {
	transition: opacity 0.5s;
}
.ofi {
	object-fit: cover;
}
.br_sp,
.view_sp {
	display: none;
}
/*
@media screen and (hover: hover) and (min-width: 601px) {
	a:hover,
	button:hover {
		opacity: 0.6;
	}
	a.link_txt:hover {
		text-decoration: underline;
		opacity: 1;
	}
	a.link_txt_line:hover {
		text-decoration: none;
		opacity: 1;
	}
}
@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;
	}
}
*/
/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
/* コンテンツ幅 */
.inner_lg {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}
.inner_md {
   /* width: 100%;*/
	max-width: 910px;
	padding:60px 20px;
	margin: 0 auto;
}

/*@media screen and (max-width: 600px) {
	.inner_lg,
	.inner_md {
		width: 86%;
		margin: 0 auto;
	}
}*/

/* 英語フォント */
.cmn_font_en {
	font-family: "Cormorant Garamond", serif;
	font-style: normal;
	font-weight: 300;
}

/* 左から下線アニメーション付きリンク */
.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_txt_lg {
	font-size: var(--font-lg);
	line-height: 1.6;
}
.cmn_txt_md {
	font-size: var(--font-md);
	line-height: 1.6;
}

/* 予約関連ボタン */
.cmn_btn_reserve {
	background: var(--bg-reserve);
	transition: background 0.5s;
}
.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: 1;
	}
	.cmn_btn_daytrip:hover {
		background: var(--bg-daytrip_hover);
		opacity: 1;
	}
}*/

/* 汎用ボタン */
.cmn_btn {
	display: flex;
	gap: 0 10px;
	align-items: center;
	/*width: 300px;*/
	max-width: 100%;
	height: 60px;
	padding: 10px 20px 10px 30px;
	background: rgba(68, 68, 68, 0.5);
	border: 1px solid #666;
	transition: background 0.5s;
}
.cmn_btn::after {
	position: relative;
	right: 0;
	z-index: 0;
	flex-shrink: 0;
	width: 30px;
	height: 5px;
	margin: 0 0 0 auto;
	content: "";
	border-right: 1px solid #a58f54;
	border-bottom: 1px solid #a58f54;
	transition: right 0.5s;
	transform: skewX(-120deg);
}
.cmn_btn.clr_wht {
	background: rgba(255, 255, 255, 0.8);
}
.cmn_btn.clr_wht::after {
	border-color: #8e7228;
}
/*
@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_btn:hover {
		background: rgba(68, 68, 68, 0);
		opacity: 1;
	}
	.cmn_btn:hover::after {
		right: -5px;
	}
}*/

/* リード */
.cmn_lead {
	padding: 60px 0 0;
	text-align: center;
}
.cmn_lead .cap {
	font-size: var(--font-lg);
	line-height: 1.6;
	color: var(--txt-point);
}
.cmn_lead .cap:not(:last-child) {
	margin: 0 0 25px;
}
/*
@media screen and (max-width: 600px) {
	.cmn_lead {
		text-align: left;
	}
	.cmn_lead .cap {
		text-align: center;
	}
}*/

/* cnav */
.cmn_cnav {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}
.cmn_cnav::after,
.cmn_cnav li {
	width: calc((100% - 60px) / 3);
}
.cmn_cnav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	/*height: 100%;*/
	min-height: 75px;
	padding: 15px 0;
	line-height: 1.6;
	text-align: center;
	background: rgba(68, 68, 68, 0.35);
	border: 1px solid #666;
	transition: background 0.5s;
}
.cmn_cnav li a::after {
	position: relative;
	bottom: 0;
	z-index: 0;
	width: 10px;
	height: 10px;
	content: "";
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transition: bottom 0.5s;
	transform: rotate(45deg);
}
.cmn_cnav li a > span {
	margin: auto 0;
}
/*
@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_cnav li a:hover {
		background: rgba(68, 68, 68, 0);
		opacity: 1;
	}
	.cmn_cnav li a:hover::after {
		bottom: -3px;
	}
}
@media screen and (max-width: 600px) {
	.cmn_cnav {
		gap: 10px;
	}
	.cmn_cnav::after,
	.cmn_cnav li {
		width: calc((100% - 10px) / 2);
	}
	.cmn_cnav li a {
		min-height: 60px;
		padding: 10px 0;
		font-size: 14px;
	}
	.cmn_cnav li a::after {
		width: 5px;
		height: 5px;
	}
}
*/
/* 表型dl */
.cmn_dl {
	display: grid;
	grid-template-columns: 220px 1fr;
	border-top: 1px solid #666;
}
.cmn_dl > dt,
.cmn_dl > dd {
	display: flex;
	align-items: center;
	padding: 20px 30px;
	border-bottom: 1px solid #666;
}
.cmn_dl > dt {
	background: #333;
}
/*
@media screen and (max-width: 600px) {
	.cmn_dl {
		display: block;
	}
	.cmn_dl > dt,
	.cmn_dl > dd {
		padding: 10px;
	}
}
*/
/* slick */
.slick .slick-slide div {
	vertical-align: bottom;
}
.slick .slick-dots {
	position: absolute;
	bottom: -40px;
	height: 18px;
	font-size: 0;
	line-height: 0;
}
.slick .slick-dots li {
	width: 18px;
	height: 18px;
	margin: 0 5px;
}
.slick .slick-dots li button {
	width: 18px;
	height: 0;
	padding: 18px 0 0;
	overflow: hidden;
	background: #aaa;
	border-radius: 50%;
	opacity: 1;
	transition: transform 0.5s;
	transform: scale(0.5);
}
.slick .slick-dots li button::before {
	content: none;
}
.slick .slick-dots li.slick-active button {
	background: #fff;
	transform: scale(1);
}
/*
@media screen and (max-width: 600px) {
	.slick .slick-dots {
		bottom: -25px;
		height: 12px;
	}
	.slick .slick-dots li {
		width: 12px;
		height: 12px;
		margin: 0 3px;
	}
	.slick .slick-dots li button {
		width: 12px;
		padding-top: 12px;
	}
}
*/
/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#g_header {
	/*position: fixed;*/
	top: 0;
	left: 0;
	z-index: 10001;
	display: flex;
	align-items: center;
	width: 950px;
	max-width: 950px;
	height: 60px;
	margin:0 auto;
	/* min-width: 1200px; */
	padding: 15px 0;
	transition: background 0.5s;
}
#g_header.scroll {
	background: rgba(31, 31, 31, 0.9);
}
#g_header .logo {
	padding: 0 0 0 20px;
	filter: drop-shadow(0 0 10px #000);
	transition: opacity 0.5s;
}
#g_header .h_nav {
	display: flex;
	gap: 0 40px;
	align-items: center;
	margin: 0 20px 0 auto;
	transition: opacity 0.5s;
}
#g_header .h_nav a {
	position: relative;
	z-index: 0;
	padding: 8px 0;
	text-shadow: 0 0 10px #000;
}
#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;
}
#g_header .btn_menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	margin: 0 40px 0 50px;
}
#g_header .btn_menu span {
	width: 100%;
	height: 1px;
	background: #fff;
	transition: opacity 0.5s, transform 0.5s, margin 0.5s;
}
#g_header .btn_menu span + span {
	margin: 10px 0 0;
}
#g_header .btn_menu.active span + span {
	margin-top: -1px;
}
#g_header .btn_menu.active span:first-child {
	transform: rotate(45deg);
}
#g_header .btn_menu.active span:nth-child(2) {
	opacity: 0;
}
#g_header .btn_menu.active span:last-child {
	transform: rotate(-45deg);
}
#g_header:has(.btn_menu.active) :is(.logo, .h_nav) {
	opacity: 0;
}
/*
@media screen and (hover: hover) and (min-width: 601px) {
	#g_header .h_nav a:hover {
		opacity: 1;
	}
	#g_header .h_nav a:hover::after {
		right: 0;
		left: 0;
	}
}
@media screen and (max-width: 600px) {
	#g_header {
		position: absolute;
		z-index: 10000;
		min-width: 0;
		background: none !important;
	}
	#g_header .logo {
		width: 120px;
		padding-left: 20px;
	}
}*/

/* 固定ボタン */
#YadoRaku .fixed_chat {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 999;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
#YadoRaku .fixed_btns {
	position: absolute;
	top: 50px;
    left: 890px;
	padding: 0;
	z-index: 999;
}
.fixed_btns li + li {
	margin: 10px 0 0;
}
.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;
}
.fixed_btns a img {
	margin: 0 0 10px;
}
/*
@media screen and (max-width: 600px) {
	.fixed_chat {
		bottom: calc(70px + env(safe-area-inset-bottom));
		left: 10px;
		width: 70px;
	}
	.fixed_btns {
		position: fixed;
		inset: auto 0 0;
		z-index: 999;
		display: flex;
		flex-direction: row-reverse;
	}
	.fixed_btns li {
		width: 100%;
	}
	.fixed_btns li + li {
		margin: 0;
	}
	.fixed_btns a {
		flex-direction: column;
		justify-content: flex-end;
		width: 100%;
		height: calc(60px + 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;
	}
	.fixed_btns a img {
		margin-bottom: 5px;
	}
	.fixed_btns :is(.btn_tel, .btn_menu) {
		background: #fff;
	}
	.fixed_btns .btn_tel {
		color: #444;
	}
	.fixed_btns .btn_menu {
		justify-content: center;
	}
	.fixed_btns .btn_menu span {
		width: 60%;
		max-width: 40px;
		height: 1px;
		background: #795b00;
	}
	.fixed_btns .btn_menu span + span {
		margin: 8px 0 0;
	}
}*/

/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */
#g_nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 950px;
	margin:0 auto;
	/*min-width: 1200px;*/
	height: 100%;
	overflow: auto;
	pointer-events: none;
	background: #1f1f1f;
	opacity: 0;
	transition: opacity 0.5s;
}
#g_nav.active {
	pointer-events: auto;
	opacity: 1;
}
#g_nav .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 650px;
	min-height: 100%;
	padding: 100px 0;
	margin: 0 auto;
}
#g_nav .logo {
	margin: 0 0 50px;
}
#g_nav .tel {
	margin: 0 0 40px;
	font-size: 18px;
}
#g_nav .tel .tel-link span {
	font-size: 30px;
}
#g_nav .main_nav {
	column-count: 3;
	padding: 0 0 15px;
}
#g_nav .main_nav li {
	display: inline-block;
	width: 100%;
	break-inside: avoid;
	margin: 0 0 25px;
}
#g_nav .links_reserve {
	width: 100%;
	margin: 0 0 25px;
	text-align: center;
}
#g_nav .links_reserve li + li {
	margin: 20px 0 0;
}
#g_nav .links_reserve .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 70px;
}
#g_nav .links_reserve .link {
	display: inline-flex;
	align-items: center;
}
#g_nav .links_reserve .link::before {
	width: 10px;
	height: 2px;
	margin: 0 5px 0 0;
	content: "";
	background: #a58f54;
}
#g_nav .links_sns {
	display: flex;
	gap: 0 25px;
	align-items: center;
	justify-content: center;
}
/*
@media screen and (max-width: 600px) {
	#g_nav {
		min-width: 0;
	}
	#g_nav .inner {
		width: 86%;
		padding: 80px 0 calc(80px + env(safe-area-inset-bottom));
	}
	#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;
	}
	#g_nav .btn_menu span {
		width: 100%;
		height: 1px;
		background: #fff;
	}
	#g_nav .btn_menu span:first-child {
		transform: rotate(45deg);
	}
	#g_nav .btn_menu span:last-child {
		margin: -1px 0 0;
		transform: rotate(-45deg);
	}
	#g_nav .logo {
		width: 50px;
		margin-bottom: 20px;
	}
	#g_nav .tel {
		margin-bottom: 25px;
		font-size: 14px;
	}
	#g_nav .tel .tel-link span {
		font-size: 24px;
	}
	#g_nav .main_nav {
		column-count: 2;
	}
	#g_nav .main_nav li {
		margin-bottom: 15px;
	}
	#g_nav .links_reserve li + li {
		margin-top: 15px;
	}
	#g_nav .links_reserve .btn {
		min-height: 60px;
	}
}*/

/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#main_img {
	position: relative;
	z-index: 0;
}
#main_img .ofi {
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 600px;
}
#main_img .tit_col {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-shadow: 0 0 10px #000;
}
#main_img .tit_col h1 {
	margin: 0 0 5px;
	font-size: 46px;
	line-height: 1.4;
}
#main_img .tit_col .sub {
	font-size: 22px;
	line-height: 1.6;
}
/*
@media screen and (max-width: 600px) {
	#main_img .ofi {
		min-height: 350px;
	}
	#main_img .tit_col h1 {
		font-size: 40px;
	}
	#main_img .tit_col .sub {
		font-size: 16px;
	}
}
*/
/* ---------------------------------------------------
	Contents
------------------------------------------------------ */
#breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 3px 10px;
	align-items: center;
	margin: 10px auto;
}
#breadcrumb li {
	display: flex;
	gap: 0 10px;
	align-items: flex-start;
}
#breadcrumb li + li::before {
	content: "＞";
}

/* error */
#error section {
	padding-bottom: 150px;
}
#error section .cmn_btn {
	margin: 30px auto 0;
}
/*
@media screen and (max-width: 600px) {
	#error section {
		padding-bottom: 60px;
	}
	#error section .cmn_btn {
		margin: 25px auto 0;
	}
}
*/
/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#g_footer {
	display: flex;
	/*width: 100%;*/
	max-width: 950px;
	margin:0 auto;
	gap: 0 40px;
	justify-content: space-between;
	padding: 90px 10px 70px;
	border-image-source: linear-gradient(#1f1f1f, #1f1f1f); /* 色 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
#g_footer .address_col {
	width: 360px;
}
#g_footer .address_col address {
	font-style: normal !important;
	margin: 0 0 10px;
}
#g_footer .address_col address .tel-link span {
	font-size: 26px;
}
#g_footer .address_col .links_sns {
	display: flex;
	gap: 0 25px;
	align-items: center;
	margin: 30px 0 0;
}
#g_footer .nav_col {
	width: 590px;
}
#g_footer .main_nav {
	column-count: 3;
	padding: 0 0 30px;
}
#g_footer .main_nav li {
	display: inline-block;
	width: 100%;
	break-inside: avoid;
	margin: 0 0 15px;
}

#g_footer .main_nav li a:hover{
border-bottom:1px solid #fff;
padding: 8px 0;
}
#g_footer .copyright {
	margin: 20px 0 0;
	text-align: right;
}
/*
@media screen and (max-width: 600px) {
	#g_footer {
		display: block;
		padding: 60px 0 calc(80px + env(safe-area-inset-bottom));
	}
	#g_footer .logo {
		width: 60px;
		margin: 0 auto 25px;
		text-align: center;
	}
	#g_footer .address_col {
		width: auto;
		margin: 0 0 40px;
		text-align: center;
	}
	#g_footer .address_col .links_sns {
		justify-content: center;
	}
	#g_footer .nav_col {
		width: auto;
	}
	#g_footer .main_nav {
		column-count: 2;
		padding-bottom: 25px;
	}
	#g_footer .bnr {
		text-align: center;
	}
	#g_footer .copyright {
		text-align: center;
	}
}*/

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

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


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