/* フレーム */
.voice_frame {
	width:150px;
	position:fixed;
	border:1px solid #333333;
	background-color: #ffffff;
	display: none;
	top: 20%;
	right: 0px;
	z-index: 100;
	font-size:12px;
}

.speech_text {
	cursor:pointer;
}

/* クリック時のアニメーション */
.speech_animate {
	animation: scalePop 0.3s ease;
}
@keyframes scalePop {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.1); }
	100% { transform: scale(1); }
}

/* ボタン */
.speech_btn, .close_btn {
	cursor:pointer;
	font-size: 18px;
	text-align: center;
	transition: 0.2s;
}
.speech_btn:hover, .close_btn:hover {
	transform: scale(1.2);
	-webkit-transform: scale(1.2);
}