/***************************************/
/**        エラー表示システム         **/
/***************************************/
/*▽入力欄フォーカス設定▽*/
#order input[type=text]:focus{
	border: 1px solid #ff963c; /*枠線*/
	background: none #fff5e5; /*背景色*/
}

/*▽エラーがあった入力欄設定▽*/
#order input.failed, #order textarea.failed, #order select.failed{
	border: 1px solid #f30; /*枠線*/
	background: none #fff9f9; /*背景色*/
	color : #333; /*文字色*/
}

/*▽エラーが無かった入力欄設定▽*/
#order input.passed, #order textarea.passed, #order select.passed{
	border: 1px solid #0c0; /*枠線*/
	background: none #f9fff9; /*背景色*/
	color : #333; /*文字色*/
}

/*▽表示させるエラーボックス設定▽*/
form div.error-advice{
	margin: 5px 0 0 0; /*表示位置*/
	padding: 2px 10px 0; /*枠と文字の余白*/
	background-color: #ed5745; /*背景色*/
	color : #fff; /*文字色*/
	font-size: 90%; /*文字サイズ*/
	line-height: 1.6em;
}

/*▽ok画像設定▽*/
form div.passed_image{
	display: none!important;
	background: url(./images/ok.gif) no-repeat left 5px!important;
	margin: 3px 0 0 5px; /*表示位置*/
	padding: 8px 20px;
}


/***************************************/
/**        住所検索システム           **/
/***************************************/
/*▽全体設定▽*/
#addpop{
	visibility: hidden;
	position: absolute;
	font-size: 10pt; /*文字サイズ*/
	margin: 3px 0 0 160px; /*表示位置*/
	background-color: transparent!important;
	background: url(./images/list_bg.png) left top repeat;
	z-index: 100;
}

#addpop ul{
	list-style: none;
	width: 380px;
	margin: 0;
	padding: 0;
}

#addpop ul li{
	float: left;
	margin: 0;
	cursor: pointer;
	border-bottom: 1px solid #666;
	border-right: 1px solid #999;
}

#addpop ul li a{
	display: block;
	font-size: 10pt;
	padding: 4px 25px 4px 12px;
	background-color: transparent!important;
	color: #fff!important;
	text-decoration: none;
}

#addpop ul li a:hover{
	background-color: #ff9e00!important;
	color: #fff;
	font-weight: bold;
}

#addpop ul li.title{
	background: url(./images/addr-pop_bg.gif) #f7edd4 center top repeat-x;
	margin: 0;
	width: 369px;
	padding: 2px 0 2px 10px;
	border-bottom: none;
	font-weight: bold;
	font-size: 10pt;
	color: #0078c2;
	cursor: default;
	text-align: left;
}
