@charset "utf-8";
/*-----------------------------------------------
 * COMIC
-------------------------------------------------*/
.comicHead{
	text-align: center;
	font-weight: 700;
}
.comic_title{
	font-size: 36px;
	line-height: 1;
	font-weight: 700;
	color: var(--color-blue);
	margin-bottom: 26px;
}
.comic_author{
	font-size: 18px;
	line-height: 1;
}
.comic_infoTxt{
	margin-top: 48px;
	font-size: 18px;
}


.comicContent{
	width: calc(100% + 2%);
	margin-top: 40px;
	margin-left: -1%;
}
.comicLists{
	width: 100%;
	/* max-width: 1020px; */
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}
.comicList{
	width: calc(100% / 5);
	padding: 1.1765%;/* 12px */
}
.comicList a{
	display: block;
	position: relative;
}
.comicList a img{
	width: 100%;
}
.comicList a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid var(--color-blue);
}
.comicList__title{
	font-size: 18px;
	font-weight: 700;
	margin-top: 4px;
	color: var(--color-blue);
	text-align: center;
}

@media (hover: hover) and (pointer: fine){
	.comicList a,
	.comicList a img{
		overflow: hidden;
		transition: .3s ease;
	}
	.comicList a:hover{
		transform: scale(1.025);
	}
	.comicList a:hover img{
		transform: scale(1.05);
		filter: brightness(1.15);
	}
}

@media screen and (max-width: 960px){
	.comicList{
		width: calc(100% / 4);
	}
}



@media screen and (max-width: 767px){
	.comic_title{
		font-size: var(--sp-size-36);
		margin-bottom: var(--sp-size-24);
	}
	.comic_author{
		font-size: var(--sp-size-24);
	}
	.comic_infoTxt{
		margin-top: var(--sp-size-48);
		font-size: var(--sp-size-24);
		line-height: 2;
	}

	.comicContent{
		width: calc(100% + var(--sp-size-20));
		margin-left: calc(var(--sp-size-10) * -1);
	}
	.comicList{
		width: calc(100% / 3);
		padding: var(--sp-size-10);
	}
	.comicList__title{
		margin-top: var(--sp-size-4);
		font-size: var(--sp-size-20);
	}
}


/** is-ani **/
.comicHead{
	transform: translateY(20px);
	opacity: 0;
	transition: .6s ease .6s;
}
.comicList{
	transform: translateY(10%) scale(1.05);
	opacity: 0;
	transition: .4s ease;
}
.comicList:nth-of-type(1){
	transition-delay: 1s;
}
.comicList:nth-of-type(2){
	transition-delay: 1.075s;
}
.comicList:nth-of-type(3){
	transition-delay: 1.15s;
}
.comicList:nth-of-type(4){
	transition-delay: 1.225s;
}
.comicList:nth-of-type(5){
	transition-delay: 1.3s;
}
.comicList:nth-of-type(6){
	transition-delay: 1.375s;
}
.comicList:nth-of-type(7){
	transition-delay: 1.45s;
}
.comicList:nth-of-type(8){
	transition-delay: 1.525s;
}
.comicList:nth-of-type(9){
	transition-delay: 1.6s;
}
.comicList:nth-of-type(10){
	transition-delay: 1.675s;
}
.comicList:nth-of-type(11){
	transition-delay: 1.750s;
}
.comicList:nth-of-type(12){
	transition-delay: 1.825s;
}
.comicList:nth-of-type(13){
	transition-delay: 1.900s;
}
.comicList:nth-of-type(14){
	transition-delay: 1.975s;
}
.comicList:nth-of-type(15){
	transition-delay: 2.050s;
}
.comicList:nth-of-type(16){
	transition-delay: 2.125s;
}
.comicList:nth-of-type(17){
	transition-delay: 2.200s;
}
.comicList:nth-of-type(18){
	transition-delay: 2.275s;
}
.comicList:nth-of-type(19){
	transition-delay: 2.350s;
}
.comicList:nth-of-type(20){
	transition-delay: 2.425s;
}

#comic .contentIn.is-ani .comicHead{
	transform: translateY(0px);
	opacity: 1;
}
#comic .contentIn.is-ani .comicList{
	transform: translateY(0px) scale(1);
	opacity: 1;
}