<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */
.movieWrapper dl {
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}
.movieWrapper dt video {
	width: 100%;
}
.movieWrapper dd .name {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.movieWrapper dd .size {
	font-size: .85em;
	color: #666;
	margin-bottom: 3px;
}
.movieWrapper dd .time {
	font-size: .9em;
	border-radius: 10rem;
	border: 1px solid #ccc;
	padding: 0.2em 0;
	width: 100%;
	max-width: 260px;
	margin-top: 0.1em;
	background: #fff;
	margin: 0 auto;
}
@media screen and (min-width:520px) {
	.movieWrapper {
		display: flex;
		flex-wrap: wrap;
	}
	.movieWrapper dl {
		width: calc(50% - 5px);
	}
	.movieWrapper dl:not(:nth-of-type(2n)) {
		margin-right: 10px;
	}
}
@media screen and (min-width:960px) {
	.movieWrapper dl {
		width: calc(33.3333% - 6px);
	}
	.movieWrapper dl:not(:nth-of-type(2n)) {
		margin-right: 0;
	}
	.movieWrapper dl:not(:nth-of-type(3n)) {
		margin-right: 9px;
	}
}</pre></body></html>