@charset "utf-8";
/**
 * theaterCont
 */
.theaterCont {
	display: none;
	width: 100%;
}
.theaterCont.is-active {
	display: block;
}

/**
 * tagLists
 * common.cssより付与
 */
.tagLists__item {
	width: calc((100% - 72px) / 4);
}
.tagLists__item a {
	padding: 0 20px;
}
@media screen and (max-width:767px){
	.tagLists__item {
		width: calc((100% - 12px) / 2);
	}
	.tagLists__item a {
		padding: 0 6px;
	}
}

/* tagLists__item__in */
.tagLists__item__in {
	display: inline-flex;
	align-items: center;
}
.tagLists__item__in.is-blank:after {
	content: '';
	display: block;
	width: 16px;
	height: 12px;
	background-color: #000;
	margin-left: 10px;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-image: url(../../assets/img/common/icon/icon_blank.svg);
	mask-image: url(../../assets/img/common/icon/icon_blank.svg);
	transition: background-color .3s ease;
	transform: translateY(2px);
}
.tagLists__item a:hover .tagLists__item__in.is-blank:after {
	background-color: rgb(var(--color-red));
}
@media screen and (max-width:767px){
	.tagLists__item__in.is-blank:after {
		width: 14px;
		height: 10px;
	}
}

/**
 * theaterLists
 */
/* item */
.theaterLists__item:not(:first-child) {
	margin-top: 80px;
}
@media screen and (max-width:767px){
	.theaterLists__item:not(:first-child) {
		margin-top: 10vw;
	}
}

/* dt */
.theaterLists__dt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

/* top */
.theaterLists__dt--top {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: min(1.66666vw, 20px);
	line-height: 1;
	width: 100%;
}
@media screen and (max-width:767px){
	.theaterLists__dt--top {
		font-size: 3.2vw;
	}
}

/* bottom */
.theaterLists__dt--bottom {
	font-size: min(3.33333vw, 40px);
	line-height: 1.6;
	text-align: center;
	width: 100%;
}
@media screen and (max-width:767px){
	.theaterLists__dt--bottom {
		font-size: 5.33333vw;
	}
}

/* deco */
.theaterLists__dt--deco {
	background: url(../img/common/deco/deco_line.svg) no-repeat center / contain;
	width: 100%;
	height: 8px;
	margin: 30px 0 16px;
}
@media screen and (max-width:767px){
	.theaterLists__dt--deco {
		height: 1.2vw;
		margin: 4vw 0 2.5vw;
	}
}

/* dd */
.theaterLists__dd {
	margin-top: 60px;
}
@media screen and (max-width:767px){
	.theaterLists__dd {
		margin-top: 8vw;
	}
}

/* flex */
.theaterLists__flex {
	display: flex;
}
@media screen and (max-width:767px){
	.theaterLists__flex {
		flex-direction: column;
	}
}

/* img */
.theaterLists__imgWrap {
	flex: none;
	width: 33.33333vw;
	max-width: 400px;
}
.theaterLists__imgWrap img {
	width: 100%;
}
@media screen and (max-width:767px){
	.theaterLists__imgWrap {
		width: 100%;
		margin: 0 auto 6vw;
	}
}

/* text */
.theaterLists__textArea {
	width: 100%;
	padding-left: 40px;
}
.theaterLists__title {
	color: rgb(var(--color-gold));
	font-size: min(1.66666vw ,20px);
	margin-bottom: 30px;
}
.theaterLists__text {
	color: #fff;
	font-size: min(1.33333vw ,16px);
}
@media screen and (max-width:767px){
	.theaterLists__textArea {
		padding-left: 0;
	}
	.theaterLists__title {
		font-size: min(3.73333vw ,28px);
		margin-bottom: 2vw;
	}
	.theaterLists__text {
		font-size: min(3.2vw ,24px);
	}
}


/*-----------------------------------------------
 * 舞台挨拶 - Index
-------------------------------------------------*/
/**
 * articleList
 */
.articleList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: min(3.33333vw, 40px);
	margin-bottom: 80px;
}
@media screen and (max-width:767px){
	.articleList {
		gap: 24px;
		margin-bottom: 40px;
	}
}

/* list */
.articleList__list {
	border-bottom: 1px solid rgba(255,255,255,.4);
	width: calc((100% - min(6.66666vw, 80px)) / 2);
}
.articleList__list-link {
	color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	transition: background-color .3s ease;
}
.articleList__list-link:hover {
	background-color: #000;
}
@media screen and (max-width:767px){
	.articleList__list {
		width: calc((100% - 24px) / 2);
		max-width: 100%;
	}
}

/* thumb */
.articleList__thumbWrap {
	border: 1px solid rgba(255,255,255,.4);
	aspect-ratio: 16 / 9;
	width: 100%;
	overflow: hidden;
	transition: border .3s ease;
}
.articleList__list-link:hover .articleList__thumbWrap {
	border: 1px solid rgba(255,255,255,1);
}
.articleList__thumb {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%;
}

/* bottom */
.articleList__bottom {
	padding: min(1.66666vw,20px);
}
@media screen and (max-width:767px){
	.articleList__bottom {
		padding: 12px 0;
	}
}

/**
 * date
 */
.articleList__dateWrap {
	display: flex;
	justify-content: space-between;
	margin-bottom: 14px;
}
.articleList__list-time {
	font-size: min(1.33333vw,16px);
	line-height: 1;
	flex: none;
	padding-top: 2px;
	padding-right: 8px;
	white-space: nowrap;
}
.articleList__list-line {
	display: block;
	background-color: rgba(255,255,255,.4);
	width: 100%;
	height: 1px;
}
@media screen and (max-width:767px){
	.articleList__dateWrap {
		display: block;
		margin-bottom: 10px;
	}
	.articleList__list-time {
		display: block;
		font-size: 12px;
		padding-right: 4px;
	}
	.articleList__list-line {
		display: none;
	}
}

/* tag */
.item--tagLists {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px;
	margin-left: auto;
}
.item--tag {
	background-color: #fff;
	color: #000;
	display: block;
	font-size: min(1.16666vw,14px);
	line-height: 1;
	padding: 2px;
	white-space: nowrap;
}
@media screen and (max-width:767px){
	.item--tagLists {
		justify-content: flex-start;
		margin-top: 6px;
	}
	.item--tag {
		display: inline-block;
		font-size: 10px;
	}
}

/**
 * title
 */
.articleList__list-title {
	font-size: min(1.33333vw,16px);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	transition: color .3s ease;
}
.articleList__list-link:hover .articleList__list-title {
	color: rgb(var(--color-red));
}
@media screen and (max-width:767px){
	.articleList__list-title {
		font-size: 12px;
	}
}


/*-----------------------------------------------
 * 舞台挨拶 -Detail
-------------------------------------------------*/
.newsDetail {
	width: 880px;
	margin: 0 auto;
}
@media screen and (max-width:767px){
	.newsDetail {
		width: 100%;
	}
}

/**
 * newsDetail__titleArea
 */
.newsDetail__titleArea {
	border-top: 1px solid rgba(255,255,255,.24);
	border-bottom: 1px solid rgba(255,255,255,.24);
	padding: 32px 20px;
}
@media screen and (max-width:767px){
	.newsDetail__titleArea {
		padding: 3.7333vw 0;
	}
}

/* time */
.newsDetail__timeWrap {
	display: flex;
	margin-bottom: 10px;
}
.newsDetail__time {
	font-size: 20px;
	line-height: 1;
	margin-right: 10px;
	text-align: center;
}
@media screen and (max-width:767px){
	.newsDetail__timeWrap {
		margin-bottom: 6px;
	}
	.newsDetail__time {
		font-size: 3.7333vw;
		padding-top: 2px;
	}
}

/* tag */
.newsDetailtagLists {
	display: flex;
	flex-wrap: wrap;
}
.newsDetailtagLists__item {
	margin-bottom: 2px;
	margin-left: 10px;
}
.newsDetailtagLists__item a {
	background-color: #fff;
	color: #000;
	display: block;
	font-size: 14px;
	line-height: 1;
	padding: 2px 8px;
	text-decoration: none;
	transition: background-color .3s ease,
				color .3s ease;
}
.newsDetailtagLists__item a:hover {
	background-color: #000;
	color: rgb(var(--color-red));
}
@media screen and (max-width:767px){
	.newsDetailtagLists__item {
		margin-left: 8px;
	}
	.newsDetailtagLists__item a {
		font-size: 10px;
	}
}

/* title */
.newsDetail__title {
	font-size: 20px;
    line-height: 2;
}
@media screen and (max-width:767px){
	.newsDetail__title {
		font-size: 3.7333vw;
	}
}


/**
 * newsDetail__text
 */
 .newsDetail__textWrap {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 40px;
	padding: 40px 0;
}
@media screen and (max-width:767px){
	.newsDetail__textWrap {
		font-size: 12px;
		padding: 24px 0;
	}
}

/* image */
.newsDetail__textWrap img{
    height: auto !important;
    max-width: 100%;
}

/* iframe */
.newsDetail__textWrap .ytifWrap{
    display: block;
    position: relative;
	width: 640px;
	height: 360px;
}
@media screen and (max-width: 767px) {
	.newsDetail__textWrap .ytifWrap{
	    width: 100%;
		height: auto;
	    padding-top: 56.25%;
	}
}
.newsDetail__textWrap iframe[src*="youtube"]{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}