@charset "utf-8";
#contentstitle h1 {
	background-color: var(--movie-color);
}
#main h2 {
	color: var(--movie-color);
	border-left: 1em solid var(--movie-color);
}

.strlist {
	display: flex;
	flex-wrap: wrap;
}
.strlist li {
	text-align: center;
	margin-bottom: 15px;
}
@media screen and (max-width:480px) {
	.strlist {
		justify-content: space-between;
	}
	.strlist li {
		width: calc((100% - 15px) / 2);
	}
}
@media screen and (min-width:481px) {
	.strlist {
		justify-content: space-between;
	}
	.strlist li {
		width: calc((100% - 30px) / 3);
	}
}

.strlist li:last-child {
	margin-bottom: 0;
}

.strlist li img {
	margin-bottom: 5px;
}
.strlist li span {
	font-size: 80%;
	text-align: left;
	display: block;
	line-height: 1.2;
}

