@charset "utf-8";

/* ===================================================
	Reset
====================================================== */
#customer_header *,
#customer_footer * {
	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 からの継承で記述してください。
====================================================== */
body {
	min-width: 1200px; /* background: #f3f1eb; */
	color: #9f8a57;
	background-color: #fff;
}
#customer_header,
#customer_footer {
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1.8;
	letter-spacing: 0.28em;
	text-size-adjust: 100%;
}
#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 {
	box-sizing: border-box;
	width: 1200px;
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}
#customer_header a,
#customer_footer a {
	color: #9f8a57;
	text-decoration: none;
	transition: opacity 0.5s;
}
#customer_header a:hover,
#customer_footer a:hover {
	opacity: 0.75;
}
#customer_header img,
#customer_footer img {
	max-width: 100%;
	height: auto;
}
#customer_header .br_sp,
#customer_footer .br_sp,
#customer_header .view_sp,
#customer_footer .view_sp {
	display: none;
}

@media screen and (orientation: landscape) {
	body {
		width: 100%;
	}
}
@media screen and (min-width: 769px) {
	#customer_header .tel-link,
	#customer_footer .tel-link {
		pointer-events: none;
	}
}
@media screen and (max-width: 768px) {
	body {
		min-width: 0;
	}
	#customer_header,
	#customer_footer {
		font-size: 14px;
		letter-spacing: 0.18em;
	}
	#customer_header .br_pc,
	#customer_footer .br_pc,
	#customer_header .view_pc,
	#customer_footer .view_pc {
		display: none;
	}
	#customer_header .view_sp,
	#customer_footer .view_sp {
		display: block;
	}
	#customer_header .br_sp,
	#customer_footer .br_sp,
	#customer_header span.view_sp,
	#customer_footer span.view_sp {
		display: inline;
	}
}

/* Header
------------------------------------------------------ */
#customer_header #g_header {
	position: relative;
	z-index: 98;
	box-sizing: border-box;
	width: 100%;
	min-width: 1200px;
	padding: 0 135px 0 0;
	line-height: 1.5;
	background: #fff;
	border-bottom: 1px solid #cdcbcb;
}
#customer_header #g_header > div {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	height: 94px;
	padding: 10px 0;
}
#customer_header #g_header .hd_logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 15px 0 35px;
}
#customer_header #g_header .hd_nav {
	display: flex;
	align-items: center;
	margin: 0 0 0 auto;
	font-size: 15px;
}
#customer_header #g_header .hd_nav li {
	box-sizing: border-box;
}
#customer_header #g_header .hd_nav li + li {
	margin-left: 20px;
}
#customer_header #g_header .hd_nav li a {
	position: relative;
	padding: 5px;
	color: #72a8c0;
	letter-spacing: 0.1em;
}
#customer_header #g_header .hd_nav li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background: #72a8c0;
	transition: width 0.5s;
}

@keyframes h-top {
	0% {
		transform: translateY(0);
	}
	80% {
		transform: translateY(-100%);
	}
}
@keyframes h-fixed {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}
#customer_header #g_header.fixed {
	padding: 0 135px 0 0;
	background: #fff;
	animation: h-fixed 1s;
}
#customer_header #g_header.fixed li a {
	color: #72a8c0;
}
#customer_header #g_header.fixed .hd_logo {
	display: flex;
}
#customer_header #g_header.fixed .hd_nav li a::after {
	background: #72a8c0;
}
#customer_header #g_header.top {
	transition: opacity 0.7s;
	animation: h-top 1s;
}

@media screen and (hover: hover) {
	#customer_header #g_header .hd_nav li a:hover {
		opacity: 1;
	}
	#customer_header #g_header .hd_nav li a:hover::after {
		width: 100%;
	}
}
@media screen and (max-width: 1200px) {
	#customer_header #g_header .hd_nav li + li {
		margin-left: 15px;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #g_header {
		min-width: 0;
		padding: 0 90px 0 10px;
	}
	#customer_header #g_header > div {
		height: 55px;
	}
	#customer_header #g_header .hd_nav {
		display: none;
		pointer-events: none;
	}
	#customer_header #g_header .hd_logo {
		width: 30%;
		max-width: 100px;
		margin: 0;
	}
	#customer_header #g_header.fixed {
		padding: 0 50px 0 10px;
	}
}

/* G-nav
------------------------------------------------------ */
#customer_header #gnav_wrap {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	box-sizing: border-box;
	width: 385px;
	height: 100vh;
	padding: 95px 25px 25px;
	overflow: auto;
	line-height: 1.5;
	pointer-events: none;
	background: linear-gradient(to bottom, #7ca9be 0%, #accad7 100%);
	opacity: 0;
	transition: opacity 0.5s;
}
#customer_header #side_menu:target #gnav_wrap {
	pointer-events: auto;
	opacity: 1;
}
#customer_header #gnav {
	position: relative;
	overflow: auto;
}
#customer_header #gnav ul li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
#customer_header #gnav ul li a {
	position: relative;
	display: block;
	padding: 5px 0;
	font-size: 14px;
	color: #fff;
	letter-spacing: 0.04em;
}
#customer_header #gnav ul li a::after {
	position: absolute;
	top: calc(50% - 5px);
	right: 10px;
	box-sizing: border-box;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: right 0.5s;
	transform: rotate(45deg);
}
#customer_header #gnav ul .gnav_reserve {
	padding: 0;
	margin: 0 0 20px;
	border: none;
}
#customer_header #gnav ul .gnav_reserve a {
	display: block;
	padding: 10px 0;
	font-size: 16px;
	color: #72a8c0;
	text-align: center;
	background: #fff;
}

@media screen and (hover: hover) {
	#customer_header #gnav ul li:not(.gnav_reserve) a:hover {
		opacity: 1;
	}
	#customer_header #gnav ul li:not(.gnav_reserve) a:hover::after {
		right: 3px;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #gnav_wrap {
		width: 100%;
		padding: 60px 8%;
	}
	#customer_header #gnav ul li {
		padding: 5px 0;
	}
	#customer_header #gnav ul li a {
		font-size: 12px;
		letter-spacing: 0.02em;
	}
	#customer_header #gnav ul li a::after {
		position: absolute;
		top: calc(50% - 5px);
		width: 10px;
		height: 10px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
	}
	#customer_header #gnav ul .gnav_reserve {
		padding: 0;
		margin: 0 0 20px;
		border: none;
	}
	#customer_header #gnav ul .gnav_reserve a {
		padding: 10px 0;
		font-size: 14px;
	}
	#customer_header #gnav ul .gnav_reserve a::after {
		border-top: 1px solid #b7a886;
		border-right: 1px solid #b7a886;
	}
}

/* Side_menu
------------------------------------------------------ */
#customer_header #side_menu {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	min-width: 1200px;
}
#customer_header #open_menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-self: flex-end;
	justify-content: center;
	width: 100px;
	height: 94px;
	padding: 0 24px;
	cursor: pointer;
	background: linear-gradient(to right, #7ca9be 0%, #accad7 100%);
	transition: width 0.6s, padding 0.6s;
}
#customer_header #open_menu .bar {
	position: relative;
	width: 52px;
	height: 25px;
}
#customer_header #open_menu .bar::before,
#customer_header #open_menu .bar span::before,
#customer_header #open_menu .bar span::after {
	position: absolute;
	display: block;
	width: 52px;
	height: 1px;
	content: "";
	background: #fff;
	transition: width 0.5s cubic-bezier(0.4, 0.6, 0.6, 1), transform 0.5s linear, opacity 0.4s;
}
#customer_header #open_menu .bar::before {
	top: 0;
}
#customer_header #open_menu .bar span {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
#customer_header #open_menu .bar span::before {
	top: 50%;
	transform: translateY(-50%);
}
#customer_header #open_menu .bar span::after {
	bottom: 0;
	width: 51%;
}
#customer_header #open_menu > span:not(.bar) {
	display: block;
	margin-top: 12px;
	font-size: 11px;
	color: #fff;
	text-align: center;
	letter-spacing: 0.2em;
	opacity: 1;
	transition: opacity 0.5s;
}
#customer_header #side_menu:target #open_menu {
	position: fixed;
	background: transparent;
}
#customer_header #side_menu:target #open_menu .bar::before {
	top: 12px;
	transform: rotate(30deg);
}
#customer_header #side_menu:target #open_menu .bar span::before {
	opacity: 0;
}
#customer_header #side_menu:target #open_menu .bar span::after {
	bottom: 12px;
	width: 100%;
	transform: rotate(-30deg);
}
#customer_header #side_menu:target #open_menu > span:not(.bar) {
	opacity: 0;
}
#customer_header #side_menu #close_menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
	display: none;
	width: 100px;
	height: 94px;
	font-size: 0;
	pointer-events: none;
}
#customer_header #side_menu:target #close_menu {
	display: block;
	pointer-events: auto;
}

@media screen and (hover: hover) {
	#customer_header #open_menu:hover .bar span::after {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	#customer_header #side_menu {
		min-width: 0;
	}
	#customer_header #open_menu {
		width: 70px;
		height: 55px;
		padding: 0 20px;
	}
	#customer_header #open_menu .bar {
		width: 30px;
		height: 13px;
		margin: 0 auto;
	}
	#customer_header #open_menu .bar::before,
	#customer_header #open_menu .bar span::before,
	#customer_header #open_menu .bar span::after {
		width: 30px;
	}
	#customer_header #open_menu .bar span::after {
		width: 51%;
	}
	#customer_header #open_menu > span:not(.bar) {
		margin-top: 7px;
		font-size: 8px;
		line-height: 1;
	}
	#customer_header #side_menu:target #open_menu {
		background: transparent;
	}
	#customer_header #side_menu:target #open_menu .bar::before {
		top: 6px;
	}
	#customer_header #side_menu:target #open_menu .bar span::after {
		bottom: 6px;
	}
	#customer_header #side_menu #close_menu {
		width: 70px;
		height: 55px;
	}
}

/* breadcrumb
------------------------------------------------------ */
#customer_footer #breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 30px 25px;
	font-size: 13px;
}
#customer_footer #breadcrumb li {
	display: flex;
	align-items: center;
	max-width: 100%;
}
#customer_footer #breadcrumb li + li::before {
	flex-shrink: 0;
	width: 15px;
	height: 1px;
	margin: 0 10px;
	content: "";
	background: rgba(168, 151, 109, 0.5);
}
#customer_footer #breadcrumb li a {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	#customer_footer #breadcrumb {
		padding: 10px 7%;
	}
	#customer_footer #breadcrumb li + li::before {
		width: 10px;
		margin: 0 5px;
	}
}

/* Footer
------------------------------------------------------ */
#customer_footer #footer {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: min(90%, 1344px);
	padding: 125px 0 60px 30px;
	margin: 0 auto;
	line-height: 1.5;
	color: #fff;
	border-image-source: linear-gradient(#afa081, #afa081); /* 色 */
	border-image-slice: 0 fill; /* 変更しない */
	border-image-outset: 0 100vw; /* どれだけはみ出すか上下左右 */
}
#customer_footer #footer::after {
	order: 2;
	width: 100%;
	content: "";
}
#customer_footer #footer a {
	color: #fff;
}
#customer_footer #f_logo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: min(29%, 380px);
	margin: 0 0 80px;
}
#customer_footer #f_logo p {
	width: 100%;
	padding: 5px 10px;
	margin: 0 0 45px;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
}
#customer_footer #f_logo .rin {
	width: min(41%, 150px);
}
#customer_footer #f_logo .yuyu {
	width: min(39%, 143px);
}
#customer_footer #f_logo img {
	display: block;
}
#customer_footer #f_nav {
	width: min(32%, 420px);
	margin: 0 0 95px auto;
}
#customer_footer #f_nav ul {
	column-count: 2;
}
#customer_footer #f_nav li {
	display: inline-block;
	width: 100%;
	margin: 0 0 15px;
	break-inside: avoid;
}
#customer_footer #f_nav li a {
	position: relative;
	display: inline-block;
	padding: 3px 0;
	font-size: 14px;
	line-height: 1.2;
}
#customer_footer #f_nav li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	content: "";
	background: #fff;
	transition: width 0.5s;
}
#customer_footer #f_add {
	width: auto;
	margin: 0 0 0 30px;
}
#customer_footer #f_add .f_tel {
	font-size: 12px;
}
#customer_footer #f_add .f_tel .tel-link {
	font-size: 20px;
}
#customer_footer #f_add .f_tel > span {
	display: block;
}
#customer_footer #f_add .f_tel > span .link-none {
	text-decoration: none;
	pointer-events: none;
}
#customer_footer #f_add address {
	margin: 40px 0 0;
	font-size: 13px;
	line-height: 2;
}
#customer_footer #f_add address span {
	display: block;
}
#customer_footer #f_snav {
	order: 3;
	width: 80%;
}
#customer_footer #f_snav ul {
	display: flex;
	align-items: center;
}
#customer_footer #f_snav li a {
	display: block;
	font-size: 13px;
	line-height: 1.2;
}
#customer_footer #f_sns {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	order: 3;
	width: 20%;
	margin: 0 0 0 auto;
}
#customer_footer #f_sns li + li {
	margin-left: 25px;
}
#customer_footer #f_sns li a {
	display: block;
}

@media screen and (hover: hover) {
	#customer_footer #f_nav li a:hover {
		opacity: 1;
	}
	#customer_footer #f_nav li a:hover::after {
		width: 100%;
	}
}
@media screen and (min-width: 601px) {
	#customer_footer #f_snav li + li {
		padding-left: 25px;
		margin-left: 25px;
		border-left: 1px solid #fff;
	}
}
@media screen and (max-width: 768px) {
	#customer_footer #footer {
		flex-direction: column;
		width: 76%;
		padding: 80px 0 60px;
	}
	#customer_footer #footer a {
		color: #fff;
	}
	#customer_footer #f_logo {
		justify-content: center;
		width: 100%;
		margin: 0 auto;
	}
	#customer_footer #f_logo a + a {
		margin: 0 0 0 10%;
	}
	#customer_footer #f_nav {
		width: 100%;
		margin: 60px 0 0;
	}
	#customer_footer #f_nav li {
		margin-bottom: 10px;
	}
	#customer_footer #f_nav li a {
		padding: 2px 0;
		font-size: 12px;
	}
	#customer_footer #f_add {
		width: 100%;
		margin: 40px 0 0;
	}
	#customer_footer #f_add .f_tel {
		font-size: 10px;
	}
	#customer_footer #f_add .f_tel .tel-link {
		font-size: 18px;
		text-decoration: underline;
	}
	#customer_footer #f_add address {
		margin-top: 20px;
		font-size: 12px;
		line-height: 1.8;
	}
	#customer_footer #f_snav {
		width: 100%;
		margin-top: 40px;
	}
	#customer_footer #f_snav ul {
		flex-wrap: wrap;
	}
	#customer_footer #f_snav li {
		margin-bottom: 15px;
	}
	#customer_footer #f_snav li:not(:last-child) {
		padding-right: 15px;
		margin-right: 15px;
		border-right: 1px solid #fff;
	}
	#customer_footer #f_snav li a {
		font-size: 12px;
	}
	#customer_footer #f_sns {
		width: 100%;
		margin-top: 40px;
	}
	#customer_footer #f_sns li + li {
		margin-left: 15px;
	}
	#customer_footer #f_sns li a img {
		height: 20px;
	}
}

/* ---------------------------------------------------
	更新履歴
------------------------------------------------------



------------------------------------------------------ */