﻿@charset "utf-8";
/* =================================

	menu.css

	header:width=fix,height=fix(600px)
	topmenu:left,width=fix(150px)
	contents:width=fix(1000px)
	footer:width=fix

	2018/04/15	t.n

================================= */
/*===== 初期化 =====*/

* {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

img{
	border-style: none;
}

html,body {
	height:100%;
}

/*===== 背景色・フォント色設定 =====*/

body {
font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
}


body {
	background-color: #F9F9F9;
}

#container {
	background-color: #F9F9F9;/*#808080*/
	color: #000000;/*#ffffff*/
}

#header {
	background-color: #384a5a;/*#3e454e*/
	color: #ffffff;
}

#sidemenu {
	background-color: #F9F9F9;/*#808080*/
	color: #000000;
}

#contents {
	background-color: #F9F9F9;/*#808080*/
	color: #000000;/*#ffffff*/
}

#footer {
	background-color: #3e454e;
	color: #ffffff;
}

/*===== ブロック設定 =====*/

body {
	text-align: center;
}

#container {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	height:100%;
}

#header {
	width: 100%;
}

#contents {
	height:600px;
}

/*=======================================================*/
#menu {						/*IE6以下での画像やテーブルの落ち対策の為div二重化*/
	width: 150px;
	margin-right: -150px;
	margin-left:0px;
	position:relative; 
	float: left;
	z-index:500; 
	text-align: center;
}

#sidemenu {
	width: 150px;
	margin-right: -150px;	/*マイナスマージンでヘッダー下端まで上げる*/
	margin-left:0px;
	position:relative; 
	float: left;
	z-index:500; 
	text-align: center;
}

#sidemenu ul {
	list-style:none; 
	width:150px; 
	padding:0px 2px 0px 2px;		/*[上][右][下][左]*/
	background: #F9F9F9;/*#808080*/
	text-align: left;
}

* html #sidemenu ul {/*IE6以下用ハック*/
	padding:2px 2px 0px 2px;		/*[上][右][下][左]*/
}

*:first-child+html #sidemenu ul {/*IE7用ハック*/
	padding:2px 2px 0px 2px;		/*[上][右][下][左]*/
}

#sidemenu ul li a {
	display:block; 
	width:135px; 
	padding:10px 5px 10px 10px;		/*[上][右][下][左]*/
	font-size:14px;
	line-height: 14px;
	color:#000000;/*#cccccc*/
	text-decoration:none; 
	background:#F9F9F9;/*#333333*/ 
	margin-top: 2px;
	margin-bottom: 2px;
	border:1px solid #888; 
	border-color:#464646 #464646 #333333 #464646; 	/*[上][右][下][左]*/
}

* html #sidemenu ul li a {/*IE6以下用ハック*/
	width:150px; /* for IE5.5 */
	margin-left: -16px;/* for IE5.5 */
	margin-top: 1px;
	margin-bottom: 1px;
	voice-family: "\"}\"";
	voice-family: inherit;
	/*width:140px;*/ /* IE5.5以外 *//*XHTMLの場合はこの行コメントアウト*/
	margin-left: 0px;
}

*:first-child+html #sidemenu ul li a {/*IE7用ハック*/
	margin-top: 1px;
	margin-bottom: 1px;
}

#sidemenu ul li a:hover {
	background:#2580A2 url(hover_sub.gif) center left no-repeat;
	color: #ffffff; 
	position:relative;
}

#sidemenu ul #current a{
	background:#C0C0C0 url(hover_sub_crt_red.gif) center left no-repeat;
	color: #000000;
}

#sidemenu ul #blank a{
	background:#F9F9F9;
	color: #000000;
}

#sidemenu img{
	border-style: none;
}
/*=======================================================*/

#contents {
	width: 100%;
	float: left;		/*IE6.0での画像やテーブルの落ち対策*/
	position: relative;		/*z-indexを使うために宣言のみする*/
	z-index: 1;		/*メニュー下に描画*/
	text-align: left;
}

#footer {
	width: 100%;
	clear: both;
	text-align: center;
}

/*===== フォントサイズ・マージン設定 =====*/

#header {
	padding-top: 0.5em;
	font-size: 0.9em;
}

#header  h1,#header  h2 {
	margin-left: 10px;
}

#contents {
	padding-top: 5px;
	padding-bottom: 10px;
	font-size: 1em;
}

#contents  p,#contents  pre,#contents  address,#contents  h1,#contents  h2,#contents  h3,#contents  h4,#contents  h5,#contents  h6,#contents  dl {
	margin-left: 160px;
}

#contents  ul {
	margin-left: 190px;
}

#contents  ol {
	margin-left: 200px;
}

#footer {
	font-size: 0.9em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}

/*===== テキスト設定 =====*/

* {
	line-height: 1.4em;
}

#contents  td,#contents  th,#contents  td a {
	line-height: 1.1em;
}

h1,h2,h3,h4,h5,h6,dt {
	font-weight: bold;
	margin-top: 0.5em;
}

h1 {
	font-size: 1.9em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.2em;
}

h5 {
	font-size: 1.1em;
}

h6 {
	font-size: 1.0em;
}

dd {
	margin-left: 20px;
}


/* ===== table設定 ===== */

.table ,.table_l ,.table_fix ,.table_nom {
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-left-style: solid;
	border-bottom-style: solid;
	border-left-color: #000000;
	border-bottom-color: #000000;
	border-collapse: collapse;
	caption-side: top;
	empty-cells: show;
	text-align: center;
	color: #000000;
}

.table {
	width: 75%;
	text-align: center;
	margin-left: 160px;
}

.table_l {
	width: 80%;
	text-align: left;
	margin-left: 160px;
}

.table_fix {
	text-align: left;
	margin-left: 160px;
}

.table_nom {
	width: 90%;
	text-align: left;
	margin-left: 0px;
}

.table  th ,.table_l  th ,.table_fix  th ,.table_nom  th {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	text-align: center;
	background-color: #708090;
	color: #ffffff;
	font-weight: bold;
	padding: 3px;
}

.table  td ,.table_l  td ,.table_fix  td ,.table_nom  td {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	padding: 3px;
}

.table_nb {
	margin-left: 160px;
}

.th {
	background-color: #708090;
	color: #ffffff;
	font-weight: bold;
}

.tr1 {
	background-color: #f0f0f0;
}

.tr2 {
	background-color: #ffffff;
}

.tr3 {
	background-color: #708090;
	color : #ffffff;
}

.tr4 {
	background-color: #E5FFFF;
	font-size: 0.8em;
}

.td_good {
	background-color: #ddffff;
	color: #0033ff;
	font-weight: bold;
}

.td_bad {
	background-color: #ffddff;
	color: #ff3300;
	font-weight: bold;
}

/* ===== リンク設定 ===== */

#footer a{
	background:#F9F9F9;
	text-decoration: none;
}

#footer a:link {}

#footer a:visited {}

#footer a:hover {
	background:#2580A2;
	color: #ffffff;
}

#footer a:active {}

/* ===== リスト設定 ===== */

.tpc dd {
	margin-left: 10px;
	font-size: 0.9em;
	background-image : url(DOWN3.png) ;	/* リストマーク用画像ファイル指定 */
	background-position : left top ;
	background-repeat : no-repeat ;
	padding-left : 12px ;
}

.tpc li {
	margin-left: 10px;
	font-size: 0.9em;
	background-image : url(DOWN3.png) ;	/* リストマーク用画像ファイル指定 */
	background-position : left top ;
	background-repeat : no-repeat ;
	padding-left : 12px ;
	list-style-type: none;
}

.bkup {
	margin-left: 0px;
	font-size: 0.7em;
	line-height: 4em;
	background-image : url(UP2.png) ;	/* リストマーク用画像ファイル指定 */
	background-position : left center ; 
	background-repeat : no-repeat ; 
	padding-left : 12px ; 
}

/* ===== box設定 ===== */

.errbox {
	background-color:#ffccff;
	color: #000000;
	margin-left: 160px;
	text-align: center;
}

.errbox img{
	border-style: none;
}

/* ===== scroll-bar box設定 ===== */

.s_box {
        overflow:auto;
	margin-left: 160px;        
	width:550px;
        height:300px;
        padding:5px;
        border:1px solid #000;
        /*background-color:#F9F9F9;
        color:#000;*/
        font-size:15px;
}
.s_box_title {
        border:1px solid #2580A2;
        padding:5px;
	margin-left: 160px;        
	width:550px;
        font-weight:bold;
        font-size:16px;
        background-color:#2580A2;
        color:#fff;
}
.s_box_date {
	margin-top: 6px;
	font-size:10px;
}