@charset "UTF-8";

.voice_box {
	max-width: 1080px;
	margin: 0 auto;
	display: block;
}

.balloon_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.balloon {
	position: relative;
	display: inline-block;
	margin: 1.5em 15px 1.5em 0;
	padding: 25px;
	width: 890px;
	max-width: 100%;
	color: #555;
	font-size: 16px;
	background: #FCFCFA;
	border-radius: 5px;
	box-shadow: 3px 3px 6px rgb(204 204 204);
	border: solid 1px #e2e2e2;
}

.balloon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #FCFCFA;
	filter: drop-shadow(3px 3px 2px rgba(204, 204, 204, 1));
}

.balloon p {
	text-align: left;
	white-space: inherit;
	line-height: 1.8em;
}

.balloon_ttl {
	font-weight: bold;
	border-bottom: solid 1px #cccccc;
	padding-bottom: 5px;
	margin-bottom: 15px;
}

.balloon_txt {
	
}

@media screen and (max-width: 768px) {
	.voice_box {
		max-width: 94%;
	}

	.balloon_box img {
		margin-left: 15px;
	}
}