@CHARSET "UTF-8";
/*タイトルのプロパティを設定
  対象：タイトル*/
.title1 {
	margin: 0 0 30px 0;
	padding: 12px 10px;
	background: #0099FF;
	color: #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
/*ミニタイトルのプロパティを設定
  対象：TOPページのミニタイトル*/
.title2{
  width: 300px;
  border-left: 10px solid #0099FF;
  border-bottom: 1px solid #0099FF;
}
/*注釈のプロパティを設定
  対象：注釈*/
.title6{
	margin-top: 0px;
	margin-bottom: 0px;
	font-size: 12px;
}
/*ボタン機能の説明を設定
  対象：ボタン機能の説明*/
.title7{
  width: 1000px;
  border-top: 1px dotted #0099FF;
}
/*「トップへ戻る」リンクを設定
   対象：「トップへ戻る」リンク*/
.return1{
	text-align: right;
	line-height: 0px;
	font-size: 15px;
}
#out_Div { /* 全体の枠。ここにヘッダを格納 */
  position: relative; /* 相対位置 */
  padding-top: 10px;  /*  #in_Div の開始位置 */
  /*border: 1px solid #0099cc;  /* 外枠 */*/
  background-color: #fff; /* 白 */
   }
#in_Div {/* tbodyが入っている。ここがスクロール対象*/
  overflow: auto; /* スクロールバー*/
  height: 230px; /* tbodyを表示する高さ */
  /* width: 1000px; */ /*長さを固定することでスクロールバーが動かなくなる*/
   }
#sclTbl thead tr th {/* ヘッダ 見出し行,位置を #out_Div の左上端に移動 */
  position: absolute; /* 絶対位置 */
  top: 0px; /* 上からの位置 */
  left: 0px; /* 左からの位置 */
  background-color: #fff;
   }
/*テキストボックスの説明書きのプロパティを設定
  対象：テキストボックスの説明書き*/
.formtitle{
	/*width:120px;*/
	display: block;
	text-align: right;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight:bold;
}
/*テキストボックスの説明書き（ミニサイズ（絞り込み条件））のプロパティを設定）
  対象：テキストボックス（ミニサイズ（絞り込み条件））の説明書き*/
.formtitle2{
	/*width:85px;*/
	display: block;
	text-align: right;
	/*margin-bottom:1px;*/
	font-size: 12px;
	font-weight:bold;
}
/*テキストボックス右側の説明書きのプロパティを設定
  対象：テキストボックス右側の説明書き*/
.formtitle3{
	display: block;
	text-align: left;
	/*margin-bottom:1px;*/
	font-size: 12px;
	font-weight:bold;
	color:#000080;
}
/*テキストボックスのプロパティを設定
  対象：テキストボックス*/
.text{
	height: 24px;
	background: #E8E8E8;
	border-radius: 10px;
	font-size: 15px;
}
/*テキストボックスのプロパティを設定
  対象：テキストボックス*/
.textarea{
	background: #E8E8E8;
	border-radius: 10px;
	font-size: 15px;
}
/*ボタンのプロパティを設定
  対象：ボタン*/
.button{
	font-size: 15px;
	font-weight: bold;
}

/*フォントを変更
  対象：ページ全体、プルダウンリスト、テキストボックス、ボタン*/
body, select, input {
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',
	                   Meiryo, メイリオ, sans-serif;
}
/*アクティブ時に枠線の色・サイズを変更
  対象：テキストボックス*/
input:focus {
    border: solid 1px #4387e9;    /*薄いブルー*/
}
/*ラジオボタンの選択値を太文字に設定
  対象：ラジオボタンの説明書き*/
 input[type="radio"]:checked + label {
        font-weight: bold;
 }
 /*チェックボックスの選択値を太文字に設定
  対象：チェックボックスの説明書き*/
 input[type="checkbox"]:checked + label {
        font-weight: bold;
 }
/*パラメータ名のプロパティを設定
  対象：パラメータ名*/
span{
	display: block;
	font-size: 10px;
	color: #999999;
}