@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #000;
	font-size: 1.4rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.05em;
}
::-moz-selection {
	color: #fff;
	background-color: #5E5E5E;
}
::selection {
	color: #fff;
	background-color: #5E5E5E;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.3rem;
	}
}


/* ==============================================

	header

================================================= */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
	padding-left: 30px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.headerArea {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 80px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.h_logo img {
	height: 50px;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.h_link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/*---------------------------------------------
	h_nav
---------------------------------------------*/
.h_nav {
	text-align: right;
	margin-right: 25px;
}
.h_nav a {
	color: #fff;
}
#gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 30px;
}
#gnav ul li {
	font-size: 1.3rem;
}
#gnav ul li a:hover {
	opacity: 0.6;
}
@media screen and (max-width: 1366px) {
	#gnav ul {
		gap: 0 20px;
	}
}
@media screen and (max-width: 1194px) {
	#gnav ul {
		gap: 0 15px;
	}
	#gnav ul li {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 1112px) {
	.h_nav {
		margin-right: 15px;
	}
	#gnav ul {
		gap: 0 10px;
	}
}


/*---------------------------------------------
	h_fairBtn
---------------------------------------------*/
.h_fairBtn a {
	width: 90px;
	height: 80px;
	background: rgba(126,111,68,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.h_fairBtn a::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("../img/icon_church.svg") center no-repeat;
	width: 27px;
	height: 27px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);

}
.h_fairBtn a span {
	display: inline-block;
	padding-top: 55px;
}

.h_fairBtn a:hover {
	background: rgba(107,93,53,0.9);
}

/*---------------------------------------------
	h_rsvBtn
---------------------------------------------*/
.h_rsvBtn a {
	width: 90px;
	height: 80px;
	background: rgba(62,61,58,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.h_rsvBtn a::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("../img/icon_calendar.svg") center no-repeat;
	width: 25px;
	height: 24px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);

}
.h_rsvBtn a span {
	display: inline-block;
	padding-top: 55px;
}

.h_rsvBtn a:hover {
	background: rgba(47,47,47,0.7);
}

/*---------------------------------------------
	nav_toggle
---------------------------------------------*/
.h_tglBtn a {
	padding: 27px;
	cursor: pointer;
	display: block;
	box-sizing: initial;
}
.h_tglBtn a:hover {
	background: transparent;
}
.nav_toggle{
	width: 36px;
	height: 26px;
}
.nav_toggle div {
	position: relative;
}
.nav_toggle span {
	display: block;
	height: 1px;
	background: #fff;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.nav_toggle span:nth-child(1){
	top: 0px;
}
.nav_toggle span:nth-child(2){
	top: 13px;
}
.nav_toggle span:nth-child(3){
	top: 26px;
}
.nav_toggle span::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	display: block;
	background: #373737;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.nav_toggle:hover span::before {
	width: 100%;
}

@media screen and (max-width: 768px) {
	.h_tglBtn {
		padding: 0;
		height: 60px;
		width: 65px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.h_tglBtn:hover {
		background: #f5f4f0;
	}
	.h_tglBtn a {
		padding: 18px 18px;
		background: none;
	}
	.nav_toggle{
		width: 30px;
		height: 24px;
	}
	.nav_toggle span {
	}
}


/*---------------------------------------------
	h_fixed
---------------------------------------------*/
.h_fixed {
	background: #f5f5f5;
}
.h_fixed .h_logo {
	opacity: 1;
}
.h_fixed .h_logo img {
	filter: none;
}
.h_fixed .h_nav a {
	color: #222;
}
.h_fixed .h_fairBtn a {
	background: #988c6c;
}
.h_fixed .h_fairBtn a:hover {
	background: #857958;
}
.h_fixed .h_rsvBtn a {
	background: #666666;
}
.h_fixed .h_rsvBtn a:hover {
	background: #4d4d4d;
}
.h_fixed .h_tglBtn a {
	background: #373737;
}
.h_fixed .h_tglBtn a:hover {
	background: transparent;
}
.h_fixed .h_tglBtn .nav_toggle span::before {
	background: #373737;
}
@media screen and (max-width: 1112px) {
	header {
		padding-left: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.h_nav, .h_fairBtn, .h_rsvBtn {
		display: none;
	}
}
@media screen and (max-width:768px){
	#header {
		padding-left: 15px;
	}
	.headerArea {
		height: 60px;
	}
	.h_logo img {
		height: 42px;
	}
	.nav_toggle span:nth-child(2) {
		top: 12px;
	}
	.nav_toggle span:nth-child(3) {
		top: 24px;
	}
}

/* ==============================================

	remodal

================================================= */
.remodal_h {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 0 45px;
	height: 80px;
	position: relative;
}
.remodal_logo {
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-top: 55px;
}
.remodal-is-opened .remodal_logo {
	opacity: 1;
}
.remodal_logo img {
	height: 50px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.nav_toggle_close {
	width: 40px!important;
	height: 32px!important;
	cursor: pointer;
	display: block;
}
.remodal_h .nav_toggle_close {
	position: absolute;
	right: 40px
}
.nav_toggle_close:hover span {
	background: #988c6c;
}
.nav_toggle_close div {
	position: relative;
	width: 46px!important;
	height: 32px!important;
}
.nav_toggle_close span{
	display: block;
	height: 1px;
	background: #fff;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;	
}
.nav_toggle_close span:nth-child(1){
	top: 12px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
}
.nav_toggle_close span:nth-child(2){
	width: 0;
	left: 50%;
}
.nav_toggle_close span:nth-child(3){
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	    transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
	.nav_toggle {
		padding: 0;
	}
	.remodal_h .nav_toggle_close {
		right: 15px;
	}
	.remodal_logo {
		margin-top: 50px;
	}
	.remodal_logo img {
		height: 42px;
	}
	/*
	.remodal_h {
		height: 60px;
		padding: 0 20px;
	}
	*/
}
@media screen and (max-width: 480px) {
	.remodal_logo {
		margin-top: 10px;
	}
}


/*---------------------------------------------
	remodal_contents
---------------------------------------------*/
.remodal_contents {
	padding: 60px 0;
	position: relative;
}
.remodal_contents a {
	color: #fff;
}
/*---------------------------------------------
	remodal_nav
---------------------------------------------*/
.remodal_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: left;
	margin-bottom: 65px;
}
.remodal_nav ul:not(:last-child) {
	margin-right: 100px;
}
.remodal_nav li {
	font-size: 1.5rem;
}
.remodal_nav li:not(:last-child) {
	margin-bottom: 22px;
}
.remodal_nav li a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_sns
---------------------------------------------*/
.remodal_sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 30px;
	gap: 20px;
}
.remodal_sns li img {
	width: 24px;
	height: auto;
}
.remodal_sns a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_btn
---------------------------------------------*/
.remodal_btn {
	max-width: 560px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_mainBtn
---------------------------------------------*/
.remodal_mainBtn {
	max-width: 700px;
	margin: 0 auto 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_memberLink
---------------------------------------------*/
.remodal_memberLink.f_memberLink {
	margin: 30px 0;
}

@media screen and (max-width:768px){
	.remodal_mainBtn {
		margin-bottom: 10px;
	}
	.remodal_nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
		text-align: center;
		margin-bottom: 20px;
	}
	.remodal_nav ul:not(:last-child), .remodal_nav li:not(:last-child) {
		margin: 0;
	}
	.remodal_nav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-flow: row wrap;
		        flex-flow: row wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.remodal_nav ul li {
		width: 47%;
		display: flex;
		align-items: center;
		justify-content: center;
		line-height: 115%;
	}
	.remodal_contents {
		padding: 0 5% 5%;
		top: inherit;
		-webkit-transform: inherit;
		-ms-transform: inherit;
		    transform: inherit;
		margin-top: 50px;
	}
	.remodal_nav a {
		display: block;
		padding: 12px 0;
	}
	.remodal-wrapper {
		overflow: auto;
	}
	.remodal_sns {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 480px) {
	.remodal_contents {
		margin-top: 20px;
	}
	.remodal_nav ul li, .remodal_mainBtn, .remodal_btn {
		font-size: 1.2rem;
	}
	.remodal_nav a {
		padding: 10px 0;
	}
	.remodal_memberLink.f_memberLink {
		margin: 25px 0 20px;
	}
}


/* =======================================

	#under main

========================================== */
#under main {
	padding: 50px 0 0;
}
.cmn_space {
	padding: 100px 0!important;
}
@media screen and (max-width: 768px) {
	.cmn_space {
		padding: 70px 0!important;
	}
}
@media screen and (max-width: 480px) {
	#under main {
		padding: 30px 0 0;
	}
	.cmn_space {
		padding: 50px 0!important;
	}
}


/* =======================================

	#under

========================================== */
#mv_under {
	position: relative;
	margin-top: 80px;
}
#mv_under::before {
	content: "";
	background: rgba(0,0,0,0.35);
	width: 100%;
	height: 100%;
	position: absolute;
}
#mv_under > div {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	color: #fff;
}
.mv_under_ja {
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 10px;
	letter-spacing: 0.15em;
}
.mv_under_ja small {
	font-size: 1.4rem;
	display: block;
	line-height: 228%;
}
.mv_under_en {
	letter-spacing: 0.1em;
	font-size: 4.4rem;
	font-family: "Cormorant Garamond", serif;
}
#mv_under img {
	height: 400px;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
#mv_under.mv_under_noPhoto {
	height: 180px;
}
#mv_under.mv_under_noPhoto::before {
	background: #f5f5f5;
}
#mv_under.mv_under_noPhoto div {
	color: #525252;
}
@media screen and (max-width: 1024px) {
	#mv_under img {
		height: 320px;
	}
	.mv_under_en {
		font-size: 4.0rem;
	}
}
@media screen and (max-width: 768px) {
	#mv_under {
		margin-top: 60px;
	}
	#mv_under img {
		height: 200px;
	}
	.mv_under_ja {
		font-size: 1.3rem;
	}
	.mv_under_ja small {
		font-size: 1.2rem;
	}
	.mv_under_en {
		font-size: 3.2rem;
	}
	#mv_under.mv_under_noPhoto {
		height: 150px;
	}
}
@media screen and (max-width: 480px) {
	#mv_under img {
		height: 120px;
	}
	.mv_under_ja {
		font-size: 1.2rem;
	}
	.mv_under_ja small {
		font-size: 1.0rem;
	}
	.mv_under_en {
		font-size: 2.2rem;
	}
	#mv_under.mv_under_noPhoto {
		height: 90px;
	}
}


/* ==============================================

	cmn_btn & btn & link

================================================= */
.cmn_btn {
	max-width: 300px;
	margin: 0 auto;
}
.cmn_btn a {
	width: 100%;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
}
.cmn_btnBdr_wht a {
	border: 1px solid #fff;
}
.cmn_btnBdr_wht a:hover {
	background: #fff;
	color: #222!important;
	border: none;
}

.remodal_btn > * {
	width: 240px;
}
.remodal_mainBtn > * {
	width: 310px;
}
.remodal_mainBtn a {
	height: 60px;
}
.f_btn > * {
	flex: 0 1 240px;
}
@media screen and (max-width: 1024px) {
	.f_btn > * {
		width: 47%;
	}
}
@media screen and (max-width: 768px) {
	.remodal_mainBtn > * {
		width: 47%;
	}
}
@media screen and (max-width: 640px) {
	.remodal_btn > * {
		width: 47%;
	}
}
@media screen and (max-width: 480px) {
	.remodal_mainBtn a {
		height: 50px;
	}
}


.btn_access a, .btn_contact a {
	letter-spacing: 0.2rem;
	font-family: "EB Garamond", serif;
}
.btn_access a::before {
	content: "";
	background: url("../img/icon_access.svg") center no-repeat;
	width: 14px;
	height: 20px;
	margin-right: 8px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	background-size: contain;
}
.btn_access a:hover::before {
	filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(0%) hue-rotate(177deg) brightness(98%) contrast(89%);
}
.btn_contact a::before {
	content: "";
	background: url("../img/icon_contact.svg") center no-repeat;
	width: 18px;
	height: 14px;
	margin-right: 10px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	background-size: contain;
}
.btn_contact a:hover::before {
	filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(0%) hue-rotate(177deg) brightness(98%) contrast(89%);
}
.btn_fair a::before {
	content: "";
	background: url("../img/icon_church.svg") center no-repeat;
	width: 26px;
	height: 26px;
	margin-right: 8px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	background-size: contain;
}
.btn_fair a:hover::before {
	filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(0%) hue-rotate(177deg) brightness(98%) contrast(89%);
}
.btn_rsv a::before {
	content: "";
	background: url("../img/icon_calendar.svg") center no-repeat;
	width: 23px;
	height: 22px;
	margin-right: 8px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	background-size: contain;
}
.btn_rsv a:hover::before {
	filter: brightness(0) saturate(100%) invert(9%) sepia(1%) saturate(0%) hue-rotate(177deg) brightness(98%) contrast(89%);
}


/* ==============================================

	pageLink

================================================= */
#page_link {
	background: #F9F9F9;
	position: relative;
	padding: 70px 5%;
}
#page_link ul {
	max-width: 1175px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	gap: 25px;
}
#page_link ul li {
	width: calc((100% - 125px) / 6);
}
#page_link ul li a {
	position: relative;
}
.pageLink_box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: relative;
	height: 150px;
	overflow: hidden;
}
.pageLink_box::before {
	content: "";
	background: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}
#page_link ul li a:hover .pageLink_box::before {
	background: rgba(0,0,0,0.1);
}
.pageLink_box div {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
}
.pageLink_box div p {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.6rem;
	margin-bottom: 8px;
	letter-spacing: 0.15em;
}
.pageLink_box div small {
	font-size: 1.3rem;
	letter-spacing: 0.1em;
}
.pageLink_img {
	position: absolute!important;
	top: 0;
	left: 0;
	z-index: 0!important;
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	height: 100%;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
#page_link ul li a :hover .pageLink_img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
	#page_link ul {
		gap: 20px;
	}
	#page_link ul li {
		width: calc((100% - 100px) / 6);
	}
	.pageLink_box div small {
		letter-spacing: 0.05em;
	}
}
@media screen and (max-width: 1112px) {
	#page_link ul li {
		width: calc((100% - 60px) / 4);
	}
	.pageLink_box {
		height: 120px;
	}
}
@media screen and (max-width: 1024px) {
	.pageLink_box div p {
		font-size: 2.4rem;
	}
	.pageLink_box div small {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 768px) {
	#page_link ul li {
		width: calc((100% - 40px) / 3);
	}
}
@media screen and (max-width: 640px) {
	#page_link ul {
		gap: 15px;
	}
	#page_link ul li {
		width: calc((100% - 30px) / 3);
	}
}
@media screen and (max-width: 480px) {
	#page_link {
		padding: 40px 5%;
	}
	#page_link ul {
		gap: 10px;
	}
	#page_link ul li {
		width: calc((100% - 20px) / 3);
	}
	.pageLink_box {
		height: 90px;
	}
	.pageLink_box div p {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	.pageLink_box div small {
		font-size: 1.0rem;
		letter-spacing: 0.1em;
	}
}


/* ==============================================

	side_btn

================================================= */
#side_btn {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 60px;
	display: none;
}
#side_btn ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#side_btn ul li {
	width: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.side_sns {
	padding: 20px 0;
	background: #C7C6C4;
}
.side_sns li:not(:last-child) {
	margin-bottom: 20px;
}
.side_sns li img {
	width: 24px;
	height: auto;
}
.side_sns li a:hover {
	opacity: 0.5;
}
.side_request, .side_fair {
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
}
.side_request a, .side_fair a {
	width: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 1.5rem;
	letter-spacing: 0.3rem;
	padding: 20px 0;
}
.side_request a {
	background: #757575;
	color: #fff;
}
.side_request a::before {
	content: "";
	background: url("../img/icon_request.svg") center no-repeat;
	width: 29px;
	height: 20px;
	display: inline-block;
	margin-bottom: 10px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_request a:hover {
	background: #4d4d4d;
}
.side_fair a {
	background: #9D9276;
	color: #fff;
}
.side_fair a::before {
	content: "";
	background: url("../img/icon_church.svg") center no-repeat;
	width: 29px;
	height: 26px;
	display: inline-block;
	margin-bottom: 10px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_fair a:hover {
	background: #857958;
}

@media screen and (max-width:1024px){
	#side_btn {
		display: none!important;
		opacity: 0!important;
	}
}


/* ==============================================

	btn_fixed

================================================= */
#btn_fixed {
	display: none;
}
@media screen and (min-width:1025px){
	#btn_fixed {
		display: none!important;
	}
}
@media screen and (max-width:1024px){
	#btn_fixed {
		position: fixed;
		bottom: 0;
		width: 100%;
		background: #fff;
		height: 70px;
		z-index: 3;
	}
	#btn_fixed ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	#btn_fixed ul li {
		flex: 1;
	}
	#btn_fixed ul li a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
		height: 65px;
		color: #222;
		font-size: 1.4rem;
		padding-bottom: 5px;
	}
	#btn_fixed ul li a::before {
		content: "";
		display: inline-block;
		margin-bottom: 5px;
	}
	.bf_fair a {
		background: #7E6F44;
		color: #fff!important;
	}
	.bf_fair a::before {
		background: url("../img/icon_church.svg") center no-repeat;
		width: 26px;
		height: 26px;
		background-size: contain;
		-webkit-filter: brightness(0) invert(1)!important;
		filter: brightness(0) invert(1)!important;
	}
	.bf_visit a {
		background: #3E3D3A;
		color: #fff!important;
	}
	.bf_visit a::before {
		background: url("../img/icon_calendar.svg") center no-repeat;
		width: 24px;
		height: 24px;
		background-size: contain;
		-webkit-filter: brightness(0) invert(1)!important;
		filter: brightness(0) invert(1)!important;
	}
	.bf_request a::before {
		background: url("../img/icon_request.svg") center no-repeat;
		width: 30px;
		height: 30px;
		background-size: contain;
	}
	.bf_tel a {
		background: #F5F5F5;
	}
	.bf_tel a::before {
		background: url("../img/icon_smartphone.svg") center no-repeat;
		width: 22px;
		height: 22px;
		background-size: contain;
		filter: brightness(0) saturate(100%) invert(46%) sepia(21%) saturate(0%) hue-rotate(190deg) brightness(87%) contrast(87%);
	}
}
@media screen and (max-width: 480px) {
	#btn_fixed ul li a {
		font-size: 1.2rem;
	}
}


/* ==============================================

	footer

================================================= */
footer#footer {
	position: relative;
	z-index: 2;
	padding: 50px 5% 20px;
	background: #222;
	color: #fff;
}
footer a {
	color: #fff;
}
.footerArea {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0 10%;
}
.f_info {
	text-align: center;
	width: 300px;
}
.f_logo {
	margin-bottom: 20px;
}
.f_logo img {
	width: 160px;
	height: auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	margin-bottom: 10px;
}
.f_logo p {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.f_info p {
	margin-bottom: 10px;
}
.f_address {
	margin-bottom: 40px;
	font-size: 1.3rem;
}
.f_address address {
	font-style: normal;
	margin-bottom: 5px;
	text-decoration: none!important;
}
.f_address a {
	text-decoration: underline;
	font-size: 1.3rem;
}
.f_address a:hover {
	text-decoration: none;
}
.f_tel p {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.f_tel a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 3.0rem;
	margin-bottom: 24px;
	color: #fff;
	font-family: "EB Garamond", serif;
}
.f_tel a::before {
	content: "";
	background: url("../img/icon_tel.svg") center no-repeat;
	display: inline-block;
	width: 25px;
	height: 30px;
	margin-right: 2px;
	background-size: contain;
}
.f_tel dl {
	font-size: 1.3rem;
}
.f_tel dl:not(:last-child) {
	margin-bottom: 18px;
}
.f_tel dl dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 6px;
}
.f_tel dl dt::after, .f_tel dl dt::before {
	border-top: 1px solid;
	content: "";
	width: 20px;
}
.f_tel dl dt::after {
	margin-left: 12px;
}
.f_tel dl dt::before {
	margin-right: 12px;
}
.f_tel dl dd {
	white-space: nowrap;
}


.f_link {
	max-width: 710px;
	flex: 1;
}
.f_menu.pc {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex !important;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	margin-bottom: 40px;
	gap: 1.5em 1em;
}
.f_menu li {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.f_menu li:not(:last-child)::after {
	content: "/";
	margin-left: 1em;
}
.f_link li a:hover {
	opacity: 0.7;
}
.f_btn {
	max-width: 500px;
	margin: 0 auto 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 23px;
}
.f_memberLink {
	display: -webkit-box;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	flex-flow: row wrap;
	gap: 10px 8px;
}
.f_memberLink a {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
.f_memberLink a:not(:last-child) {
	padding-right: 8px;
	border-right: 1px solid #fff;
}
.f_memberLink a:hover {
	opacity: 0.7;
}
footer .remodal_sns {
	margin-bottom: 0;
}

/*---------------------------------------------
	btn_hotelsite
---------------------------------------------*/
.btn_hotelsite {
	max-width: 400px;
	margin: 30px auto 0;
}
.btn_hotelsite a {
	height: 60px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 0 10px;
	color: #252525!important;
	gap: 6%;
	position: relative;
	word-break: keep-all;
	text-align: center;
	line-height: 133%;
}
.btn_hotelsite a img {
	width: 110px;
}
.btn_hotelsite a:hover {
	background: #5E5E5E;
	color: #fff!important;
}
.btn_hotelsite a:hover img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
@media screen and (max-width:1194px) {
	.footerArea {
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.f_link {
		width: calc(100% - 350px);
	}
}
@media screen and (max-width: 1024px) {
	footer {
		margin-bottom: 70px;
		padding-bottom: 30px;
	}
	.f_tel dl dd {
		white-space: normal;
		line-height: calc(16 / 11);
	}
}
@media screen and (max-width: 896px) {
	.btn_hotelsite a img {
		zoom: 0.9;
	}
}
@media screen and (max-width: 768px) {
	.footerArea {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
	}
	.f_info {
		margin-right: 0;
		margin-bottom: 50px;
		width: auto;
	}
	.f_link {
		width: 100%;
	}
	.f_btn {
		column-gap: 5%;
	}
	.f_memberLink a {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 640px) {
	.f_memberLink {
	}
}
@media screen and (max-width: 480px) {
	footer {
		padding: 40px 5%;
	}
	.f_memberLink a {
		font-size: 1.05rem;
	}
	.f_memberLink a:not(:last-child) {
		padding-right: 8px;
	}
	.f_info {
		margin-bottom: 30px;
	}
	.f_logo img {
		width: 130px;
	}
	.f_logo p,
	.f_address,
	.f_tel p,
	.f_tel dl {
		font-size: 1.2rem;
	}
	.btn_hotelsite a {
		font-size: 1.1rem;
		height: 50px;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright{
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	padding: 60px 0 0;
	background: #222;
}

@media screen and (max-width: 768px) {
	#copyright {
		padding-top: 30px;
		font-size: 1rem;
	}
}
@media screen and (max-width: 480px) {
	#copyright {
		letter-spacing: 0.1rem;
		padding-top: 40px;
	}
}


/* ==============================================

	plan_bestrate

================================================= */
.plan_bestrate {
	max-width: 1040px;
	margin: 0 auto 100px;
}
@media screen and (max-width: 1194px) {
	.plan_bestrate {
		padding: 0 5%;
		max-width: inherit;
	}
}
@media screen and (max-width: 768px) {
	.plan_bestrate {
		margin: 0 auto 70px;
	}
}
@media screen and (max-width: 640px) {
	.plan_bestrate {
		padding: 0 10%;
	}
}
@media screen and (max-width: 480px) {
	.plan_bestrate {
		padding: 0 5%;
		margin: 0 auto 50px;
	}
}



