@charset "utf-8";
/* CSS Document */

.voice p {
	font-size: 14px;
	line-height: 28px;
}
.voice dl {
	width: 300px;
	border-top: none;
	margin: 10px 15px 10px 0px;
	background-color: #D2E8C1;
	display: inline-block; /* 横並び */
	vertical-align: top; /* li要素を上端揃えに */
	margin-bottom: 30px;
	border: 1px #CCCCCC solid;
	}
/* IE6 */
.voice dl {
  _display: inline; /* display: inline-block;の代わり */
  _zoom: 1; /* 状況によって使い分ける */
}
 
/* IE7 */
*:first-child+html .voice dl {
  display: inline; /* display: inline-block;の代わり */
  zoom: 1; /* 状況によって使い分ける */
}

dl.block {
	  float: left;
	width: 300px;
}

.voice dt {
	min-height: 28px;
	font-size: 14px;
	line-height: 25px;
	font-weight: bold;
	padding: 3px 10px;
	color: #316F31;
	}
.voice dd {
	font-size: 14px;
	line-height: 28px;
	margin: 0 0 0 0px;
	padding: 3px 10px;
	background-color: #FFFFFF;
	}
/* 女性の場合 */
.voice dl.woman {
	background-color: #FFE6E6;
}
.voice dl.woman dt {
	color: #FF3333;
}

/* mobile */
@media screen and (max-width: 767px) {
.voice dl {
	width: 100%;
	border-top: none;
	margin: 10px 15px 10px 0px;
	background-color: #D2E8C1;
	display: table;
	float: left;
	border: 1px #CCCCCC solid;
	margin-bottom: 30px;
}
