@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #222;
	font-size: 1.4rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.05em;
	background: #fff;
}
::-moz-selection {
	color: #fff;
	background-color: #a3997c;
}
::selection {
	color: #fff;
	background-color: #a3997c;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.3rem;
	}
}


/* ==============================================

	logo

================================================= */
.loader img, #main_logo img {
	width: 210px;
	height: auto;
}
@media screen and (max-width: 480px) {
	.loader img {
		zoom: 0.7;
	}
}

/* ==============================================

	loading

================================================= */
.loader {
	position: fixed;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	background: #B8AA9E;
	z-index: 555;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.loader .loader_logo {
	display: none;
	-webkit-animation-name: smooth-fadein-out;
	        animation-name: smooth-fadein-out;
	-webkit-animation-duration: 0.9s;
	        animation-duration: 0.9s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	        animation-direction: alternate;
}

@-webkit-keyframes smooth-fadein-out {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes smooth-fadein-out {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.loader.hide {
	display: none;
}


/* ==============================================

	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 {
}
.h_logo img {
	height: 55px;
	-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;
	display: none;
}
.h_fixed .h_nav {
	display: inherit;
}
.h_nav a {
	color: #fff;
}
#gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 25px;
}
#gnav ul li {
	font-size: 1.4rem;
}
#gnav ul li a:hover {
	color: #d8cec5;
}
@media screen and (max-width: 1366px) {
	#gnav ul {
		gap: 0 18px;
	}
	#gnav ul li {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 1194px) {
	.h_nav {
		margin-right: 20px;
	}
	#gnav ul {
		gap: 0 15px;
	}
	#gnav ul li {
		font-size: 1.2rem;
	}
}


/*---------------------------------------------
	h_fairBtn
---------------------------------------------*/
.h_fairBtn a {
	width: 90px;
	height: 80px;
	background: rgba(169,143,55,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
}
.h_fairBtn a::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("images/icon_church.svg") center no-repeat;
	width: 21px;
	height: 30px;
	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(169,143,55,0.7);
}

/*---------------------------------------------
	h_rsvBtn
---------------------------------------------*/
.h_rsvBtn a {
	width: 90px;
	height: 80px;
	background: rgba(140,126,81,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
}
.h_rsvBtn a::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("images/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(140,126,81,0.7);
}

/*---------------------------------------------
	h_contactBtn
---------------------------------------------*/
.h_contactBtn a {
	width: 100px;
	height: 80px;
	background: rgba(169,143,55,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: 0.025em;
}
.h_contactBtn a::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("images/icon_contact.svg") center no-repeat;
	width: 26px;
	height: 18px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.h_contactBtn a span {
	display: inline-block;
	padding-top: 50px;
}
.h_contactBtn a:hover {
	background: rgba(169,143,55,0.7);
}

/*---------------------------------------------
	h_catalogBtn
---------------------------------------------*/
.h_catalogBtn a {
	width: 100px;
	height: 80px;
	background: rgba(140,126,81,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: 0.025em;
}
.h_catalogBtn a::before {
	content: "";
	position: absolute;
	top: 19px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("images/icon_request.svg") center no-repeat;
	width: 27px;
	height: 20px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.h_catalogBtn a span {
	display: inline-block;
	padding-top: 50px;
}
.h_catalogBtn a:hover {
	background: rgba(140,126,81,0.7);
}

/*---------------------------------------------
	nav_toggle
---------------------------------------------*/
.h_tglBtn a {
	padding: 28px 30px;
	cursor: pointer;
	display: block;
}
.h_tglBtn a:hover {
	background: #fff;
}
.nav_toggle{
	width: 30px;
	height: 24px;
}
.nav_toggle div {
	position: relative;
}
.nav_toggle span {
	display: block;
	height: 2px;
	transform: scaleY(0.5) translateY(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: 12px;
}
.nav_toggle span:nth-child(3){
	top: 24px;
}
.nav_toggle span::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	display: block;
	background: #917e44;
	-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;
		background: transparent;
	}
	.h_tglBtn:hover {
		background: transparent;
	}
	.h_tglBtn a {
		padding: 18px 18px;
		background: none;
	}
	.h_tglBtn a:hover {
		background: transparent;
	}
	.nav_toggle{
		width: 30px;
		height: 24px;
	}
	.nav_toggle span {
	}
}


/*---------------------------------------------
	h_fixed
---------------------------------------------*/
.h_fixed {
	background: #f4f1ed;
}
.h_fixed .h_logo {
	opacity: 1;
}
.h_fixed .h_logo img {
	filter: brightness(0) saturate(100%) invert(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.h_fixed .h_nav a {
	color: #6f5c19;
}
.h_fixed .h_nav a:hover {
	opacity: 0.7;
	color: #6f5c19!important;
}
.h_fixed .h_fairBtn a {
	background: rgba(169,143,55, 0.9);
}
.h_fixed .h_fairBtn a:hover {
	background: rgba(169,143,55, 0.8);
}
.h_fixed .h_rsvBtn a {
	background: rgba(140,126,81, 0.9);
}
.h_fixed .h_rsvBtn a:hover {
	background: rgba(140,126,81, 0.8);
}
.h_fixed .h_tglBtn {
	background: transparent;
}
.h_fixed .nav_toggle {
	background: transparent;
}
.h_fixed .nav_toggle:hover {
	background: rgba(242,240,234, 0.8);
}
.h_fixed .nav_toggle span {
	background: #6f5c19;
}

@media screen and (max-width: 1194px) {
	header {
		padding-left: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.h_nav, .h_fairBtn, .h_rsvBtn, .h_contactBtn, .h_catalogBtn {
		display: none;
	}
}

@media screen and (max-width:768px){
	header {
		padding-left: 15px;
	}
	.headerArea {
		height: 60px;
	}
	.h_logo img {
		height: 40px;
	}
	.nav_toggle span:nth-child(2) {
		top: 12px;
	}
	.nav_toggle span:nth-child(3) {
		top: 24px;
	}
}
@media screen and (max-width: 480px) {
}

/* ==============================================

	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 a:hover {
	opacity: 0.7;
}
.remodal_logo img {
	height: 55px;
	-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: #f1eeea;
}
.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;
	}
	.nav_toggle_close div {
		width: 30px!important;
		height: 28px!important;
	}
	.remodal_h .nav_toggle_close {
		right: 15px;
	}
	.remodal_logo {
		margin-top: 50px;
	}
	/*
	.remodal_logo img {
		height: 35px;
	}
	.remodal_h {
		height: 60px;
		padding: 0 20px;
	}
	*/
}
@media screen and (max-width: 480px) {
	.remodal_logo {
		margin-top: 0;
	}
	.remodal_logo img {
		height: 40px;
	}
}


/*---------------------------------------------
	remodal_contents
---------------------------------------------*/
.remodal_contents {
	padding: 60px 0;
	position: relative;
}
.remodal_contents a {
	color: #eeece8;
}
/*---------------------------------------------
	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: 50px;
}
.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: 25px;
}
.remodal_sns li img {
	width: 20px;
	height: auto;
}
.remodal_sns a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_btn
---------------------------------------------*/
.remodal_btn {
	max-width: 1050px;
	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 auto 0;
}

/*---------------------------------------------
	remodal_sitemap
---------------------------------------------*/
.remodal_sitemap {
	font-size: 1.3rem;
	margin-bottom: 25px;
}
@media screen and (max-width:1194px){
	.remodal_btn {
		max-width: 560px;
		flex-flow: row wrap;
		gap: 20px 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.3rem;
	}
	.remodal_nav a {
		padding: 10px 0;
		line-height: 120%;
	}
	.remodal_memberLink.f_memberLink {
		margin: 25px auto 0;
	}
	.remodal_sitemap {
		font-size: 1.2rem;
	}
	.remodal_btn {
		gap: 10px 0;
	}
}

/* ==============================================

	mv

================================================= */
#mv {
	position: relative;
	height: calc(var(--vh, 1vh)* 100);
}
.movie-wrap {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
}
.fixed-video {
	z-index: -100;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 50%;
	width: auto;
	min-width: 100%;
	height: auto;
	min-height: 100%;
	margin: auto;
	transform: translate(-50%);
	top: 0;
}
/*
.movie-wrap {
	position: fixed;
	z-index: -1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
}
.fixed-video {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 177.77777778vh;
	height: 56.25vw;
	min-height: 100%;
	min-width: 100%;
}
*/
/*
.fixed-video {
	position: fixed;
	z-index: -1;
	top: 0;
	left: -1000%;
	right: -1000%;
	bottom: 0;
	margin: auto;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: inherit;
	max-height: inherit
}
*/
.slide-wrap {
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
}
/*
.slide-wrap::before {
	content: "";
	background: rgba(0,0,0,0.25);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}
*/
.slide-wrap img {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width:768px){
	.fixed-video {
		position: relative;
		width: 120%;
	}
	.movie_pc .fixed-video {
		width: auto;
	}
}


/* ==============================================

	main

================================================= */
#home main {
	position: relative;
	z-index: 1;
}

/* ==============================================

	main_logo

================================================= */
#main_logo {
	height: 100vh;
	height: calc(var(--vh,1vh)*100);
	position: relative;
}
#main_logo img {
	z-index: 1;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform:translateY(-50%);
	    transform:translateY(-50%);
	position: relative;
	margin: 0 auto;
	display: block;
}
@media screen and (max-width:480px){
	#main_logo img {
		zoom: 0.7;
	}
}


/* ==============================================

	cmn_btn & btn & link

================================================= */
.cmn_btn a, .telreserve-btn input, .search_btn input, .fair_calendarBtn input, .cmn_btn button {
	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_btn button {
	background: transparent;
}
.cmn_btnBdr_wht a {
	border: 1px solid #fff;
}
.cmn_btnBdr_wht a:hover {
	background: #fff;
	color: #a98f37!important;
	border: none;
}
.cmn_btnBdr_gold a, .cmn_btnBdr_gold input, .cmn_btn button {
	border: 1px solid #a98f37;
	color: #a98f37;
	background: #fff;
}
.cmn_btnBdr_gold a:hover, .cmn_btnBdr_gold input:hover, .cmn_btn button:hover {
	background: #a98f37;
	color: #fff;
	border: none;
}

.cmn_btnBg_gold a, .cmn_btnBg_gold input, .cmn_btnBg_gold button {
	background: #a98f37;
	color: #fff;
}
.cmn_btnBg_gold a:hover, .cmn_btnBg_gold input:hover, .cmn_btnBg_gold button:hover {
	background: #fff;
	color: #a98f37;
	border: 1px solid #a98f37;
}
.cmn_arrow span, .cmn_arrow_back span {
	display: block;
}
.cmn_arrow span, .cmn_arrow a, .cmn_arrow_back a, .cmn_arrow_back span {
	position: relative;
}
.cmn_arrow span::after, .cmn_arrow a::after {
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
}
.cmn_arrow_back a::after, .cmn_arrow_back span::after {
		position: absolute;
	left: 15px;
	top: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
}
.cmn_arrow.cmn_btnBg_gold span::after,
.cmn_arrow.cmn_btnBdr_gold:hover span::after,
.cmn_arrow.cmn_btnBg_gold a::after,
.cmn_arrow.cmn_btnBdr_gold:hover a::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.cmn_arrow_back.cmn_btnBdr_gold:hover a::after,
.cmn_arrow_back.cmn_btnBg_gold span::after,
.cmn_arrow_back.cmn_btnBg_gold a::after,
.cmn_arrow_back.cmn_btnBdr_gold:hover span::after {
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.cmn_arrow.cmn_btnBdr_gold span::after,
.cmn_arrow.cmn_btnBg_gold:hover span::after,
.cmn_arrow.cmn_btnBdr_gold a::after,
.cmn_arrow.cmn_btnBg_gold:hover a::after {
	border-top: 1px solid #a98f37;
	border-right: 1px solid #a98f37;
}
.cmn_arrow_back.cmn_btnBdr_gold a::after,
.cmn_arrow_back.cmn_btnBg_gold:hover span::after,
.cmn_arrow_back.cmn_btnBg_gold:hover a::after,
.cmn_arrow_back.cmn_btnBdr_gold span::after {
	border-left: 1px solid #a98f37;
	border-bottom: 1px solid #a98f37;
}
.remodal_btn > * {
	width: 240px;
}
.remodal_mainBtn > * {
	width: 400px;
	max-width: inherit!important;
}
.remodal_mainBtn a {
	height: 60px;
}
.f_btn > * {
	flex: 0 1 240px;
	margin: 0 !important;
}
.cmn_btn, #main_fair .cmn_btn, #main_plan .cmn_btn, #main_news .cmn_btn, .more_btn, #plan_list .cmn_btn, #main_instagram .cmn_btn {
	max-width: 300px;
	margin: 0 auto;
}
#form .cmn_btn, .plan_listBack, #guide_exp .cmn_btn, #guide_flow > .cmn_btn, .party_listBack {
	max-width: 400px;
	margin: 0 auto;
}
#bestrate .cmn_btn a {
	max-width: 300px;
	height: 60px;
	margin: 0 auto;
}
.fair_calendarBtn input {
	max-width: 250px;
	margin: 0 auto;
	height: 45px;
}
#plan_dtlBft .cmn_btn a {
	height: 46px;
	font-size: 1.3rem;
	letter-spacing: 0.2rem;
}
#dressList .cmn_btn a {
	max-width: 300px;
	margin: 0 auto;
	height: 45px;
	font-size: 1.3rem;
	background: #fff;
}
#dressList .cmn_btn a:hover {
	background: #a98f37;
}
#access_map .cmn_btn {
	font-size: 1.3rem;
}
#access_map .cmn_btn a {
	font-weight: 500;
}
.guide_flow_txt .cmn_btn a {
	max-width: 300px;
	height: 40px;
	margin: 0 auto;
	font-size: 1.3rem;
}
#guests > .cmn_btn {
	max-width: 330px;
	margin: 0 auto;
	font-size: 1.3rem;
}

.btn_window.cmn_btn a {
	height: 60px;
	font-size: 1.3rem;
	text-align: center;
	font-weight: 500!important;
	line-height: 130%;
	position: relative;
}
.btn_window a::after {
	content: "";
	background: url("images/icon_window.svg") center no-repeat;
	width: 20px;
	height: 18px;
	background-size: contain;
	position: absolute;
	right: 20px;
}
.btn_window a:hover::after {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}


@media screen and (max-width: 1024px) {
	.f_btn > * {
		width: 47%;
	}
	.fair_listBox .cmn_btn a, .fair_listBox .cmn_btn input {
		height: 44px;
	}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 640px) {
	.remodal_mainBtn > * {
		width: 100%;
	}
	.remodal_btn > * {
		width: 47%;
	}
}
@media screen and (max-width: 480px) {
	.fair_listBox .cmn_btn a, .fair_listBox .cmn_btn input, .remodal_mainBtn a, #bestrate .cmn_btn a {
		height: 50px;
	}
	.fair_calendarBtn input {
		height: 40px;
	}
	#plan_dtlBft .cmn_btn {
		max-width: inherit;
		width: 100%;
	}
	#plan_dtlBft .cmn_btn a {
		font-size: 1.4rem;
		letter-spacing: 0.2rem;
		height: 50px;
	}
	#access_map .cmn_btn, #guests > .cmn_btn {
		max-width: inherit;
		width: 90%;
	}
	#guide_exp .cmn_btn, #guide_flow > .cmn_btn {
		font-size: 1.3rem;
	}
	#main_contents .cmn_btn,
	.cmnArea .cmn_btn {
		max-width: 300px!important;
	}
}


.btn_access a, .btn_contact a {
	letter-spacing: 0.2rem;
	font-size: 1.5rem;
}
.btn_access a::before {
	content: "";
	background: url("images/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(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.btn_contact a::before {
	content: "";
	background: url("images/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_02 a::before {
	content: "";
	background: url("images/icon_contact.svg") center no-repeat;
	width: 20px;
	height: 16px;
	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(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.btn_fair a::before {
	content: "";
	background: url("images/icon_church.svg") center no-repeat;
	width: 18px;
	height: 28px;
	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(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.btn_rsv a::before {
	content: "";
	background: url("images/icon_calendar.svg") center no-repeat;
	width: 19px;
	height: 18px;
	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(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.btn_cont a::before {
	content: "";
	background: url("images/icon_ring.svg") center no-repeat;
	width: 32px;
	height: 14px;
	margin-right: 8px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	background-size: contain;
}
.btn_cont a:hover::before {
	filter: brightness(0) saturate(100%) invert(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}
.btn_catalog a::before {
	content: "";
	background: url("images/icon_request.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_catalog a:hover::before {
	filter: brightness(0) saturate(100%) invert(53%) sepia(28%) saturate(711%) hue-rotate(8deg) brightness(88%) contrast(82%);
}


/* ==============================================

	more_btn

================================================= */
.more_btn {
	position: relative;
	margin: 0 auto;
	text-align: left;
	font-size: 1.3rem;
}
.more_btn span, .more_btn a {
	padding: 0 0 6px 0;
	display: inline-block;
	color: #a98f37;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.more_btn > span::before, .more_btn > a::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: inline-block;
	width: 5px;
	height: 5px;
	transform: rotate(45deg);
	border-top: 1px solid #a98f37;
	border-right: 1px solid #a98f37;
}
.more_btn > span::after, .more_btn > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 1px;
	background: #a98f37;
}
.more_btn a {
	display: block;
}
.more_btn a:hover {
	opacity: 0.8;
}
.more_btn a:hover span {
	padding-left: 14px;
	opacity: 0.8;
}


.more_btn_en {
	width: 100px;
}

.fair_contents .more_btn,
.plan_contents .more_btn,
.report_contents .more_btn,
.news_contents .more_btn {
	margin: 0 0 0 auto;
}


/* ==============================================

	h2_ttl

================================================= */
.cmn_ttl_h2 {
	margin-bottom: 60px;
}
.cmn_ttl_h2 p {
	font-size: 4.6rem;
	letter-spacing: 0.15em;
	color: #987c1b;
	margin-bottom: 15px;
}
.cmn_ttl_h2 h2 {
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	color: #987c1b;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
	.cmn_ttl_h2 p {
		font-size: 4.0rem;
	}
	.cmn_ttl_h2 h2 {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 768px) {
	.cmn_ttl_h2 p {
		font-size: 3.6rem;
	}
	.cmn_ttl_h2 h2 {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 640px) {
	.cmn_ttl_h2 p {
		font-size: 3.2rem;
		margin-bottom: 10px;
	}
}
@media screen and (max-width: 480px) {
	.cmn_ttl_h2 {
		margin-bottom: 30px;
	}
	/*
	.cmn_ttl_h2 p {
		font-size: 2.8rem;
	}
	.cmn_ttl_h2 h2 {
		font-size: 1.1rem;
	}
	*/
}


/* ==============================================

	cmn_txtBox

================================================= */
.cmn_txtBox .cmn_ttl_h2 {
	margin-bottom: 90px;
}
.cmn_txt {
	line-height: 200%;
}
@media screen and (max-width: 1024px) {
	.cmn_txtBox .cmn_ttl_h2 {
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 480px) {
	.cmn_txtBox .cmn_ttl_h2 {
		margin-bottom: 40px;
	}
}


/* ==============================================

	en_icon

================================================= */
.font_en {
	font-size: 12rem;
	color: rgba(218,211,186,0.3);
	font-family: "Cormorant Garamond", serif;
	font-weight: 300;
	letter-spacing: 0.05em;
}


/* ==============================================

	main_contents

================================================= */
#main_contents {
	background: #fff;
}
@media screen and (max-width: 480px) {
	#main_contents {
	}
}


/* ==============================================

	main_concept

================================================= */
.main_concept {
	/*
	padding: 100px 0 120px;
	*/
	padding: 100px 0 20%;
	background: #f8f7f5;
	overflow: hidden;
}
.main_concept_ttl {
	margin-bottom: 80px;
	text-align: center;
}
.main_concept_ttl p {
	font-size: 1.4rem;
	margin-bottom: 25px;
	letter-spacing: 0.3rem;
	font-weight: 500;
}
.main_concept_ttl h1 {
	font-size: 3rem;
	font-weight: 500;
	position: relative;
	padding-bottom: 30px;
}
.main_concept_ttl h1::after {
	content: "";
	display: block;
	border-top: 1px solid #000;
	width: 60px;
	margin: 0 auto;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
}

.main_conceptArea {
	max-width: 1600px;
	margin: 120px 0 0 auto;
	background: #f2f0ea;
	padding: 12% 55px 100px 0;
	position: relative;
}
/*
.main_conceptArea::before {
	white-space: pre;
	content: "ANFELICION\d\aWEDDING";
}
*/
.main_conceptArea .font_en {
	font-size: 11rem;
	position: absolute;
	top: -11%;
	left: -1.7em;
	text-align: right;
	z-index: 1;
}
.main_concept_txt {
	padding: 0 100px;
}
.main_concept_txt h2 {
	font-size: 2.4rem;
	line-height: 150%;
	font-weight: 500;
	margin-bottom: 50px;
	word-break: keep-all;
	color: #9a853d;
}
.main_concept_txt p {
	line-height: 214%;
	font-size: 1.4rem;
	word-break: keep-all;
}
.main_concept_txt .cmn_btn {
	margin: 50px auto 0 0;
}
.main_concept_img {
	position: absolute;
	top: -120px;
	right: 55px;
	display: flex;
	flex-flow: column;
	gap: 20px;
	width: 50%;
}
.main_concept_img > figure {
	margin-right: 45px;
}
.main_concept_img ul {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}
.main_concept_img ul li:first-child {
	margin-top: 40px;
}
@media screen and (max-width: 1800px) {
	.main_concept {
		padding: 100px 0 25%;
	}
	.main_conceptArea .font_en {
		left: -1%;
	}
}
@media screen and (max-width: 1600px) {
	.main_conceptArea .font_en {
		left: 2%;
	}
}
@media screen and (max-width: 1536px) {
	.main_concept_txt {
		width: 50%;
	}
}
@media screen and (max-width: 1366px) {
	.main_concept {
		padding: 100px 0 22%;
	}
	.main_conceptArea {
		padding: 15% 55px 80px 0;
		margin-top: 50px;
	}
	.main_concept_img {
		top: -80px;
	}
}
@media screen and (max-width: 1280px) {
	.main_concept_txt {
		padding: 0 60px;
	}
	.main_concept_txt h2 {
		font-size: 2.5rem;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 1194px) {
	.main_concept {
		padding: 100px 0 18%;
	}
}
@media screen and (max-width: 1112px) {
	.main_concept {
		padding: 100px 0 15%;
	}
}
@media screen and (max-width: 1024px) {
	.main_concept {
		padding: 0;
		overflow: hidden;
	}
	.main_conceptArea {
		padding: 60px 0 100px;
		flex-flow: column;
		margin-top: 0
	}
	.main_concept_img {
		position: inherit;
		width: 100%;
		margin: 0 auto;
		top: inherit;
		right: inherit;
	}
	.main_concept_img > figure {
		margin: 0 0 30px;
	}
	.main_concept_txt {
		width: max-content;
		margin: 0 auto 60px;
	}
	.main_concept_img_01 {
		margin: -40px auto 60px;
		text-align: center;
	}
	.main_concept_img ul {
		justify-content: center;
	}
	.main_concept_img ul li:first-child {
		margin-top: 0;
	}
	.main_conceptArea .font_en {
		top: inherit;
		left: inherit;
		position: relative;
		padding-right: 3%;
		font-size: clamp(7rem, 12vw, 9rem);
	}
}
@media screen and (max-width: 896px) {
	.main_concept_ttl h1 {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 768px) {
	.main_concept_ttl h1 {
		line-height: 140%;
	}
	.main_concept_txt p {
		word-break: inherit;
	}
}
@media screen and (max-width: 640px) {
	.main_conceptArea .font_en {
		font-size: clamp(6rem, 11vw, 8rem);
	}
	.main_concept_img_01 {
		margin: -25px auto 60px;
	}
}
@media screen and (max-width: 480px) {
	.main_concept_ttl {
		margin-bottom: 40px;
	}
	.main_concept_ttl h1 {
		font-size: 2.0rem;
	}
	.main_concept_txt {
		padding: 0 30px;
		width: 100%;
		margin-bottom: 50px;
	}
	.main_concept_txt h2 {
		font-size: 1.7rem;
		margin-bottom: 30px;
	}
	.main_concept_txt p {
		font-size: 1.4rem;
		line-height: 210%;
	}
	.main_conceptArea {
		padding: 40px 0 60px;
	}
	.main_concept_img_01 {
		margin: -20px auto 40px;
	}
	.main_conceptArea .font_en {
		font-size: clamp(4.5rem, 12vw, 6rem);
	}
}


/* ==============================================

	main_fair

================================================= */
#main_fair {
	padding: 100px 0;
	max-width: 1400px;
	margin: 0 auto;
}
#main_fair .cmn_ttl_h2 {
	margin-bottom: 50px;
	text-align: center;
}
@media screen and (max-width: 480px) {
	#main_fair .cmn_ttl_h2 {
		margin-bottom: 30px;
	}
}

/*---------------------------------------------
	tab_area
---------------------------------------------*/
.tab_area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	column-gap: 70px;
	border-bottom: 1px solid #a98f37;
}
.tab {
	position: relative;
}
.tab p {
	width: 350px;
	height: 55px;
	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;
	background: #f2f0ea;
	letter-spacing: 0.15em;
	border-bottom: none;
	font-size: 1.5rem;
	color: #987c1b;
}
.tab.active p {
	background: #a98f37;
	color: #fff;
}
@media screen and (max-width: 1112px) {
	.tab {
		width: 35%;
	}
	.tab p {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.tab_area {
		column-gap: 40px;
	}
	.tab p {
		font-size: 1.3rem;
		letter-spacing: 0.2rem;
	}
}
@media screen and (max-width: 640px) {
	.tab {
		width: 40%;
	}
	.tab_area {
		column-gap: 30px;
	}
}
@media screen and (max-width: 480px) {
	.tab {
		width: 43%;
	}
	.tab_area {
		column-gap: 20px;
	}
	.tab p {
		font-size: 1.2rem;
		letter-spacing: inherit;
		height: 55px;
	}
}

/*---------------------------------------------
	tab_contents
---------------------------------------------*/
.tab_contents {
}
.panel {
	padding: 50px 0 60px;
	display: none;
}
.panel.active {
	display: block;
}
.tab_cal {
	background: #fff;
}
@media screen and (max-width: 1024px) {
	.panel {
		padding: 50px 3% 60px
	}
}
@media screen and (max-width: 768px) {
	.panel {
		padding: 50px 3% 40px;
	} 
}
@media screen and (max-width: 480px) {
	.panel {
		padding: 30px 0;
	} 
}

/*---------------------------------------------
	fair_contents
---------------------------------------------*/
.fair_contents {
	max-width: 1500px;
	margin: 0 auto;
}
.fair_contentsInner {
	width: 100%;
}
.fair_contents article {
	margin: 0 20px;
	position: relative;
}
.fair_contents article a {
	display: block;
}
.fair_contents article a:hover {
	opacity: 0.8;
}
.fair_contents article figure {
	margin-bottom: 15px;
	overflow: hidden;
	aspect-ratio: 22 / 19;
}
.fair_contents article figure img{
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.fair_contents article a:hover figure img{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.fair_date {
	color: #fff;
	position: absolute;
	top: 0;
	left: 20px;
	width: 80px;
	height: 95px;
	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;
	letter-spacing: 0.2rem;
	padding: 0 10px;
}
.fair_date span {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}
.fair_date p {
	font-size: 4.0rem;
	margin-bottom: 5px;
	letter-spacing: 0;
}
.fair_date small {
	font-size: 1.1rem;
	letter-spacing: 0.15em;
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
}
.fair_date.date_weekday {
	background: rgba(148,135,89,0.7);
}
.fair_date.date_saturday {
	background: rgba(67,124,140,0.7);
}
.fair_date.date_holiday {
	background: rgba(178,95,120,0.7);
}
.fair_seats {
	font-size: 1.3rem;
	width: 70px;
	height: 24px;
	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;
	color: #fff;
	margin-bottom: 10px;
}
.fair_seats.seats_full {
	background: #de3581;
}
.fair_seats.seats_few {
	background: #1e6596;
}
.fair_seats.seats_no {
	background: #aaa;
}

.fair_contents h3 {
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 146%;
}

.fair_openTime {
	border-top: 1px solid #a98f37;
	border-bottom: 1px solid #a98f37;
	padding: 15px 0;
	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;
	gap: 10px 50px;
}

#main_fair .fair_openTime {
	margin-bottom: 15px;
}
.fair_openTime dl {
	line-height: 120%;
	display: flex;
	align-items: baseline;
	column-gap: 18px;
}
.fair_openTime dl dt {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	color: #6f5c19;
}
.fair_openTime dl dd {
	flex: 1;
	font-size: 1.3rem;
	color: #222;
}

.cmn_tag {
	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;
	margin-bottom: 20px;
	gap: 5px
}
.cmn_tag li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 8px 10px;
	background: #f2f0ea;
	color: #6f5c19;
	font-size: 1.1rem;
	letter-spacing: 0;
	font-weight: 500;
	line-height: 120%;
}
#main_plan .cmn_tag li,
#main_report .cmn_tag li {
	background: #fbfaf8;
}
#news_dtl .cmn_tag {
	margin-bottom: 0;
}
.fair_contents .more_link_ja {
	margin-left: auto;
	margin-right: 0;
}


/*---------------------------------------------
	main_fairBtn
---------------------------------------------*/


@media screen and (max-width: 1600px) {
	#main_fair {
		padding: 100px 4%;
	}
}
@media screen and (max-width: 1536px) {
	#main_fair {
		padding: 110px 8%;
	}
	.fair_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1366px) {
	#main_fair {
		padding: 110px 6%;
	}
	.fair_contents article {
		margin: 0 10px;
	}
	.fair_date {
		left: 10px;
	}
}
@media screen and (max-width: 1024px) {
	#main_fair {
		padding: 110px 0;
		overflow: hidden;
	}
}
@media screen and (max-width: 768px) {
	.fair_calendar {
		padding: 0 5%;
	}
	.fair_calendar h3 {
		font-size: 3.0rem;
	}
	.fair_calendar h3 small {
		font-size: 1.8rem;
	}
	.fair_month ul li {
		font-size: 2.0rem;
	}
	.fair_month ul li small {
		font-size: 1.4rem;
	}
	.fair_calendar td {
		font-size: 2.0rem;
	}
}
@media screen and (max-width: 480px) {
	#main_fair {
		padding: 60px 0;
	}
	.fair_contents article {
		margin: 0 12px;
	}
	.fair_month {
		margin-bottom: 25px;
	}
	.fair_calendar h3 {
		font-size: 2.4rem;
	}
	.fair_calendar h3 small {
		font-size: 1.4rem;
	}
	.fair_calendar th {
		font-size: 1.2rem;
		padding: 15px 2px 12px;
	}
	.fair_calendar th p {
		font-size: 1.4rem;
	}
	.fair_calendar td {
		font-size: 1.8rem;
		padding: 18px 0;
	}
	.cal_event a {
		padding: 0;
	}
	.cal_event a::after {
		width: 35px;
		padding-top: 35px;
	}
	.cmn_tag li {
		padding: 6px;
		font-size: 1.1rem;
	}
}


/* ==============================================

	main_bestrate

================================================= */
.main_bestrate {
	max-width: 1050px;
	margin: 0 auto 100px;
}
.main_bestrate a {
	background: #f5f5f5;
	padding: 50px 40px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: relative;
	height:350px;
}
.main_bestrate a:hover {
	opacity: 0.7;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.main_bestrate a figure {
	position: absolute;
	top: 50px;
	left: 40px;
}
.main_bestrate_txt {
	position: relative;
	z-index: 1;
	margin-bottom: -30px;
}
@media screen and (max-width: 1194px) {
	.main_bestrate {
		width: 90%;
	}
	.main_bestrate a {
		padding: 40px;
	}
	.main_bestrate a figure {
		width: 50%;
		top: 40px;
	}
	.main_bestrate a figure img {
		width: 100%;
		height: 350px;
		object-fit: cover;
		font-family: 'object-fit: none; object-position: right;';
		object-position: 75%;
	}
	.main_bestrate_txt {
		margin-bottom: -20px;
	}
}
@media screen and (max-width: 640px) {
	.main_bestrate {
		width: 100%;
		padding: 0 5%;
	}
	.main_bestrate a {
		height: auto;
		padding: 0;
		background: none;
	}
}
@media screen and (max-width: 480px) {
	.main_bestrate {
		margin: 0 auto 30px;
	}
}


/* ==============================================

	main_plan

================================================= */
#main_plan {
	padding: 80px 0;
	background: #f8f7f5;
	overflow: hidden;
}
.main_planArea {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 120px;
}
.main_plan_img {
	max-width: 700px;
	position: relative;
	width: 58%;
}
.main_plan_img::before {
	content: "PLAN";
	position: absolute;
	top: -35px;
	left: -20px;
	font-size: 12rem;
	writing-mode: vertical-lr;
	line-height: 0;
	z-index: 1;
	color: rgba(218,211,186, 0.4);
	font-family: "Cormorant Garamond", serif;
	font-weight: 300;
	letter-spacing: 0.05em;
}
.main_plan_img img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
/*
.main_plan_txt {
	width: 300px;
}
*/
#main_plan .cmn_ttl_h2 p {
	font-size: 5.6rem;
}
#main_plan .cmn_txt {
	margin-bottom: 50px;
}
#main_plan .cmn_btn {
	margin: 0 0 auto 0;
}
#main_plan + #main_chapel {
	margin-top: 100px;
}

@media screen and (max-width: 1366px) {
	#main_plan {
		padding: 120px 7%;
	}
	.main_planArea {
		max-width: inherit;
		column-gap: 80px;
	}
	.main_plan_txt {
		padding: 0;
	}
}
@media screen and (max-width: 1194px) {
	.main_plan_img::before {
		font-size: clamp(6rem, 8.5vw, 9rem);
	}
}
@media screen and (max-width: 1024px) {
	.main_planArea {
		gap: 60px;
	}
	.main_plan_img {
		width: 55%;
	}
	#main_plan .cmn_ttl_h2 p {
		font-size: 4.6rem;
	}
}
@media screen and (max-width: 896px) {
	#main_plan {
		padding: 110px 0 110px 20%;
		overflow: hidden;
	}
	.main_planArea {
		flex-flow: column;
		gap: 60px;
		align-items: flex-start;
	}
	.main_plan_img {
		width: 100%;
	}
	.main_plan_img::before {
		font-size: clamp(8rem, 8.5vw, 9rem);
	}
	.main_plan_img img {
		height: 400px;
		object-position: center bottom;
	}
	.main_plan_txt {
		margin: 0 auto 0 0;
	}
}
@media screen and (max-width:768px){
	.main_plan_txt {
		width: auto;
	}
	.main_plan_img {
		width: 100%;
	}
	.main_plan_img img {
		height: 350px;
	}
	#main_plan .cmn_ttl_h2 p {
		font-size: 4.2rem;
	}
}
@media screen and (max-width: 480px) {
	#main_plan {
		padding: 60px 0 60px 10%;
	}
	.main_plan_img::before {
		font-size: clamp(5.5rem, 13vw, 8rem);
		left: -10px;
	}
	.main_plan_img img {
		height: 240px;
	}
	.main_planArea {
		gap: 40px;
	}
	#main_plan .cmn_txt {
		margin-bottom: 40px;
	}
	.main_plan_txt {
		padding-right: 10%;
	}
	#main_plan .cmn_ttl_h2 p {
		font-size: 3.8rem;
	}
	#main_plan + #main_chapel {
		margin-top: 60px;
	}
}


/* ==============================================

	main_specialCon

================================================= */
#main_specialCon {
	padding: 100px 7%;
}
#main_specialCon .cmn_ttl_h2 {
	margin-bottom: 40px;
}
#main_specialCon .cmn_ttl_h2 p {
	text-align: center;
	font-size: 5rem;
}
.main_specialCon_slide {
	max-width: 1170px;
	margin: 0 auto;
}
.main_specialCon_slide article {
	width: calc(100% / 3);
	margin: 0 15px;
}
.main_specialCon_slide figure {
	overflow: hidden;
	aspect-ratio: 36 / 19;
}
.main_specialCon_slide figure img {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.main_specialCon_slide a:hover {
	opacity: 0.8;
}
.main_specialCon_slide a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
	#main_specialCon {
		padding: 100px 5%;
	}
}
@media screen and (max-width: 1024px) {
	#main_specialCon {
		padding: 90px 5%;
	}
	.main_specialCon_slide article {
		margin: 0 12px;
	}
	#main_specialCon .cmn_ttl_h2 p {
		font-size: 4.6rem;
	}
}
@media screen and (max-width: 768px) {
	#main_specialCon .cmn_ttl_h2 p {
		font-size: 4.2rem;
	}
}
@media screen and (max-width: 480px) {
	#main_specialCon {
		padding: 60px 0;
	}
	#main_specialCon .cmn_ttl_h2 p {
		font-size: 3.8rem;
	}
}


/* ==============================================

	main_scene

================================================= */
.main_scene {
	overflow: hidden;
}
.main_scene .font_en {
	font-size: 13rem;
}
.main_scene .cmn_ttl_h2 {
	margin-bottom: 45px;
}
.main_scene .cmn_ttl_h2 p {
	font-size: 5.8rem;
}
.main_scene_h3 {
	font-size: 2.4rem;
	line-height: 190%;
	font-weight: normal;
	letter-spacing: 0.15em;
	color: #9a853d;
	margin-bottom: 45px;
}
.main_scene_txt {
	line-height: 242%;
	margin-bottom: 40px;
	position: relative;
	word-break: keep-all;
}
.main_scene .cmn_btn {
	margin-left: 0;
}
@media screen and (max-width: 1024px) {
	.main_scene .cmn_ttl_h2 p {
		font-size: 5rem;
	}
	.main_scene_h3 {
		font-size: 2.2rem;
		line-height: 170%;
	}
}
@media screen and (max-width: 768px) {
	.main_scene .cmn_ttl_h2 p {
		font-size: 4.5rem;
	}
}
@media screen and (max-width: 480px) {
	.main_scene .cmn_ttl_h2 {
		margin-bottom: 40px;
	}
	.main_scene .cmn_ttl_h2 p {
		font-size: 3.8rem;
	}
	.main_scene_h3 {
		font-size: 1.8rem;
		line-height: 160%;
	}
	.main_scene_txt {
		line-height: 200%;
	}
	.main_scene .cmn_btn {
		margin-left: auto;
	}
}


/* ==============================================

	main_chapel

================================================= */
#main_chapel {
	background: #f8f7f5;
	padding: 90px 5% 90px 0;
	overflow: hidden;
}
.main_chapel_img {
	display: flex;
	align-items: flex-end;
	gap: 40px;
	padding-bottom: 50px;
}
.main_chapel_imgMain {
	position: relative;
	width: 85%;
}
.main_chapel_imgMain .font_en {
	position: absolute;
	top: 40px;
	right: -2.5em;
	color: rgba(255,255,255,0.4);
	z-index: 1;
}
.main_chapel_imgMain .font_en::after {
	position: absolute;
	content: "APEL";
	top: 0;
	font-size: 13rem;
	right: 0;
	color: rgba(218,211,186,0.4);
}
.main_chapel_imgMain figure img {
	width: 100%;
	height: 650px;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
.main_chapel_img > figure {
	margin-bottom: -50px;
}
.main_chapel_txtArea {
	max-width: 1150px;
	margin: 40px auto 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 60px;
}
@media screen and (max-width: 1366px) {
	.main_chapel_txtArea {
		max-width: inherit;
		padding: 0 0 0 8%;
	}
	.main_chapel_imgMain .font_en,
	.main_chapel_imgMain .font_en::after {
		font-size: clamp(10rem, 10vw, 12rem);
	}
}
@media screen and (max-width: 1024px) {
	#main_chapel {
		padding: 90px 0;
	}
	.main_chapel_img {
		gap: 30px;
	}
	.main_chapel_imgMain {
		width: 75%;
	}
	.main_chapel_img > figure {
		width: 25%;
	}
	.main_chapel_imgMain figure img {
		height: 450px;
	}
}
@media screen and (max-width: 896px) {
	#main_chapel {
		padding: 20px 0 90px;
	}
	.main_chapel_img {
		padding-bottom: 0;
	}
	.main_chapel_imgMain {
		width: 90%;
	}
	.main_chapel_imgMain .font_en {
		position: inherit;
		color: rgba(218,211,186,0.4);
		text-align: right;
		top: 30px;
		right: -10%;
		z-index: 1;
	}
	.main_chapel_imgMain .font_en::after {
		display: none;
	}
	.main_chapel_txtArea {
		margin: 8% auto 0;
		width: max-content;
		padding: 0 8%;
	}
}
@media screen and (max-width: 640px) {
	.main_chapel_imgMain .font_en {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
		top: 25px;
	}
}
@media screen and (max-width: 480px) {
	#main_chapel {
		padding: 20px 0 60px;
	}
	.main_chapel_txtArea {
		width: auto;
	}
	.main_chapel_imgMain .font_en {
		font-size: clamp(5.5rem, 13vw, 8rem);
		top: 15px;
	}
}


/* ==============================================

	main_banquet

================================================= */
#main_banquet {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	gap: 5%;
	margin: 90px 0;
	position: relative;
	padding-top: 50px;
	overflow: hidden;
}
#main_banquet::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: calc(100% - 50px);
	background: #f2f0ea;
	display: block;
}
#main_banquet > * {
	position: relative;
}

/*---------------------------------------------
	main_banquet_txt
---------------------------------------------*/
.main_banquet_main {
	margin: 10% 0 0 8%;
	position: relative;
}
.main_banquet_main::before {
	content: "BANQUET";
	position: absolute;
	top: -1.5em;
	left: -70px;
	font-size: 13rem;
	color: rgba(218,211,186,0.3);
	writing-mode: vertical-lr;
	white-space: nowrap;
	font-weight: 300;
}
.main_banquet_txt {
	position: relative;
	padding-left: 16%;
}
.main_banquet_txt h3 {
	margin-bottom: 40px;
}


/*---------------------------------------------
	main_banquet_img
---------------------------------------------*/
.main_banquet_img {
	width: 56.8%;
	overflow: hidden;
}
.main_banquet_img_inner{
	margin-left: 0;
	width: 63%;
}
.main_banquet_img_lineup{
	position: relative;
	padding-bottom: 20px
}
.main_banquet_imgSlide section {
	margin-right: 30px;
	background: #f8f7f5;
}
.main_banquet_imgSlide .slick-list{
	overflow: visible;
}
.main_banquet_imgSlide figure {
	overflow: hidden;
}
.main_banquet_imgSlide figure img {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.main_banquet_imgSlide a:hover {
	opacity: 0.8;
}
.main_banquet_imgSlide a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

/*---------------------------------------------
	main_banquet_info
---------------------------------------------*/
.main_banquet_info {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 25px 15px;
}
.main_banquet_ttl {
	margin-bottom: 30px;
	color: #987c1b;
}
.main_banquet_ttl h3 {
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 10px;
}
.main_banquet_ttl p {
	font-size: 2.4rem;
}
.banquet_spec {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	gap: 10px 15px;
}
.banquet_spec span {
	display: inline-block;
	border: 1px solid #5e5e5e;
	padding: 3px 10px;
}
.banquet_spec dl {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 5px 0;
}
.banquet_spec dl dt::after {
	content: "／";
}

/*---------------------------------------------
	#main_banquet .slick-arrow.prev
---------------------------------------------*/
#main_banquet .slick-arrow.prev {
	top: inherit;
	left: 0;
	bottom: -8px;
	width: 16px;
	height: 16px;
	padding: 0;
}
#main_banquet .slick-arrow.next {
	top: inherit;
	left: 7.7em;
	bottom: -8px;
	width: 16px;
	height: 16px;
	z-index: 2;
	padding: 0;
}
#main_banquet .slick-dots {
	text-align: left;
	margin-top: 15px!important;
	margin-left: 35px;
}
#main_banquet .slick-disabled {
	filter: brightness(0) saturate(100%) invert(91%) sepia(1%) saturate(785%) hue-rotate(24deg) brightness(92%) contrast(89%);
}

@media screen and (max-width: 1600px) {
	#main_banquet::before {
		height: 100%;
	}
	.main_banquet_img_inner {
		width: 70%;
	}
}
@media screen and (max-width: 1366px) {
	.main_banquet_main {
		margin: 4% 0 0 5%;
	}
	.main_banquet_main::before {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
		left: -40px;
		top: -8%;
	}
	#main_banquet h2 {
		font-size: clamp(10rem, 10vw, 13rem);
	}
	.main_banquet_img_inner {
		width: 80%;
	}
	.main_banquet_imgSlide section {
		margin-right: 25px;
	}
}
@media screen and (max-width: 1024px) {
	#main_banquet {
		padding: 50px 0;
	}
	.main_banquet_img_inner {
		width: 85%;
	}
}
@media screen and (max-width: 896px) {
	#main_banquet {
		flex-flow: column;
		padding: 0 0 100px;
	}
	#main_banquet::before {
		width: 40%;
	}
	.main_banquet_img {
		width: 85%;
		margin-left: auto;
	}
	.main_banquet_main {
		margin: 8% auto 0;
	}
	.main_banquet_main::before {
		top: 0;
		left: -20px;
	}
	#main_banquet h2 {
		margin-bottom: 50px;
	}
	/*
	.main_banquet_main {
		margin: 4% 0 0 3%;
	}
	.main_banquet_img_inner {
		width: 94%;
	}
	.main_banquet_imgSlide section {
		margin-right: 20px;
	}
	*/
}
@media screen and (max-width: 640px) {
	.main_banquet_img_inner {
		width: 90%;
	}
	.main_banquet_img {
		width: 90%;
	}
	#main_banquet h2 {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
	}
	.main_banquet_main {
		margin-right: 0;
		padding-right: 5%;
	}
	.main_banquet_main::before {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
	}
}
@media screen and (max-width: 480px) {
	#main_banquet {
		padding-bottom: 60px;
		margin: 60px 0;
	}
	.main_banquet_main {
		margin-right: 0;
		padding: 0 10%;
	}
	#main_banquet h2 {
		margin-bottom: 40px;
		font-size: clamp(3.8rem, 13vw, 8rem);
	}
	.main_banquet_txt {
		padding-left: 0;
	}
	.main_banquet_txt h3 {
		margin-bottom: 30px;
	}
	.main_banquet_main::before {
		font-size: clamp(5.5rem, 13vw, 8rem);
		left: inherit;
		right: 0;
	}
	.main_banquet_imgSlide section {
		margin-right: 15px;
	}
	.main_banquet_info {
		padding: 20px 15px;
	}
	.main_banquet_ttl {
		margin-bottom: 20px;
	}
	.main_banquet_ttl h3 {
		margin-bottom: 5px;
	}
	.main_banquet_ttl p {
		font-size: 2.2rem;
	}
	#main_banquet .cmn_btn {
		width: 100%;
		margin: 0 auto;
	}
}


/* ==============================================

	main_cuisine

================================================= */
#main_cuisine {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 64px;
	padding: 110px 9%;
	overflow: hidden;
	background: #f8f7f5;
}
.main_cuisine_img {
	display: flex;
	gap: 10px;
}
.main_cuisine_img ul {
	margin-top: 60px;
}
.main_cuisine_img ul li:not(:last-child) {
	margin-bottom: 10px;
}
.main_cuisine_main .font_en {
	margin-left: -1.25em;
	margin-bottom: 120px;
}
.main_cuisine_main .font_en::first-letter {
	color: rgba(255,255,255,0.45);
}
.main_cuisine_txt {
	width: max-content;
}
@media screen and (max-width: 1536px) {
	#main_cuisine {
		align-items: flex-start;
		padding: 110px 7% 110px 3%;
	}
}
@media screen and (max-width: 1366px) {
	.main_cuisine_main .font_en {
		font-size: clamp(10rem, 10vw, 12rem);
	}
}
@media screen and (max-width: 1194px) {
	.main_cuisine_main .font_en {
	}
}
@media screen and (max-width: 1112px) {
	.main_cuisine_main .font_en {
	}
}
@media screen and (max-width: 1024px) {
	#main_cuisine {
		align-items: flex-start;
		padding: 110px 5%;
		gap: 40px;
	}
	.main_cuisine_main .font_en {
		margin-left: -1.15em;
	}
}
@media screen and (max-width: 896px) {
	#main_cuisine {
		flex-flow: column;
		padding: 110px 7%;
		gap: 60px;
		position: relative;
	}
	.main_cuisine_img {
		padding-bottom: 0;
	}
	.main_cuisine_main {
		margin: 0 auto;
	}
	.main_cuisine_main .font_en {
		position: absolute;
		right: 2%;
		top: 3%;
	}
	.main_cuisine_main .font_en::first-letter {
		color: inherit;
	}
}
@media screen and (max-width: 640px) {
	.main_cuisine_main .font_en {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
	}
}
@media screen and (max-width: 480px) {
	#main_cuisine {
		gap: 40px;
		padding: 70px 7% 60px;
	}
	.main_cuisine_main, .main_cuisine_txt {
		width: 100%;
	}
	.main_cuisine_main .font_en {
		font-size: clamp(5.5rem, 13vw, 8rem);
		margin-bottom: 30px;
	}
	#main_cuisine .cmn_btn {
		margin-left: 0;
	}
}


/* ==============================================

	main_dress

================================================= */
#main_dress {
	display: flex;
	flex-flow: row-reverse;
	align-items: flex-start;
	justify-content: center;
	padding: 110px 0;
	overflow: hidden;
}
.main_dress_img {
	margin-top: 30px;
}
.main_dress_img ul {
	display: flex;
	gap: 20px;
}
.main_dress_img ul li:first-child {
	margin-top: 40px;
}
.main_dress_main {
	background: rgba(248,247,245,0.6);
	min-height: 810px;
	margin: 0 -80px 0 0;
	position: relative;
	max-width: 640px;
	width: 50%;
	padding: 170px 0 50px 60px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.main_dress_main .font_en {
	position: relative;
	text-align: right;
	z-index: 1;
	margin-right: 0.1em;
}
.main_dress_main .font_en span {
	color: rgba(255,255,255,0.45);
}
.main_dress_txt {
	position: relative;
	width: max-content;
	padding-right: 50px;
}
.main_dress_txt h3 {
	margin-bottom: 40px;
}
@media screen and (max-width: 1366px) {
	.main_dress_main .font_en {
		font-size: clamp(10rem, 10vw, 12rem);
	}
}
@media screen and (max-width: 1194px) {
	.main_dress_main {
		min-height: inherit;
		padding: 140px 0 50px 60px;
	}
	.main_dress_main .font_en {
		margin-bottom: 25%;
	}
}
@media screen and (max-width: 896px) {
	#main_dress {
		flex-flow: column;
	}
	.main_dress_img {
		padding: 0 7%;
		margin-top: 0;
	}
	.main_dress_main {
		width: 90%;
		margin: -20% 0 0 auto;
		padding: 60px 60px 50px 60px;
	}
	.main_dress_main .font_en {
		width: max-content;
		margin: 0 0 0 auto;
		margin-bottom: 18%;
	}
	.main_dress_main .font_en span {
		color: inherit;
	}
	.main_dress_txt {
		padding-right: 0;
	}
}
@media screen and (max-width: 640px) {
	#main_dress {
		overflow: hidden;
	}
	.main_dress_img {
		padding: 0;
	}
	.main_dress_img ul {
		gap: 10px;
	}
	.main_dress_main {
		width: 93%;
	}
	.main_dress_main .font_en {
		font-size: clamp(5rem, -7rem + 40vw, 9rem);
	}
}
@media screen and (max-width: 480px) {
	#main_dress {
		margin-bottom: 0;
		padding: 60px 0;
	}
	.main_dress_main {
		padding: 20px 7% 60px;
	}
	.main_dress_txt {
		width: auto;
	}
	.main_dress_h2 {
		margin-right: 5%;
	}
	.main_dress_txt h3 {
		margin-bottom: 30px;
	}
	.main_dress_main .font_en {
		font-size: clamp(5.5rem, 13vw, 8rem);
		margin-bottom: 10%;
	}
	#main_dress .cmn_btn {
		margin-left: 0;
	}
}


/* ==============================================

	main_instagram

================================================= */
#main_instagram {
	padding: 90px 0;
	background: #f8f7f5;
	margin-bottom: 90px;
}

/*---------------------------------------------
	main_instagram_main
---------------------------------------------*/
.main_instagram_main {
	max-width: 1000px;
	margin: 0 auto 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px 8%;
}
.main_instagram_ttl {
	position: relative;
}
.main_instagram_ttl h2 {
	font-size: 4.4rem;
	font-weight: 400;
	color: #987c1b;
	letter-spacing: 0.15em;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	position: relative;
	font-family: "Cormorant Garamond", serif;
}
.main_instagram_ttl p {
	font-size: 1.6rem;
	font-family: "EB Garamond", serif;
	display: flex;
	align-items: center;
	gap: 10px;
}
.main_instagram_ttl p::before {
	content: "";
	background: url("images/icon_instagram.svg") center no-repeat;
	width: 20px;
	height: 20px;
	background-size: contain;
	display: block;
	filter: brightness(0) saturate(100%) invert(42%) sepia(100%) saturate(372%) hue-rotate(9deg) brightness(93%) contrast(87%);
}
.main_instagram_ttl p a {
	color: #987c1b;
}
.main_instagram_txt {
	line-height: 185%;
	display: flex;
	align-items: center;
	position: relative;
}
.main_instagram_txt p {
	position: relative;
}
.insta_list ul {
	display: flex;
	flex-flow: row wrap;
	gap: 5px;
}
.insta_list ul li {
	width: calc((100% - 35px) / 8);
}
.insta_list ul li figure {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	position: relative;
}
.insta_list ul li figure img {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.insta_list ul li a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
	.main_instagram_main {
		max-width: inherit;
		padding: 0 6%;
	}
}@media screen and (max-width: 896px) {
	.main_instagram_main {
		flex-flow: column;
		gap: 60px;
	}
	.main_instagram_main > * {
		flex: inherit;
		width: 100%;
	}
	.main_instagram_txt {
		margin: 0 auto;
	}
	.main_instagram_ttl {
		width: max-content;
	}
}
@media screen and (max-width: 768px) {
	.main_instagram_txt {
		width: 100%;
	}
	.insta_list ul li {
		width: calc((100% - 15px) / 4);
	}
}
@media screen and (max-width: 640px) {
	.main_instagram_txt p {
		word-break: inherit;
	}
}
@media screen and (max-width: 480px) {
	#main_instagram {
		padding: 60px 0;
		margin-bottom: 60px;
	}
	.main_instagram_main {
		margin-bottom: 40px;
		gap: 40px;
		padding: 0 8%;
	}
	.main_instagram_ttl {
	}
	.main_instagram_ttl h2 {
		margin-bottom: 20px;
		font-size: clamp(3.5rem, 8vw, 4.4rem);
		letter-spacing: 0.1em;
	}
	.main_instagram_ttl p {
		font-size: 1.4rem;
	}
	.main_instagram_txt p {
		line-height: 170%;
	}
}


/* ==============================================

	main_cont

================================================= */
#main_cont {
	padding: 50px 5% 90px;
	background: #f8f7f5;
}
.main_contArea {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: 80px 7%;
}
#main_cont .font_en {
	font-size: 6rem;
	color: rgba(218,211,186,0.9);
	text-align: right;
	position: relative;
	z-index: 1;
}
#main_cont figure {
	margin: -18px 0 40px;
}
#main_cont .cmn_ttl_h2 {
	margin-bottom: 45px;
}
#main_cont .cmn_txt {
	margin-bottom: 45px;
}
#main_cont .cmn_btn {
	margin: 0 auto 0 0;
}
@media screen and (max-width: 1024px) {
	.main_contArea {
		gap: 80px 6%;
	}
	#main_cont .font_en {
		font-size: 5.5rem;
	}
	#main_cont figure {
		margin-top: -15px;
	}
}
@media screen and (max-width: 896px) {
	#main_cont {
		padding: 50px 8% 90px;
	}
	.main_contArea {
		flex-flow: column;
		max-width: 650px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 480px) {
	#main_cont {
		padding: 40px 8% 60px;
	}
	.main_contArea {
		gap: 60px 6%;
	}
	#main_cont .font_en {
		font-size: 4.6rem;
	}
	#main_cont figure {
		margin: -15px 0 25px;
	}
	#main_cont .cmn_ttl_h2 {
		margin-bottom: 35px;
	}
}


/* ==============================================

	main_page

================================================= */
#main_page {
	padding: 100px 5%;
}
.main_pageArea {
	max-width: 1360px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	gap: 60px;
}
#main_page section {
	max-width: 650px;
	width: calc((100% - 60px) / 2);
	display: flex;
	padding: 30px 30px 40px 0;
	position: relative;
}
#main_page section::after {
	content: "";
	background: #f8f7f5;
	position: absolute;
	top: 0;
	right: 0;
	width: 82.8%;
	height: 100%;
}
#main_page section > * {
	position: relative;
	z-index: 1;
}
.main_page_en {
	writing-mode: vertical-rl;
	font-size: 7rem;
	color: rgba(218,211,186,0.4);
}
.main_page_box .cmn_ttl_h2 {
	text-align: left;
	margin: 40px 0 45px;
}
.main_page_box .cmn_ttl_h2 p {
	font-size: 3.6rem;
	letter-spacing: 0.1em;
}
.main_page_txt {
	width: 82.8%;
	margin-left: auto;
}
.main_page_txt p {
	line-height: 171%;
	margin-bottom: 40px;
}
@media screen and (max-width: 1536px) {
	#main_page {
		padding: 100px 5% 100px 3%;
	}
}
@media screen and (max-width: 1366px) {
	.main_pageArea {
		gap: 50px;
	}
	#main_page section {
		width: calc((100% - 50px) / 2);
	}
	#main_page section::after {
		width: 78.5%;
	}
}
@media screen and (max-width: 1024px) {
	.main_pageArea {
		gap: 50px 40px;
	}
	#main_page section {
		width: calc((100% - 40px) / 2);
	}
	.main_page_en {
		font-size: 6rem;
	}
	.main_page_box .cmn_ttl_h2 p {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 896px) {
	.main_pageArea {
		flex-flow: column;
		gap: 0;
	}
	#main_page section {
		width: 80%;
		margin: 0 auto;
		padding: 30px 30px 60px 0;
	}
	.main_page_en {
		font-size: 7rem;
	}
}
@media screen and (max-width: 768px) {
	#main_page section {
		width: 85%;
	}
}
@media screen and (max-width: 640px) {
	#main_page section {
		width: 90%;
	}
	#main_page section::after {
		width: 78%;
	}
}
@media screen and (max-width: 480px) {
	#main_page {
		padding: 60px 0;
		overflow: hidden;
	}
	#main_page section {
		width: 100%;
		padding: 20px 20px 60px 0;
	}
	#main_page section:last-child {
		padding: 20px 20px 45px 0;
	}
	.main_page_en {
		font-size: 5.5rem;
	}
	.main_page_box .cmn_ttl_h2 {
		margin: 20px 0 25px;
	}
	.main_page_box .cmn_ttl_h2 p {
		font-size: 3.0rem;
	}
	.main_page_txt {
		width: 100%;
	}
	#main_page .cmn_btn {
		margin-left: 0;
	}
}


/* ==============================================

	main_report

================================================= */
#main_report {
	padding: 90px 5%;
	background: #f8f7f5;
}
#main_report .cmn_ttl_h2 {
	margin-bottom: 60px;
	text-align: center;
}
.report_contents {
	max-width: 1400px;
	margin: 0 auto 60px;
}
.report_contents article {
	width: calc((100% / 4));
}
#main_report .report_contents article {
	margin: 0 15px;
}
.report_contents article figure {
	overflow: hidden;
	aspect-ratio: 22 / 21;
	margin-bottom: 20px;
}
.report_contents article figure img {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.report_contents article a:hover {
	opacity: 0.8;
}
.report_contents article a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
.report_contents article h3, .report_contents article h2 {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 133%;
	margin-bottom: 30px;
	text-align: center;
}

@media screen and (max-width: 1366px) {
	#main_report .report_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1024px) {
	#main_report {
		padding: 90px 5%;
	}
	#main_report .report_contents article {
		margin: 0 10px;
	}
}
@media screen and (max-width: 480px) {
	#main_report {
		padding: 60px 0;
	}
	#main_report .cmn_ttl_h2 {
		margin-bottom: 30px;
	}
	#main_report .report_contents {
		margin-bottom: 30px;
	}
	#main_report .report_contents article {
		margin: 0 12px;
	}
}


/* ==============================================

	main_photogallery

================================================= */
#main_photogallery {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px 120px;
	padding: 100px 5% 140px;
	overflow: hidden;
}
#main_photogallery .cmn_ttl_h2 {
	text-align: center;
}
.main_photogallery_txt {
	line-height: 242%;
	margin-bottom: 40px;
	position: relative;
	text-align: center;
	word-break: keep-all;
}
.main_photogallery_img {
	position: relative;
}
.main_photogallery_img p {
	position: absolute;
	left: -10%;
	bottom: -10%;
	letter-spacing: 0;
	white-space: nowrap;
	font-size: clamp(7.8rem, 7.5vw, 13rem);
	line-height: 85%;
}
@media screen and (max-width: 1366px) {
	#main_photogallery {
		gap: 60px 8%;
	}
	.main_photogallery_img p {
		font-size: clamp(5rem, 7vw, 10rem);
	}
}
@media screen and (max-width: 1194px) {
	.main_photogallery_img p {
		white-space: inherit;
		bottom: -20%;
		font-size: clamp(6rem, 9vw, 10rem);
	}
}
@media screen and (max-width: 1024px) {
	.main_photogallery_img p {
		bottom: -30%;
	}
}
@media screen and (max-width: 896px) {
	#main_photogallery {
		flex-flow: column-reverse;
		padding: 120px 0 100px;
	}
	.main_photogallery_img {
		margin-left: auto;
		padding-left: 10%;
	}
	.main_photogallery_img p {
		top: -12%;
		left: inherit;
		right: 0;
		bottom: inherit;
		font-size: clamp(8rem, 10vw, 12rem);
	}
	.main_photogallery_main {
		padding: 0 5%;
	}
}
@media screen and (max-width: 768px) {
	.main_photogallery_img p {
		font-size: clamp(6rem, 10vw, 8rem);
	}
}
@media screen and (max-width: 640px) {
	#main_photogallery {
		gap: 40px;
		padding: 40px 0 60px;
	}
	.main_photogallery_img {
		display: flex;
		flex-flow: column-reverse;
	}
	.main_photogallery_img p {
		font-size: clamp(5.5rem, 13vw, 10rem);
		position: relative;
		top: inherit;
		left: inherit;
		text-align: right;
	}
	.main_photogallery_img figure {
		margin-top: -10px;
	}
	.main_photogallery_txt {
		line-height: 200%;
		word-break: inherit;
	}
}


/* ==============================================

	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: #d8cebd;
}
.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, .side_contact {
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
}
.side_request a, .side_fair a, .side_contact 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: #f3efec;
	color: #5d5650;
}
.side_request a::before {
	content: "";
	background: url("images/icon_request.svg") center no-repeat;
	width: 27px;
	height: 20px;
	display: inline-block;
	margin-bottom: 10px;
	background-size: contain;
	filter: brightness(0) saturate(100%) invert(34%) sepia(6%) saturate(696%) hue-rotate(346deg) brightness(92%) contrast(88%);
}
.side_request a:hover {
	background: #ece7e1;
}

.side_fair a, .side_contact a {
	background: #a98f37;
	color: #fff;
}
.side_fair a::before {
	content: "";
	background: url("images/icon_church.svg") center no-repeat;
	width: 21px;
	height: 30px;
	display: inline-block;
	margin-bottom: 10px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_contact a::before {
	content: "";
	background: url("images/icon_contact.svg") center no-repeat;
	width: 24px;
	height: 18px;
	display: inline-block;
	margin-bottom: 10px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_fair a:hover, .side_contact a:hover {
	opacity: 0.75;
}

@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: #8b805f;
		font-size: 1.4rem;
		padding-bottom: 5px;
	}
	#btn_fixed ul li a::before {
		content: "";
		display: inline-block;
		margin-bottom: 5px;
		filter: brightness(0) saturate(100%) invert(31%) sepia(61%) saturate(435%) hue-rotate(10deg) brightness(96%) contrast(89%);
	}
	.bf_fair a {
		background: #a98f37;
		color: #fff!important;
	}
	.bf_fair a::before {
		background: url("images/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_contact a {
		background: #a98f37;
		color: #fff!important;
	}
	.bf_contact a::before {
		background: url("images/icon_contact.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_visit a {
		background: #eeece8;
	}
	.bf_visit a::before {
		background: url("images/icon_calendar.svg") center no-repeat;
		width: 26px;
		height: 26px;
		background-size: contain;
	}
	.bf_request a::before {
		background: url("images/icon_request.svg") center no-repeat;
		width: 27px;
		height: 30px;
		background-size: contain;
	}
	.bf_tel a {
		background: #f1efe6;
	}
	.bf_tel a::before {
		background: url("images/icon_smartphone.svg") center no-repeat;
		width: 22px;
		height: 22px;
		background-size: contain;
	}
}
@media screen and (max-width: 480px) {
	#btn_fixed ul li a {
		font-size: 1.2rem;
	}
}


/* ==============================================

	footer

================================================= */
footer {
	position: relative;
	z-index: 2;
	padding: 50px 5% 20px;
	background: #8c7e51;
	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: 5px;
}
.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;
	line-height: 130%;
}
.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("images/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: 670px;
	flex: 1;
}
.f_menu {
	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;
	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: 670px;
	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;
	max-width: 430px;
	margin: 0 auto 30px;
	flex-flow: row wrap;
	gap: 15px 8px;
}
.f_memberLink a {
	font-size: 1.2rem;
}
.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;
}

@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);
	}
	.f_btn {
		flex-flow: row wrap;
		gap: 20px;
	}
}
@media screen and (max-width: 1024px) {
	footer {
		margin-bottom: 70px;
		padding-bottom: 30px;
	}
	.footerArea {
		gap: 0 6%;
	}
	.f_tel dl dd {
		white-space: normal;
		line-height: calc(16 / 11);
	}
	.f_btn > * {
		width: 47%;
		max-width: inherit;
		flex: inherit;
	}
	.f_btn .btn_cont {
		width: 100%;
	}
}
@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: 120px;
	}
	.f_logo p,
	.f_address,
	.f_tel p,
	.f_tel dl {
		font-size: 1.2rem;
	}
	.f_btn {
		gap: 15px;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright{
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	padding: 60px 0 0;
	background: #8c7e51;
}

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