@charset "UTF-8";
/* CSS Document */

/*
main
-------------------------------------------------------------------*/
.contents #mid .main{
	width:780px;
	margin:0 auto;
	text-align:left;
}

/*
リスト
-------------------------------------------------------------------*/

ul.disc{
list-style-type: disc;
padding:10px 0 10px 20px;
margin:0;
}


ul.notes{
	list-style-type:none;
padding:10px 0 10px 20px;
margin:0;
}

ul.notes>li:before {
    display: inline;
    content: "※";

}

ul.notes li{
	text-indent:-1em;
}

/*
文字色指定
-------------------------------------------------------------------*/
.orange{
	color:#eb6100;
}

.brown{
	color:#c76016;
}

.red{
	color:#c00000;
}

/*
文章テーブルの場合
-------------------------------------------------------------------*/
.contents #mid .main table{
	border-collapse: collapse;
	margin:0 auto;
	}

.contents #mid .main th.lefttd{
	border-bottom:solid 1px #CCC;
	padding:5px;
	vertical-align:top;
	text-align:left;
	width:200px;
}

.contents #mid .main td.righttd{
	border-bottom:solid 1px #CCC;
	padding:5px;
	vertical-align:top;
	text-align:left;
	width:500px;
}

.contents #mid .main table{
	border:none;
}

.contents #mid .main tr{
	border:none;
}





/* clearfix：float解除＆親要素に高さを算出させる
-----------------------------------------*/
.ex_clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.ex_clearfix {
  min-height: 1px;
}
* html .ex_clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

