@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp {
	opacity: 0;
	-webkit-transform: translateY(120px);
	transform: translateY(120px);
	-webkit-transition: opacity ease-out 1.2s, -webkit-transform ease-out 1.6s;
	transition: opacity ease-out 1.2s, -webkit-transform ease-out 1.6s;
	transition: opacity ease-out 1.2s, transform ease-out 1.6s;
	transition: opacity ease-out 1.2s, transform ease-out 1.6s, -webkit-transform ease-out 1.6s;
}
.fadeInUp.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}    	
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	max-width: 1200px;
	margin: 0 auto;
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin-bottom: 120px;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin-top: -62px;
	font-size: 4.4rem;
	color: #fff;
	text-align: center;
}
.headLine01 .en {
	margin-bottom: -90px;
	font-size: 14rem;
	font-weight: 500;
	opacity: 0.3;
	font-family: 'Oswald', sans-serif;
	display: block;
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 52px;
	font-size: 4rem;
	color: #001d40;
	text-align: center;
}
.headLine02 .en {
	margin-bottom: -38px;
	font-size: 14rem;
	font-family: 'Oswald', sans-serif;
	display: block;
	font-weight: 500;
	color: #e6efff;
}
/*------------------------------------------------------------
	comNewsList
------------------------------------------------------------*/
.comNewsList {
	margin: -81px 0 96px;
}
.comNewsList li {
	width: 360px;
	margin: 81px 60px 0 0;
}
.comNewsList li:nth-child(3n) {
	margin-right: 0;
}
.comNewsList li a {
	display: block;
}
.comNewsList li a:hover {
	opacity: 0.7;
}
.comNewsList .photo {
	margin-bottom: 17px;
	display: block;
}
.comNewsList .date {
	margin-bottom: 1px;
	display: block;
	font-size: 1.8rem;
	color: #001d40;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
}
.comNewsList .text {
	display: block;
}
/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	width: 300px;
	margin: 0 auto 120px;
}
.comLink a {
	padding: 22px 29px 24px 0;
	color: #fff;
	display: block;
	background-color: #001d40;
	text-align: center;
	border-radius: 50px;
}
.comLink .link {
	display: block;
	background: url("../../img/common/icon12.png") no-repeat right 50px center;
	background-size: 9px 14px;
}
.comLink a:hover {
	opacity: 0.7;
}