@charset "utf-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /*font-size:10px;*/
}

body {
	margin: 0;
	padding: 0; /* 全体の背景色 */
	color: #2f2b3f; /* 全体の文字色 */
	font-size:1.6rem; /*font-size:16px;*/
	font-family: "Noto Sans JP", sans-serif;
	background: #FFF;
	font-weight: 500;
}

img {
	border-style:none;
}

/* --- 全体のリンクテキスト --- */
a:link { color: #1A56B4; }
a:visited { color:  #102B56; }
a:hover {
	color:  #2562C3;
}

/* --- コンテナ --- */
#container {
	width: 100%; /* コンテナの幅 */
	margin: 0 auto ; /* センタリング */
	background: #FFF;
	height:100%;
}

/* --- ヘッダ --- */
#header {
	margin: 30px auto 0;
	padding: 10px;
	background: #FFF;
	width:100%;
	max-width: 1000px;
	box-sizing: border-box;
}
/* 画像が親要素の幅を超えないように制限 */
#header img {
  max-width: 100%;
  height: auto;
  display: block;
}

#content {
	margin: 15px auto 120px;
	width: 100%;
	max-width: 1000px;
	padding: 0 10px;
	box-sizing: border-box;
}

/* --- 新着情報（トップページ） --- */
#content_info {
	height: 150px;
	margin: 0;
	padding: 0;
	width: 100%;
	background: #FFF;
	overflow: auto;
}

.frame01 h3 {
	font-size: 1.6rem;
	margin: 0; /* 見出しのマージン（上、左右、下） */
	padding: 0; /* 見出しのパディング（上下、左右） */
	color: #94B047;
}

#content_info .new dl {
	margin: 0;
	padding: 0;
	font-size: 90%;
}

#content_info .new dt {
    width: 7em;  /*日付エリアの幅 */
    float: left;
    padding: 7px 0 6px 3px; /* 日付エリアのパディング（上右下左） */
    line-height: 120%; /* 行の高さ */
	min-height:12px;
	height:auto!important;
	height:15px;
}
#content_info .new dd {
margin: 0;
/*padding: 7px 3px 6px 6.6em;  本文エリアのパディング（上右下左） */
padding: 7px 3px 6px 1em; /* 本文エリアのパディング（上右下左） */
border-bottom: 1px #c0c0c0 dotted;
line-height: 120%;
}

/* --- フッタ --- */
#footer {
	position:fixed;
	left:0;
	bottom:0;
	z-index:50;
	background-color: #649DCF;
	clear: both;
	color: #FFF;
	font-size: 80%;
	padding: 0; /* フッタの上境界線 */
	text-align: center;
	width: 100%;
}

.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* --- clearfix --- */
.clearFix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearFix {
min-height: 1px;
}

#page-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	font-size: 85%;
	margin: 0 auto;
}
#page-top a {
	background: #CCC url(../images/ico_top01.png) center 33px no-repeat;
	border: 2px solid #FFF;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	width: 70px;
	text-align: center;
	display: block;
	border-radius: 10px;
	padding: 10px 5px 32px 5px;
}
#page-top a:hover {
	background: #AFAFAF url(../images/ico_top01.png) center 33px no-repeat;
	text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
	#header {
		margin: 0;
	}
}
@media only screen and (max-width: 575.98px) {
	#content_info .new dt,
	#content_info .new dd {
		display: block;
		width: 100%;
		padding-left: 0;
	}
}