@charset "utf-8";
/* eventContDl__item */
.eventContDl__item:not(:first-child) {
	margin-top: 60px;
}

/**
 * eventContDl__dt
 */
.eventContDl__dt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.eventContDl__dt__link {
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
}

/* img */
.eventContDl__dt__link--img {
	max-width: 100%;
}
@media screen and (max-width:767px){
	.eventContDl__dt__link--img {
		max-width: 165px;
	}
}

/**
 * artistDlLists
 */
/* item */
.artistDlLists__item:not(:first-child) {
	margin-top: 60px;
}
@media screen and (max-width:767px){
	.artistDlLists__item:not(:first-child) {
		margin-top: 40px;
	}
}

/* dd */
.artistDlLists__dd {
	margin-top: 50px;
}
@media screen and (max-width:767px){
	.artistDlLists__dd {
		margin-top: 30px;
	}
}

/**
 * artistLists
 */
.artistLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.artistLists__item {
	width: calc((100% - 20px) / 2);
}
@media screen and (max-width:767px){
	.artistLists {
		gap: 10px;
	}
	.artistLists__item {
		width: calc((100% - 10px) / 2);
	}
}

/* link */
.artistLists__link {
	color: #fff;
	display: block;
	text-decoration: none;
}

/* img */
.artistLists__imgWrap {
	aspect-ratio: 400 / 237;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.artistLists__img {
	width: 100%;
	transition: transform .3s ease;
}
.artistLists__link:hover .artistLists__img {
	transform: scale(1.15);
}
@media screen and (max-width:767px){
	.artistLists__imgWrap {
		border-radius: 2.66666vw;
	}
}


/**
 * ticket
 */
.ticketDl__item:not(:first-child) {
	margin-top: 40px;
}
.ticketDl__dt {
	font-size: 18px;
	font-weight: 700;
}
@media screen and (max-width:767px){
	.ticketDl__item:not(:first-child) {
		margin-top: 30px;
	}
	.ticketDl__dt {
		font-size: 14px;
	}
}