@charset "UTF-8";
/* CSS3tooltip ツールチップ */
.tooltip {
	position: relative;
}
.tooltip:before, .tooltip:after {
	position: absolute;
	transition: All 0.5s ease;
	-webkit-transition: All 0.5s ease;
	-moz-transition: All 0.5s ease;
	-o-transition: All 0.5s ease;
	margin-left: -100px;
	left: 50%;
	bottom: 300%;
	display: block;
	color: #333;
	opacity: 0;
    visibility:hidden;
	border-radius: 5px;  
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.tooltip:before {
	content: attr(title);
	border: solid 1px #34495e;
	background: #FEE252;
	width: 250px;
	text-align: left;
	z-index: 2;
	font-size: 14px;
	line-height: 18px;
	padding: 5px;
}
.tooltip:after {
	content: '\25c6';
	margin-left: 0;
	margin-top: 10px;
	width: 15px;
	height: 15px;
	z-index: 1;
	line-height: 28px;
	color: #d35400;
	font-size: 20px;
}
.tooltip:hover:before, .tooltip:hover:after {
	bottom: 150%;
	opacity: 1;
    visibility:visible;
}