@charset "UTF-8";

.voice_box {
	position: relative;

	margin: 0 auto 25px;

	transition: 0.2s;
}

.voice_box img{
	border: 1px solid #e0e0e0;
}

.voice_box figcaption{
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;

	color: #fff;
	background: rgba(0, 138, 225, 0.85);

	width: 100%;
	height: 77%;
	padding: 10px;
	font-size: 1.3rem;

	transition: 0.2s;
	opacity: 0;
}

.voice_box .text_area {
	margin-top: 5px;
}

.voice_box:hover .-img > img{
	transform: scale(1.05);
}

.voice_box:hover .-detail {
	z-index: 2;
	opacity: 1;
}


.voice .layout-column.theme-col03 > .-col:not(:nth-of-type(3n)){
	margin-right: 2%;
}

.voice .layout-column.theme-col03 > .-col {
    width: 31.666667%;
}

@media screen and (max-width: 768px) {
	.voice_box .text_area {
		margin-top: 5px;
		font-size: 15px;
		text-align: left;
	}
	.voice_box figcaption {
		height: 78%;
	}
}