@charset "utf-8";
/*
CSS Information
 File name:      movie.css
 Author:         Administrator
 Style Info:     /movie.php
----------------------------------------------------- */
/* CSS override and Class setting
***********************************/

/* #movie
***********************************/
.movieList {
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
}
.movieList li {
	position: relative;
	width: calc(100% / 4 - 8px);
	margin: 0 10px 10px 0;
	padding: 10px 9px;
	border: 1px solid #999;
	box-sizing: border-box;
}
.movieList li:nth-of-type(4n) {
	margin-right: 0;
}
.movieList li h2 {
	margin-bottom: 5px;
	padding: 5px 2px;
	background: #999;
}
.movieList li .thumb {
	display: block;
	position: relative;
	overflow: hidden;
}
.movieList li .thumb img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}
.movieList li .txtData h3 {
	margin-top: 5px;
	font-weight: bold;
}
.movieList li .txtData .ladyProf {
	margin-top: 5px;
	font-size: 93%;
}
.movieList li .txtData .ladyProf br {
	display: none;
}
.movieList li .txtData span {
	display: block;
}
.movieList li .playBtn {
	position: relative;
	display: block;
	margin: 5px 0 0;
	border: solid 1px #999;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f1f1f1), color-stop(51%,#e1e1e1), color-stop(100%,#f6f6f6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%); /* W3C */
	-pie-background: linear-gradient(#ffffff 0%,#f1f1f1 50%,#e1e1e1 51%,#f6f6f6 100%);
	behavior: url(/js/web/lib/PIE.htc);
	color: #000;
	font-size: 108%;
	line-height: 2;
	text-align: center;
	text-decoration: none;
}
