@charset "utf-8";

/* ===================================================================
AWSソリューション
=================================================================== */
.movielist__img {
	position: relative;
	display: inline-flex;
	overflow: hidden;
	align-content: center;
	align-items: center;
	aspect-ratio: 16 / 9;
}

.movielist__img::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 100%;
	margin: auto;
	content: "";
	background-color: rgb(0 0 0 / 20%);
}

.movielist__img img {
	max-width: 100%;
	height: auto;
}
.movielist__play {
	position: relative;
}
.movielist__play::after {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 50px;
	margin: auto;
	content: "";
	border: 3px solid #FFFFFF;
	border-radius: 50%;
}
.movielist__play::before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 1%;
	width: 0;
	height: 0;
	margin: auto;
	content: "";
	border-width: 10px 0 10px 15px;
	border-style: solid;
	border-color: transparent transparent transparent #FFFFFF;
}
