@charset "utf-8";
@keyframes scroll-episodetext {
	from {
		background-position:0 center;
	}
	to {
		background-position:402px center;
	}
}
@keyframes scroll-episodetext-s {
	from {
		background-position:0 center;
	}
	to {
		background-position:64.32vw center;
	}
}
.content__title {
	height:160px;
	background:#d84f7c url(../img/episode/title.svg) repeat-x 0 center / 402px auto;
	animation: color-gradient 7.5s linear infinite,scroll-episodetext 6s linear infinite;
}
@media screen and (max-width:768px){
	.content__title {
		height:25.6vw;
		background:#d84f7c url(../img/episode/title.svg) repeat-x 0 center / 64.32vw auto;
		animation: color-gradient 7.5s linear infinite,scroll-episodetext-s 6s linear infinite;
	}
}
.episode__lists {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom:1px solid #000;
	margin-top:-1px;
	background:#FFF;
}
.episode__lists li {
	width:25%;
	border-bottom:1px solid #000;
	transform:translateY(1px);
}
.episode__lists li>a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height:100%;
	padding:13.3333%;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}
.episode__lists li>a:hover {
	color:#FFF;
}
.episode__lists li>a i {
	content:'';
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	animation: nav-out 0.4s ease forwards;
	display: block;
}
.episode__lists li>a:hover i {
	animation: nav-in 0.4s ease forwards;
}
.episode__lists li>a i:before {
	content:'';
	position:absolute;
	left:0;
	top:0;
	right:0;
	bottom:0;
	background:#d84f7c;
	animation: color-gradient 7.5s linear infinite;
}
.episode__lists--thumb {
	padding-top:56.25%;
	position: relative;
	margin-bottom:15px;
	background:url(../img/common/noimage.svg) no-repeat center center / cover;
	position: relative;
	z-index:10;
}
.episode__lists--thumb img {
	display: block;
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	object-fit: cover;
}
.episode__lists--title {
	display: flex;
	justify-content: flex-start;
	transition:all 0.4s ease;
	align-items:flex-start;
	position: relative;
	z-index:50;
}
.episode__lists--title span {
	display: block;
}
.elt-num {
	white-space: nowrap;
}
.elt-text {
	padding-left:1em;
	text-indent: -1em;
}
@media screen and (max-width:768px){
	.episode__lists {
		width:100%;
		flex-wrap: wrap;
		background:#FFF;
		min-height:0;
	}
	.episode__lists li {
		width:50%;
		min-height:0;
		border-right:1px solid rgba(0,0,0,.16) !important;
		border-bottom:1px solid rgba(0,0,0,.16) !important;
	}
	.episode__lists li:nth-child(even) {
		border-right:none !important;
	}
	.episode__lists--thumb {
		margin-bottom:2.2vw;
	}
	.episode__lists--title {
		transition:all 0.4s ease;
		font-size:1.2rem;
	}
}
.episode__title {
	font-size:32px;
	font-weight: 700;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom:20px;
	line-height:1.7;
}
.episode__title span {
	display: block;
}
.episode__title--num {
	white-space: nowrap;
	color:#d84f7c;
}
.episode__title--text {
	padding-left:1em;
	text-indent:-1em;
}
.episode__imgs {
	margin-bottom: 34px;
}
.episode__img {
	display: block;
	margin-bottom: 2px;
}
.episode__img img {
	width:100%;
	height:auto;
}
.episode__imgLists {
	display: flex;
	justify-content: space-between;
}
.episode__imgLists li {
	width:145px;
}
.episode__imgLists li a {
	display: block;
	position: relative;
}
.episode__imgLists li a img {
	width:100%;
	height:auto;
	opacity:1;
	transition:all 0.3s ease;
}
.episode__imgLists li a:hover img {
	opacity:0.7;
}
.episode__imgLists li a.active {
	pointer-events: none;
}
.episode__imgLists li a.active img {
	opacity:1;
}
.episode__text {
	font-size:16px;
	font-weight: 700;
}
@media screen and (max-width: 768px){
	.episode__title {
		font-size:1.8rem;
		margin-bottom:4vw;
	}
	.episode__imgs {
		margin-bottom: 4vw;
	}
	.episode__img {
		margin-bottom: 1px;
	}
	.episode__imgLists {
		flex-wrap: wrap;
	}
	.episode__imgLists li {
		width:calc((100% - 2px) / 3);
		margin-bottom:1px;
	}
	.episode__text {
		font-size:1.2rem;
	}
}