

a {
display: inline-block;
transition: .4s;
-webkit-transform: scale(1);
transform: scale(1);
}
a:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}

a:hover img{
opacity:0.5;
filter:alpha(opacity=50);
-ms-filter: “alpha( opacity=50 )”;
}





.home .main-conts .eye-catch {
float: left;
margin-right: 1em;
margin-bottom: 1em;
width: 246px;
height: 240px;
overflow: hidden;
display: block;
margin-bottom: 10px;
}

.home .main-conts img {
-moz-transition: -moz-transform 0.5s linear;
-webkit-transition: -webkit-transform 0.5s linear;
-o-transition: -o-transform 0.5s linear;
-ms-transition: -ms-transform 0.5s linear;
transition: transform 0.5s linear;
}

.home .main-conts img:hover {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
cursor: pointer;
}


@media only screen and (max-width: 736px){
.eye-catch {
float: none !important;
margin: 0 0 1em;
text-align: center;
width: 100% !important;
height: auto !important;
}
}












