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

/*BACE*/
*{
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
    -ms-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
}

body {
	font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック体",YuGothic,sans-serif;
	background:#fff;
	text-align:left;
	}


/*ヘッダー*/
header {
	height: 105px;
	background: #133381;
	color: #fff;
	width: 100%;
	padding-top: 25px;
	padding-left: 30px;
}

/*フッター*/
footer {
	bottom: 0;
	width: 100%;
	background: #133381;
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 25px;
}

/*メインビジュアル*/
.top-image{
	height: 400px;/*ヘッダーの高さをマイナス。必要なければheight:100vhに。*/
	position: relative;
	overflow: hidden;
}
/*メイン画像の設定*/
.top-image-main{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}
/*上にのせるテキストの設定*/
.top-image-text{
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	color:#fff;
	font-weight: bold;
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%);/*センター寄せの修正*/
	margin: 0!important;/*文字がずれている場合や*/
	padding: 0!important;/*文字が折り返される場合*/
	text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 10px, rgba(0, 0, 0, 0.5) -1px 1px 10px, rgba(0, 0, 0, 0.5) 1px -1px 10px, rgba(0, 0, 0, 0.5) -1px -1px 10px;
	font-size: 3em;
}

/*お知らせ枠*/
.news {
	width: 850px;
	margin: 0 auto;
	padding-top: 45px;
	padding-bottom: 60px;
}
.news_midashi {
	color: #002F76;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
}

.news_title {
	color: #163F00;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
	line-height: 1.4em;
}

.news_subtitle {
	color: #163F00;
	font-weight: bold;
	font-size: 21px;
	margin-bottom: 20px;
}

.news_txt {
	line-height: 1.6em;
}
.news_txt p {
	margin-bottom: 15px;
}

.hr01 {
	margin-top: 20px;
	margin-bottom: 30px;
}


@media screen and (max-width:1000px) {

/*ヘッダー*/
header {
	height: 105px;
	background: #133381;
	color: #fff;
	width: 100%;
	padding-top: 30px;
	padding-left: 20px;
}

	header h1 {
		font-size: 28px;
	}

/*メインビジュアル*/
.top-image{
	height: 300px;/*ヘッダーの高さをマイナス。必要なければheight:100vhに。*/
	position: relative;
	overflow: hidden;
}
/*メイン画像の設定*/
.top-image-main{
	width: 100%;
	min-height: 300px;
	object-fit: cover;
}

/*お知らせ枠*/
.news {
	width: auto;
	margin: 0 20px;
	padding-top: 35px;
	padding-bottom: 45px;
}

}














