@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
layout
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

.wrapper {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-direction: column; /* Safari */
	flex-direction: column;
	overflow: hidden;
}

main {
	flex: 1 0 auto;
}

	.contents {
		width: 730px;
	}

	.side {
		width: 220px;
	}

footer {
	height: 48px;
}

/*950px固定幅*/
.wrap950 {
	width: 950px;
	margin: 0 auto;
}

/*flexbox*/

.flex {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-direction: row; /* Safari */
	flex-direction: row;
}

.flex-row-reverse {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction: row-reverse;
}

.flex-column {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-direction: column; /* Safari */
	flex-direction: column;
}

.flex-column-reverse {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-direction: column-reverse; /* Safari */
	flex-direction: column-reverse;
}

.inline-flex {
	display: -webkit-inline-flex; /* Safari */
	display: inline-flex;
	-webkit-flex-direction: row; /* Safari */
	flex-direction: row;
}

.flex-start {
	-webkit-justify-content: flex-start; /* Safari */
	justify-content: flex-start;
}

.flex-center {
	-webkit-justify-content: center; /* Safari */
	justify-content: center;
}

.flex-end {
	-webkit-justify-content: flex-end; /* Safari */
	justify-content: flex-end;
}

.flex-space-around {
	-webkit-justify-content: space-around; /* Safari */
	justify-content: space-around;
}
.flex-space-between {
	-webkit-justify-content: space-between; /* Safari */
	justify-content: space-between;
}

.flex-align-center {
	-webkit-align-items: center; /* Safari */
	align-items: center;
}

.flex-align-end {
	-webkit-align-items: flex-end; /* Safari */
	align-items: flex-end;
}


/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

/* @group メインエリア
------------------------------------------------------*/

main {
	background-image: url(../images/bg-main.png), linear-gradient(-90deg, #F6FDFE 0%,#F6FDFE 100%);
	background-position: left top, left top;
	background-repeat: repeat-x, repeat-x;
	background-size: 100% 1152px, 100% 100%;
}

/* @group サイドエリア
------------------------------------------------------*/
.side {
	background-image: url(../images/bg-side.png);
	background-position: left top;
	background-repeat: repeat;
	background-size: 100% 100%;
}
nav {
	width: 201px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	padding-top: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
	font-weight: 600;
}

.menu li {
	margin-bottom: 5px;
}
.menu li a {
	display: block;
	width: 201px;
	height: 45px;
	background-image: url(../images/bg-menu-li-a.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 201px 45px;
	color: #0D3792;
	text-decoration: none;
}

.menu li a span {
	display: inline-block;
	position: relative;
	top: 10px;
	left: 14px;
	font-size: 13px;
	font-weight: bold;
}

/*ホバー、アクティブ時*/

.menu li a:hover, .menu li.active a {
	background-image: url(../images/bg-menu-li-a-active.svg);
	color: #FFFFFF;
}

/*アクティブ時リンク動作*/

.menu li.active a {
	pointer-events: none;
}

.menu li.active a:hover {
	cursor: default;
}

.side-banner {
	width: 201px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 75px;
}
.side-banner div a:hover img {
	opacity: .75;
}

.cooperation {
	margin-bottom: 5px;
	margin-right: 10px;
	font-size: 16px;
	font-weight: bold;
	color: #0E357F;
	text-align: right;
}

/* 事務局 */
.secretariat h3 {
	box-sizing: border-box;
	border-top: 1px solid #4C5977;
	border-bottom: 1px solid #4C5977;
	margin-bottom: 8px;
	padding: 5px 8px;
	font-size: 15px;
	font-weight: bold;
	color: #4C5977;
}

.secretariat ul {
	width: 201px;
	margin: 0 auto;
	color: #1E2E54;
	font-size: 12px;
	line-height: 1.4;
}

.secretariat ul li:first-child {
	margin-bottom: 3px;
	font-size: 13px;
	font-weight: bold;
}

.secretariat a {
	color: #00FFFF;
}


/* @group フッターエリア
------------------------------------------------------*/

footer {
	background-image: url(../images/bg-footer.png);
	background-position: left top;
	background-repeat: repeat-x;
	background-size: 100% 48px;
}
.footer-copyright {
	width: 950px;
	margin-left: auto;
	margin-right: auto;
}
.footer-copyright small {
	display: block;
	position: relative;
	top: 15px;
	left: 7px;
	color: #29A6DD;
}
