@charset "UTF-8";
/*------------------------------

  MOVIE Css

------------------------------*/
h2{
    font-weight: 600;
    letter-spacing: 0.25rem;
	font-size: 30px;
}
h2 span{
   	display: block;
    line-height: 1;
    font-size: 18px;
    color: #a7a7a7;
    font-weight: 300;
	padding-top: 10px;
}

#hero .main-ttl img{
	margin-bottom: 20px;
}

/*一覧　list*/
#list{
	padding-top: 40px;
}
#list .item-box{
	margin-right: -40px;
}
#list .item-box .item{
	width: 33.3333%;
    padding-right: 40px;
	margin-bottom: 40px;
}
#list .item-box .item .img{
	position: relative;
	background-color: #000;
}
#list .item-box .item img{
	width: 100%;
	opacity: 0.7;
	transition: all 300ms 0s ease;
}
#list .item-box .item .img:hover img{
	opacity: 1;
}
#list .item-box .item .img .btn-modal{
	display: block;
}
#list .item-box .item .img .btn-modal:before{
	content: "";
	position: absolute;
	background-image: url(../img/icon-start.png);
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 1;
	left: 0;
    right: 0;
    margin: 0 auto;
}
#list .item-box .item .txt{
	padding-top: 10px;
	margin-bottom: 10px;
}
#list .item-box .item .ttl{
	font-size: 18px;
	font-weight: 600;
}
#list .item-box .item .detail{
	text-align: left;
	font-size: 14px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	
	
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	#list{
		padding-top: 20px;
	}
	#list .item-box .item{
		width: 100%;
	}
}

