@charset "utf-8";
/* CSS Document */
/* #right-contents、#middle-contents、#left-contents の3カラムパターン */

#middle-contents {
	background: #FFF url('../images/bg01.png') top center no-repeat;
	background-size: cover;
}

#main {
	padding: 20px 10px 10px;
	text-align: center;
}

#main img {
	max-width: 100%;
	height: auto;
}

div.info-wrap01 {
	padding: 20px 30px;
}

div.info-wrap01 div {
	max-width: 600px;
	padding-bottom: 20px; 
	margin: 0 auto;
}

div.info-wrap02 {
	padding: 40px 30px;
}

div.info-wrap02 div {
	max-width: 550px;
	padding-bottom: 10px; 
	margin: 0 auto;
}

/* new 更新情報 共通
-----------------------------------------------------*/
#content_info h3 {
	color: #FFF;
	padding: 6px 8px;
	line-height: 1;
	margin: 0;
  background: linear-gradient(45deg, rgba(31,33,136,1.00) 0%, rgba(139,132,169,1.00));
	font-size: 1.8rem;
}

#content_info .new dl {
	height: 150px;
	overflow: auto;
	margin: 0;
	padding: 0;
	background: rgba(242,249,247,0.50);
}

/* トップメニューのバナー表示 */
.bn_area img {
	width: 100%;
	height: auto;
	max-width: 200px; /* バナーの最大幅 */
}
.bn_area a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}

@media print {
	.top_l_s {
		margin-bottom: 1em;
	}

	.top_l_b {
		display: none;
	}
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	#contents {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		display: grid; 
		grid-template-columns: 260px auto; 
		grid-template-rows: min-content auto;
		grid-template-areas: 
			"left-contents middle-contents";
	}
	#content_info { /* 以上 */
		padding: 0;
		background: hsla(0,0%,100%,0.8);
	}
	#content_info .new dl {
		height: 250px;
		padding: 10px 0;
	}
	#content_info .new dt {
		width:90px;
		float: left;
		min-height:12px;
		height:auto!important;
		padding:5px 15px;
	}
	#content_info .new dd {
		padding: 5px 5px 5px 7.5em;
		margin: 0 0 10px 0;
	}
}

/* 表示領域が991.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 991.98px) {
	#contents {
		width: 100%;
		display: grid; 
		grid-template-columns: 1fr; 
		grid-template-rows: min-content min-content 1fr;
		gap: 0px 0px; 
		grid-template-areas: 
			"left-contents"
			"middle-contents"
			"right-contents";
	}
	#left-contents {
		padding: 0;
	}
	#middle-contents {
		background-image: none;
	}
	#main {
		background: url('../images/bg01.png') center center no-repeat;
		background-size: cover;
	}

	#content_info h3 {
		padding: 8px 10px 9px;
	}

	#content_info .new dl {
		height: 150px;
		font-size: 1.4rem;
		border-bottom: 1px solid #1D2088;
	}
	#content_info .new dt {
		padding: 5px 15px 0;
		width: auto;
		float: inherit;
		min-height:auto;
		height:auto!important;
	}
	#content_info .new dd {
		padding: 0 15px 5px;
	}
	
}

/* 表示領域が767.98px以下の場合に適用するスタイル */
@media print, screen and (max-width: 767.98px) {
	#middle-contents {
		margin: 0;
	}

	div.info-wrap01 {
		padding: 20px 20px 0;
	}

	div.info-wrap02 {
		padding: 0px 30px;
	}
	
}