/*====================
media query list
====================*/
/* 769px以上の時
@media only screen and (min-width: 48.0625em) {

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

}
*/

/* =============================================================
	Artist Image :: アーティスト画像
============================================================= */
.artist_image {
	margin-bottom: 30px;
}
@media only screen and (max-width: 48em) {
	.artist_image {
		max-width: 210px;
		margin: 0 auto 20px;
	}
}

/* Content */
.artist_image.is_noimage {
	display: none;
}
.artist_image img {
	margin: 0 auto;
}

.artist_image figure figcaption {
	margin-top : 10px;
	text-align: center;
	font-size : 11px;
}

/* =============================================================
	Artist Description :: プロモーション文章
============================================================= */
.artist_desc {
	line-height: 1.5;
	margin: 20px 0 30px;
	word-wrap:break-word;
	overflow-wrap:break-word;
}
@media only screen and (max-width: 48em) {
	.artist_desc {
		margin: 20px 10px;
	}
}

/* Content */
.artist_desc p + p {
	margin-top: 1.5em;
}
.artist_desc div {
	margin-top: 1.5em;
}

.artist_desc_more {
	display: none;
}

.artist_desc .more_trigger {
	display: inline-block;
	text-decoration: underline;
	margin-top: 0.5em;
	cursor: pointer;
}

@media only screen and (min-width: 48.0625em) {
	.artist_desc_sp {
		display: none;
	}
}

@media only screen and (max-width: 48em) {
	.artist_desc_pc {
		display: none;
	}
}

/* =============================================================
	Favorite Register :: チケット販売なし
============================================================= */
.favorite_register {
	text-align: center;
	background: #FEF6F4;
	padding: 40px 20px;
}
.favorite_register #is_favorite {
	/*display: none;*/
}
.favorite_register #no_favorite {
	/*display: none;*/
}
.favorite_register #no_ticket_omakase {
	/*display: none;*/
	margin-top: 30px;
}
.favorite_register #is_login {
	/*display: none;*/
}
.favorite_register #no_login {
	/*display: none;*/
}
@media only screen and (max-width: 48em) {
	.favorite_register {
		padding: 20px 10px;
		margin: 10px;
	}
	.favorite_register #no_ticket_omakase {
		margin-top: 20px;
	}
}

/* Text */
.favorite_register .omakase_text,
.favorite_register .favorite_text {
	color: #F95E77;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.5;
}
.favorite_register .omakase_guide {
	margin-top: 4px;
}
.favorite_register .omakase_guide a {
	display: inline-block;
	color: #000;
	margin: 0 2px;
}
.favorite_register .omakase_guide a:hover {
	text-decoration: none;
}
@media only screen and (max-width: 48em) {
	.favorite_register .omakase_text,
	.favorite_register .favorite_text {
		font-size: 12px;
	}
	.favorite_register .omakase_guide {
		font-size: 12px;
	}
	.favorite_register .omakase_guide a:hover {
		text-decoration: underline;
	}
}

/* Button */
.favorite_register .btn_omakase,
.favorite_register .btn_favorite {
	display: block;
	width: 296px;
	margin: 16px auto 0;
	position: relative;
}
.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;*/
}
.favorite_register .btn_omakase a {
	display: block;
}
.favorite_register .btn_omakase .add_omakase,
.favorite_register .btn_favorite .add_favorite {
	display: block;
	height: 60px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin: 0 auto;
	cursor: pointer;
}
.favorite_register .btn_omakase .add_omakase {
	background-image: url("../images/btn_omakase_entry.gif");
}
.favorite_register .btn_favorite .add_favorite {
	background-image: url("../images/btn_fovorite_artist.gif");
}
.favorite_register .btn_omakase .add_omakase:hover,
.favorite_register .btn_favorite .add_favorite:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 48em) {
	.favorite_register .btn_omakase,
	.favorite_register .btn_favorite {
		width: 148px;
		margin-top: 8px;
	}
	.favorite_register .btn_omakase .add_omakase,
	.favorite_register .btn_favorite .add_favorite {
		height: 30px;
	}
	.favorite_register .btn_omakase .add_omakase {
		background-image: url("../images/btn_omakase_small.gif");
	}
	.favorite_register .btn_favorite .add_favorite {
		background-image: url("../images/btn_artist.gif");
	}
	.favorite_register .btn_omakase .add_omakase:hover,
	.favorite_register .btn_favorite .add_favorite:hover {
		opacity: 1;
	}
}

/* No Login */
.favorite_register .no_login_text {
	font-size: 15px;
	margin-top: 16px;
}
.favorite_register .no_login_link {
	margin-top: 6px;
}
.favorite_register .no_login_link a {
	display: block;
	max-width: 160px;
	color: #FFF;
	text-decoration: none;
	background: #888;
	padding: 9px 10px;
	margin: 0 auto;
}
.favorite_register .no_login_link a:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 48em) {
	.favorite_register .no_login_text {
		font-size: 12px;
	}
	.favorite_register .no_login_link a {
		max-width: 90px;
		font-size: 12px;
		padding: 6px 10px;
	}
	.favorite_register .no_login_link a:hover {
		opacity: 1;
	}
}

/* =============================================================
	Wiki
============================================================= */
.artist_wiki {
	padding: 20px;
	margin-top: 20px;
	border: 1px solid #C1C1C1;
}
@media only screen and (max-width: 48em) {
	.artist_wiki {
		padding: 15px 10px;
		margin: 10px;
	}
}

/* Content */
.artist_wiki blockquote {
	max-height: 4.5em;
	line-height: 1.5;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.artist_wiki cite {
	display: block;
	color: #777;
	font-size: 11px;
	font-style: italic;
	margin-top: 10px;
}
.artist_wiki .blanklink {
	font-size: 12px;
	text-align: right;
	margin-top: 14px;
}
@media only screen and (max-width: 48em) {
	.artist_wiki cite {
		font-size: 10px;
	}
}

/* =============================================================
	Official :: 公式サイト
============================================================= */
.official {
	margin-top: 20px;
	border: 1px solid #C1C1C1;
}

@media only screen and (max-width: 48em) {
	.official {
		margin: 10px;
	}
}

/* Header */
.official_header {
	position: relative;
}

.official_header .official_title {
	color: #555;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	padding: 20px 20px 20px 50px;
	position: relative;
}

.official_header .official_title:before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	background: url("../images/icon-sectiontitle_rs.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) {
	.official_header .official_title {
		font-size: 12px;
		padding: 12px 20px 12px 40px;
	}
	.official_header .official_title:before {
		width: 18px;
		height: 18px;
		left: 10px;
	}
	.official_header .toggle_trigger:after {
		content: "";
		width: 16px;
		height: 16px;
		background: url("../images/icon-more-grey-sp.png") no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 10px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.official_header .toggle_trigger.js-isOpen:after {
		background-image: url("../images/icon-close-grey.png");
	}
}

.official_data {
	font-size: 0;
	letter-spacing: -1em;
	padding: 0 10px 5px;
}

.official_data li {
	display: inline-block;
	width: 33.333%;
	font-size: 13px;
	letter-spacing: normal;
	vertical-align: top;
	padding: 0px 40px 10px 10px;
	margin-bottom: 5px;
	position: relative;
}

.official_data li:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0px;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	padding: 0;
	margin: 0;
}

.official_data li:nth-of-type(n+4) {
	display: none;
}

.official_data li > a {
	color: #000;
	word-wrap: break-word;
}

.official_data li a:hover {
	text-decoration: none;
}

@media only screen and (max-width: 48em) {
	.official_data {
		display: none;
		padding: 15px 0 0;
		border-top: 1px solid #C1C1C1;
	}
	.official_data li {
		width: 50%;
	}
	.official_data li:nth-of-type(n+4) {
		display: inline-block;
	}
}

.official .more_trigger {
	text-align: center;
	padding: 10px 20px;
	border-top: 1px solid #C1C1C1;
	cursor: pointer;
}

.official .more_trigger span {
	display: inline-block;
	vertical-align: middle;
	padding-right: 20px;
	position: relative;
}

.official .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%);
}

@media only screen and (max-width: 48em) {
	.official .more_trigger {
		display: none;
	}
}

/* =============================================================
	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_rs.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;
	}
	.related_artist_header .toggle_trigger:after {
		content: "";
		width: 16px;
		height: 16px;
		background: url("../images/icon-more-grey-sp.png") no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 50%;
		right: 10px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.related_artist_header .toggle_trigger.js-isOpen:after {
		background-image: url("../images/icon-close-grey.png");
	}
}

.related_artist_data {
	font-size: 0;
	letter-spacing: -1em;
	padding: 0 10px 5px;
}
.related_artist_data li {
	display: inline-block;
	width: 33.333%;
	font-size: 13px;
	letter-spacing: normal;
	vertical-align: top;
	padding: 0px 40px 10px 10px;
	margin-bottom: 5px;
	position: relative;
}
.related_artist_data li:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0px;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	padding: 0;
	margin: 0;
	border-bottom: 1px dotted #ccc;
}
.related_artist_data li:nth-of-type(n+4) {
	display: none;
}
.related_artist_data li > a {
	color: #000;
}
.related_artist_data li a:hover {
	text-decoration: none;
}
.related_artist_data li .Y15_favorite_box {
	bottom: calc(50% + 24px);
	z-index: 1 !important;
}
.related_artist_data li .btn_favorite {
	width: 26px;
	margin: -8px auto 0;
	position: absolute;
	top: 50%;
	right: 10px;
	/*z-index: 500;*/
	cursor: pointer;
}
@media only screen and (max-width: 48em) {
	.related_artist_data {
		display: none;
		padding: 15px 0 0;
		border-top: 1px solid #C1C1C1;
	}
	.related_artist_data li {
		width: 50%;
	}
	.related_artist_data li:nth-of-type(n+4) {
		display: inline-block;
	}
}

.related_artist .more_trigger {
	text-align: center;
	padding: 10px 20px;
	border-top: 1px solid #C1C1C1;
	margin-top: 5px;
	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%);
}
@media only screen and (max-width: 48em) {
	.related_artist .more_trigger {
		display: none;
	}
}


/* =============================================================
	Review :: 公演レビュー
============================================================= */
.review {
	background: #FFF;
	margin-bottom: 20px;
	border-bottom: 2px solid #BED2EB;
	position: relative;
}
@media only screen and (max-width: 48em) {
	.review {
		margin-bottom: 0;
		border-bottom: none;
	}
}

/* Header */
.review_header .review_title {
	color: #555;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.04em;
	padding: 20px 20px 20px 60px;
	position: relative;
}
.review_header .review_title:before {
	content: "";
	display: block;
	width: 34px;
	height: 25px;
	background: url("../images/icon-review.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) {
	.review_header .review_title {
		color: #FFF;
		background: #FF9F03;
		padding: 12px 0 12px 50px;
		margin-bottom: 0;
	}
	.review_header .review_title:before {
		background-image: url("../images/icon-review_reverse.png");
		left: 10px;
	}
}

/* Content */
.review_data {
	font-size: 0;
	letter-spacing: -1em;
	padding-right: 40px;
	margin: 0 20px 20px;
}
.review_data li {
	display: inline-block;
	width: 33.333%;
	font-size: 13px;
	letter-spacing: normal;
	line-height: 1.5;
	vertical-align: top;
	background: #FFF7EA;
	padding: 20px;
	margin-right: 20px;
}
.review_data li:nth-of-type(3n) {
	margin-right: -40px;
}
.review_data .review_item_title {
	margin-bottom: 1em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.review_data .review_item_title a {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
}
.review_data .review_item_title a:hover {
	text-decoration: none;
}
.review_data .review_item_body {
	max-height: 7.5em;
	line-height: 1.5;
	margin-bottom: 1em;
	word-wrap: break-word;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}
.review_data .review_item_author {
	display: block;
	font-family: "ヒラギノ角ゴ ProN W3","ＭＳ Ｐゴシック", helvetica, sans-serif;
	font-style: italic;
	color: #777;
	text-align: right;
	padding-right: 26px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
}
.review_data .review_item_author:after {
	content: "\3055\3093";
	display: inline-block;
	font-style: italic;
	position: absolute;
	right: 0;
}
@media only screen and (max-width: 48em) {
	.review_data {
		padding-right: 0;
		margin: 0;
	}
	.review_data li {
		display: block;
		width: 100%;
		padding: 15px;
		margin-right: 0;
	}
	.review_data li:nth-of-type(n+2) {
		border-top: 1px dotted #C1C1C1;
	}
	.review_data li:nth-of-type(3n) {
		margin-right: 0;
	}
	.review_data .review_item_title {
		font-size: 12px;
	}
	.review_data .review_item_title a:hover {
		text-decoration: underline;
	}
	.review_data .review_item_body {
		max-height: 3.9em;
		line-height: 1.3;
		-webkit-line-clamp: 3;
	}
}

/* Nav */
.review_nav {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #C1C1C1;
}
.review_nav .review_nav_noreview {
	margin: 5px auto 15px;
}
.review_nav .review_nav_all {
	position: absolute;
	top: 22px;
	right: 20px;
}
.review_nav .review_nav_all a {
	display: inline-block;
	color: #000;
	font-weight: bold;
	padding-left: 12px;
	position: relative;
}
.review_nav .review_nav_all a:before {
	content: "";
	display: block;
	border-top: 3px solid transparent;
	border-left: 5px solid #FF9F07;
	border-bottom: 3px solid transparent;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) translateZ(0);
	transform: translateY(-50%) translateZ(0);
}
.review_nav .review_nav_all a:hover {
	text-decoration: none;
}
.review_nav .review_nav_post a {
	display: block;
	width: 160px;
	height: 36px;
	color: #FFF;
	text-decoration: none;
	line-height: 36px;
	background: #FF9F07;
	margin: 0 auto 3px;
	border-radius: 3px;
	position: relative;
	box-shadow: 0 4px 0 #BC7B13;
}
.review_nav .review_nav_post a:hover {
	top: 4px;
	box-shadow: none;
	text-decoration: none;
}
@media only screen and (max-width: 48em) {
	.review_nav {
		background: #E9E9E9;
		border-top: none;
	}
	.review_nav .review_nav_all {
		position: static;
	}
	.review_nav .review_nav_all a {
		text-decoration: none;
		padding-left: 0;
		padding-right: 10px;
		margin-bottom: 15px;
	}
	.review_nav .review_nav_all a:before {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-top: none;
		border-left: 2px solid #999;
		border-bottom: 2px solid #999;
		left: auto;
		right: 0;
		-webkit-transform: translateY(-50%) rotate(-135deg) translateZ(0);
		transform: translateY(-50%) rotate(-135deg) translateZ(0);
	}
	.review_nav .review_nav_post a:hover {
		top: auto;
		box-shadow: 0 4px 0 #BC7B13;
	}
}

#no_review {
	line-height: 3;
}

/* =============================================================
	Amazon
============================================================= */
.amazon {
	background: #FFF;
	padding: 20px;
	margin-top: 20px;
	border-bottom: 2px solid #BED2EB;
}
@media only screen and (max-width: 48em) {
	.amazon {
		padding: 15px 10px;
		margin: 10px;
		border: 1px solid #C1C1C1;
	}
}

/* Header */
.amazon_header .amazon_title {
	margin-bottom: 20px;
}
.amazon_header .amazon_title span {
	display: block;
	max-width: 73px;
}
@media only screen and (max-width: 48em) {
	.amazon_header .amazon_title {
		margin-bottom: 15px;
	}
}

/* Content */
.amazon_data {
	font-size: 0;
	letter-spacing: -1em;
	margin: 0 -10px;
}
.amazon_data li {
	display: inline-block;
	width: 10%;
	font-size: 13px;
	letter-spacing: normal;
	vertical-align: top;
	padding: 0 10px;
}
.amazon_data li a {
	display: block;
	color: #000;
	text-decoration: underline;
}
.amazon_data li a:hover {
	text-decoration: none;
}
.amazon_data li a figure span {
	display: block;
	background: #FFF;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.amazon_data li a figure span:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.amazon_data li a figcaption {
	max-height: 6.5em;
	line-height: 1.3;
	font-size: 11px;
	margin-top: 10px;
	word-wrap: break-word;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}
.amazon .blanklink {
	text-align: right;
	font-size: 12px;
	margin-top: 20px;
}
@media only screen and (max-width: 48em) {
	.amazon_data li {
		width: 33.333%;
	}
	.amazon_data li:nth-of-type(n+4) {
		display: none;
	}
	.amazon_data li a:hover {
		text-decoration: underline;
	}
}