@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: #7492c7;
}
::selection {
	color: #fff;
	background-color: #7492c7;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.3rem;
	}
}


/* ==============================================

	header

================================================= */
header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 3;
	padding-left: 25px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.headerArea {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 80px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.h_logo img {
	height: 30px;
}
.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 25px;
}
#gnav ul li {
	font-size: 1.3rem;
}
#gnav ul li a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 1366px) {
	.h_nav {
		margin-right: 20px;
	}
	#gnav ul {
		gap: 0 20px;
	}
}
@media screen and (max-width: 1280px) {
	.h_nav {
		margin-right: 15px;
	}
	#gnav ul {
		gap: 0 15px;
	}
}
@media screen and (max-width: 1194px) {
	#gnav ul {
		gap: 0 10px;
	}
	#gnav ul li {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 1112px) {
}


/*---------------------------------------------
	h_fairBtn
---------------------------------------------*/
.h_fairBtn a {
	width: 90px;
	height: 80px;
	background: rgba(172,140,66,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.h_fairBtn a::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("images/icon_church.svg") center no-repeat;
	width: 29px;
	height: 26px;
	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(172,140,66,0.7);
}

/*---------------------------------------------
	h_rsvBtn
---------------------------------------------*/
.h_rsvBtn a {
	width: 90px;
	height: 80px;
	background: rgba(20,54,119,0.9);
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
}
.h_rsvBtn a::before {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url("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(20,54,119,0.7);
}

/*---------------------------------------------
	nav_toggle
---------------------------------------------*/
.h_tglBtn a {
	padding: 28px 30px;
	cursor: pointer;
	display: block;
}
.h_tglBtn a:hover {
	background: #f9f9f9;
}
.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: #143677;
	-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: #fafafa;
}
.h_fixed .h_logo {
	opacity: 1;
}
.h_fixed .h_logo img {
	filter: brightness(0) saturate(100%) invert(58%) sepia(23%) saturate(1042%) hue-rotate(4deg) brightness(93%) contrast(80%);
}
.h_fixed .h_nav a {
	color: #222;
}
.h_fixed .h_nav a:hover {
	opacity: 0.7;
	color: #222222!important;
}
.h_fixed .h_fairBtn a {
	background: rgba(172,140,66,1);
}
.h_fixed .h_fairBtn a:hover {
	background: rgba(172,140,66,0.85);
}
.h_fixed .h_rsvBtn a {
	background: rgba(20,54,119,1);
}
.h_fixed .h_rsvBtn a:hover {
	background: rgba(20,54,119,0.85);
}
/*
.h_fixed .h_tglBtn {
	background: #fff;
}
*/
.h_fixed .nav_toggle:hover {
	background: #ebebeb;
}
.h_fixed .nav_toggle span {
	background: #143677;
}

@media screen and (max-width: 1112px) {
	header {
		padding-left: 20px;
	}
	.h_nav, .h_fairBtn, .h_rsvBtn {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
}

@media screen and (max-width:768px){
	.headerArea {
		height: 60px;
	}
	.h_logo img {
		height: 24px;
	}
	.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: 35px;
	-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: #f4f1ed;
}
.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: 30px;
	}
	.nav_toggle_close div {
		zoom: 0.8;
	}
}


/*---------------------------------------------
	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: 60px;
	gap: 20px;
}
.remodal_sns li img {
	width: 20px;
	height: auto;
}
.remodal_sns li.remodal_sns_youtube img {
	width: 24px;
	height: auto;
}
.remodal_sns a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_btn
---------------------------------------------*/
.remodal_btn {
	max-width: 560px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_mainBtn
---------------------------------------------*/
.remodal_mainBtn {
	max-width: 700px;
	margin: 0 auto 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_memberLink
---------------------------------------------*/
.remodal_memberLink.f_memberLink {
	margin: 30px auto;
}

/*---------------------------------------------
	remodal_sitemap
---------------------------------------------*/
.remodal_sitemap {
	font-size: 1.3rem;
	margin-bottom: 25px;
}
@media screen and (max-width:1024px){
	.remodal_nav ul:not(:last-child) {
		margin-right: 70px;
	}
}
@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;
	}
}


/* =======================================

	#under main

========================================== */
#under main {
	padding: 50px 0 0;
}
.cmn_space {
	padding: 100px 0!important;
}
@media screen and (max-width: 768px) {
	.cmn_space {
		padding: 70px 0!important;
	}
}
@media screen and (max-width: 480px) {
	#under main {
		padding: 30px 0 0;
	}
	.cmn_space {
		padding: 50px 0!important;
	}
}


/* =======================================

	#under

========================================== */
#under #mv_under div {
	opacity: 1;
	transform: none;
}
#mv_under {
	position: relative;
	margin-top: 80px;
}
#mv_under::before {
	content: "";
	background: rgba(0,0,0,0.3);
	width: 100%;
	height: 100%;
	position: absolute;
}
#mv_under > div {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 0 auto;
	color: #fff;
}
.mv_under_ja {
	letter-spacing: 0.15em;
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	margin-bottom: 10px;
}
.mv_under_ja small {
	font-size: 1.4rem;
	display: block;
	line-height: 228%;
}
.mv_under_en {
	letter-spacing: 0.15em;
	font-size: 1.8rem;
	text-transform: uppercase;
}
#mv_under img {
	height: 320px;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}
#mv_under.mv_under_l img {
	height: 480px;
}
#mv_under.mv_under_l span {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: 18px;
	width: 150px;
	text-align: center;
	font-size: 1.3rem;
	padding: 10px 0;
	letter-spacing: 0.3rem;
	text-indent: 0.3rem;
}
#mv_under.mv_under_noPhoto {
	height: 180px;
}
#mv_under.mv_under_noPhoto::before {
	background: #fcfcfc;
}
#mv_under.mv_under_noPhoto div {
	color: #143677;
}
@media screen and (max-width: 768px) {
	#mv_under {
		margin-top: 60px;
	}
	#mv_under img {
		height: 160px;
	}
	.mv_under_ja {
		font-size: 1.6rem;
	}
	.mv_under_ja small {
		font-size: 1.2rem;
	}
	.mv_under_en {
		font-size: 1.7rem;
	}
	#mv_under.mv_under_l img {
		height: 400px;
	}
	#mv_under.mv_under_noPhoto {
		height: 150px;
	}
	#mv_under.mv_under_l span {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 480px) {
	#mv_under img {
		height: 130px;
	}
	.mv_under_ja {
		font-size: 1.4rem;
		margin-bottom: 8px;
	}
	.mv_under_ja small {
		font-size: 1.0rem;
	}
	.mv_under_en {
		font-size: 1.6rem;
	}
	#mv_under.mv_under_l img {
		height: 250px;
	}
	#mv_under.mv_under_noPhoto {
		height: 90px;
	}
	#mv_under.mv_under_l span {
		font-size: 1.1rem;
		letter-spacing: 0.2rem;
	}

}


/* ==============================================

	cmn_btn & btn & link

================================================= */
.cmn_btn a, .search_btn 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: #143677!important;
	border: none;
}
.cmn_btnBdr_clr a, .cmn_btnBdr_clr input, .cmn_btn button {
	border: 1px solid #143677;
	color: #143677;
	background: #fff;
}
.cmn_btnBdr_clr a:hover, .cmn_btnBdr_clr input:hover, .cmn_btn button:hover {
	background: #143677;
	color: #fff;
	border: none;
}

.cmn_btnBg_clr a, .cmn_btnBg_clr input, .cmn_btnBg_clr button {
	background: #143677;
	color: #fff;
}
.cmn_btnBg_clr a:hover, .cmn_btnBg_clr input:hover, .cmn_btnBg_clr button:hover {
	background: #fff;
	color: #143677;
	border: 1px solid #143677;
}

.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_clr span::after,
.cmn_arrow.cmn_btnBdr_clr:hover span::after,
.cmn_arrow.cmn_btnBg_clr a::after,
.cmn_arrow.cmn_btnBdr_clr:hover a::after{
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cmn_arrow_back.cmn_btnBdr_clr:hover a::after,
.cmn_arrow_back.cmn_btnBg_clr span::after,
.cmn_arrow_back.cmn_btnBg_clr a::after,
.cmn_arrow_back.cmn_btnBdr_clr:hover span::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.cmn_arrow.cmn_btnBdr_clr span::after,
.cmn_arrow.cmn_btnBg_clr:hover span::after,
.cmn_arrow.cmn_btnBdr_clr a::after,
.cmn_arrow.cmn_btnBg_clr:hover a::after {
  border-top: 1px solid #143677;
  border-right: 1px solid #143677;
}
.cmn_arrow_back.cmn_btnBdr_clr a::after,
.cmn_arrow_back.cmn_btnBg_clr:hover span::after,
.cmn_arrow_back.cmn_btnBg_clr:hover a::after,
.cmn_arrow_back.cmn_btnBdr_clr span::after {
  border-left: 1px solid #143677;
  border-bottom: 1px solid #143677;
}

.remodal_btn > * {
	width: 240px;
}
.remodal_mainBtn > * {
	width: 310px;
}
.remodal_mainBtn a {
	height: 60px;
}
.f_btn > * {
	flex: 0 1 240px;
}
.cmn_btn {
	max-width: 300px;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.f_btn > * {
		width: 47%;
	}
}
@media screen and (max-width: 768px) {
	.remodal_mainBtn > * {
		width: 47%;
	}
}
@media screen and (max-width: 640px) {
	.remodal_btn > * {
		width: 47%;
	}
}
@media screen and (max-width: 480px) {
	.remodal_mainBtn a {
		height: 50px;
	}
}


.btn_access a, .btn_contact a {
	letter-spacing: 0.2rem;
	font-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(96%) saturate(1350%) hue-rotate(201deg) brightness(89%) contrast(95%);
}
.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(96%) saturate(1350%) hue-rotate(201deg) brightness(89%) contrast(95%);
}
.btn_fair a::before {
	content: "";
	background: url("images/icon_church.svg") center no-repeat;
	width: 27px;
	height: 24px;
	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(96%) saturate(1350%) hue-rotate(201deg) brightness(89%) contrast(95%);
}
.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(96%) saturate(1350%) hue-rotate(201deg) brightness(89%) contrast(95%);
}
@media screen and (max-width: 480px) {
	.btn_rsv a::before {
		zoom: 0.8;
	}
	.btn_fair a::before {
		zoom: 0.78;
	}
}


/* ==============================================

	pageLink

================================================= */
#page_link {
	background: #F9F9F9;
	position: relative;
	padding: 70px 5%;
}
#page_link ul {
	max-width: 1175px;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	gap: 25px;
}
#page_link ul li {
	width: calc((100% - 125px) / 6);
}
#page_link ul li a {
	position: relative;
}
.pageLink_box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: relative;
	height: 150px;
	overflow: hidden;
}
.pageLink_box::before {
	content: "";
	background: rgba(0,0,0,0.4);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1;
}
#page_link ul li a:hover .pageLink_box::before {
	background: rgba(0,0,0,0.1);
}
.pageLink_box div {
	position: relative;
	z-index: 2;
	color: #fff;
	text-align: center;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
.pageLink_box div p {
	font-size: 1.4rem;
	letter-spacing: 0.15em;
	font-family: "Cormorant Garamond", serif;
}
.pageLink_box div small {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}
.pageLink_img {
	position: absolute!important;
	top: 0;
	left: 0;
	z-index: 0!important;
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	height: 100%;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
#page_link ul li a:hover .pageLink_img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
	#page_link ul {
		gap: 20px;
	}
	#page_link ul li {
		width: calc((100% - 100px) / 6);
	}
	.pageLink_box div small {
		letter-spacing: 0.05em;
	}
}
@media screen and (max-width: 1112px) {
	#page_link ul {
		max-width: 750px;
	}
	#page_link ul li {
		width: calc((100% - 60px) / 4);
	}
	.pageLink_box {
		height: 120px;
	}
}
@media screen and (max-width: 1024px) {
	.pageLink_box div small {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 768px) {
	#page_link ul {
		max-width: 500px;
	}
	#page_link ul li {
		width: calc((100% - 40px) / 3);
	}
}
@media screen and (max-width: 640px) {
	#page_link ul {
		gap: 15px;
	}
	#page_link ul li {
		width: calc((100% - 30px) / 3);
	}
}
@media screen and (max-width: 480px) {
	#page_link {
		padding: 40px 5%;
	}
	#page_link ul {
		gap: 10px;
	}
	#page_link ul li {
		width: calc((100% - 20px) / 3);
	}
	.pageLink_box {
		height: 90px;
	}
	.pageLink_box div p {
		font-size: 1.2rem;
	}
	.pageLink_box div small {
		font-size: 1.0rem;
		letter-spacing: 0;
	}
}


/* ==============================================

	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: #b6b6b6;
}
.side_sns li:not(:last-child) {
	margin-bottom: 15px;
}
.side_sns li img {
	width: 24px;
	height: auto;
}
.side_sns li.side_sns_youtube img {
	width: 27px;
	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: #4d4d4d;
	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: #ac8c42;
	color: #fff;
}
.side_fair a::before {
	content: "";
	background: url("images/icon_church.svg") center no-repeat;
	width: 27px;
	height: 23px;
	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: #e5ebf6;
	color: #143677;
}
.side_fair a:hover::before {
	filter: brightness(0) saturate(100%) invert(16%) sepia(96%) saturate(1350%) hue-rotate(201deg) brightness(89%) contrast(95%);
}

@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: #143677;
		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(14%) sepia(87%) saturate(1774%) hue-rotate(208deg) brightness(97%) contrast(95%);
	}
	.bf_fair a {
		background: #143677;
		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: #fafafa;
	}
	.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: #143677;
	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: 150px;
	height: auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	margin-bottom: 25px;
}
.f_logo p {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.f_info p {
	margin-bottom: 10px;
}
.f_address {
	margin-bottom: 25px;
	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 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
	gap: 10px 5px;
}
.f_tel p {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.f_tel a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 1.6rem;
	color: #fff;
	font-family: "EB Garamond", serif;
}
.f_tel span {
	font-family: "EB Garamond", serif;
	font-size: 1.35rem;
}
/*
.f_tel a::before {
	content: "";
	background: url("images/icon_tel.svg") center no-repeat;
	display: inline-block;
	width: 15px;
	height: 22px;
	margin-right: 2px;
	background-size: contain;
}
*/
.f_tel dl {
	font-size: 1.3rem;
}
.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: 6px;
}
.f_tel dl dt::before {
	margin-right: 6px;
}
.f_tel dl dd {
	white-space: nowrap;
}
.f_tel div {
	display: flex;
	justify-content: center;
	gap: 30px;
}


.f_link {
	max-width: 700px;
	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: 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;
	max-width: 520px;
	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);
	}
}
@media screen and (max-width: 1024px) {
	footer {
		margin-bottom: 70px;
		padding-bottom: 30px;
	}
	.f_tel dl dd {
		white-space: normal;
		line-height: calc(16 / 11);
	}
}
@media screen and (max-width: 768px) {
	.footerArea {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
	}
	.f_info {
		margin-right: 0;
		margin-bottom: 50px;
		width: auto;
	}
	.f_link {
		width: 100%;
	}
	.f_btn {
		column-gap: 5%;
	}
	.f_memberLink a {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 640px) {
	.f_memberLink {
	}
}
@media screen and (max-width: 480px) {
	footer {
		padding: 40px 5%;
	}
	.f_memberLink a {
		font-size: 1.05rem;
	}
	.f_memberLink a:not(:last-child) {
		padding-right: 8px;
	}
	.f_info {
		margin-bottom: 30px;
	}
	.f_logo img {
		width: 130px;
	}
	.f_logo p,
	.f_address,
	.f_tel p,
	.f_tel dl {
		font-size: 1.2rem;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright{
	text-align: center;
	font-family: 'EB Garamond', serif;
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	padding: 60px 0 0;
	background: #143677;
}

@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;
	}
}


