@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #000;
	font-size: 1.5rem;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.05em;
}
::-moz-selection {
	color: #fff;
	background-color: #b59b93;
}
::selection {
	color: #fff;
	background-color: #b59b93;
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
}


/* ==============================================

	logo

================================================= */
.loader img, #main_logo img {
	width: 280px;
	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;
}
.up_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 {
	opacity: 1;
}
.h_logo a {
	display: flex;
}
.h_logo img {
	height: 25px;
}
.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: #D2C9D1;
}
@media screen and (max-width: 1366px) {
	#gnav ul {
		gap: 0 20px;
	}
}
@media screen and (max-width: 1194px) {
	#gnav ul {
		gap: 0 15px;
	}
}
@media screen and (max-width: 1112px) {
	.h_nav {
		margin-right: 15px;
	}
	#gnav ul {
		gap: 0 10px;
	}
}


/*---------------------------------------------
	h_fairBtn
---------------------------------------------*/
.h_fairBtn a {
	width: 140px;
	height: 60px;
	background: #84412a;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	gap: 10px;
	color: #fff;
	text-align: center;
	margin-right: 10px;
}
.h_fairBtn a p {
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
.h_fairBtn a span {
	display: inline-block;
	font-size: 1.1rem;
}
.h_fairBtn a:hover {
	background: #a96e5a;
}

/*---------------------------------------------
	h_rsvBtn
---------------------------------------------*/
.h_rsvBtn a {
	width: 140px;
	height: 60px;
	background: #bf9c90;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	gap: 10px;
	color: #fff;
	text-align: center;
}
.h_rsvBtn a p {
	font-size: 1.4rem;
	letter-spacing: 0.2em;
}
.h_rsvBtn a span {
	display: inline-block;
	font-size: 1.1rem;
}
.h_rsvBtn a:hover {
	background: #ad8071;
}

/*---------------------------------------------
	nav_toggle
---------------------------------------------*/
.h_tglBtn {
	padding: 0 30px;
}
.h_tglBtn a {
	/*
	padding: 24px 36px;
	*/
	cursor: pointer;
	display: block;
}

.nav_toggle{
	width: 38px;
	height: 33px;
}
.nav_toggle div {
	position: relative;
}
.nav_toggle span {
	display: block;
	height: 3px;
	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: 15px;
}
.nav_toggle span:nth-child(3){
	top: 30px;
}
.nav_toggle:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.h_tglBtn {
		padding: 0;
		height: 60px;
		width: 65px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.h_tglBtn a {
		padding: 18px 18px;
		background: none;
	}
	.nav_toggle{
		width: 30px;
		height: 24px;
	}
	.nav_toggle span {
	}
}


/*---------------------------------------------
	h_fixed
---------------------------------------------*/
.h_fixed {
	background: #f8f6f5;
}
.h_fixed .h_logo {
	opacity: 1;
}
.h_fixed .h_logo img {
	filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(634%) hue-rotate(331deg) brightness(91%) contrast(84%);
	opacity: 1;
}
.h_fixed .h_nav a {
	color: #84412a;
}
.h_fixed .h_nav a:hover {
	opacity: 0.8;
}
.h_fixed .nav_toggle span {
	background: #84412a;
}

@media screen and (max-width: 1112px) {
	header {
		padding-left: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.h_link .h_nav, .h_link .h_fairBtn, .h_link .h_rsvBtn {
		display: none;
	}
}

@media screen and (max-width:768px){
	header {
		padding-left: 15px;
	}
	.up_headerArea {
		height: 60px;
	}
	.h_logo img {
		height: 18px;
		opacity: 0;
	}
	.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: 95px;
}
.remodal-is-opened .remodal_logo {
	opacity: 1;
}
.remodal_logo img {
	height: 25px;
	filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(634%) hue-rotate(331deg) brightness(91%) contrast(84%);
}
.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: #fff;
}
.nav_toggle_close div {
	position: relative;
	width: 46px!important;
	height: 32px!important;
}
.nav_toggle_close span{
	display: block;
	height: 3px;
	background: #84412A;
	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);
}

.fair_dtlRsv_telInner .nav_toggle_close span {
	background: #fff;
}
.fair_dtlRsv_telInner .nav_toggle_close:hover span {
	background: #000;
}
@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: 18px;
	}
	/*
	.remodal_h {
		height: 60px;
		padding: 0 20px;
	}
	*/
	.nav_toggle_close div {
		width: 32px!important;
	}
}
@media screen and (max-width: 480px) {
	.remodal_logo {
		margin-top: 20px;
	}
	.remodal_logo img {
		height: 18px;
	}
}


/*---------------------------------------------
	remodal_contents
---------------------------------------------*/
.remodal_contents {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
	padding: 60px 0 150px;
	position: relative;
}
.remodal_contents a {
	color: #84412A;
}
.remodal_contents .h_fairBtn a,
.remodal_contents .h_rsvBtn a {
	width: 100%;
	color: #fff;
	margin: 0;
}
@media screen and (max-width: 768px) {
	.remodal_contents .h_fairBtn a,
	.remodal_contents .h_rsvBtn a {
		gap: 5px;
	}
}


/*---------------------------------------------
	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.4rem;
}
.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: 24px;
	height: auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.remodal .remodal_sns li img {
	filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(634%) hue-rotate(331deg) brightness(91%) contrast(84%);
}
.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: 660px;
	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_memberLink.f_memberLink a:not(:last-child) {
	border-right: 1px solid #84412A;
}


/*---------------------------------------------
	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%;
	}
	.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: 15px 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: 12px 0;
	}
	.remodal_memberLink.f_memberLink {
		margin: 25px 0 20px;
	}
	.remodal_sitemap {
		font-size: 1.2rem;
	}
}

/* ==============================================

	mv

================================================= */
.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;
	font-size: 1.4rem;
	font-weight: 400;
}
.cmn_btn button {
	background: transparent;
}
.cmn_btnBg_wht a {
	background: #fff;
}
.cmn_btnBg_wht a:hover {
	background: #bf9c90;
	color: #fff!important;
	border: none;
}
.cmn_btnBdr_wht a {
	border: 1px solid #fff;
	color: #fff;
}
.cmn_btnBdr_wht a:hover {
	background: #bf9c90;
	border: none;
}
.cmn_btnBdr_bk a, .cmn_btnBdr_bk input, .cmn_btn button {
	border: 1px solid #84412A;
	color: #84412A;
	background: #fff;
}
.cmn_btnBdr_bk a:hover, .cmn_btnBdr_bk input:hover, .cmn_btn button:hover {
	background: #84412A;
	color: #fff;
	border: none;
}

.cmn_btnBg_bk a, .cmn_btnBg_bk input, .cmn_btnBg_bk button {
	background: #84412A;
	color: #fff;
}
.cmn_btnBg_bk a:hover, .cmn_btnBg_bk input:hover, .cmn_btnBg_bk button:hover {
	background: transparent;
	color: #84412A;
	border: 1px solid #84412A;
}

.cmn_btnBg_grn a, .cmn_btnBg_grn input, .cmn_btnBg_grn button {
	background: #84412A;
	color: #fff;
}
.cmn_btnBg_grn a:hover, .cmn_btnBg_grn input:hover, .cmn_btnBg_grn button:hover {
	background: transparent;
	color: #84412A;
	border: 1px solid #84412A;
}

.cmn_btnBdr_grn a, .cmn_btnBdr_grn input, .cmn_btnBdr_grn button {
	border: 1px solid #84412A;
	color: #84412A;
}
.cmn_btnBdr_grn a:hover, .cmn_btnBdr_grn input:hover, .cmn_btnBdr_grn button:hover {
	background: #84412A;
	color: #fff;
	border: none;
}



.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_btnBdr_grn:hover span::after,
.cmn_arrow.cmn_btnBdr_grn:hover a::after,
.cmn_arrow span::after, .cmn_arrow a::after,
.cmn_arrow.cmn_btnBg_bk span::after,
.cmn_arrow.cmn_btnBdr_bk:hover span::after,
.cmn_arrow.cmn_btnBg_bk a::after,
.cmn_arrow.cmn_btnBdr_bk:hover a::after,
.cmn_arrow.cmn_btnBdr_wht a::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cmn_arrow_back.cmn_btnBdr_grn:hover span::after,
.cmn_arrow_back.cmn_btnBdr_grn:hover a::after,
.cmn_arrow_back.cmn_btnBdr_bk:hover a::after,
.cmn_arrow_back.cmn_btnBg_bk span::after,
.cmn_arrow_back.cmn_btnBg_bk a::after,
.cmn_arrow_back.cmn_btnBdr_bk:hover span::after {
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.cmn_arrow.cmn_btnBdr_bk span::after,
.cmn_arrow.cmn_btnBg_bk:hover span::after,
.cmn_arrow.cmn_btnBdr_bk a::after,
.cmn_arrow.cmn_btnBg_bk:hover a::after {
  border-top: 1px solid #84412A;
  border-right: 1px solid #84412A;
}
.cmn_arrow_back.cmn_btnBdr_bk a::after,
.cmn_arrow_back.cmn_btnBg_bk:hover span::after,
.cmn_arrow_back.cmn_btnBg_bk:hover a::after,
.cmn_arrow_back.cmn_btnBdr_bk span::after {
  border-left: 1px solid #84412A;
  border-bottom: 1px solid #84412A;
}
.cmn_arrow.cmn_btnBdr_grn span::after, .cmn_arrow.cmn_btnBdr_grn a::after,
.cmn_arrow.cmn_btnBg_grn:hover span::after, .cmn_arrow.cmn_btnBg_grn:hover a::after {
  border-top: 1px solid #696D48;
  border-right: 1px solid #696D48;
}
.cmn_arrow_back.cmn_btnBdr_grn span::after, .cmn_arrow_back.cmn_btnBdr_grn a::after {
  border-left: 1px solid #696D48;
  border-bottom: 1px solid #696D48;
}
.remodal_btn > * {
	width: 240px;
}
.remodal_mainBtn > * {
	width: 310px;
}
.remodal_mainBtn a {
	height: 60px;
}
.f_btn > * {
	flex: 0 1 240px;
}
#main_fair .cmn_btn, #main_plan .cmn_btn, #main_news .cmn_btn, .more_btn, #main_instagram .cmn_btn, #main_report .cmn_btn, #reportDtl .cmn_btn, .pdf_link.cmn_btn {
	max-width: 300px;
	margin: 60px auto 0;
}
#plan_list .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;
}
#top_concept .cmn_btn a {
	max-width: 300px;
	height: 50px;
	margin: 0 auto;
	letter-spacing: 0.1em;
}
.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: #917e44;
}
#access_map .cmn_btn {
	max-width: 300px;
	margin: 0 auto;
	font-size: 1.4rem;
	background: #fff;
}
#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%;
		margin: 0;
	}
}
@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: 80%;
	}
	#guide_exp .cmn_btn, #guide_flow > .cmn_btn {
		font-size: 1.3rem;
	}
	#main_contents .cmn_btn,
	.cmnArea .cmn_btn {
		max-width: 300px!important;
	}
	#main_fair .cmn_btn, #main_plan .cmn_btn, #main_news .cmn_btn, .more_btn, #main_instagram .cmn_btn, #main_report .cmn_btn, #reportDtl .cmn_btn {
		margin: 40px auto 0;
	}
}


.btn_access a, .btn_contact a {
	letter-spacing: 0.2rem;
	font-size: 1.5rem;
}
.remodal .btn_access a, .remodal .btn_contact a {
	color: #84412A;
}
#footer .btn_access a:hover, #footer .btn_contact a:hover {
	background: #84412a;
}

/* ==============================================

	more_btn

================================================= */
.more_btn {
	position: relative;
	margin: 0 auto;
	text-align: left
}
.more_btn > span, .more_btn > a {
	padding: 0 0 8px 0;
	display: inline-block;
	font-size: 1.3rem;
	-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: 8px;
	margin: auto;
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	border-top: 1px solid #84412a;
	border-right: 1px solid #84412a;
}
.more_btn > span::after, .more_btn > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #84412a;
}
.more_btn > a {
	display: block;
	color: #84412a;
}
.more_btn > a:hover {
	opacity: 0.8;
}
.more_btn > a:hover span {
	padding-left: 10px;
	opacity: 0.8;
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}


.more_btn_en {
	width: 150px;
}

.fair_contents .more_btn,
.plan_contents .more_btn,
.news_contents .more_btn {
	margin: 0 0 0 auto;
}


/* ==============================================

	h2_ttl

================================================= */
.cmn_ttl_h2 {
	text-align: center;
	margin-bottom: 70px;
	color: #84412a;
}
.cmn_ttl_h2 p {
	font-size: 3.8rem;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
	line-height: 126%;
}
.cmn_ttl_h2 h2 {
	font-size: 1.4rem;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
	.cmn_ttl_h2 p {
		font-size: 3.5rem;
	}
}
@media screen and (max-width: 768px) {
	.cmn_ttl_h2 h2 {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 640px) {
	.cmn_ttl_h2 p {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 480px) {
	.cmn_ttl_h2 {
		margin-bottom: 50px;
	}
	.cmn_ttl_h2 p {
		font-size: 2.7rem;
		margin-bottom: 15px;
		letter-spacing: 0.075em;
	}
	.cmn_ttl_h2 h2 {
		font-size: 1.2rem;
	}
}

/* ==============================================

	cmn_txtBox

================================================= */
.cmn_txtBox .cmn_ttl_h2 {
	margin-bottom: 70px;
}
.cmn_txt {
	text-align: center;
	line-height: 200%;

}
@media screen and (max-width: 480px) {
	.cmn_txtBox .cmn_ttl_h2 {
		margin-bottom: 50px;
	}
}


/* ==============================================

	cmn_txt_en

================================================= */
.cmn_txt_en {
	line-height: 200%!important;
	margin-top: 30px!important;
	font-size: 1.2rem!important;
}


/* ==============================================

	en_icon

================================================= */
.en_icon {
	font-size: 13rem;
	color: rgba(138,91,48,0.2);
}



/* ==============================================

	main

================================================= */
#home main {
	position: relative;
	z-index: 1;
}


/* ==============================================

	main_contents

================================================= */
#main_contents {
	background: #fff;
}
@media screen and (max-width: 480px) {
	#main_contents {
	}
}

/* ==============================================

	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.4rem;
	letter-spacing: 0.2em;
	margin-bottom: 70px;
	line-height: 150%;
}
#top_concept p {
	line-height: 314%;
}
.top_conceptBtn {
	margin-top: 70px;
}
/*
.top_conceptBtn a {
	width: 300px;
	height: 50px;
	color: #b37f48;
	background: #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 #b37f48;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
	font-size: 1.4rem;
	letter-spacing: 0.2rem;
}
.top_conceptBtn a:hover{
	background: #b37f48;
	color: #fff;
}
*/

@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 50px;
	}
	#top_concept h2 {
		font-size: 2.4rem;
		letter-spacing: 0.4rem;
	}
	#top_concept p {
		line-height: 250%;
	}
}


/* ==============================================

	main_topics

================================================= */
#main_topics {
	background: #e8e1df;
	padding: 35px 5%;
	color: #84412a;
}
.main_topicsArea {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 25px 45px;
}
.main_topics_info {
	display: flex;
	align-items: center;
	gap: 45px;
}
.main_topics_info h2 {
	color: #84412a;
}
.main_topics_info div {
	display: flex;
	align-items: center;
	gap: 25px;
}
.main_topics_info time {
	font-size: 1.4rem;
}
.main_topics_ttl {
	flex: 1;
}
.main_topicsArea h3 {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 142%;
}
.main_topics_ttl a {
	text-decoration: underline;
	color: #84412a;
}
.main_topics_ttl a:hover {
	text-decoration: none;
}
@media screen and (max-width: 896px) {
	#main_topics {
		padding: 30px 8%;
	}
	.main_topicsArea {
		flex-flow: column;
		align-items: flex-start;
	}
	.main_topics_info {
		gap: 25px;
	}
}




/* ==============================================

	main_concept

================================================= */
#main_concept {
	padding: 160px 5%;
}
.main_conceptArea {
	max-width: 1340px;
	margin: 0 auto;
	display: flex;
	gap: 7.4%;
}
.main_conceptImg {
	width: 45.5%;
	max-width: 610px;
}
.main_conceptImg img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	height: 790px;
}
.main_conceptTxt {
	width: 46.2%;
	max-width: 620px;
}
.main_conceptTxt .cmn_txt {
	text-align: left;
	letter-spacing: 0.025rem;
}
.main_conceptTxt .cmn_txt_en {
	margin-top: 50px;
}
@media screen and (max-width: 1366px) {
	#main_concept {
		padding: 160px 5% 160px 0;
	}
}
@media screen and (max-width: 896px) {
	#main_concept {
		padding: 120px 10%;
	}
	.main_conceptImg {
		width: 100%;
		max-width: inherit;
		margin-bottom: 100px;
	}
	.main_conceptImg img {
		height: auto;
	}
	.main_conceptTxt {
		width: 100%;
		max-width: inherit;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	#main_concept {
		padding: 0 0 120px;
	}
	.main_conceptImg img {
		height: 450px;
		object-position: 0 30%;
	}
	.main_conceptArea {
		padding: 0 10%;
	}
}
@media screen and (max-width: 480px) {
	#main_concept {
		padding: 0 0 80px;
	}
	.main_conceptImg {
		margin-bottom: 80px;
	}
	.main_conceptImg img {
		height: 330px;
		object-position: inherit;
	}
}


/* ==============================================

	main_fair

================================================= */
#main_fair {
	background: #e8e1df;
	padding: 120px 0;
}
.main_fairArea {
	max-width: 1400px;
	margin: 0 auto;
}


/*---------------------------------------------
	fair_contents
---------------------------------------------*/
.fair_contents {
	max-width: 1500px;
	margin: 0 auto;
}
.fair_contentsInner {
	width: 100%;
}
.fair_contents article {
	margin: 0 22px;
	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 {
	position: absolute;
	top: 0;
	left: 0;
	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;
	padding: 0 10px;
	background: rgba(255,255,255,0.8);
}
.fair_date span {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}
.fair_date p {
	font-size: 3.8rem;
	margin-bottom: 5px;
}
.fair_date small {
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	display: block;
	width: 100%;
	text-align: center;
	position: relative;
	border-top: 1px solid;
	padding-top: 6px;
	font-weight: 500;
}
.fair_date.date_weekday {
	color: #3b3a39;
}
.fair_date.date_saturday {
	color: #3f4f6b;
}
.fair_date.date_holiday {
	color: #84412a;
}
.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: 133%;
}

.fair_openTime {
	border-top: 1px solid #84412a;
	border-bottom: 1px solid #84412a;
	padding: 12px 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;
	color: #84412a;
}

#main_fair .fair_openTime {
	margin-bottom: 15px;
}
.fair_openTime dl {
	line-height: 120%;
	display: flex;
	align-items: baseline;
	column-gap: 18px;
	font-size: 1.3rem;
}
.fair_openTime dl dd {
	flex: 1;
}

.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
}
#main_fair .cmn_tag,
#main_plan .cmn_tag {
	margin-bottom: 0;
}
.cmn_tag li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 6px 10px;
	color: #fff;
	background: #bf9c90;
	font-size: 1.2rem;
	letter-spacing: 0;
	font-weight: 400;
	line-height: 120%;
}
#main_plan .cmn_tag li,
#main_report .cmn_tag li {
	background: #bf9c90;
}

.fair_listDtl_info .cmn_tag,
.fair_dtlInfo_box .cmn_tag {
	margin-bottom: 30px;
}
.fair_listDtl_info .cmn_tag li,
.fair_dtlInfo_box .cmn_tag li {
	background: #bf9c90;
	color: #fff;
}
#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: 120px 4%;
	}
}
@media screen and (max-width: 1536px) {
	#main_fair {
		padding: 120px 6%;
	}
	.fair_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1024px) {
	#main_fair {
		padding: 120px 3%;
		overflow: hidden;
	}
	.fair_contents article {
		margin: 0 12px;
	}
}
@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: 80px 0;
	}
	.fair_contents article {
		margin: 0 12px;
	}
	.fair_month {
		margin-bottom: 25px;
	}
	.fair_calendar h3 {
		font-size: 2.4rem;
	}
	.fair_calendar h3 small {
		font-size: 1.4rem;
	}
	.fair_calendar th {
		font-size: 1.2rem;
		padding: 15px 2px 12px;
	}
	.fair_calendar th p {
		font-size: 1.4rem;
	}
	.fair_calendar td {
		font-size: 1.8rem;
		padding: 18px 0;
	}
	.cal_event a {
		padding: 0;
	}
	.cal_event a::after {
		width: 35px;
		padding-top: 35px;
	}
	.cmn_tag li {
		padding: 6px;
		font-size: 1.1rem;
	}
}




/* ==============================================

	main_bestrate

================================================= */
#main_bestrate {
	max-width: 1000px;
	margin: 0 auto 110px;
	height: 400px;
}
#main_bestrate a {
	display: flex;
}
#main_bestrate a:hover {
	opacity: 0.8;
}
.bestrate_img {
	overflow: hidden;
}
.bestrate_img img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
#main_bestrate a:hover .bestrate_img img {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
@media screen and (max-width: 1194px) {
	#main_bestrate {
		padding: 0 8%;
		max-width: inherit;
	}
}
@media screen and (max-width: 1024px) {
	#main_bestrate {
		padding: 0 5%;
	}
}
@media screen and (max-width: 896px) {
	#main_bestrate {
		height: 350px;
	}
	#main_bestrate img {
		height: 350px;
	}
}
@media screen and (max-width: 640px) {
	#main_bestrate a {
		max-width: 500px;
		margin: 0 auto;
	}
	#main_bestrate {
		height: auto;
	}
	#main_bestrate picture img {
		max-width: 100%;
		height: auto;
	}
}




/* ==============================================

	main_plan

================================================= */
#main_plan {
	padding: 120px 0;
}
.plan_contents {
	margin-bottom: 60px;
}
.plan_contents article {
	margin: 0 25px;
	width: 400px;
}
.plan_contents article a {
	display: block;
}
.plan_contents article a:hover {
	opacity: 0.8;
}
.plan_contents article figure {
	margin-bottom: 15px;
	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: 133%;
}
.plan_price {
	margin: 15px 0;
	padding: 12px 0;
	border-top: 1px solid #84412a;
	border-bottom: 1px solid #84412a;
	text-align: center;
	color: #84412a;
}
.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 p {
	font-size: 1.6rem;
	font-weight: 500;
}
.plan_price span {
	font-size: 2.5rem;
	font-weight: 600;
}
.plan_price span small {
	font-size: 1.4rem;
	margin-left: 5px;
}
@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: 80px 0;
	}
	.plan_contents {
		margin-bottom: 30px;
	}
	.plan_contents article {
		margin: 0 12px;
	}
	#main_plan .cmn_ttl_h2 {
		margin-bottom: 35px;
	}
}


/* ==============================================

	main_scene

================================================= */
#main_scene {
	overflow: hidden;
}
#main_scene > section {
	display: flex;
}
#main_scene > section > div {
	width: 50%;
	display: flex;
	align-items: center;
}
#main_scene > section:nth-child(even) {
	flex-flow: row-reverse;
}
.main_sceneImg picture, .main_sceneImg picture img {
	width: 100%;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	height: 650px;
}


.main_sceneTxt {
	background: #e8e1df;
	justify-content: center;
}
/*
#main_scene > section:nth-child(odd) .main_sceneTxt {
	padding-left: 130px;
}
#main_scene > section:nth-child(even) .main_sceneTxt {
	padding-right: 130px;
	justify-content: flex-end;
}
*/
#main_scene .cmn_txtBox {
	width: 470px;
}
#main_scene .cmn_ttl_h2 {
	text-align: left;
	margin-bottom: 70px;
}
#main_scene .cmn_txtBox h3 {
	font-size: 2rem;
	line-height: 200%;
	letter-spacing: 0.1em;
	margin-bottom: 45px;
	word-break: keep-all;
}
#main_scene .cmn_txt {
	line-height: 200%;
	text-align: left;
	letter-spacing: 0.025rem;
	/*
	word-break: keep-all;
	*/
}
/*
#main_cuisine .cmn_txt {
	word-break: normal;
}
*/
#main_scene .more_btn {
	margin-top: 70px;
	margin-left: 0;
}
#ceremony_list .more_btn,
#banquet_list .more_btn {
	margin: 50px auto 70px;
}
@media screen and (max-width:1366px){
	#main_scene .cmn_txtBox {
		width: auto;
		padding: 0 10%;
	}
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width:896px){
	#main_scene > section {
		flex-flow: column!important;
	}
	#main_scene > section > div {
		width: 100%;
	}
	.main_sceneTxt {
		padding: 80px 10%;
	}
	#main_scene .cmn_txtBox {
		padding: 0;
	}
	.main_sceneImg picture, .main_sceneImg picture img {
		height: 500px;
	}
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 640px) {
}
@media screen and (max-width: 480px) {
	.main_sceneImg picture, .main_sceneImg picture img {
		height: 330px;
	}
	#main_scene .cmn_ttl_h2 {
		margin-bottom: 50px;
	}
	#main_scene .more_btn {
		margin-top: 50px;
	}
}


/* ==============================================

	main_report

================================================= */
#main_report {
	padding: 120px 5%;
}
.report_contents {
	max-width: 1360px;
	margin: 0 auto 60px;
}
.report_contents article {
	width: calc((100% / 3));
}
#main_report .report_contents article {
	margin: 0 25px;
}
.main_report_no {
	font-size: 5rem;
	position: relative;
	z-index: 1;
	color: #bf9c90;
}
.report_contents article figure {
	overflow: hidden;
	aspect-ratio: 8 / 7;
	margin-bottom: 10px;
	margin: -20px 0 20px 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: 500;
	line-height: 133%;
	margin-left: 20px;
}

@media screen and (max-width: 1366px) {
	#main_report .report_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 1024px) {
	#main_report .report_contents article {
		margin: 0 10px;
	}
}
@media screen and (max-width: 480px) {
	#main_report {
		padding: 80px 0;
	}
	#main_report .report_contents article {
		margin: 0 6px;
	}
	.report_contents article figure {
		margin: -20px 0 20px 15px;
	}
	.main_report_no {
		font-size: 4rem;
	}
	.report_contents article h3, .report_contents article h2 {
		margin-left: 15px;
	}
}


/* ==============================================

	main_photogallery

================================================= */
#main_photogallery {
	padding: 120px 5%;
	background: #e8e1df;
}
.main_photogalleryArea {
	max-width: 1390px;
	margin: 0 auto;
	display: flex;
	flex-flow: row-reverse;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
.main_photogalleryImg {
	display: flex;
	gap: 5px;
}
.main_photogalleryImg > figure {
	aspect-ratio: 151 / 233;
}
.main_photogalleryImg > figure img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.main_photogalleryImg li:not(:last-child) {
	margin-bottom: 5px;
}
.main_photogalleryTxt {
	max-width: 500px;
}
#main_photogallery .cmn_ttl_h2 {
	text-align: left;
}
#main_photogallery .cmn_txt {
	text-align: left;
	letter-spacing: 0.025em;
}
#main_photogallery .more_btn {
	margin-top: 70px;
	margin-left: 0;
}

@media screen and (max-width: 1366px) {
	.main_photogalleryImg {
		width: 50%;
	}
	.main_photogalleryTxt {
		width: 45%;
	}
}
@media screen and (max-width: 1024px) {
	.main_photogalleryArea {
		flex-flow: column;
		gap: 0;
	}
	.main_photogalleryImg {
		width: 70%;
	}
	.main_photogalleryTxt {
		padding-top: 100px;
		width: auto;
	}
}
@media screen and (max-width: 768px) {
	#main_photogallery {
		padding: 0;
	}
	.main_photogalleryImg {
		width: 100%;
	}
	.main_photogalleryTxt {
		max-width: inherit;
		padding: 100px 10%;
	}
}
@media screen and (max-width: 480px) {
	.main_photogalleryTxt {
		padding: 80px 10%;
	}
}


/* ==============================================

	main_instagram

================================================= */
#main_instagram {
	padding: 120px 5%;
}
.main_instagramArea {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.main_instagramTtl {
	margin-right: 100px;
}
.main_instagramTtl .cmn_ttl_h2 {
	margin-bottom: 0;
}
.main_instagramTxt {
	max-width: 600px;
	line-height: 200%;
	padding: 50px 0 50px 100px;
	position: relative;
	color: #84412a;
}
.main_instagramTxt::before {
	content: "";
	background: #84412a;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.main_instagramTxt .cmn_txt {
	letter-spacing: 0.025em;
	text-align: left;
}
#main_instagram .cmn_btn a::before {
	content: "";
	background: url("images/icon_instagram.svg") center no-repeat;
	width: 22px;
	height: 22px;
	background-size: contain;
	margin-right: 20px;
	filter: brightness(0) saturate(100%) invert(26%) sepia(70%) saturate(634%) hue-rotate(331deg) brightness(91%) contrast(84%);
}
#main_instagram .cmn_btn a:hover::before {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
@media screen and (max-width: 896px) {
	.main_instagramArea {
		flex-flow: column;
	}
	.main_instagramTtl {
		margin-right: 0;
	}
	.main_instagramTtl .cmn_ttl_h2 {
		margin-bottom: 70px;
	}
	.main_instagramTxt {
		padding: 0;
		max-width: 500px;
	}
	.main_instagramTxt::before {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	#main_instagram {
		padding: 120px 10%;
	}
}
@media screen and (max-width: 480px) {
	#main_instagram {
		padding: 80px 10%;
	}
	.main_instagramTtl .cmn_ttl_h2 {
		margin-bottom: 50px;
	}
	.main_instagramTxt .cmn_txt {
		letter-spacing: 0;
	}
}

/* ==============================================

	main_news

================================================= */
#main_news {
	padding: 120px 3%;
	background: #e8e1df;
}
@media screen and (max-width:480px){
	#main_news {
		padding: 80px 0;
	}
}


/* ==============================================

	news_box

================================================= */
.news_contents {
	max-width: 1300px;
	margin: 0 auto;
}
.news_contents article {
	width: calc((100% / 3));
}
#main_news .news_contents article {
	margin: 0 25px;
}

.news_contents article figure {
	overflow: hidden;
	aspect-ratio: 8 / 7;
	margin-bottom: 10px;
}
.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: 18px;
	flex-flow: row wrap;
	gap: 5px 20px;
	color: #84412a;
}
.news_info time {
	font-size: 1.5rem;
}
.news_cat {
	font-size: 1.2rem;
	letter-spacing: 0;
	font-weight: 400;
	padding: 5px 8px;
	border: 1px solid #84412a;
}
.news_contents article h3, .news_contents article h2 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 133%;
}

@media screen and (max-width: 1366px) {
	#main_news .news_contents article {
		margin: 0 15px;
	}
}
@media screen and (max-width: 640px) {
	.news_box_list .news_contents {
		padding: 0 5%;
	}
	.news_box_list .news_contentsInner {
		gap: 0!important;
		flex-flow: column!important;
	}
	.news_box_list .news_contentsInner article {
		width: 100%!important;
	}
	.news_box_list .news_contents article a {
		display: flex;
		justify-content: space-between;
		padding: 20px 0;
		border-bottom: 1px solid #beb8ac;
	}
	.news_box_list .news_contentsInner article:first-child a {
		padding-top: 0;
	}
	.news_box_list .news_contents article figure {
		width: 40%;
		margin-bottom: 0;
	}
	.news_box_list .news_contents article a > div {
		width: 55%;
	}
	.news_box_list .news_cat {
		letter-spacing: 0;
	}
}
@media screen and (max-width: 480px) {
	#main_news .news_contents article {
		margin: 0 12px;
	}
	.news_box_list .news_contents article a {
		padding: 15px 0;
	}
	.news_box_list .news_contents article figure {
		width: 35%;
	}
	.news_box_list .news_contents article a > div {
		width: 60%;
	}
	.news_box_list .news_info {
		margin-bottom: 12px;
		gap: 3px 10px;
	}
	.news_box_list .news_info time {
		font-size: 1.4rem;
		letter-spacing: 0;
	}
	.news_box_list .news_cat {
		padding: 5px;
		font-size: 1.0rem;
	}
	.news_box_list h2, .news_box_list h3 {
		font-size: 1.2rem!important;
		line-height: 140%!important;
		margin-bottom: 15px!important;
	}
}


/* ==============================================

	main_access

================================================= */
#main_access {
	padding: 120px 0;
	color: #84412a;
}
.main_accessArea {
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 70px;
}
.main_accessTtl {
	margin-right: 100px;
}
.main_accessTtl .cmn_ttl_h2 {
	margin-bottom: 0;
}
.main_accessTxt {
	max-width: 600px;
	line-height: 200%;
	padding: 50px 0 50px 100px;
	position: relative;
}
.main_accessTxt::before {
	content: "";
	background: #84412a;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.main_accessTxt .cmn_txt {
	text-align: left;
	letter-spacing: 0.025em;
}
.main_accessTxt p:not(:last-child) {
	margin-bottom: 45px;
}
.main_access_en .cmn_txt_en {
	margin: 20px 0 0!important;
}
.access_map {
	margin-bottom: 70px;
}
.access_map iframe {
	width: 100%;
	-webkit-filter: grayscale(100%);
     -moz-filter: grayscale(100%);
     -o-filter: grayscale(100%);
     -ms-filter: grayscale(100%);
     filter: grayscale(100%);
}
@media screen and (max-width: 896px) {
	.main_accessArea {
		flex-flow: column;
	}
	.main_accessTtl {
		margin-right: 0;
	}
	.main_accessTtl .cmn_ttl_h2 {
		margin-bottom: 70px;
	}
	.main_accessTxt {
		padding: 0;
		max-width: 500px;
	}
	.main_accessTxt::before {
		display: none;
	}
	.access_map {
		margin: 0;
	}
	#main_access .more_btn_en {
		margin: 70px 0 0 0;
	}
}
@media screen and (max-width: 640px) {
	.main_accessArea {
		padding: 0 10%;
	}
}
@media screen and (max-width: 480px) {
	#main_access {
		padding: 80px 0;
	}
	.main_accessTtl .cmn_ttl_h2 {
		margin-bottom: 50px;
	}
	.main_accessTxt .cmn_txt {
		letter-spacing: 0;
	}
	.main_accessTxt p:not(:last-child) {
		margin-bottom: 30px;
	}
	#main_access .more_btn_en {
		margin: 50px 0 0 0;
	}
}

/* ==============================================

	main_bnr

================================================= */
#main_bnr {
	padding: 0 5% 120px;
}
#main_bnr .main_bnr_one {
	max-width: 1290px;
}
#main_bnr .main_bnr_two {
	max-width: 960px;
	flex-flow: row wrap;
}
#main_bnr .main_bnr_two li {
	width: calc((100% - 60px) / 3);
}
#main_bnr ul {
	display: flex;
	justify-content: center;
	gap: 40px 30px;
	margin: 0 auto;
}
#main_bnr ul li figure {
	overflow: hidden;
	aspect-ratio: 2 / 1;
	margin-bottom: 15px;
}
#main_bnr ul li img {
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
#main_bnr ul li a:hover {
	opacity: 0.8;
}
#main_bnr ul li a:hover img{
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}
.main_bnr_name {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 10px;
}
.main_bnr_area {
	display: flex;
	align-items: center;
	font-size: 1.2rem;
}
.main_bnr_area::before {
	content: "";
	background: url("images/icon_map.svg") center no-repeat;
	display: block;
	width: 13px;
	height: 17px;
	background-size: contain;
	margin-right: 5px;
}
@media screen and (max-width:1024px){
	#main_bnr ul {
		gap: 30px 20px;
		justify-content: flex-start;
	}
	#main_bnr .main_bnr_two li {
		width: calc((100% - 40px) / 3);
	}
	.main_bnr_name {
		font-size: 1.5rem;
	}
}
@media screen and (max-width:768px){
	#main_bnr ul {
		flex-flow: row wrap;
		gap: 40px 30px;
	}
	#main_bnr ul li {
		width: calc((100% - 30px) / 2)!important;
	}
}
@media screen and (max-width:480px){
	#main_bnr {
		padding: 0 5% 80px;
	}
	#main_bnr ul {
		gap: 30px 25px;
	}
	#main_bnr ul li {
		width: calc((100% - 25px) / 2)!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: 60px;
		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: #000;
		font-size: 1.4rem;
		padding-bottom: 5px;
		width: 100%;
		gap: 10px;
	}
	.bf_visit a, .bf_fair a {
		color: #fff!important;
	}
	.bf_tel a {
		background: #F5F5F5;
	}
	.bf_tel a p {
		font-size: 1.4rem;
		letter-spacing: 0.2em;
	}
	.bf_tel a span {
		display: inline-block;
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 480px) {
	#btn_fixed ul li a {
		font-size: 1.2rem;
		gap: 5px;
	}
	.bf_visit a p,
	.bf_fair a p {
		font-size: 1.2rem;
	}
	.bf_visit a span,
	.bf_fair a span {
		font-size: 1.0rem;
	}
}


/* ==============================================

	footer

================================================= */
footer {
	background: #BF9C90;
	position: relative;
	z-index: 2;
	padding: 95px 5% 45px;
	color: #fff;
	font-size: 1.3rem;
}
#footer a {
	color: #fff;
}
.up_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: 150px;
	height: auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	margin-bottom: 10px;
}
.f_logo p {
	font-size: 1.4rem;
	letter-spacing: 0.15em;
}
.f_info p {
	margin-bottom: 10px;
}
.f_address {
	margin-bottom: 40px;
}
.f_address address {
	font-style: normal;
	margin-bottom: 5px;
	line-height: 150%;
	display: flex;
	flex-flow: row wrap;
	gap: 0 10px;
	justify-content: center;
}
.f_address a {
	text-decoration: underline;
	font-size: 1.3rem;
}
.f_address a:hover {
	text-decoration: none;
}
.f_tel p {
	font-size: 1.3rem;
	letter-spacing: 0.05em;
}
.f_tel a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 3.0rem;
	margin-bottom: 40px;
}
.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: 540px;
}
.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 40px;
	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: 40px;
	column-gap: 1em;
}
.f_memberLink a {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
.f_memberLink a:not(:last-child) {
	padding-right: 1em;
	border-right: 1px solid #fff;
}

.btn_hotelsite {
	max-width: 430px;
	margin: 0 auto;
}
.btn_hotelsite a {
	height: 60px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	background: #eff1ef;
	padding: 0 50px 0 20px;
	color: #252525!important;
	gap: 10px;
	position: relative;
	word-break: keep-all;
	text-align: center;
}
.btn_hotelsite a::after {
	content: "";
	background: url("images/icon_window.svg") center no-repeat;
	width: 19px;
	height: 18px;
	background-size: contain;
	position: absolute;
	right: 20px;
}
.btn_hotelsite a img {
	width: 110px;
}
.btn_hotelsite a:hover {
	background: #0a5a40;
	color: #fff!important;
}
.btn_hotelsite a:hover::after,
.btn_hotelsite a:hover img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

@media screen and (max-width:1194px) {
	.up_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;
	}
	.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;
	}
}
@media screen and (max-width: 896px) {
	.btn_hotelsite a img {
		zoom: 0.8;
	}
}
@media screen and (max-width: 768px) {
	footer {
		/*  = 108/768*100 */
		padding-right: 7%;
		padding-left: 7%;
	}
	.up_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;
	}
	.btn_hotelsite a img {
		zoom: 1;
	}
	.f_logo img {
		width: auto;
		height: 18px;
	}
}
@media screen and (max-width: 480px) {
	footer {
		padding-top: 60px;
	}
	.f_memberLink {
		column-gap: 8px
	}
	.f_memberLink a {
		font-size: 1.05rem;
	}
	.f_memberLink a:not(:last-child) {
		padding-right: 8px;
	}
	.btn_hotelsite a {
		padding: 0 50px 0 10px;
		gap: 0;
		height: 50px;
	}
	.btn_hotelsite a img {
		zoom: 0.8;
	}
}


/* ==============================================

	copyright

================================================= */
#copyright {
	text-align: center;
	font-size: 1.2rem;
	padding: 95px 0 0;
}

@media screen and (max-width: 768px) {
	#copyright {
		padding-top: 30px;
		font-size: 1rem;
	}
}
@media screen and (max-width: 480px) {
	#copyright {
		letter-spacing: 0.1rem;
	}
}

