/* タイトルバーをブルーに */
.subtitle{
background:  no-repeat,
 url(https://imanyan.jp/upload/pub/4291f8.gif) repeat !important;
color: #ffffff !important;
}
.subtitle span{
	color: #ffffff !important;
}


/* レビューを3行だけ表示 */
.comment {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
