/* ARTIST
=========================================================================
=========================================================================*/
/* Introduction
-----------------------------------------------------------*/
.introduction {
	margin-bottom: 70px;
	padding: 60px 0;
	background-color: #F5F5F5;
}

.introduction .inner_1200 {
	display: flex;
	gap: 0 calc(160 / 1330 * 100%);
}

.introduction h2 {
	width: calc(500 / 1330 * 100%);
}

.introduction h2 span {
	display: block;
	font-size: 20px;
	white-space: nowrap;
	transition-delay: 2.5s;
	transition-duration: .75s;
}

.introduction h2 span:nth-child(1) {
	margin-bottom: 1em;
}

.introduction h2 span:nth-child(2) {
	font-size: 45px;
	line-height: 1em;
}

.introduction h2 span:nth-child(3) {
	margin-top: 1em;
	font-size: 14px;
}

.introduction p {
	font-size: 18px;
	line-height: 2em;
	transition-delay: 3s;
	transition-duration: 1s;
}

@media screen and (max-width:1200px) {
	.introduction p {
		font-size: 16px;
	}
}

/* Category
-----------------------------------------------------------*/
.category ul {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: center;*/
	gap: 20px 30px;
	margin: 0 auto 30px;
	width: fit-content;
	font-size: 16px;
}

.category ul li {
	position: relative;
	width: fit-content;
	cursor: pointer;
	transition-delay: 0s;
	transition-duration: 1s;
}

.category ul li::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background-color: #1A1311;
	transform: scale(0, 1);
	transform-origin: center;
	z-index: -1;
	transition: 0.6s;
}

@media(hover: hover) {
	.category ul li:hover::after {
		transform: scale(1, 1);
	}
}

.category ul li.is-active::after {
	transform: scale(1, 1);
}

/* Gallery
-----------------------------------------------------------*/
#lightgallery {
	display: flex;
	flex-wrap: wrap;
}

#lightgallery li {
	/*display: none;*/
	width: 20%;
	overflow: hidden;
	cursor: pointer;
}

#lightgallery li.is-show {
	/*display: block;*/
	animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
	0% {
		clip-path: inset(0 100% -20% 0);
	}

	100% {
		clip-path: inset(0 0 -20% 0);
	}
}


#lightgallery li img {
	transform: scale(1.0);
	transition: all 1s;
}

@media(hover: hover) {
	#lightgallery li:hover img {
		transform: scale(1.075);
		filter: grayscale(80%);
	}
}


.lg-sub-html h4 {
	font-weight: 300;
	font-size: 20px;
}

.lg-sub-html p {
	font-size: 14px;
	margin: 5px 0 0
}


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

	/* Introduction
	-----------------------------------------------------------*/
	.introduction {
		margin-bottom: 40px;
		padding: 40px 0;
	}

	.introduction .inner_1200 {
		flex-wrap: wrap;
		gap: 30px 0;
	}

	.introduction h2 {
		width: 100%;
	}

	.introduction h2 span {
		font-size: 14px;
	}

	.introduction h2 span:nth-child(2) {
		font-size: 30px;
	}

	.introduction p {
		width: 100%;
		font-size: 14px;
		line-height: 2em;
	}

	/* Gallery
	-----------------------------------------------------------*/
	#lightgallery li {
		width: calc(100% / 3);
	}

	.lg-sub-html h4 {
		font-size: 16px;
	}

}

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

	/* Gallery
	-----------------------------------------------------------*/
	#lightgallery li {
		width: 50%;
	}
}
