@charset "UTF-8";
/*************** 共通 ***************/
/* 一括で全ての要素の余白をゼロに指定 */
/*
* {
  padding: 0;
  margin: 0;
}
*/

/* リンク表示設定 */
a:link {
  color: #0000ff;
  /*text-decoration: underline;*/
  text-decoration: none;
}

a:visited {
  color: #990099;
  /*text-decoration: underline;*/
  text-decoration: none;
}

a:hover {
  color: #ff0000;
  text-decoration: underline;
}

/* フォントスタイル フォントサイズ */
body {
	font-size: 0.80em;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	height: 100%;
	margin-top: 0pt;
}

input {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*--------------------------------------------------------------------*/
/*        htmlタグ共通                                                */
/*--------------------------------------------------------------------*/
/* 見出し */
h1 {
	margin: 10px;
	border-left:20px solid #669999;
	border-right:20px solid #669999;
	padding:8px 0 8px 10px;
	background-color:#ededed;
    font-size: 120%;
    text-align: center;
}

h2{
    margin: 10px;
    padding:5px 0 5px 15px;
    background: #f9fcfd;
    border-bottom:#95b3d7 1px solid;
    border-top:#95b3d7 1px solid;
    font-size: small;
    font-weight: bold;
    color:#333;
}

h3{
    margin: 10px;
    padding: 4px 0 5px 4px;
    border-color:#0B0099;
    border-width:0 0 0 6px;
    border-style:solid;
}

h3 span{
	display:block;
	font-size:small;
	color:#999999;
	margin-top: 0.3em;
	margin-left: 1em;
}


h4{
    margin: 10px;
	font-size: 90%;
    font-weight: bold;
}

/* テーブル共通 */
table{
    margin-top: 1.2em;
    margin-bottom: 1em;
    background-color:#ffffff;
    border-collapse: collapse;
    border: solid 1px #999;
    empty-cells:show;
}

/* 見出し共通 */
table th {
    color: #000;
    background: #E6E6E6;
    text-align:center;
    border: solid 1px #999;
    font-weight: normal;
}

/* 明細共通 */
table td{
	border: solid 1px #999;
}

/* 列ヘッダー */
table td.ColHeader {
	background: #FFFFCC;
}

/*****  画面全体 *****/
/*--------------------------------------------------------------------*/
/*        画面全体(白抜き部分)のレイアウト設定                        */
/*--------------------------------------------------------------------*/
#AllDisplay {
  width:903px; 
  text-align:left; 
  margin:0 auto;
  background-color: #DEDEDE;
  display: block;
  padding: 0;
}
#ViewDisplay {
  width:1310px; 
  text-align:left; 
  margin:0 auto;
  background-color: #FFFFFF;
  display: block;
  padding: 0;
}
/*--------------------------------------------------------------------*/
/*        画面全体のレイアウト設定                                    */
/*--------------------------------------------------------------------*/
#pagebody {
	width: 100%;
	margin: 0 auto;
	/* border-top: solid 5px #00105B; */
	/* border-left: solid 3px #DEDEDE; */
	/* border-right: solid 3px #DEDEDE; */
	/* border-bottom: solid 3px #DEDEDE; */
	background: #fff;
}
/*--------------------------------------------------------------------*/
/*        画面全体の背景設定                                          */
/*--------------------------------------------------------------------*/
#index3 {
	background-image: url("./images/bg04.gif");
	background-repeat: repeat;
	/* background-color: #EEECE1; */
	/* background-color: #1A508F; */
	/* background-image: url("./images/bg_body_top1.gif");*/
	/* background-repeat: repeat-x; */
}

/***** ヘッダー *****/
/*--------------------------------------------------------------------*/
/*        ヘッダー１段目の全体設定                                    */
/*--------------------------------------------------------------------*/
#header {
  /*width: 900px;*/
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
	background-color:#dedede;
}
/*--------------------------------------------------------------------*/
/*        ヘッダー１段目の左側の設定                                  */
/*--------------------------------------------------------------------*/
#header-l {
	width: 490px;
	float: left;
	/* padding: 20px 0 0 20px; */
	background: #fff;
}
/*--------------------------------------------------------------------*/
/*        ヘッダー２段目の全体設定                                    */
/*--------------------------------------------------------------------*/
#header2{
  /*width: 900px;*/
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
/*--------------------------------------------------------------------*/
/*        ヘッダー２段目の左側設定                                    */
/*--------------------------------------------------------------------*/
#header2-l {
  width: 600px;
  float: left;
  margin: 0;
  padding: 20px 0 0 0;
}
/*--------------------------------------------------------------------*/
/*        ヘッダー２段目の右側設定                                    */
/*--------------------------------------------------------------------*/
#header2-r {
  /*width: 700px;*/
  /*float: right;*/
  padding: 0 1em 0 0;
  /*text-align: right;*/
	text-align: left;
}

/***** 本体部 *****/
/*--------------------------------------------------------------------*/
/*        ぱんくずリスト                                              */
/*--------------------------------------------------------------------*/
.crumb {
  margin: 0 0 0 1em;
}

/*--------------------------------------------------------------------*/
/*        レイアウト内のメニュー・メイン部分設定                      */
/*--------------------------------------------------------------------*/
#MainMenu {
  /*width: 900px;*/
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
/*--------------------------------------------------------------------*/
/*        各ビュー用メニュー                                          */
/*--------------------------------------------------------------------*/
#MenuBody{
  width: 220px;
  float: left;
  margin: 0;
  padding: 0 0 0 0;
}
/*--------------------------------------------------------------------*/
/*        各ビュー用メイン                                            */
/*--------------------------------------------------------------------*/
#MainBody{
    /*width: 900px;*/
    width: 100%;
    /* float: left があると改ページ時とテーブルの<thead></thead>が重なった際に、<tbody></tbody>が表示されない場合がある。 */
		float: left;
    padding: 0;
}
/***** フッター部 *****/
/*--------------------------------------------------------------------*/
/*        レイアウト内のコピーライト部分設定                          */
/*--------------------------------------------------------------------*/
address {
	font-style: normal;
	text-align: center;
	color: #999;
	display: block;
	padding: 0;
}

/*--------------------------------------------------------------------*/
/*        レイアウト内のフッター部分設定                              */
/*--------------------------------------------------------------------*/
#footerLine {
	/*width: 900px;*/
	width: 100%;
	clear: both;
	margin: 20 0 0 0;
	padding: 10px 0 0px 0;
}

#footer {
	/*width: 900px;*/
	float:left;
	width: 65%;
	margin: 17 0 0 15%;
	padding: 17px 0 0 15%;
}

#footer2 {
	text-align:right;
	float:left;
	width: 19%;
	margin: 0 0 0 0;
	padding: 0 1% 8px 0;
}

/*--------------------------------------------------------------------*/
/*        レイアウト内のフッター部分設定                              */
/*--------------------------------------------------------------------*/
#footerNoSSL {
	/*width: 900px;*/
	width: 100%;
	clear: both;
	margin: 20 0 20 0;
	padding: 10px 0 15px 0;
}


/*--------------------------------------------------------------------*/
/*        エラーメッセージ表示用                                      */
/*--------------------------------------------------------------------*/
#error {
	margin-bottom:15px;
	color:red;
}

/*--------------------------------------------------------------------*/
/*        フリーズoff                                                 */
/*--------------------------------------------------------------------*/
.FreezePaneOff
{
	visibility: hidden;
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
}

/*--------------------------------------------------------------------*/
/*        フリーズon                                                  */
/*--------------------------------------------------------------------*/
.FreezePaneOn
{
	/*
	position: absolute;  
	width: 100%;         
	height: 100%;
	z-index: 999;
	background-color: #000;
	filter:alpha(opacity=85);
	*/
	
	position: absolute;
	top: 0px;
	left: 0px;
	visibility: visible;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 999;
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	padding-top: 20%;
}

/*--------------------------------------------------------------------*/
/*        フリーズon時の内部                                          */
/*--------------------------------------------------------------------*/
.InnerFreezePane
{
	text-align: center;
	width: 66%;
	background-color: #171;
	color: White;
	font-size: large;
	border: dashed 2px #111;
	padding: 9px;
}

/*--------------------------------------------------------------------*/
/*        グレイ背景設定                                              */
/*--------------------------------------------------------------------*/
div#glayLayer{
	display:none;
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#7BAEB5;
	filter:alpha(opacity=75);
	opacity: 0.75;
}
/* スターハック(IE6以下にだけ解釈できるCSS) */
* html div#glayLayer{
	/* position:fixed; はIE6以下に未対応のため absoluteとJavaScriptで擬似的に実現する */
	position:absolute;
}
/*--------------------------------------------------------------------*/
/*        モーダルウィンドウ設定                                      */
/*--------------------------------------------------------------------*/
div#overLayer{
	display:none;
	position: fixed;
	left:50%;
	top:50%;
	height:140px;
	width:400px;
	background:white;
	border-right:  #808099 5px solid;
	border-top:    #808099 5px solid;
	border-left:   #808099 5px solid;
	border-bottom: #808099 5px solid;
	padding:10px;
	text-align: center;
}
/* スターハック(IE6以下にだけ解釈できるCSS) */
* html #overLayer{
	/* position:fixed; はIE6以下に未対応のため absoluteとJavaScriptで擬似的に実現する */
	position: absolute;
}
div#overLayer .modal_msg{
	font-size: 30px;
}
div#overLayer .modal_msg{
	font-size: 30px;
}


/*--------------------------------------------------------------------*/
/*        グレイ背景設定                                              */
/*--------------------------------------------------------------------*/
div#glayLayerS{
	display:none;
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#7BAEB5;
	filter:alpha(opacity=75);
	opacity: 0.75;
}
/* スターハック(IE6以下にだけ解釈できるCSS) */
* html div#glayLayerS{
	/* position:fixed; はIE6以下に未対応のため absoluteとJavaScriptで擬似的に実現する */
	position:absolute;
}
/*--------------------------------------------------------------------*/
/*        モーダルウィンドウ設定                                      */
/*--------------------------------------------------------------------*/
div#overLayerS{
	display:none;
	position: fixed;
	left:50%;
	top:50%;
	height:140px;
	width:520px;
	background:white;
	border-right:  #808099 5px solid;
	border-top:    #808099 5px solid;
	border-left:   #808099 5px solid;
	border-bottom: #808099 5px solid;
	padding:10px;
	text-align: center;
}
/* スターハック(IE6以下にだけ解釈できるCSS) */
* html #overLayerS{
	/* position:fixed; はIE6以下に未対応のため absoluteとJavaScriptで擬似的に実現する */
	position: absolute;
}
div#overLayerS .modal_msg{
	margin-left:10px;
	font-size: 30px;
}


.pagemidashi_loginuser{
	float:right;
}

.pagemidashi_pan{
	float:left;
}

.pagemidashi_topic{
	margin-top:30px;
	margin-left:30px;
}

/*--------------------------------------------------------------------*/
/*        ログインユーザー表示位置行                                  */
/*--------------------------------------------------------------------*/
.LoginUserLine {
	background: #3693ac; /* old browsers */
	background: -moz-linear-gradient(top, #5db4cc, #3693ac); /* firefox */
	background: -webkit-gradient(linear, undefined, color-stop(0%,#5db4cc), color-stop(100%,#3693ac)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5db4cc', endColorstr='#3693ac',undefined ); /* ie */
	
	/* border: 1px solid #DBEEF4; */
	border: 1px solid #3693ac;
}

/*--------------------------------------------------------------------*/
/*        テキストボックス(IME)                                       */
/*--------------------------------------------------------------------*/
.ImeActive{
	ime-mode:active;
}
.ImeDisabled{
	ime-mode:disabled;
}