@charset "utf-8";

/*リスト表示：基本（1列）
----------------------------------------------------------- */
.listBase1 li {
	padding-left: 15px;
	background: url(../img_ico/ico_dot.gif) left center no-repeat;
}

/*リスト表示：基本（2列）
----------------------------------------------------------- */
.listBase2 {
	width: 100%;
	display: inline-block;
}

.listBase2:after {
	clear: both;
	height: 0px;
	visibility: hidden;
	display: block;
	content: ".";
}

.listBase2 li {
	float: left;
	width: 48%;
	padding-left: 15px;
	background: url(../img_ico/ico_dot.gif) left center no-repeat;
}

/*リスト表示：基本（3列）
----------------------------------------------------------- */
.listBase3 {
	width: 100%;
	display: inline-block;
}

.listBase3:after {
	clear: both;
	height: 0px;
	visibility: hidden;
	display: block;
	content: ".";
}

.listBase3 li {
	float: left;
	width: 31%;
	padding-left: 15px;
	background: url(../img_ico/ico_dot.gif) left center no-repeat;
}

/*リスト表示（数字）
----------------------------------------------------------- */	
.listDecimal li {
	margin-left: 2.5em;
	list-style: decimal;
}

/*注意書きなどで使えそうなリスト
----------------------------------------------------------- */
.attentionList li {
	margin-left: 1em;
	text-indent: -1em;
}

/*見出しと内容のリスト
----------------------------------------------------------- */
/*会社概要、カレンダーなど*/
.listDefine01 {
	border-top:dotted 1px #666666;/*★区切り線があるときのみ*/
}

.listDefine01 dl {
	width: 100%;
	display: inline-block;
	background: url(../img/bg_list.gif) top repeat-y;/*★背景画像があるときのみ*/
	border-bottom:dotted 1px #666666;/*★区切り線があるときのみ*/
}

.listDefine01 dl:after {
	clear: both;
	height: 0px;
	visibility: hidden;
	display: block;
	content: ".";
}

.listDefine01 dt {
	float: left;
	width: 26%;
	background:url(../img_ico/ico_arrow_right.gif) 0em 0.2em no-repeat;/*★アイコンがあるときのみ*/
	padding-left:15px;/*★アイコンがあるときのみ*/
	font-weight:bold;
}

.listDefine01 dd {
	float: right;
	width: 70%;
}

/*アンカーメニュー
----------------------------------------------------------- */
.anchorList {
	width: 100%;
	display: inline-block;
}

.anchorList:after {
	clear: both;
	height: 0px;
	visibility: hidden;
	display: block;
	content: ".";
}

.anchorList li {
	float: left;
}

.anchorList a {
	padding-left: 15px;
	background: url(../img_ico/ico_arrow_down.gif) center left no-repeat;
}

/*IE6,7のアイコン表示調整*/
* html .anchorList li {
	float: none;
	display: inline;
}

*:first-child + html .anchorList li {
	float: none;
	display: inline;
}

* html .anchorList a {
	zoom: 1;
}

*:first-child + html .anchorList a {
	zoom: 1;
}