@charset "UTF-8";
/*==========discography==========*/
.discography__wrapper {
	margin: 0 auto;
	padding: 24px 18px 0;
}

.discography__wrapper::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
}

.discography__list {
	list-style: none;
}

.discography__item {
	margin-bottom: 24px;
	padding: 0 6px;
}

.discography-item__inner {
	display: block;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
	border: 1px solid rgba(225,225,225,.1);
}

.discography-img__wrapper {
	display: block;
	position: relative;
	padding-top: 100%;
	padding-right: 100%;
	overflow: hidden;
	border-radius: 6px 6px 0 0;
}

.discography__summary {
	padding: 16px;
}

.discography__title {
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.discography__date {
	font-size: 14px;
}

.background-layer .discography__wrapper {
	background: transparent !important;
}


@media screen and (min-width: 560px) {
	.discography__list {
		display: flex;
		flex-wrap: wrap;
	}
	
	.discography__item {
		width: 50%;
	}
}
@media screen and (max-width: 767px) {
	.discography__wrapper {
		background: transparent !important;
	}
}

@media screen and (min-width: 768px) {
	.discography__wrapper {
		padding: 30px 28px 0;
	}

	.discography .title-optionable {
		float: left;
		display: block;
		width: 34%;
		padding: 0 0 0 40px;
	}
	
	.discography .title-optionable .headline {
		margin-bottom: 24px;
	}

	.discography .title-optionable ~ .discography__wrapper,
	.discography .title-optionable ~ .contents_empty {
		float: left;
		width: 66%;
	}

	.discography .title-optionable ~ .discography__wrapper .discography__item {
		width: 50%;
	}
	
	.discography__list {
		margin: 0 0 -24px;
		justify-content: center;
	}

	.details .discography__list {
		padding: 0;
	}
	
	.discography__item {
		width: 312px;
		padding: 0 12px;
	}

}