@charset "utf-8";

#page_title {
	background-image:url(../img/page_title_bg.png);
}

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

head_link

=================================================================*/
#head_link {
	width:94%;
	max-width:1000px;
	margin:0 auto;
	margin-top:3rem;
}

#head_link p {
	line-height:1.8;
}

#head_link .nav_wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-justify-content:space-between;
	-moz-justify-content:space-between;
	-ms-justify-content:space-between;
	justify-content:space-between;
}

#head_link .nav_wrap > * {
	width:48%;
	margin-top:3rem;
}

#head_link .nav_wrap > * a {
	width:100%;
}

@media screen and (max-width:480px){
	#head_link .nav_wrap > *,
	#head_link {
		margin-top:1.5rem;
	}
	#head_link p {
		font-size:1.4rem;
	}
}


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

exhibition

=================================================================*/
#exhibition .container {
	width:94%;
	max-width:1000px;
	margin:0 auto;
	margin-top:3rem;
}

.table_wrap table td,
.table_wrap table th {
	vertical-align:middle;
}

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

conference

=================================================================*/
#conference .container {
	width:94%;
	max-width:1000px;
	margin:0 auto;
	margin-top:3rem;
}

#conference .attention {
	background:#F2EFEF;
	padding:2rem;
	margin-bottom:3rem;
}

#conference .attention p {
	font-weight:bold;
	margin-bottom:0.5rem;
}

#conference .attention li {
	display:inline-block;
	padding-right:2rem;
	padding-left:1.5em;
	position:relative;
}
#conference .attention li:before {
	display:block;
	content:'●';
	position:absolute;
	top:0;
	left:0;
}

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

modal

=================================================================*/
#modal .box {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right:0;
	width: 100%;
	height: 100vh;
	z-index:1000;
}

#modal .box_wrap {
	width:100%;
	height:100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content:center;
	-moz-justify-content:center;
	-ms-justify-content:center;
	justify-content:center;
	-webkit-align-items:center;
	-moz-align-items:center;
	-ms-align-items:center;
	align-items:center;
	
}

#modal .window {
	width:90%;
	max-width:540px;
	max-height:80%;
	overflow-y:scroll;
	background:#fff;
	padding:2rem;
	text-align:center;
	position:relative;
	z-index:3;
}

#modal .window h4 {
	font-weight:bold;
	color:#004DA0;
	border-bottom:1px solid #F2EFEF;
	padding-bottom:1rem;
}

#modal .window > * + * {
	margin-top:2rem;
}

#modal .window .text {
	background:#F2EFEF;
	padding:1rem;
	font-size:1.4rem;
}

#modal .window .close {
	display:block;
	width:22px;
	height:22px;
	background:url(../../common/img/close.png) center center no-repeat;
	background-size:100% auto;
	position:absolute;
	top:1rem;
	right:1rem;
	cursor:pointer;
	z-index:99;
	margin:0 !important;
}
	

#modal .box > .close {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.7);
	z-index:2;
}

