.ch-item,
.ch-item2,
.ch-info{
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.ch-item {
	width: 100%;
	height: 172px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.ch-item2{
	width: 402px;
	height: 249px;
	position: relative;
}
.ch-info {
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 0;
	top: 0;
	width: 150px;
	height: 27px;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.ch-info h3 {
	color: #fff;
	font-size: 25px;
	font-family: 'fujiyamalightregular';
	font-weight: bold;
	margin: 0;
	text-align: center;
}
.ch-item:hover, .ch-item2:hover {
	box-shadow: 
		inset 0 0 0 150px rgba(0,0,0, 0.5)
}
.ch-item:hover .ch-info, .ch-item2:hover .ch-info {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}
