@charset "UTF-8";
/* ===================================================================
 style info :  製品案内ページ・製作事例の設定
 author     : business_jirei.css
=================================================================== */

.c_jireiBox{
	padding: 10px 0 5px 0;
}
.c_jireiBox ul{
	margin: 0 -20px -36px 0;
}
.c_jireiBox li{
	float: left;
	margin: 0 20px 36px 0;
}

/*画像を拡大*/
a.thumnail {
    display: block;
    float: left;
    overflow: hidden;
    width: 100%;
}
.thumnail span{
	z-index: 2;
} 
.c_jireiBox li img {
    height: auto;
    -webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    width: 100%;
    vertical-align: bottom;
}
 
figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}
 
figcaption {
    background-color:rgba(0,0,0,0.5);
    color: #FFF;
    opacity: 0;
    font-size: 1.4rem;
    position: absolute;
    text-align: center;
    -webkit-transition:all 0.25s ease-in-out;
        transition:all 0.25s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 25%;
}
figcaption .f_txtBox{
	width:151px;
	margin: 0 auto;
}
figcaption .f_title{
	font-size: 2.3rem;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	padding: 0 0 5px 0;
	margin: 0 0 15px 0;
}
a:hover>figure img {
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
}
 
a:hover>figure figcaption {
    opacity: 1;
}