@charset "UTF-8";
/*----------------------------------------

	#press_room
	- common
	- header
	- main
	- footer

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

/*----------------------------------------
	common
-----------------------------------------*/
* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

a:hover {
	color: #00a0e9;
}

/* font */
.font13 {
	font-size: 1.3rem;
}
.font15 {
	font-size: 1.5rem;
}
.font22 {
	font-size: 2.2rem;
}

/* .btn */
.btn {
	position: relative;
	z-index: 999;
	display: inline-block;
}
.btn a {
	position: relative;
	display: block;
	padding: 0.7em 25px 0.7em 18px;
	border: 1px solid #ddd;
	background-color: #fff;
	border-radius: 40px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.btn a span::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 14px;
	height: 6px;
	width: 6px;
	border-bottom: 2px solid #00a0e9;
	border-right: 2px solid #00a0e9;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
/*.btn a:hover {
	color: #fff;
	border-color: #222;
	background-color: #222;
}*/
.btn a:hover {
	color: #fff;
	background-color: #00a0e9;
}
.btn a:hover>span::after {
	border-color: #fff;
}

/* title_bg */
.title_bg {
	background: #068bc7 -o-linear-gradient(right, rgba(17,79,166,0.9) 0%, rgba(6,139,199,0.9) 100%);
	background: #068bc7 -webkit-gradient(linear, right top, left top, from(rgba(17,79,166,0.9)), to(rgba(6,139,199,0.9)));
	background: #068bc7 linear-gradient(-90deg, rgba(17,79,166,0.9) 0%, rgba(6,139,199,0.9) 100%);
}


/*----------------------------------------
	header
-----------------------------------------*/
/* default 解除 */
header>div {
    position: static;
    width: auto;
}

header {
	position: relative;
	width: 100%;
	background: #fff;
}
header::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 155px;
	height: 152px;
	background: url('../img/i_bg01.png') no-repeat left top;
	background-size: 155px 152px;
}
header>.head01 {
	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;
	max-width: 950px;
	margin: 0 auto;
	padding: 9px 0;
}
header>.head01>.logo {
    width: auto;
	padding: 0;
	text-align: inherit;
}
header>.head01>.logo img {
    width: auto;
	height: auto;
	margin: 0;
}

header>.head02 {
	padding: 23px 0;
}
header>.head02 .inner {
	max-width: 950px;
	margin: 0 auto;
}


@media screen and (max-width: 1000px) {
	header {
		position: static;
		height: auto;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}


/*----------------------------------------
	main
-----------------------------------------*/
#main {
	width: 100%
}
article {
	width: 950px;
	margin: 0 auto;
}
.title_bg>h1 {
	padding: 0.5em 20px;
}
@media screen and (max-width: 1000px) {
	#main {
		margin: 0;
	}
}

/* cmn */
[id^="s_"] {
	padding: 50px 0 0;
}

/* .list */
[class^="list"] ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
[class^="list"] .date {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	width: 130px;
	padding: 8px 0;
	font-size: 1.5rem;
	line-height: 1.7;
	color: #666;
}
[class^="list"]>h2 {
	color: #000;
}
[class^="list"] + [class^="list"] {
	margin-top: 30px;
}
.list ul li {
	padding: 10px 0;
	border-bottom: 1px solid #ddd;
}

[class^="list"] > p {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-top: 16px;
}
[class^="list"] > p > a {
	display: block;
	position: relative;
	padding-left: 13px;
	text-decoration: underline;
	text-underline-position: under;
	text-underline-position: below;
}
[class^="list"] > p > a:hover {
	text-decoration: none;
	text-underline-position: under;
	text-underline-position: below;
}
[class^="list"] > p > a::before {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #666;
}


/* list_link */
.list_link ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.list_link ul li.l_btn {
	width: calc(50% - 5px);
	margin-top: 10px;
}
.list_link ul li.l_btn:nth-child(even) {
	margin-left: 10px;
}
.list_link ul li.l_btn a {
	position: relative;
	display: block;
	width: 100%;
	padding: 1.0em 1.2em;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1.5rem;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.list_link ul li.l_btn.t_small a {
	font-size: 1.3rem;
}
.list_link ul li.l_btn a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 12px;
	height: 6px;
	width: 6px;
	border-bottom: 2px solid #00a0e9;
	border-right: 2px solid #00a0e9;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
/*.list_link ul li.l_btn a:hover {
	color: #fff;
	background-color: #222;
	border-color: #222;
}*/
.list_link ul li.l_btn a:hover {
	color: #fff;
	background-color: #00a0e9;
}
.list_link ul li.l_btn a:hover::after {
	border-color: #fff;
}


/* s_info */
#s_info {
	padding: 25px 0 0;
}
#s_info .box h1 {
	color: #068bc7;
}

/* s_sozai */
#s_sozai .list ul li .title {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	width: 520px;
	padding: 8px 20px 8px 0;
}
#s_sozai .list ul li .dl {
	width: 370px;
}
#s_sozai .list ul li .dl dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;*/
}
#s_sozai .list ul li .dl dl dt {
	position: relative;
	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;
	width: 80px;
	height: 36px;
	margin-right: 20px;
	font-size: 1.3rem;
	background-color: #eee;
}
#s_sozai .list ul li .dl dl dt h3 {
	padding: 0 0 0 5px;
}
#s_sozai .list ul li .dl dl dt::after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	border-top: 18px solid rgba(255,255,255,0.0);
	border-left: 10px solid #eee;
	border-bottom: 18px solid rgba(255,255,255,0.0);
}
#s_sozai .list ul li .dl dl dd {
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;*/
	width: calc(100% - 115px);
}
#s_sozai .list ul li .dl dl dd a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	/*width: 50%;
	max-width: 50%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;*/
	font-size: 1.5rem;
}
#s_sozai .list ul li .dl dl dd a+a {
	margin-top: 20px;
}

#s_sozai .list ul li .dl dl dd a .dl_head {
	width: 100%;
	margin-bottom: 5px;
	line-height: 1.2;
}
#s_sozai .list ul li .dl dl dd a .dl_icon {
	display: block;
	width: 20px;
	height: 16px;
	margin: 0 0 0 5px;
	background: url("../img/cmn_icon_DL.png") no-repeat;
}
#s_sozai .list ul li .dl dl dd a .dl_size {
	margin: 0 0 0 5px;
	font-size: 1.4rem;
	line-height: 1.0;
	color: #666;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
_:-ms-lang(x)::-ms-backdrop, #s_sozai .list ul li .dl dl dd a .dl_size {
	font-size: 1.3rem;
}
#s_sozai .list ul li .dl dl dd a:hover .dl_size {
	color: #00a0e9;
}


/* s_news */
#s_news {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
#s_news .box {
	width: calc(50% - 25px);
}
#s_news [class^="list"] ul li .title {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	width: calc(100% - 130px);
	padding: 8px 0;
}
#s_news .box .title_bg {
	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;
}
#s_news .box .title_bg>.btn {
	margin-right: 20px;
}
#s_news .box .title_bg>.btn a {
	padding: 0.4em 25px 0.4em 18px;
	border: none;
}

/* s_ex_info */
#s_ex_info .title_bg {
	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;
}
#s_ex_info .title_bg>.btn {
	margin-right: 20px;
}
#s_ex_info .title_bg>.btn a {
	padding: 0.4em 25px 0.4em 18px;
	border: none;
}
.list_exhibition {
	margin-top: 17px;
}
.list_exhibition .infoWrapper ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	margin: 0;
}
.list_exhibition .infoWrapper ul li {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding-left: 20px;
}
.list_exhibition .infoWrapper ul li a {
	text-decoration: underline;
	text-underline-position: under;
	text-underline-position: below;
}
.list_exhibition .infoWrapper ul li a:hover {
	text-decoration: none;
}
.list_exhibition .infoWrapper ul li:nth-child(1) {
	max-width: 150px;
	padding-left: 0;
}
.list_exhibition .infoWrapper ul li:nth-child(2) {
	max-width: 183px;
}
.list_exhibition .infoWrapper ul li:nth-child(3) {
	max-width: 230px;
}
.list_exhibition .infoWrapper ul li:nth-child(4) {
	max-width: 217px;
}
.list_exhibition .infoWrapper ul li:nth-child(5) {
	display: block;
	max-width: 226px;
}
.list_exhibition .infoWrapper .infoHead {
	padding: 0 0 15px;
	border-bottom: 2px solid #222;
}
.list_exhibition .infoWrapper .infoBody ul {
	padding: 14px 0;
	border-bottom: 1px solid #ddd;
}

.list_exhibition .infoWrapper ul li:nth-child(5)>span.ar,
.list_exhibition .infoWrapper ul li:nth-child(5)>a {
	display: inline-block;
	padding-left: 1.0em;
	text-indent: -1.0em;
}
.list_exhibition .infoWrapper .infoBody ul li:nth-child(5)>span.ar::before,
.list_exhibition .infoWrapper .infoBody ul li:nth-child(5)>a::before {
	content: "";
	display: inline-block;
	margin: 0 0.6em 0 0;
	border-top: 0.3em solid rgba(255,255,255,0.0);
	border-left: 0.4em solid #666;
	border-bottom: 0.3em solid rgba(255,255,255,0.0);
}

#s_login .box {
	width: 500px;
	margin: 0 auto;
	padding: 45px 80px 45px;
	border-radius: 5px;
	background: #eee;
}
#s_login .box > form > dl {
	margin: 0 0 15px;
}
#s_login .box > form > dl dt {
	margin: 0 0 2px;
	font-size: 1.4rem;
}
#s_login .box > form > dl dd input {
	width: 100%;
	margin: 0;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	font-size: 1.6rem;
}
#s_login .box > form .submit_btn {
	margin: 30px 0 10px;
}
#s_login .box > form .submit_btn input {
	width: 100%;
	margin: 0;
	padding: 9px 10px;
	border: none;
	border-radius: 3px;
	background: #068bc7 linear-gradient(-90deg, rgba(17,79,166,0.9) 0%, rgba(6,139,199,0.9) 100%);
	background: rgba(17,79,166,0.9);
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}
#s_login .box > form .notes {
	text-indent: -1em;
	padding-left: 1em;
}
#s_login .box > form .notes::before {
	content: '※';
	display: inline-block;
	width: 1em;
	text-indent: 0;
}

/*----------------------------------------
	footer
-----------------------------------------*/
footer {
	margin-top: 84px;
	background: #eee;
}
footer #flink {
	width: 950px;
	margin: 0 auto;
	padding: 40px 0;
	background: #eee;
}
footer #flink .box_l dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
footer #flink .box_l dl dd {
	margin-left: 25px;
}
footer #flink .box_r {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
footer #flink .box_r .f_link {
	text-align: right;
}
footer #flink .box_r .f_link a+a{
	margin-left: 30px;
}
@media screen and (max-width: 1000px){
	footer #flink {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}