@charset "utf-8";

.voice dl {
	padding: 10px;
	background-color: #fffcee;
	border: 1px solid #ffd200;
	border-radius: 3px;
	margin-top: 25px;
}

.voice dl:first-of-type {
	margin-top: 0;
}

.voice dl dt {
	width: 120px;
}

.voice dl dd {
	width: calc(100% - 120px);
	padding-left: 10px;
}

.voice dl dd b {
	font-weight: 900;
	color: #f15c5c;
}

.star5_rating{
	position: relative;
	z-index: 0;
	display: inline-block;
	white-space: nowrap;
	color: #CCCCCC; /* グレーカラー 自由に設定化 */
	/*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before, .star5_rating:after{
	content: '★★★★★';
}

.star5_rating:after{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

.evaluation_num {
	display: inline-block;
	margin-left: 3px;
	color: #f15c5c;
}

@media only screen and (max-width: 768px){

.voice dl dt {
	display: none;
}

.voice dl dd {
	width: 100%;
	padding-left: 0;
}

.voice dl dd b {
	display: block;
	text-align: center;
}

.voice dl dd img {
	max-width: 120px;
	margin: 8px auto;
}

.evaluation {
	text-align: center;
}

}