/***************************************/
/**        エラー表示システム         **/
/***************************************/
/*▽デフォルトの入力欄設定▽*/
input[type=text], select, textarea{
	padding: 2px;
	border: 1px solid #c5c5c5; /*枠線*/
	background-color: #fffefe; /*背景色*/
}
input:focus{
	border: 1px solid #ff963c; /*枠線*/
	background-color: #fff5e5; /*背景色*/
}

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

/*▽エラーが無かった入力欄設定▽*/
input.passed, textarea.passed, select.passed{
	border: 1px solid #0c0; /*枠線*/
	background-color: #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 150px; /*表示位置*/
	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;
	color: #fff;
	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;
	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;
}
