/*====================
media query list
====================*/
/* 768px以下の時
@media only screen and (max-width: 48em) {

}
*/

/* =============================================================
	Related Artist :: 関連アーティスト
============================================================= */
.related_artist {
	margin-top: 20px;
	border: 1px solid #C1C1C1;
}
@media only screen and (max-width: 48em) {
	.related_artist {
		margin: 10px;
	}
}

/* Header */
.related_artist_header {
	position: relative;
}
.related_artist_header .related_artist_title {
	color: #555;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 20px 20px 20px 50px;
	position: relative;
}
.related_artist_header .related_artist_title:before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url(../../images/icon/sectiontitle.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media only screen and (max-width: 48em) {
	.related_artist_header .related_artist_title {
		font-size: 12px;
		padding: 12px 20px 12px 40px;
	}
	.related_artist_header .related_artist_title:before {
		width: 18px;
		height: 18px;
		left: 10px;
	}
}

/* Content */
.related_artist_data {
	font-size: 0;
	letter-spacing: -1em;
	padding: 0 10px 5px;
}
.related_artist_data li {
	display: inline-block;
	width: 16.6666%;
	font-size: 13px;
	letter-spacing: normal;
	vertical-align: top;
	padding: 0 10px;
	margin-bottom: 15px;
	position: relative;
}
.related_artist_data li:nth-of-type(n+7) {
	display: none;
}
.related_artist_data li > a {
	display: block;
	color: #000;
}
.related_artist_data li a figure span {
	display: block;
	background: #FFF;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.related_artist_data li a figure span:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.related_artist_data li a figcaption {
	font-size: 12px;
	line-height: 1.3;
	margin-top: 10px;
	word-wrap: break-word;
	padding-right: 40px;
	overflow: hidden;
	max-height: 3.9em;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.related_artist_data li a:hover figcaption {
	text-decoration: none;
}
.related_artist_data li .y15_favorite_box {
	z-index: 1 !important;
}
.related_artist_data li .btn_favorite {
	width: 26px;
	margin: auto;
	position: absolute;
	right: 10px;
	bottom: 0;
	/*z-index: 500;*/
	cursor: pointer;
}
.related_artist_data li .btn_favorite.is-active:before,
.related_artist_data li .btn_favorite.is-active:after {
	opacity: 1;
}
.related_artist_data li .btn_favorite:before,
.related_artist_data li .btn_favorite:after {
	content: "";
	width: 0;
	height: 0;
	border: 8px solid transparent;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	z-index: 1;
}
.related_artist_data li .btn_favorite:before {
	bottom: 100%;
	border-top: 8px solid #F95E77;
	/*z-index: 400;*/
}
.related_artist_data li .btn_favorite:after {
	bottom: calc(100% + 3px);
	border-top: 8px solid #FFF;
	/*z-index: 450;*/
}
@media only screen and (max-width: 48em) {
	.related_artist_data {
		padding: 15px 0 0;
		border-top: 1px solid #C1C1C1;
	}
	.related_artist_data li {
		width: 33.333%;
	}
	.related_artist_data li:nth-of-type(n+4) {
		display: none;
	}
}

/* More */
.related_artist .more_trigger {
	text-align: center;
	padding: 10px 20px;
	border-top: 1px solid #C1C1C1;
	cursor: pointer;
}
.related_artist .more_trigger span {
	display: inline-block;
	vertical-align: middle;
	padding-right: 20px;
	position: relative;
}
.related_artist .more_trigger span:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background: url(../../images/icon/more-grey-sp.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.related_artist .more_trigger.more-hide,
.related_artist .more_trigger.more-sp {
	display: none;
}

@media only screen and (max-width: 48em) {
	.related_artist .more_trigger.more-sp {
		display: block;
	}
}

/* =============================================================
	Related News :: 関連ニュース
============================================================= */
.related_news {
	border: 1px solid #C1C1C1;
}
@media only screen and (max-width: 48em) {
	.related_news {
		margin: 10px;
	}
}