@charset "UTF-8";

/* ===================================================================
	お客様の声　応募者 ファーストビュー以下のcss
=================================================================== */

.voice_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 820px;
	margin: 0 auto;
}
.voice_list li {
	width: 45%;
	margin-bottom: 75px;
}

/* 応募者情報 */
.voice_info_area {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}
.voice_icon {
	width: 72px;
}
.voice_icon img {
	width: 100%;
}

.voice_info {
	margin-left: 20px;
	padding: 7px 0 7px 20px;
	border-left: solid 2px #FFC824;
}

.voice_info h3 {
	font-weight: bold;
	font-size: 1.25rem;
}

/* 本文 */
.voice_txt {
	margin-bottom: 20px;
}

.voice_txt h3 {
	margin-bottom: 8px;
	font-weight: bold;
	font-size: 1.25rem;
}

.voice_txt p {
	line-height: 1.8;
	font-weight: 500;
}

/* 満足度 */
.satisfaction {
	padding: 20px;
	border-radius: 10px;
	background: #F5F6F6;
	text-align: center;
}

.satisfaction dt {
	margin-bottom: 3px;
	font-size: 0.9rem;
	font-weight: 500;
}
.satisfaction_star {
	display: inline-block;
	width: 121px;
	height: 20px;
	background-image: url(../../img/front/new_dorapita/voice/satisfaction_star.svg);
	background-repeat: no-repeat;
	background-size: 121px auto;
}
.star_5 {
	background-position: 0 0;
}
.star_4 {
	background-position: 0 -30px;
}
.star_3 {
	background-position: 0 -60px;
}
.star_2 {
	background-position: 0 -90px;
}
.star_1 {
	background-position: 0 -120px;
}






/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
	
}


/* X-Large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) { 
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
	.voice_list {
		display: block;
	}
	.voice_list li {
		width: auto;
	}
	.voice_info_area {
		margin-bottom: 20px;
	}
}


/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
	
}



/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	
	.voice_list {
		padding: 0;
	}
	.voice_list li {
		margin-bottom: 50px;
	}
	.voice_list li:last-child {
		margin-bottom: 0;
	}
	.voice_info h3 {
		font-size: 1.1rem;
	}
	.voice_txt p {
		font-weight: 400;
	}
	.satisfaction {
		padding: 10px;
	}
}


@media (max-width: 479px) {
	
}











