@charset "utf-8";
/* ===================================================
	Base CSS
====================================================== */
body {
	min-width: 1200px;
	background: #fdfae2;
	color: #614e00;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

header,
nav,
footer,
section,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
a {
	box-sizing: border-box;
}

a {
	color: #614e00;
	outline: none;
	text-decoration: none;
	transition: opacity .5s;
}
a.link_txt_line {
	text-decoration: underline;
}

.ofi {
	object-fit: cover;
}
.br_sp,
.view_sp {
	display: none;
}

@media screen and (hover:hover) and (min-width: 601px) {
	a:hover {
		opacity: .8;
	}
	a.link_txt:hover {
		opacity: 1;
		text-decoration: underline;
	}
	a.link_txt_line:hover {
		opacity: 1;
		text-decoration: 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;
	}
}


/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
/* コンテンツ幅 */
.inner_md {
	width: 1200px;
	max-width: 96%;
	margin: 0 auto;
}

@media screen and (max-width: 600px) {
	.inner_md {
		width: 86%;
	}
}

/* 英語フォント */
.font_en {
	font-family: "Bellefair", serif;
	font-weight: normal;
}

/* ボタン */
.cmn_btn {
	position: relative;
	z-index: 0;
	background: #fcf19b;
}
.cmn_btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;

	transform: scale(0,1);
	transform-origin: right top;
	transition: transform .5s;
}
@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_btn:hover {
		opacity: 1;
	}
	.cmn_btn:hover::before {
		transform: scale(1, 1);
		transform-origin: left top;
	}
}

.cmn_btn_reserve {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	font-size: 18px;
	letter-spacing: 0.1em;
}
.cmn_btn_reserve .en {
	font-size: 12px;
}
.cmn_btn_reserve::before {
	background: rgb(74, 55, 13, .2);
}


/* ---------------------------------------------------
	Header
------------------------------------------------------ */
@keyframes fix_opacity {
	0% {
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
}
@keyframes close_nav {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
#g_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-width: 1200px;
	padding: 30px 35px;
	top: 0;
	left: 0;
	z-index: 999;
}
#g_header .logo { position: relative; }
#g_header .logo .gr { opacity: 0; position: absolute; inset: 0; }
#g_header .cmn_btn_reserve {
	width: 240px;
	height: 70px;
}
#g_header .cmn_btn_reserve .en {
	margin: 0 0 0 10px;
}

#g_header.anim {
	animation: fix_opacity 1s both;
}
#g_header.close_nav {
	animation: close_nav .7s both;
}

#g_header.unfixed {
	position: absolute;
}
#g_header.unfixed .cmn_btn_reserve {
	background: none;
	border: 1px solid rgba(244, 244, 244, .5);
	color: #f4f4f4;
}
#g_header.unfixed .cmn_btn_reserve::before {
	background: rgba(255,255,255,.15);
}
#g_header.anim .logo .gr { opacity: 1; }
#g_header.anim .logo .wh { opacity: 0; }

@media screen and (max-width: 600px) {
	#g_header {
		min-width: 0;
		padding: 20px 6%;
	}
	#g_header .logo {
		width: min(28vw, 120px);
	}
	#g_header .cmn_btn_reserve {
		width: fit-content;
		height: min(40px, 10vw);
		line-height: 1;
		font-size: min(16px, 4vw);
		padding: 10px 20px;
	}
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#main_img {
	position: relative;
	z-index: 0;
}


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#g_footer {
	padding: 110px 0 130px;
	border-top: 4px solid #f9db00;
	background: #614e00;
	color: #ffffff;
}
.ft_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#g_footer .logo_col address {
	margin: 30px 0 40px;
	letter-spacing: 0.16em;
	line-height: 1.7;
}
#g_footer .link_col {
	width: 430px;
}
#g_footer .link_col .cmn_btn_reserve {
	width: 100%;
	height: 90px;
}
#g_footer .link_col .cmn_btn_reserve .en {
	margin: 0 0 0 10px;
}
#g_footer .link_col dl {
	margin-top: 40px;
	letter-spacing: 0.16em;
}
#g_footer .link_col dt {
	padding: 0 0 0 18px;
	margin: 0 0 10px;
	position: relative;
	z-index: 0;
}
#g_footer .link_col dd + dt { margin-top: 20px; }
#g_footer .link_col dt::before {
	content: "";
	width: 15px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;

	background: rgba(180, 164, 125, .5);
}
#g_footer .link_col .tel-link span {
	font-size: 26px;
	letter-spacing: 0.06em;
}
#g_footer .link_col .tel-link {
	color: #fff;
	line-height: 1;
}

#g_footer .link_col ul {
	display: flex;
	align-items: center;
}
#g_footer .link_col li + li {
	margin: 0 0 0 20px;
}

#g_footer .copy {
	width: 100%;
	font-size: 11px;
	pointer-events: none;
}

@media screen and (max-width: 600px) {
	#g_footer {
		padding: 80px 0 calc(20px + env(safe-area-inset-bottom));
	}
	.ft_inner {
		display: block;
	}
	#g_footer .logo_col {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}
	#g_footer .logo_col .logo {
		width: 150px;
	}
	#g_footer .logo_col address {
		margin: 20px 0 30px;
		letter-spacing: 0.05em;
	}
	#g_footer .link_col {
		width: 100%;
	}
	#g_footer .link_col .cmn_btn_reserve {
		height: 60px;
	}
	#g_footer .link_col dl { margin-top: 35px; letter-spacing: 0.05em;}
	#g_footer .link_col dd + dt {
		margin: 20px 0 0;
	}
	#g_footer .link_col dt { margin-bottom: 0; }
	#g_footer .link_col ul {
		padding: 5px 0 0;
	}

	#g_footer .copy {
		margin: 30px 0 0;
		text-align: center;
	}
}


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


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


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