
.leadbox{
    /* display: flex; */
    margin-bottom: 4rem;
}
.lead{
    margin-bottom: 2rem;
}
.lead p{
    margin-bottom: 1.4rem;
}
.lead p.txt-bold{
    font-size: 1.2em;
}
.movies{
    display: flex;
    margin-bottom: 4rem;
}
.movies li{
    margin: 0 0.6rem;
}
.movies p{
    font-weight: bold;
}
.movie-thumbnail{
    position: relative;
    margin: auto;
    /* margin-bottom: 2rem; */
}
.movie-thumbnail img{
    width: 100%;
}
.movie-thumbnail a:before{
    content: "\f144";
    font-size: 8rem;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.movie-thumbnail a:hover:before{
    text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.8);
}
.movie-thumbnail a:hover img{
    opacity: 1;
}
/*========= モーダル表示のためのCSS ===============*/

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
	padding:0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
/* cast */
.casts{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.cast{
    width: 48%;
    border: 2px solid #CCC;
    padding: 2rem;
    margin-bottom: 2rem;
}
.cast.kou{
    background: #eaeaea;
    align-self: flex-end;
}

#main .casts h5{
    margin-bottom: 1rem;
    border-bottom: 1px solid #000;
}
#main .casts .kou h5{
    border-bottom: none;   
}
.furi{
    font-size: 1.4rem;
}
.status{
    display: block;
    font-size: 1.4rem;
}
#main h4.subtitle {
    background: #000;
    color: #FFF;
    padding: 0 1rem;
    border-radius: 0.4rem;
}
#main h4.subtitle i{
    margin-right: 1rem;
}