@charset "utf-8";


/*bodyに追加
---------------------------------------------------------------------------*/

p.radius {
	padding-bottom:10px;
	text-align:center;
}

p.radius img{
	border-radius: 30px;
	width="80%"
}

a.menu-list{
　　margin-bottom:10px;
}

/*float解除設定
---------------------------------*/

div.clr{clear:both;}





/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/

#new dl a img{padding-bottom:20px;}

/*contents-listブロック（index.html内コンテンツ人物紹介枠で使用）
---------------------------------------------------------------------------*/
/*ブロック単位の設定*/
.content-list {
	position: relative;overflow: hidden;
	float: left;	/*左に回り込み*/
	width: 30%;		/*幅*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、広げる幅。0,0,0は黒の事で0.1は10%色がついた状態の事。*/
	line-height: 1.4;	/*行間を少し狭く。デフォルトの値は冒頭の「body」にあります。*/
	margin-left: 2.5%;	/*左に空けるボックスの外側へのスペース。左右間の余白になります。*/
	margin-bottom: 20px;	/*下に空けるボックスの外側へのスペース。上下間の余白になります。*/
	background: #fff;	/*背景色*/
	height: 300px;	/*下の「.list a」のheightの数字と合わせる*/
}
.content-list a {
	position: relative;overflow: hidden;text-decoration: none;display: block;
	height: 300px;	/*上のの「.list」のheightの数字と合わせる*/
}
/*マウスオン時のlistブロック*/
.content-list a:hover {
	background: #13c1df;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*リンクを設定した際に出るボックス内の「→」マーク*/
.content-list a::after {
	content: "→";	/*このテキストを表示させます。変更しても構いませんが機種依存文字は化けるので使わないように。*/
	display: inline-block;text-align: center;
	width: 15px;	/*幅*/
	line-height: 15px;	/*高さ*/
	position: absolute;
	right: 10px;	/*listブロックに対して右から10pxの場所に配置*/
	bottom: 10px;	/*listブロックに対して下から10pxの場所に配置*/
	font-size: 10px;	/*文字サイズ*/
	background: #13c1df;	/*背景色*/
	color: #fff;		/*文字色*/
}
/*「→」マークのマウスオン時*/
.content-list a:hover::after {
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
}
/*listブロック内のh4タグとpタグ共通設定*/
.content-list h4, .list p {
	padding: 0 !important;
	margin: 0 !important;
}
/*listブロック内のh4タグ*/
.content-list h4 {
	color: #000;	/*文字色*/
	padding: 8px !important;	/*余白*/
}
/*マウスオン時のh4タグ*/
.parson-list a:hover h4 {
	color: #fff;	/*文字色*/
}
/*listブロック内のpタグ*/
.content-list p {
	font-size: 13px;	/*文字サイズ*/
	padding: 0 8px 8px !important;	/*上、左右、下への余白*/
}



