.movieList {
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 4%;
	& img {
		max-width: 100%;
		display: block;
	}
	& span {
		display: block;
	}
	& figure {
		width: 48%;
		line-height: 1.6;
		font-size: 13px;
		position: relative;
	}
	& button {
		border: none;
		cursor: pointer;
		@media (any-hover:hover) {
			transition: opacity .3s;
			&:hover {
				opacity: .5;
			}
		}
	}
	.date {
		margin-top: 14px;
		font-family: var(--font-en);
		font-weight: var(--weight-bold);
		color: var(--color-purple);
	}
	.new {
		position: absolute;
		top: 0;
		left: 0;
	}
	.txt1 {
		margin: .5em 0 .6em;
		font-size: 16px;
		font-weight: var(--weight-bold);
	}
	.txt2 {
		font-size: 13px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 5;
		overflow: hidden;
	}
	@media (width>=650px) {
		gap: 30px 3.5%;
		& figure {
			width: 31%;
		}
	}
	@media (width>=768px) {
		margin: 40px 0;
		gap: 40px 3.5%;
		& figure {
			font-size: 14px;
		}
	}
}

.box {
	max-width: 850px;
	padding: 20px;
	margin: 2em auto 0;
	background: var(--color-purple-light2);
	text-align: center;
	.btn {
		margin: 10px 0 20px;
		& a {
			gap: 0 10px;
		}
	}
	& p {
		margin: 0;
	}
}

.acd {
	border-bottom: 1px solid var(--color-purple);
	& summary {
		width: 160px;
		height: 50px;
		padding: 0 2em;
		line-height: 49px;
		text-align: center;
		display: block;
		margin: 0 auto;
		list-style: none;
		cursor: pointer;
		background: var(--color-purple);
		color: #fff;
		font-size: 14px;
		border-radius: 10px 10px 0 0;
		::-webkit-details-marker {
			display:none;
		}
		@media(any-hover:hover) {
			transition: opacity .3s;
			&:hover {
				opacity: .6;
			}
		}
		&::before {
			content: "▼";
			margin-right: .5em;
		}
		&::after {
			content: "OPEN";
			margin: 0 .5em 0 .8em;
		}
	}
	&[open] {
		& summary::before {
			content: "▲";
		}
		& summary::after {
			content: "CLOSE";
		}
	}
	.acdInner {
		padding: 25px 4%;
		border-top: 1px solid var(--color-purple);
		background: var(--color-purple-light2);
		position: relative;
	}
	.movieList {
		margin: 0;
	}
	.pagerBlock {
		opacity: 0;
		pointer-events: none;
		position: absolute;
		top: 0;
		left: 0;
		&.current {
			position: static;
			opacity: 1;
			pointer-events: all;
			transition: opacity .3s;
		}
	}
	.pager ul {
		margin-top: 3.5em;
	}
	@media (width>=768px) {
		.acdInner {
			padding: 50px 3.5%;
		}
	}
}

