@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666666;
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul {
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
}

/*コンテナ
---------------------------------------------------------------------------*/
#container {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダ
---------------------------------------------------------------------------*/
header {
	width: 100%;
	position: relative;
}
header h1 {
	display:inline-block;
	font: 30px 'Aldrich', sans-serif;
	padding: 10px 0px 10px 20px;
}
header h1 a {
	color: #000;
	text-decoration: none;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
header nav#menubar ul {
	background-color: #0e1e41;
	height: 40px;
	border-radius: 6px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#284571), to(#0e1e41));
	background-image: -webkit-linear-gradient(#284571, #0e1e41);
	background-image: linear-gradient(#284571, #0e1e41);
	padding-left: 20px;
	-webkit-box-shadow: 0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
}
/*メニュー１個ごとの設定*/
header nav#menubar ul li {
	float: left;
	border-right: 1px solid rgba(255,255,255,0.3);
}
header nav#menubar ul li a {
	line-height: 40px;
	color: #FFF;
	text-decoration: none;
	display: block;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	padding-right: 20px;
	padding-left: 20px;
}
header nav#menubar ul li a:hover {
	background-color: #2f5184;
	color: #FFF;
}
/*１個目のメニューの線の設定*/
header nav#menubar ul li:first-child {
	border-left: 1px solid rgba(255,255,255,0.3);
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	padding-top: 20px;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;
	width: 700px;
}
#main section > h1,
#main article > h1 {
	background-color: #0e1e41;
	border-radius: 6px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#284571), to(#0e1e41));
	background-image: -webkit-linear-gradient(#284571, #0e1e41);
	background-image: linear-gradient(#284571, #0e1e41);
	-webkit-box-shadow: 0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
	font-size: 100%;
	color: #FFF;
	padding: 3px 0px 3px 15px;
	clear: both;
}
#main p {
	padding: 0.5em 10px 1em;
}

/*左側ブロック
---------------------------------------------------------------------------*/
#left {
	float: left;
	width: 240px;
}
#left h1 {
	border: 1px solid #CCC;
	border-radius: 6px 6px 0 0;
	font-size: 100%;
	text-align: center;
	padding: 5px 0px;
	background-color: #e3e3e3;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);
	background-image: linear-gradient(#FFF, #e3e3e3);
}
#left p {
	padding-right: 10px;
	padding-left: 10px;
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
#left ul {
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#left ul li a {
	text-decoration: none;
	display: block;
	border-right: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	border-left: 1px solid #CCC;
	padding-left: 10px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#left ul li a:hover {
	background-color: #f0f0f0;
}

/*フッタ設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 2px;
}
footer a {
	text-decoration: none;
}

/*「お知らせ」
---------------------------------------------------------------------------*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;
	max-height: 150px;
	padding-left: 10px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 8em;
}
/*内容設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	color: #FFF;
	font-size: 10px;
	opacity:0.5;
	text-decoration: none;
	text-align: center;
	width: 12em;
	letter-spacing: 0.1em;
}

#pagetop:hover {
	opacity:1;
}

/*ブロック
---------------------------------------------------------------------------*/
#main section.block article {
	border: 1px solid #CCC;
	border-radius: 6px;
	margin-bottom: 1em;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);
	background-image: linear-gradient(#FFF, #e3e3e3);
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;
	box-shadow: 0px 2px 5px #CCC, 0px 0px 1px 1px #FFF inset;
}
#main section.block article p {
	padding: 0px;
	margin-left: 220px;
}
#main section.block article figure img {
	float: left;
	background-color: #FFF;
	padding: 5px;
	border: 1px solid #CCC;
	vertical-align: bottom;
}
#main section.block article h1 {
	font-size: 100%;
	border-bottom: 1px solid #CCC;
	border-left: 3px solid #000;
	margin-bottom: 0.5em;
	color: #000;
	padding: 0px 0px 0px 5px;
}
#main section.block article a {
	padding: 10px;
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#main section.block article a:hover {
	background-color: #ebdeab;
}

/*ボタンの設定*/
.button,
.back_button {
	width: 150px;
	padding: 5px;
	margin-bottom: 20px;
	border: 1px solid #999;
	border-radius: 30px;
	background-color: #e9f7f6;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);
	background-image: linear-gradient(#FFF, #e3e3e3);
	-webkit-box-shadow:  0px 2px 5px #bebebe;
	box-shadow: 0px 2px 5px #bebebe;
}
.button:hover,
.back_button:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#FFF));
	background-image: -webkit-linear-gradient(#e3e3e3, #FFF);
	background-image: linear-gradient(#e3e3e3, #FFF);
}

/*その他
---------------------------------------------------------------------------*/
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
img {
	max-width: 100%;
	height: auto;
}

#contentsList .list td {
	max-width:200px;
}
}
