<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.voice_ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
	margin: 1em 0;
	text-align: center;
}
.voice_ul li {
	width: 47%;
	padding: 2%;
	display: flex;
	flex-direction: column;
	background: #fff;
    border-radius: 10px;
}
.voice_ul li:last-child {
	border-bottom: none;
}
.voice_ul li img {
	width: 100%;
	border: 1px solid #CCCCCC;
}
.voice_ul li .voice_text {
	width: 100%;
}

@media only screen and (max-width: 640px) {
	.voice_ul li {
		width: 96%;
	}
}

.voice_ul li .voice_text dl {
	margin-bottom: 1em;
	padding: 1em;
}
.voice_ul li .voice_text dt {
	font-size: 80%;
	color: #666666;
}
.voice_ul li .voice_text dd {
	margin-bottom: .5em;
	font-size: 80%;
	font-weight: bold;
}
.borderbox {
	position: relative;
	background-color: #ffead7;
    padding: 1rem;
    font-size: 80%;
    border-radius: 5px;
	margin-top: 30px!important;
}
.borderbox:before {
	content: "";
	position: absolute;
	top: -18px;
	left: 10%;
	margin-left: -15px;
	border: 10px solid transparent;
	border-bottom: 10px solid #ffead7;
}
/*--------------------------------------------------*/
/* cfa
/*--------------------------------------------------*/
.cfa:before, .cfa:after, section:before, section:after {
	content: " ";
	display: block;
	clear: both;
}
#voice .p-inner {
	background-color: white;
	padding: 30px;
}</pre></body></html>