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

 file name  :common.css
 style info :共通のスタイル指定（ストラクチャ、ヘッダー、フッター）

=================================================================== */
/*
@media screen and (max-width: 991px) {
	large tablet
}
@media screen and (max-width: 767px) {
	tablet large-smartphone
}
@media screen and (max-width: 479px) {
	small-smartphone
}
*/

/* ---------------------------------------------------------------------------

		body
			ロード後fadeInモーション

--------------------------------------------------------------------------- */
/*
body{
	position: relative;
}
body::after{
	content:'';
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index:11111;
	opacity: 1;
	pointer-events: none;
	transition: opacity ease .6s
}
.page-loaded body::after{opacity: 0;}
*/
/*
ロード前のトランジションを無効化
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}
*/

/* ---------------------------------------------------------------------------

		structure
			ストラクチャ：基本設定、リンクカラーなど

--------------------------------------------------------------------------- */
a{
	color: #666;
	transition:all ease 0.3s;
	text-decoration: none;
}


/* ---------------------------------------------------------------------------
		#wrapper
			全体
--------------------------------------------------------------------------- */
#wrapper{
	overflow: hidden;
}
#wrapper img{
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px){
	#wrapper{
		padding: 68px 0 0;
		min-width: 320px;
	}
}


/* ---------------------------------------------------------------------------
		#header
			ヘッダー
--------------------------------------------------------------------------- */
#header{
	padding-top: 60px;
	position: relative;
	background: #000;
}
#header .head-inner{
	display: flex;
	justify-content: space-between;
	background: #fff;
}
#header #logo{
	padding: 30px 2% 30px 4%;
}

#header .nav-wrap{
	display: flex;
	align-items: center;
}
#hnav{
	height: 60px;
	padding: 13px 20px 0;
	position: absolute;
	top: 0;
	right: 0;
}
#hnav ul{
	display: flex;
	justify-content: flex-end;
}
#hnav ul li + li{
	margin: 0 0 0 15px;
}
#hnav ul li.hnav-entry a::before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 20px;
	margin: 0 20px 0 0;
	background: url(../../images/common/ico_entry.png) no-repeat 50% 50% / 100% auto;
	vertical-align: -3px;
}
#hnav ul li.hnav-reserve a::before{
	content: "";
	display: inline-block;
	width: 23px;
	height: 20px;
	margin: 0 12px 0 0;
	background: url(../../images/common/ico_reserve.png) no-repeat 50% 50% / 100% auto;
	vertical-align: -3px;
}
#hnav ul li a{
	display: block;
	padding: 8px 14px;
	height: 35px;
	background: #62bdbe;
	border-radius: 4px;
	font-size: 1.6rem;
	line-height: 1;
	color: #fff;
}
#hnav ul li a span{
	color: #faf178;
}
#gnav{
}
#gnav ul{
	display: flex;
}
#gnav ul li{
	margin: 0 0 0 18px;
}
#gnav ul li a{
	display: inline-block;
	padding: 12px 0;
	position: relative;
	font-size: 1.5rem;
	line-height: 1;
	white-space: nowrap;
}
#gnav ul li a::after{
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background: #77b7ba;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transition: all ease 0.4s;
}
#gnav ul li a:hover::after,
.index #gnav ul li.gnav-top a::after,
.about #gnav ul li.gnav-about a::after,
.event #gnav ul li.gnav-event a::after,
.blog #gnav ul li.gnav-blog a::after,
.introduction #gnav ul li.gnav-introduction a::after{
	width: 100%;
}

#social-link{
	width: 153px;
	display: flex;
	align-items: center;
	margin: 0 20px 0 24px;
}
#social-link li + li{
	margin: 0 0 0 15px;
}

@media screen and (max-width: 1340px){
	#header #logo{
		padding: 30px 2% 30px 15px;
	}
	#gnav ul li a{
		font-size: 1.3rem;
	}
	#social-link{
		width: 120px;
		display: flex;
		align-items: center;
		margin: 0 20px 0 20px;
	}
	#social-link li + li{
		margin: 0 0 0 8px;
	}
}
@media screen and (max-width: 1000px){
	#header .nav-wrap{
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	#gnav{
		margin: 0 15px 0 0;
	}
	#gnav ul li{
		margin: 0 0 0 10px;
	}

	#social-link{
		width: 100%;
		margin: 0 15px 0 0;
		padding: 0 0 15px;
		justify-content: flex-end;
	}
	#social-link li{
		width: 24px;
	}
	#social-link li + li{
		width: 20px;
		margin: 0 0 0 8px;
	}
}

@media screen and (max-width: 767px){
	#header{
		width: 100%;
		height: 68px;
		padding-top: 0;
		background: #fff;
		position: fixed;
		top: 0;
		z-index: 999999;
		border-bottom: solid 1px #e9e5e5;
	}
	#header .head-inner{
		display: block;
	}
	#header #logo{
		width: 211px;
		margin: 0 auto;
		padding: 40px 0 0;
	}
	
	#header .nav-wrap{
		display: block;
	}
	
	#navWrap{
		width: 100vw;
		padding: 40px 0 0;
		background: #fff;
		height: 100vh;
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 999999;
		transition: left ease 0.4s;
	}
	.gnavMenuIsOpen #navWrap{
		left: 0;
	}
	#hnav{
		height: auto;
		padding: 0 5%;
		position: static;
	}
	#hnav ul{
		margin: 20px 0 0;
		display: block;
		text-align: center;
	}
	#hnav ul li + li{
		margin: 10px 0 0;
	}
	#hnav ul li.hnav-entry a::before{
		position: absolute;
		top: 50%;
		left: 22px;
		transform: translateY(-50%);
	}
	#hnav ul li.hnav-reserve a::before{
		position: absolute;
		top: 50%;
		left: 15px;
		transform: translateY(-50%);
	}
	#hnav ul li a{
		padding: 18px 14px;
		height: auto;
		font-size: 1.6rem;
		position: relative;
	}
	
	#gnav{
	}
	#gnav ul{
		display: block;
	}
	#gnav ul li{
		margin: 10px 0 0;
		text-align: center;
	}
	#gnav ul li a{
		display: block;
		padding: 12px 0;
		font-size: 1.5rem;
	}
	#gnav ul li a::after{
		content: none;
	}
	
	#social-link{
		position: absolute;
		top: 10px;
		right: 10px;
		width: 108px;
		margin: 0;
		padding: 0;
	}
	#social-link li + li{
		margin: 0 0 0 8px;
	}

/* menuBtn */
	#menuBtn{
		display: block;
		width: 45px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 99999999;
	}
	#menuBtn a{
		display: block;
		height: 45px;
	}
	#menuBtn::after,
	#menuBtn a::before,
	#menuBtn a::after {
		content: '';
		position: absolute;
		display: block;
		top: 12px;
		left: 50%;
		margin-left: -15px;
		background: #77b7ba;
		width: 30px;
		height: 2px;
		transition: all ease .3s;
	}
	#menuBtn::after {top:22px;pointer-events: none;}
	#menuBtn a::after { top:32px;}
	#menuBtn a > span{
		overflow: hidden;
		display: inline-block;
		position: relative;
		font-size: 1.4rem;
		line-height: 1;
	}
	#menuBtn a > span::after{
		content:'Close';
		display: inline-block;
		position: absolute;
		left: 0;
		width: 100%;
		text-align:center;
		transform: translateY(-1.5em);
		transition: all ease .3s;
		font-size: 1.2rem;
		line-height: 1.5;
	}
	
	#menuBtn a > span span{
		display: inline-block;
		transition: all ease .3s;
	}
	.gnavMenuIsOpen #menuBtn::after,
	.gnavMenuIsOpen #menuBtn a::before,
	.gnavMenuIsOpen #menuBtn a::after{ top:20px;}
	.gnavMenuIsOpen #menuBtn::after {
		transform: rotate(45deg);
		opacity: 0;
	}
	.gnavMenuIsOpen #menuBtn a::before { transform: rotate(45deg);}
	.gnavMenuIsOpen #menuBtn a::after { transform: rotate(-45deg);}
	.gnavMenuIsOpen #menuBtn a > span::after{ transform: translateY(0);}
	.gnavMenuIsOpen #menuBtn a > span span{ transform: translateY(-1.5em);}
}


/* ---------------------------------------------------------------------------
		#content
			コンテンツ
--------------------------------------------------------------------------- */

/*
	#content .sec-member
----------------------------------------------------*/
#content .sec-member{
	padding: 100px 10px 95px;
	background: url(../../images/index/bg_line.png);
}
#content .sec-member h2{
	margin: 0 0 60px;
	text-align: center;
}
#content .sec-member h2 img + img{
	margin: 0 0 0 19px;
}
#content .sec-member h2 .ja{
	display: block;
	margin: 18px 0 0;
	font-size: 1.7rem;
}
#content .sec-member .member-list{
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#content .sec-member .member-list li{
	width: 48.48%;
	padding: 9px;
	display: flex;
	border: solid 1px #e3e3e3;
	border-radius: 10px;
	background: #fff;
	position: relative;
}
#content .sec-member .member-list li::before,
#content .sec-member .member-list li::after{
	content: "";
	display: block;
	position: absolute;
	z-index: 10;
}
#content .sec-member .member-list li::before{
	width: 17.1875%;
	padding: 10.625% 0 0;
	background: url(../../images/index/img_ribon01.png) no-repeat 50% top / 100% auto;
	top: 0;
	left: 0;
}
#content .sec-member .member-list li::after{
	width: 28.125%;
	padding: 21.25% 0 0;
	background: url(../../images/index/img_ribon02.png) no-repeat 50% bottom / 100% auto;
	right: 0;
	bottom: 0;
	margin: 0 -2.5% -2.6% 0;
}

#content .sec-member .member-list li:nth-child(n + 3){
	margin: 3% 0 0;
}
#content .sec-member .member-list li .fig{
	width: 46.875%;
}
#content .sec-member .member-list li .txt-block{
	width: 53.125%;
	padding: 3.75% 5% 0 6.25%;
	position: relative;
}
#content .sec-member .member-list li .txt-block::before,
#content .sec-member .member-list li .txt-block::after{
	content: "";
	display: block;
	width: 13.8888888888%;
	padding: 13.8888888888% 0 0;
	position: absolute;
}
#content .sec-member .member-list li .txt-block::before{
	top: 0;
	right: 0;
	background: url(../../images/index/img_motif01.png) no-repeat 50% 50% / 100% auto;
}
#content .sec-member .member-list li .txt-block::after{
	background: url(../../images/index/img_motif02.png) no-repeat 50% 50% / 100% auto;
	left: 9px;
	bottom: 0;
}
#content .sec-member .member-list li .txt-block dl dt{
	display: flex;
	align-items: center;
	margin: 0 0 5.7% -4%;
	line-height: 1.3;
}
#content .sec-member .member-list li .txt-block dl dt img{
	width: 24.28%;
	height: auto;
}
#content .sec-member .member-list li .txt-block dl dt span{
	margin: 0 0 0 5.3%;
	font-size: 1.9rem;
	white-space: nowrap;
}
#content .sec-member .member-list li .txt-block dl dd{
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: -0.05em;
}
#content .sec-member .member-list li .txt-block dl dd span{
	display: block;
	font-size: 1.3rem;
	line-height: 1.4;
}


/*
	.attention
----------------------------------------------------*/
#content .cmn-attention{
	padding: 86px 10px;
	text-align: center;
	background-image: url(../../images/index/bg_dot01.png), url(../../images/index/bg_dot02.png);
	background-repeat: no-repeat;
	background-position: 4.1% 130%, 95% 130%;
}

#content .cmn-attention .btn-popup{
	max-width: 560px;
	margin: 0 auto;
}
#content .cmn-attention .btn-popup a{
	display: block;
	padding: 18px 0;
	font-size: 2.2rem;
	background: #e9e5e5;
}


/* js */
.mfp-bg,
.mfp-wrap{
	z-index: 9999999 !important;
}
.mfp-content{
	text-align: center !important;
}
.mfp-bg{
	opacity: 0;
	transition: all 0.6s ease !important;
}
.mfp-bg.mfp-ready{
	opacity: 0.8;
}
.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-wrap .mfp-content {
	opacity: 0;
	transition: all 1s ease !important;
}
.mfp-wrap.mfp-ready .mfp-content{
	opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content{
	opacity: 0;
}

.mfp-close-btn-in .mfp-close{
	color: #fff !important;
	font-size: 70px;
	position: fixed !important;
	top: 20px !important;
	right: 20px !important;
}
#video video{
	max-width: 100%;
	height: auto;
}



@media screen and (max-width: 1340px){
	#content .sec-member .member-list li .txt-block dl dt span{
		font-size: 1.41vw;
	}
	#content .sec-member .member-list li .txt-block dl dd{
		font-size: 1.11vw;
	}
	#content .sec-member .member-list li .txt-block dl dd span{
		font-size: 0.97vw;
	}
}

@media screen and (max-width: 767px){
	#content{
		font-size: 1.4rem;
		line-height: 1.7;
	}

	#content .sec-member{
		padding: 40px 20px;
		background: url(../../images/index/bg_line.png) 50% 50% / 3px 3px;
	}
	#content .sec-member h2{
		margin: 0 0 30px;
	}
	#content .sec-member h2 img{
		width: 282px;
	}
	#content .sec-member h2 img + img{
		width: 124px;
		display: block;
		margin: 7px auto 0;
	}
	#content .sec-member h2 .ja{
		margin: 10px 0 0;
		font-size: 1.2rem;
	}
	#content .sec-member .member-list{
		margin: 0 auto;
		display: block;
	}
	#content .sec-member .member-list li{
		width: 100%;
		margin: 0 0 10px;
		padding: 4px;
		border-radius: 5px;
		display: block;
	}
	#content .sec-member .member-list li::before,
	#content .sec-member .member-list li::after{
		content: "";
		display: block;
		position: absolute;
		z-index: 10;
	}
	#content .sec-member .member-list li::before{
		width: 17.1875%;
		padding: 10.625% 0 0;
		background: url(../../images/index/img_ribon01.png) no-repeat 50% top / 100% auto;
		top: 0;
		left: 0;
	}
	
	#content .sec-member .member-list li:nth-child(n + 2){
		margin: 3% 0 0;
	}
	#content .sec-member .member-list li .fig{
		width: 100%;
	}
	#content .sec-member .member-list li .txt-block{
		width: 100%;
		padding: 20px 20px 8%;
	}
	#content .sec-member .member-list li .txt-block::before,
	#content .sec-member .member-list li .txt-block::after{
		content: "";
		display: block;
		width: 13.8888888888%;
		padding: 13.8888888888% 0 0;
		position: absolute;
	}
	#content .sec-member .member-list li .txt-block::before{
		top: 4px;
		right: 0;
	}
	#content .sec-member .member-list li .txt-block::after{
		left: 0;
		bottom: 0;
	}
	#content .sec-member .member-list li .txt-block dl dt{
		margin: 0 0 10px;
	}
	#content .sec-member .member-list li .txt-block dl dt img{
		width: 50px;
		height: auto;
	}
	#content .sec-member .member-list li .txt-block dl dt span{
		margin: 0 0 0 8px;
		font-size: 1.6rem;
	}
	#content .sec-member .member-list li .txt-block dl dd{
		font-size: 1.4rem;
		line-height: 1.5;
		letter-spacing: 0;
	}
	#content .sec-member .member-list li .txt-block dl dd span{
		font-size: 1.1rem;
	}
	
	#content .cmn-attention{
		padding: 20px;
		background: none;
	}

	#content .cmn-attention .btn-popup a{
		padding: 14px 0;
		font-size: 1.4rem;
		line-height: 1.4;
		letter-spacing: -0.05em;
	}
	/* js */
	.mfp-auto-cursor .mfp-content{
		width: 100%;
		padding: 0 10px;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.mfp-close-btn-in .mfp-close{
		font-size: 40px;
		top: 0 !important;
		right: 5px !important;
	}
	
}








/* ---------------------------------------------------------------------------
		#main
			メイン
--------------------------------------------------------------------------- */
#main{
	font-size: 1.6rem;
}


@media screen and (max-width: 767px){
	#main{
		font-size: 1.4rem;
		line-height: 1.7;
	}
}



/* ---------------------------------------------------------------------------
		#footer
			フッター
--------------------------------------------------------------------------- */
#fnav{
	background: #e9e5e5;
}
#fnav ul{
	max-width: 1280px;
	margin: 0 auto;
	padding: 15px 10px;
	display: flex;
	justify-content: space-between;
	font-size: 1.5rem;
}
#fnav ul li a:hover{
	opacity: 0.6;
}
#footer .f-info{
	max-width: 1280px;
	margin: 0 auto;
	padding: 30px 10px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
}
#f-social-link{
	width: 153px;
	display: flex;
	align-items: center;
	margin: 0 0 0 60px;
}
#f-social-link li + li{
	margin: 0 0 0 15px;
}

#sideNav{
	width: 46px;
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 9999;
	transform: translateY(-50%);
}
#sideNav li + li{
	margin: 6px 0 0;
}
#sideNav li a{
	display: block;
	height: 160px;
	padding: 40px 14px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1;
	letter-spacing: 0.1em;
}
#sideNav li:nth-child(1) a{
	background: #db908c;
}
#sideNav li:nth-child(2) a{
	background: #77b7ba;
}
#sideNav li a:hover{
	opacity: 0.6;
}




@media screen and (max-width: 1200px){
	#fnav ul{
		font-size: 1.25vw;
	}
}

@media screen and (max-width: 767px){
	#fnav{
		background: #fff;
	}
	#fnav ul{
		padding: 0;
		display: block;
		font-size: 1.1rem;
		text-align: center;
		border-bottom: solid 1px #e9e5e5;
	}
	#fnav ul li{
		border-top: solid 1px #e9e5e5;
	}
	#fnav ul li a{
		display: block;
		padding: 9px 0;
	}
	#fnav ul li a:hover{
		opacity: 1;
	}
	#footer .f-info{
		max-width: 1280px;
		margin: 0 auto;
		padding: 20px 10px 58px;
		display: block;
	}
	#footer .f-info .f-logo{
		width: 211px;
		margin: 0 auto;
	}
	#f-social-link{
		width: 108px;
		display: flex;
		margin: 0 auto 18px;
	}
	#f-social-link li + li{
		margin: 0 0 0 8px;
	}
	
	#sideNav{
		width: 100%;
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		transform: none;
	}
	#sideNav ul{
		display: flex;
	}
	#sideNav ul li{
		width: 50%;
	}
	#sideNav li + li{
		margin: 0;
	}
	#sideNav li a{
		display: block;
		height: 40px;
		padding: 13px 0;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		font-size: 1.5rem;
		letter-spacing: 0.3em;
		text-align: center;
	}
	#sideNav li a:hover{
		opacity: 1;
	}
	
}

