/* ARTIST
=========================================================================
=========================================================================*/

/* Index
-----------------------------------------------------------*/
.artist_index ul {
	display: flex;
	flex-wrap: wrap;
}

.artist_index ul li {
	width: calc(443 / 1330 * 100%);
	overflow: hidden;
	text-align: center;
	clip-path: inset(0 100% -20% 0);
	transition-delay: 2.5s;
	transition-duration: .5s;
}

.artist_index ul li a {
	display: block;
	padding: 50px 10px 40px;
	height: 100%;
	color: #FFF;
	/*background-color: #1A1311;*/
	background-color: var(--logo-color);
	transition: .5s;
}

@media(hover: hover) {
	.artist_index ul li a:hover {
		color: #1A1311;
		background-color: #FFF;
	}
}

.artist_index ul li:nth-child(2) a {
	color: #1A1311;
	background-color: #FFF;
}

@media(hover: hover) {
	.artist_index ul li:nth-child(2) a:hover {
		color: #FFF;
		/*background-color: #1A1311;*/
		background-color: var(--logo-color);
	}
}

.artist_index ul li a svg {
	margin-bottom: 70px;
	width: calc(129 / 443 * 100%);
	fill: #FFF;
	transition: 1s;
}

@media(hover: hover) {
	.artist_index ul li a:hover svg {
		fill: #1A1311;
		fill: var(--logo-color);
	}
}

.artist_index ul li:nth-child(2) a svg {
	fill: #1A1311;
}

@media(hover: hover) {
	.artist_index ul li:nth-child(2) a:hover svg {
		fill: #FFF !important;
	}
}

.artist_index ul li a h2 {
	font-size: 45px;
}

@media screen and (max-width:1370px) {
	.artist_index ul li a h2 {
		font-size: calc(45 / 1370 * 100vw);
	}
}

.artist_index ul li a h2 span {
	display: block;
	font-size: 16px;
}

@media screen and (max-width:1370px) {
	.artist_index ul li a h2 span {
		font-size: calc(16 / 1370 * 100vw);
	}
}

.artist_index ul li a h2 span:nth-child(1) {
	margin-bottom: 2em;
}

.artist_index ul li a h2 span:nth-child(2) {
	margin-top: 1em;
}

/*  767px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:767px) {

	/* Index
	-----------------------------------------------------------*/
	.artist_index ul {
		gap: 1px 0;
	}

	.artist_index ul li {
		width: 50%;
	}

	.artist_index ul li a {
		padding: 30px 10px 20px;
	}

	.artist_index ul li a svg {
		margin-bottom: 35px;
	}

	.artist_index ul li a h2 {
		font-size: 30px;
	}

	.artist_index ul li a h2 span {
		display: block;
		font-size: 14px;
	}

	.artist_index ul li a h2 span:nth-child(1) {
		margin-bottom: 1.5em;
	}

}

/*  420px以下
=========================================================================
=========================================================================*/
@media screen and (max-width:420px) {

	/* Index
	-----------------------------------------------------------*/
	.artist_index ul li {
		width: 100%;
	}
}
