@charset "utf-8";
/*--------------------
電話番号欄に任意の文言を表示する
----------------------*/
#tel-notes {
	display: block;
	background-color: #FFF;
	font-size: 1.3rem;
	line-height: 1.6;
	border: 2px solid #EEE;
	margin-top: .5em;
	padding: 1em;
}
#tel-notes a{
	color: #ee7800;
	border-bottom: 1px dashed #ee7800;
	transition: all 0.3s;
}
#tel-notes a:hover,
#tel-notes a:focus{
	color: #ee7800;
	border-bottom-color: transparent;
	opacity: 0.7;
}