.fukidashi1 {
	position: relative;
	width: 241px;
	height: 46px;
	box-shadow: 1px 1px 1px #ccc;
	z-index: auto;
}
.fukidashi1 img {
	width: 100%;
	height: 100%;
}
.fukidashi1 .box {
	position:absolute;
	width: 260px; /* 吹き出しの幅 */
	height: 70px; /* 吹き出しの高さ */
	top: -76px; /* 吹き出しと三角形の高さをプラスした値 */
	left: 0;
	border-radius: 10px 10px 10px 10px;
	background-color: #76ff76;
	display: none;
}
.fukidashi1 .box:after { /* 三角形を作成 */
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	top: 70px; /* 吹き出しの高さと同じ値 */
	left: 32px;
	border: 16px solid transparent;
	border-top: 16px solid #76ff76;
}
.fukidashi1 .text {
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	top: 8px;
	left: 4px;
	color: #000;
}
.fukidashi1:hover .box {
	z-index: 2;
	display: block;
}