@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;
}
::-moz-selection {
	color: #fff;
	background-color: #385eb2;
}
::selection {
	color: #fff;
	background-color: #385eb2;
}
@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;
}
.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.4rem;
}
#gnav ul li a:hover {
	color: #d8cec5;
}
@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(16,51,129,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: #052c83;
}

/*---------------------------------------------
	h_rsvBtn
---------------------------------------------*/
.h_rsvBtn a {
	width: 90px;
	height: 80px;
	background: rgba(100,100,100,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: #5b5b5b;
}

/*---------------------------------------------
	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: 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: #103381;
	-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: #fff;
}
.h_fixed .h_logo {
	opacity: 1;
}
.h_fixed .h_logo img {
	filter: brightness(0) saturate(100%) invert(19%) sepia(25%) saturate(4797%) hue-rotate(204deg) brightness(89%) contrast(99%);
}
.h_fixed .h_nav a {
	color: #222222;
}
.h_fixed .h_nav a:hover {
	opacity: 0.7;
	color: #222222!important;
}
.h_fixed .h_fairBtn a {
	background: rgba(16, 51, 129, 1);
}
.h_fixed .h_fairBtn a:hover {
	background: rgba(16, 51, 129, 0.85);
}
.h_fixed .h_rsvBtn a {
	background: rgba(100,100,100, 1);
}
.h_fixed .h_rsvBtn a:hover {
	background: rgba(100,100,100, 0.85);
}
.h_fixed .h_tglBtn {
	background: #fff;
}
.h_fixed .nav_toggle:hover {
	background: #f3f7ff;
}
.h_fixed .nav_toggle span {
	background: #103381;
}

@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: 48px;
	}
	.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: #afb9cf;
}
.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: 35px;
	}
	.remodal_h {
		height: 60px;
		padding: 0 20px;
	}
	*/
}
@media screen and (max-width: 480px) {
	.remodal_logo {
		margin-top: 20px;
	}
	.remodal_logo img {
		height: 48px;
	}
}


/*---------------------------------------------
	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: 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: 25px;
}
.remodal_sns li img {
	width: 20px;
	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;
}

/*---------------------------------------------
	remodal_sitemap
---------------------------------------------*/
.remodal_sitemap {
	font-size: 1.3rem;
	margin-bottom: 25px;
}
@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;
	}
	.remodal_memberLink.f_memberLink {
		margin: 25px 0 20px;
	}
	.remodal_sitemap {
		font-size: 1.2rem;
	}
}

/* ==============================================

	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: #103381!important;
	border: none;
}
.cmn_btnBdr_blue a, .cmn_btnBdr_blue input, .cmn_btn button {
	border: 1px solid #103381;
	color: #103381;
	background: #fff;
}
.cmn_btnBdr_blue a:hover, .cmn_btnBdr_blue input:hover, .cmn_btn button:hover {
	background: #103381;
	color: #fff;
	border: none;
}

.cmn_btnBg_blue a, .cmn_btnBg_blue input, .cmn_btnBg_blue button {
	background: #103381;
	color: #fff;
}
.cmn_btnBg_blue a:hover, .cmn_btnBg_blue input:hover, .cmn_btnBg_blue button:hover {
	background: #fff;
	color: #103381;
	border: 1px solid #103381;
}
.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: 8px;
	height: 8px;
	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: 8px;
  height: 8px;
  transform: rotate(45deg);
}
.cmn_arrow.cmn_btnBg_blue span::after,
.cmn_arrow.cmn_btnBdr_blue:hover span::after,
.cmn_arrow.cmn_btnBg_blue a::after,
.cmn_arrow.cmn_btnBdr_blue:hover a::after{
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cmn_arrow_back.cmn_btnBdr_blue:hover a::after,
.cmn_arrow_back.cmn_btnBg_blue span::after,
.cmn_arrow_back.cmn_btnBg_blue a::after,
.cmn_arrow_back.cmn_btnBdr_blue:hover span::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.cmn_arrow.cmn_btnBdr_blue span::after,
.cmn_arrow.cmn_btnBg_blue:hover span::after,
.cmn_arrow.cmn_btnBdr_blue a::after,
.cmn_arrow.cmn_btnBg_blue:hover a::after {
  border-top: 1px solid #103381;
  border-right: 1px solid #103381;
}
.cmn_arrow_back.cmn_btnBdr_blue a::after,
.cmn_arrow_back.cmn_btnBg_blue:hover span::after,
.cmn_arrow_back.cmn_btnBg_blue:hover a::after,
.cmn_arrow_back.cmn_btnBdr_blue span::after {
  border-left: 1px solid #103381;
  border-bottom: 1px solid #103381;
}
.remodal_btn > * {
	width: 240px;
}
.remodal_mainBtn > * {
	width: 310px;
}
.remodal_mainBtn a {
	height: 60px;
}
.f_btn > * {
	flex: 0 1 240px;
}
.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 {
	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: #103381;
}
#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) {
	.remodal_mainBtn > * {
		width: 47%;
	}
}
@media screen and (max-width: 640px) {
	.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(16%) sepia(98%) saturate(1428%) hue-rotate(209deg) brightness(90%) contrast(106%);
}
.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 a:hover::before {
	filter: brightness(0) saturate(100%) invert(16%) sepia(98%) saturate(1428%) hue-rotate(209deg) brightness(90%) contrast(106%);
}
.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(16%) sepia(98%) saturate(1428%) hue-rotate(209deg) brightness(90%) contrast(106%);
}
.btn_rsv a::before {
	content: "";
	background: url("images/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(16%) sepia(98%) saturate(1428%) hue-rotate(209deg) brightness(90%) contrast(106%);
}


/* ==============================================

	more_btn

================================================= */
.more_btn {
	position: relative;
	margin: 0 auto;
	text-align: left
}
.more_btn span, .more_btn a {
	padding: 0 0 6px 0;
	display: inline-block;
	font-size: 1.3rem;
	color: #103381;
	-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 {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	transform: rotate(45deg);
	border-top: 1px solid #103381;
	border-right: 1px solid #103381;
}
.more_btn span::after, .more_btn a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 1px;
	background: #8697bb;
}
.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 {
	text-align: center;
	margin-bottom: 70px;
}
.cmn_ttl_h2 p {
	font-size: 4.6rem;
	letter-spacing: 0.15em;
	color: #103381;
	margin-bottom: 20px;
}
.cmn_ttl_h2 h2 {
	font-size: 1.5rem;
	letter-spacing: 0.15em;
	color: #686868;
	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 {
	text-align: center;
	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

================================================= */
.en_icon {
	font-size: 13rem;
	color: rgba(177,156,127,0.3);
}


/* ==============================================

	main_contents

================================================= */
#main_contents {
	background: #fff;
	padding-bottom: 100px;
}
@media screen and (max-width: 480px) {
	#main_contents {
		padding-bottom: 0;
	}
}


/* ==============================================

	top_concept

================================================= */
.lity-active {
	overflow: hidden;
}
#top_concept {
	background: rgba(0,0,0,0.4);
	padding: 90px 5%;
	text-align: center;
	margin-bottom: 800px;
	color: #fff;
}

#top_concept h2 {
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	margin-bottom: 70px;
	line-height: 156%;
	font-weight: 400;
	font-family: "Cormorant Garamond", serif;
}
#top_concept p {
	line-height: 226%;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}
.top_conceptBtn {
	margin-top: 70px;
}
.top_conceptBtn a {
	max-width: 300px;
	height: 50px;
	color: #fff;
	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: 0 auto;
	border: 1px solid #fff;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
}
.top_conceptBtn a::after {
	content: "";
	background: url("images/concept_icon.svg") center no-repeat;
	position: absolute;
	right: 20px;
	width: 28px;
	height: 28px;
	background-size: contain;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.top_conceptBtn a:hover{
	background: #fff;
	color: #103381;
	border: none;
}
.top_conceptBtn a:hover::after {
	filter: brightness(0) saturate(100%) invert(19%) sepia(25%) saturate(4797%) hue-rotate(204deg) brightness(89%) contrast(99%);
}

@media screen and (max-width: 1194px) {
	.lity-container {
		padding: 0 60px;
	}
}
@media screen and (max-width: 1024px) {
	#top_concept h2 {
		margin-bottom: 50px;
	}
	.top_conceptBtn {
		margin-top: 50px;
	}
}
@media screen and (max-width: 768px) {
	#top_concept h2 {
		font-size: 3.2rem;
	}
	.lity-container {
		padding: 0 30px;
	}
}
@media screen and (max-width: 640px) {
	#top_concept h2 {
		font-size: 2.8rem;
		margin-bottom: 40px;
	}
	.top_conceptBtn {
		margin-top: 40px;
	}
	.lity-container {
		padding: 0 20px;
	}
}
@media screen and (max-width: 480px) {
	#top_concept {
		padding: 80px 5%;
	}
	#top_concept h2 {
		font-size: 2.2rem;
		letter-spacing: 0.2rem;
	}
	#top_concept p {
		line-height: 200%;
	}
}


/* ==============================================

	main_topics

================================================= */
#main_topics {
	background: #f6f6f6;
	padding: 30px 5%;
}
.main_topicsArea {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 25px 50px;
}
.main_topics_info {
	display: flex;
	align-items: center;
	gap: 50px;
}
.main_topics_info p {
	font-size: 2.0rem;
	color: #103381;
	letter-spacing: 0.1em;
}
.main_topics_info div {
	display: flex;
	align-items: center;
	gap: 15px;
}
.main_topics_info time {
	font-size: 1.5rem;
}
.main_topics_ttl {
	flex: 1;
}
.main_topicsArea h2 {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 142%;
}
.main_topics_ttl a {
	text-decoration: underline;
}
.main_topics_ttl a:hover {
	text-decoration: none;
}
@media screen and (max-width: 1366px) {
	.main_topicsArea {
		gap: 20px 40px;
	}
	.main_topics_info {
		gap: 30px;
	}
}
@media screen and (max-width: 896px) {
	.main_topicsArea {
		flex-flow: column;
		align-items: flex-start;
	}
	.main_topics_info {
		gap: 25px;
	}
}



/* ==============================================

	main_concept

================================================= */
#main_concept {
	position: relative;
	padding: 100px 0;
}
#main_concept::before {
	content: "";
	width: 65%;
	height: 100%;
	background: #e9e5e0;
	position: absolute;
	top: 0;
	right: 0;
}
.main_conceptArea {
	display: flex;
	align-items: center;
	gap: 160px;
	position: relative;
	z-index: 1;
	padding: 0 5%;
}
.main_concept_img {
	position: relative;
	margin-left: 4%;
}
#main_concept .cmn_ttl_h2 p {
	text-align: left;
	line-height: 136%;
}
.main_concept_txt > p {
	font-size: 1.6rem;
	line-height: 250%;
	margin-bottom: 60px;
}
@media screen and (max-width: 1536px) {
	.main_concept_img {
		margin-left: 0;
	}
}
@media screen and (max-width: 1366px) {
	.main_conceptArea {
		gap: 100px;
		align-items: flex-start;
	}
}
@media screen and (max-width: 1194px) {
	#main_concept .cmn_ttl_h2 p {
		font-size: 4rem;
	}
}
@media screen and (max-width: 1024px) {
	#main_concept::before {
	}
	.main_conceptArea {
		flex-flow: column;
		align-items: center;
		gap: 60px;
	}
	.main_concept_img {
		width: 80%;
	}
}
@media screen and (max-width: 896px) {
	#main_concept {
		overflow: hidden;
	}
}
@media screen and (max-width: 768px) {
	#main_concept .cmn_ttl_h2 p {
		font-size: 3.8rem;
	}
}
@media screen and (max-width: 640px) {
	#main_concept .cmn_ttl_h2 p {
		font-size: 3.4rem;
	}
}
@media screen and (max-width: 480px) {
	#main_concept {
		padding: 60px 0;
	}
	#main_concept .cmn_ttl_h2 p {
		font-size: 2.8rem;
	}
	.main_conceptArea {
		align-items: flex-start;
		gap: 40px;
	}
	.main_concept_img {
		width: 85%;
	}
	.main_concept_txt {
		margin: 0 auto;
	}
	.main_concept_txt > p {
		font-size: 1.4rem;
		margin-bottom: 40px;
	}
}

/* ==============================================

	main_fair

================================================= */
#main_fair {
	padding: 100px 0;
	max-width: 1400px;
	margin: 0 auto;
}
#main_fair .cmn_ttl_h2 {
	margin-bottom: 50px;
}
@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 #103381;
}
.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: #eaeaea;
	letter-spacing: 0.15em;
	border-bottom: none;
	font-size: 1.5rem;
}
.tab.active p {
	background: #103381;
	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;
}
.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(98,95,51,0.7);
}
.fair_date.date_saturday {
	background: rgba(16,51,129,0.7);
}
.fair_date.date_holiday {
	background: rgba(197,44,91,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 #b9b9b9;
	border-bottom: 1px solid #b9b9b9;
	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;
}
.fair_openTime dl dd {
	flex: 1;
	font-size: 1.4rem;
	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: #edf3fa;
	font-size: 1.1rem;
	letter-spacing: 0;
	font-weight: 500;
	line-height: 120%;
}
#main_plan .cmn_tag li,
#main_report .cmn_tag li {
	background: #dae9fa;
}
#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;
	}
}


/* ==============================================

	beatrate_bnr

================================================= */
.beatrate_bnr {
	text-align: center;
	padding: 0 5% 100px;
}
@media screen and (max-width: 480px) {
	.beatrate_bnr {
		padding: 0 5% 60px;
	}
}


/* ==============================================

	main_plan

================================================= */
#main_plan {
	padding: 80px 0;
	background: #f7f7f7;
}
#main_plan .cmn_ttl_h2 {
	margin-bottom: 50px;
}
.plan_contents {
	margin-bottom: 60px;
}
.plan_contents article {
	margin: 0 15px;
	width: 400px;
}
.plan_contents article a {
	display: block;
}
.plan_contents article a:hover {
	opacity: 0.8;
}
.plan_contents article figure {
	margin-bottom: 20px;
	overflow: hidden;
	aspect-ratio: 37 / 48;
}
.plan_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;
}
.plan_contents article a:hover figure img{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.plan_contents h3 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 146%;
}
.plan_price {
	margin: 20px 0 15px;
	padding: 10px 0;
	border-top: 1px solid #b9b9b9;
	border-bottom: 1px solid #b9b9b9;
	text-align: center;
}
.plan_price > div {
	display: flex;
	justify-content: center;
	align-items: baseline;
	column-gap: 20px;
}
.plan_price > div:not(:last-child) {
	margin-bottom: 5px;
}
.plan_price > div span {
	margin: 0 3px;
}
.plan_price_s div {
	color: #8e8e8e;
}
.plan_price_l span {
	font-size: 3.0rem;
}
.plan_price_s span {
	font-size: 2.0rem;
	position: relative;
}
.plan_price_s span::before {
	position: absolute;
	content: "";
	display: block;
	transform: rotate(-10deg);
	background: #8e8e8e;
	width: 100%;
	height: 1px;
	top: 50%;
	left: 0;
}
.plan_price small {
	font-size: 1.4rem;
}
.plan_price_l small {
	margin-left: 3px;
}
@media screen and (max-width: 1366px) {
	.plan_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1024px) {
	.plan_contents article {
		margin: 0 10px;
	}
}
@media screen and (max-width: 768px) {
	.plan_contents h3 {
		font-size: 1.5rem;
		line-height: 155%;
	}
}
@media screen and (max-width: 640px) {
	.plan_contents article {
		margin: 0 20px;
	}
}
@media screen and (max-width: 480px) {
	#main_plan {
		padding: 60px 0;
	}
	.plan_contents {
		margin-bottom: 30px;
	}
	.plan_contents article {
		margin: 0 12px;
	}
	#main_plan .cmn_ttl_h2 {
		margin-bottom: 30px;
	}
}


/* ==============================================

	main_scene

================================================= */
#main_scene {
	padding: 110px 0 120px;
	overflow: hidden;
}
#main_scene > section {
	display: flex;
	align-items: center;
	column-gap: 10%;
	padding: 70px 5%;
	position: relative
}
#main_scene > section::before {
	content: "";
	width: 65%;
	height: 100%;
	background: #f3f7ff;
	position: absolute;
	top: 0;
}
#main_scene > section:nth-child(odd)::before {
	right: 5%;
}
#main_scene > section:nth-child(even)::before {
	left: 5%;
}
#main_scene > section:nth-child(even) {
	flex-flow: row-reverse;
	justify-content: space-between;
}
#main_scene > section:not(:last-child) {
	margin-bottom: 70px;
}
#main_scene > section > * {
	position: relative;
	z-index: 1;
}
.main_sceneImg {
	position: relative;
}
.main_sceneImg picture img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	height: 650px;
}
#main_scene .cmn_txtBox {
	width: 450px;
}
#main_scene > section:nth-child(odd) .cmn_txtBox {
	margin-right: 7%;
}
#main_scene > section:nth-child(even) .cmn_txtBox {
	margin-left: 7%;
}
#main_scene .cmn_ttl_h2 {
	text-align: left;
	margin-bottom: 60px;
}
#main_scene .cmn_txt {
	line-height: 242%;
	text-align: left;
}
#main_scene .cmn_btn {
	margin-top: 50px;
	margin-left: 0;
}
#ceremony_list .more_btn,
#banquet_list .more_btn {
	margin: 50px auto 70px;
}
@media screen and (max-width:1366px){
	#main_scene > section {
		padding: 70px 0;
		column-gap: 100px;
	}
	#main_scene > section:nth-child(odd) {
		padding-right: 7%;
	}
	#main_scene > section:nth-child(even) {
		padding-left: 7%;
	}
	#main_scene > section:nth-child(odd)::before {
		right: 0;
	}
	#main_scene > section:nth-child(even)::before {
		left: 0;
	}
	#main_scene > section:nth-child(odd) .cmn_txtBox {
		margin-right: 0;
	}
	#main_scene > section:nth-child(even) .cmn_txtBox {
		margin-left: 0;
	}
	.main_sceneImg picture img {
		height: 500px;
	}
}
@media screen and (max-width: 1024px) {
	#main_scene > section {
		column-gap: 70px;
	}
	#main_scene > section:nth-child(odd) {
		padding-right: 70px;
	}
	#main_scene > section:nth-child(even) {
		padding-left: 70px;
	}
	#ceremony_list .more_btn, #banquet_list .more_btn {
		margin: 50px auto 0;
	}
}
@media screen and (max-width:896px){
	#main_scene section {
		flex-flow: column!important;
		align-items: inherit;
		padding: 70px 0!important;
	}
	.main_sceneImg {
		margin-bottom: 60px;
	}
	#main_scene .cmn_txtBox {
		margin: 0 auto!important;
	}
	#main_scene > section:nth-child(odd) .main_sceneImg {
		padding-right: 10%;
	}
	#main_scene > section:nth-child(even) .main_sceneImg {
		padding-left: 10%;
	}
}
@media screen and (max-width: 768px) {
	#main_scene > section:not(:last-child) {
		margin-bottom: 80px;
	}
	.main_sceneImg picture img {
		height: 450px;
	}
	.main_sceneImg {
		margin-bottom: 40px;
	}
	#main_scene .cmn_ttl_h2 {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 640px) {
	#main_scene .cmn_txtBox {
		padding: 0 10%;
		width: auto;
	}
}
@media screen and (max-width: 480px) {
	#main_scene {
		padding: 60px 0;
	}
	.main_sceneImg picture img {
		height: 300px;
	}
	#main_scene .cmn_txtBox {
		width: auto;
	}
	#main_scene section {
		padding: 0 0 40px!important;
	}
	#main_scene > section:not(:last-child) {
		margin-bottom: 60px;
	}
	#main_scene .cmn_btn {
		margin-top: 25px;
	}
	#banquet_list .more_btn {
		margin: 30px auto 0;
	}
	.main_scene_ttl_sp h2 {
		font-size: 2.1rem;
		letter-spacing: 0.15em;
	}
	#main_scene > section:nth-child(odd) .main_sceneImg {
		padding-right: 10%;
	}
	#main_scene > section:nth-child(even) .main_sceneImg {
		padding-left: 10%;
	}
	#main_scene .cmn_txt {
		line-height: 212%;
	}
}


/* ==============================================

	main_page

================================================= */
#main_page {
	padding: 0 5%;
	margin-bottom: 120px;
}
.main_pageArea {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	gap: 60px 12%;
}
#main_page section {
	max-width: 550px;
	width: calc((100% - 12%) / 2);
}
#main_page section figure {
	margin-bottom: 30px;
}
#main_page .cmn_ttl_h2 {
	text-align: left;
	margin-bottom: 45px;
}
#main_page .cmn_ttl_h2 p {
	font-size: 4rem;
}
.main_page_txt {
	line-height: 171%;
	margin-bottom: 40px;
}
#main_page section .cmn_btn {
	margin-left: 0;
}
@media screen and (max-width: 1366px) {
	.main_pageArea {
		gap: 60px 8%;
	}
	#main_page section {
		width: calc((100% - 8%) / 2);
	}
}
@media screen and (max-width: 1024px) {
	.main_pageArea {
		gap: 60px 6.5%;
	}
	#main_page section {
		width: calc((100% - 6.5%) / 2);
	}
	#main_page .cmn_ttl_h2 p {
		font-size: 3.6rem;
	}
}
@media screen and (max-width: 768px) {
	#main_page .cmn_ttl_h2 p {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 640px) {
	#main_page {
		padding: 0 10%;
	}
	.main_pageArea {
		flex-flow: column;
		gap: 100px;
	}
	#main_page section {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#main_page {
		margin-bottom: 60px;
	}
	#main_page .cmn_ttl_h2 {
		margin-bottom: 35px;
	}
	.main_pageArea {
		gap: 80px;
	}
	.main_page_txt {
		margin-bottom: 25px;
	}
}


/* ==============================================

	main_report

================================================= */
#main_report {
	padding: 80px 5%;
	background: #f7f7f7;
}
#main_report .cmn_ttl_h2 {
	margin-bottom: 60px;
}
.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: 32 / 25;
	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 {
	padding: 120px 0 0;
	overflow-x: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	justify-content: flex-end;
}
.main_photogalleryBox {
	text-align: center;
	margin-right: 5%;
}
.main_photogalleryTxt {
	line-height: 314%;
	margin-bottom: 40px;
}
.main_photogalleryImg {
	width: 64.47%;
	position: relative;
}
.main_photogalleryImg_slide {
	display: flex;
	gap: 0.3%;
}

@media screen and (max-width: 1366px) {
	#main_photogallery {
		justify-content: center;
	}
	.main_photogalleryImg {
		width: 50%;
	}
	.main_photogalleryImg_slide {
		flex-flow: column;
		gap: 0;
	}
	#main_photogallery .slick-dots {
		position: inherit;
		margin-top: 10px;
		bottom: 0;
	}
	#main_photogallery .slick-dots li button:before {
		font-size: 10px;
		color: #dfdfdf;
		opacity: 1;
	}
	#main_photogallery .slick-dots li button:hover:before,
	#main_photogallery .slick-dots li button:focus:before
	{
		color: #e4b776;
	}
	#main_photogallery .slick-dots li.slick-active button:before {
		color: #e4b776;
	}
	#main_photogallery .slick-dotted.slick-slider {
		margin-bottom: 0;
	}
}
@media screen and (max-width: 1024px) {
	.main_photogalleryBox .cmn_ttl_h2 {
		margin-bottom: 40px;
		white-space: nowrap;
	}
	#main_photogallery .cmn_ttl_h2 p::before {
		margin-right: 20px;
	}
	#main_photogallery .cmn_ttl_h2 p::after {
		margin-left: 20px;
	}
}
@media screen and (max-width: 896px) {
	#main_photogallery {
		flex-flow: column;
		gap: 60px;
	}
	.main_photogalleryBox {
		margin-right: 0;
	}
	.main_photogalleryImg {
		width: 70%;
	}
}
@media screen and (max-width: 640px) {
	.main_photogalleryImg {
		width: 85%;
	}
}
@media screen and (max-width: 480px) {
	#main_photogallery {
		padding: 60px 5% 0;
		gap: 50px;
	}
	.main_photogalleryImg {
		width: 100%;
	}
	.main_photogalleryTxt {
		line-height: 230%;
		margin-bottom: 30px;
	}
	#main_photogallery .more_link_en {
		width: 200px;
	}
}


/* ==============================================

	main_access

================================================= */
#main_access {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 120px;
	padding: 120px 0;
}
.main_access_img {
	position: relative;
	width: 62.4%;
}
.main_access_img img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
.main_access_txt {
	width: 300px;
}
#main_access .cmn_ttl_h2 {
	margin-bottom: 70px;
}
#main_access .cmn_txt {
	margin-bottom: 50px;
}


@media screen and (max-width: 1366px) {
	#main_access {
		max-width: inherit;
		padding: 120px 7%;
		column-gap: 80px;
	}
	.main_access_txt {
		padding: 0;
	}
}
@media screen and (max-width: 1024px) {
	#main_access {
		flex-flow: column;
		gap: 80px;
		overflow: hidden;
		align-items: flex-start;
		padding: 110px 0;
	}
	.main_access_img {
		width: 90%;
		margin: 0 auto;
	}
	.main_access_img img {
		height: 400px;
		object-position: center bottom;
	}
	.main_access_txt {
		margin: 0 auto;
		width: auto;
		padding: 0 5%;
	}
	#main_access .cmn_ttl_h2 {
		margin-bottom: 60px;
	}
}
@media screen and (max-width:768px){
	.main_access_txt {
		width: auto;
	}
	.main_access_img {
		width: 100%;
	}
	.main_access_img img {
		height: 350px;
	}
}
@media screen and (max-width: 480px) {
	#main_access {
		padding: 60px 0;
	}
	.main_access_img img {
		height: 240px;
	}
	#main_access {
		gap: 40px;
	}
	#main_access .cmn_ttl_h2 {
		margin-bottom: 40px;
	}
	#main_access .cmn_txt {
		margin-bottom: 40px;
	}
}


/* ==============================================

	main_news

================================================= */
#main_news {
	padding: 80px 5%;
	background: #f7f7f7;
}
#main_news .cmn_ttl_h2 {
	margin-bottom: 60px;
}
#main_news .cmn_btn {
	margin-top: 60px;
}

@media screen and (max-width:1024px){
	#main_news {
		padding: 90px 5%;
	}
}
@media screen and (max-width:480px){
	#main_news {
		padding: 60px 0;
	}
	#main_news .cmn_ttl_h2 {
		margin-bottom: 30px;
	}
	#main_news .cmn_btn {
		margin-top: 30px;
	}
}


/* ==============================================

	news_box

================================================= */
.news_contents {
	max-width: 1400px;
	margin: 0 auto;
}
#main_news .news_contents {
	max-width: 1400px;
}
.news_contents article {
	width: calc((100% / 4));
}
#main_news .news_contents article {
	margin: 0 15px;
}

.news_contents article figure {
	overflow: hidden;
	aspect-ratio: 32 / 25;
	margin-bottom: 15px;
}
.news_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;
}
.news_contents article a:hover {
	opacity: 0.8;
}
.news_contents article a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
.news_info {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	flex-flow: row wrap;
	gap: 5px 10px;
}
.news_info time {
	font-size: 1.5rem;
	color: #103381;
}
.news_cat {
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0;
	font-weight: 400;
	padding: 5px 14px;
	background: #103381;
}
.news_contents article h3, .news_contents article h2 {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 30px;
}

@media screen and (max-width: 1366px) {
	#main_news .news_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1024px) {
	#main_news .news_contents article {
		margin: 0 10px;
	}
}
@media screen and (max-width: 480px) {
	#main_news .news_contents article {
		margin: 0 12px;
	}
	.news_info {
		gap: 5px;
	}
}


/* ==============================================

	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: #afb9cf;
}
.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: #585858;
	color: #fff;
}
.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;
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.side_request a:hover {
	opacity: 0.8;
}

.side_fair a {
	background: #103381;
	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_fair a:hover {
	background: #dfe7f5;
	color: #103381;
}
.side_fair a:hover::before {
	filter: brightness(0) saturate(100%) invert(19%) sepia(25%) saturate(4797%) hue-rotate(204deg) brightness(89%) contrast(99%);
}

@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: #103381;
		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(19%) sepia(25%) saturate(4797%) hue-rotate(204deg) brightness(89%) contrast(99%);
	}
	.bf_fair a {
		background: #103381;
		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_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: #dae9fa;
	}
	.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 {
	background: #fff;
}

/* --------------------------------------------------
	footer_01
-------------------------------------------------- */
#footer_01 {
	background: #646464;
	padding: 60px 5% 30px;
	color: #fff;
}
#footer_01 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;
}
.f_info {
	margin-right: 120px;
	text-align: center;
}
.f_logo {
	margin-bottom: 20px;
}
.f_logo img {
	width: 120px;
	height: auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	margin-bottom: 10px;
}
.f_logo p {
	font-size: 1.5rem;
}
.f_info p {
	margin-bottom: 10px;
}
.f_address {
	margin-bottom: 40px;
}
.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.4rem;
	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;
	align-items: flex-end;
	font-size: 3.4rem;
	margin-bottom: 24px;
}
.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: 710px;
}
.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.4rem;
	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.3rem;
	letter-spacing: 0.1em;
}
.f_memberLink a:not(:last-child) {
	padding-right: 8px;
	border-right: 1px solid #fff;
}
.f_memberLink a:hover {
	text-decoration: underline;
}
footer .remodal_sns {
	margin-bottom: 0;
}


/* --------------------------------------------------
	footer_02
-------------------------------------------------- */
#footer_02 {
	padding: 35px 7%;
	background: #fff;
}
#footer_02 ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 2%;
	max-width: 940px;
	margin: 0 auto;
}
#footer_02 ul li {
	width: calc((100% - 6%) / 4);
}
#footer_02 ul li a {
	height: 50px;
	max-width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	box-sizing: border-box;
}
.f_linkBtn_wht a {
	border: 1px solid #d1d1d1;
}
.f_linkBtn_wht a:hover {
	background: #f1f1f1;
}
.f_linkBtn_ble a {
	background: #103381;
}
.f_linkBtn_ble a:hover {
	background: #24448d;
}

@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: 20px;
	}
	.f_info {
		margin-right: 5%;
	}
	.f_tel dl dd {
		white-space: normal;
		line-height: calc(16 / 11);
	}
	.f_tel .item {
		display: block;
	}
	.f_tel .item:first-child::after {
		display: none;
	}
	#footer_02 {
		padding: 25px 5%;
	}
}
@media screen and (max-width: 896px) {
	.btn_hotelsite a img {
		zoom: 0.8;
	}
}
@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;
	}
	.f_link {
		width: 100%;
	}
	.f_btn {
		column-gap: 5%;
	}
	.f_memberLink a {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 640px) {
	#footer_02 ul {
		flex-flow: row wrap;
		gap: 10px;
	}
	#footer_02 ul li {
		width: calc((100% - 10px) / 2);
	}
	
	#footer_02 ul li a {
		max-width: inherit;
	}
}
@media screen and (max-width: 480px) {
	footer {
		padding-bottom: 10px;
	}
	#footer_01 {
		padding: 40px 5%;
	}
	.f_memberLink a {
		font-size: 1.05rem;
	}
	.f_memberLink a:not(:last-child) {
		padding-right: 8px;
	}
	.f_info {
		margin-bottom: 30px;
	}
	#footer_02 ul li a {
		padding: 0 5px;
	}
	#footer_02 ul li img {
		zoom: 0.85;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright{
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	padding: 60px 0 0;
}

@media screen and (max-width: 768px) {
	#copyright {
		padding-top: 40px;
		font-size: 1rem;
	}
}
@media screen and (max-width: 480px) {
	#copyright {
		letter-spacing: 0.05em;
	}
}

