@charset "utf-8";
#theater{
	padding-bottom: 160px;
}
/* DISCOGRAPH INDEX */
.tagLists{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	margin-bottom: 80px;
}
.tagLists:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #6dc6f2;
}
.tagLists:after{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #6dc6f2;
}
.tagLists__item{
	display: inline-block;
	position: relative;
	width: calc(100% / 4);
	border-top: 1px solid #6dc6f2;
	border-bottom: 1px solid #6dc6f2;
}
@media screen and (min-width: 769px){
	.tagLists__item:nth-child(n+6){
		margin-top: 16px;
	}
	.tagLists__item:nth-child(5n + 1)::before{
		content: '';
		position: absolute;
		top: -1px;
		left: -50vw;
		right: -50vw;
		height: 1px;
		background-color: #6dc6f2;
	}
}
.tagLists__link{
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 14px 8px;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	transition: .25s ease;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	transition: background-size .3s ease, color .3s ease;
	background: linear-gradient(#6dc6f2, #6dc6f2) right bottom / 0 100% no-repeat;
}
.tagLists__link:hover{
	background-position: left bottom;
	background-size: 100% 100%;
	color: #fff;
}
.tagLists__link.active{
	background-color: #6dc6f2;
	color: #fff;
}
.tagLists__link.active:after{
	content: '';
	position: absolute;
	width: 17px;
	padding-top: 32px;
	bottom: -24px;
	left: calc(50% - 8.5px);
	background: url(../img/top/arrow_intro_story.svg) no-repeat center center / contain;
	z-index: 2;
}
.theater_ttl{
	position: relative;
	margin-bottom: 80px;
	text-align: center;
}
.theater_ttl_en{
	font-size: 52px;
	line-height: 1;
	font-weight: 700;
	display: inline-block;
}
.theater_ttl_ja{
	position: relative;
	display: inline-block;
	padding-left: 40px;
	padding-right: 4px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
}
.theater_ttl_ja:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 8px;
	width: 25px;
	padding-top: 25px;
	background: url(../img/common/cont_title_lineset.svg) no-repeat bottom left / contain;
}
.theater_ttl_ja:after{
	content: '';
	position: absolute;
	height: 1.2px;
	background-color: #000;
	bottom: 0;
	right: 0;
	left: 31.5px;
}

.theater_subttl{
	font-size: 32px;
	text-align: center;
	font-weight: 700;
	line-height: 1.4;
}

.theaterLists{
	width: 100%;
	padding: 0 6.6667% 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 44px;
	margin-bottom: 80px;
}
.theaterLists:last-child{
	margin-bottom: 0;
}
.theaterList{
	width: 100%;
	margin: 20px 0;
	position: relative;
	padding: 0 0 0 40px;
}
.theaterList:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 1px;
	background-color: rgba(0,0,0,.24);
}
.theaterList__ttl{
	font-size: 24px;
	line-height: 1.5;
	font-weight: 700;
	color: #6dc6f2;
	padding-bottom: 10px;
	position: relative;
	letter-spacing: 0;
}
.theaterList__ttl:before{
	content: 'CAPTION';
	position: absolute;
	z-index: 2;
	bottom: -6px;
	left: -40px;
	font-size: 12px;
	line-height: 1;
	background-color: #fff;
	color: #000;
}
.theaterList__ttl span{
	font-size: 16px;
}
.theaterList__detail{
	position: relative;
	width: 100%;
	padding-top: 24px;
	display: flex;
}
.theaterList.img100 .theaterList__detail{
	display: flex;
	flex-direction: column;
}
.theaterList__detail:before{
	content: '';
	position: absolute;
	top: -1px;
	right: 0;
	left: -80px;
	height: 1px;
	background-color: rgba(0,0,0,.24);
}
.theaterDetail_img{
	width: 520px;
	margin-right: 40px;
	flex-shrink:0;
}
.theaterList.img100 .theaterDetail_img{
	width: 1000px;
	margin-bottom: 40px;
	margin-right: 0;
}
.theaterDetail_img img{
	width: 100%;
}
.theaterDetail_txtBold{
	font-size: 16px;
	line-height: 2;
	font-weight: 700;
	margin-bottom: 12px;
}
.theaterDetail_txtCaption{
	font-size: 14px;
	line-height: 2;
}
.theaterDetail_txt{
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width: 768px){
	#theater{
		padding-bottom: 25.6%;
	}
	.contIn{
		overflow: hidden;
	}
	.tagLists{
		margin-bottom: 9.6%;
	}
	.tagLists__item{
		width: calc(100% / 3);
	}
	.tagLists__item:nth-child(n+4){
		margin-top: 24px;
	}
	.tagLists__item:nth-child(3n + 1)::before{
		content: '';
		position: absolute;
		top: -1px;
		left: -50vw;
		right: -50vw;
		height: 1px;
		background-color: #6dc6f2;
	}
	.tagLists__link{
		padding: 12px;
		font-size: 1.2rem;
		line-height: 1.4;
	}
	.tagLists__link.active:after{
		width: 13px;
		padding-top: 24px;
		bottom: -20px;
		left: calc(50% - 6.5px);
		z-index: 2;
	}
	.theater_ttl{
		margin-bottom: 9.6%;
	}
	.theater_ttl_en{
		font-size: 3.2rem;
	}
	.theater_ttl_ja{
		padding-left: 31px;
		padding-right: 6px;
		font-size: 1.2rem;
	}
	.theater_ttl_ja:before{
		left: 7px;
		width: 18px;
		padding-top: 17px;
	}
	.theater_ttl_ja:after{
		left: 22.5px;
	}
	.theater_subttl{
		font-size: 1.6rem;
	}
	.theaterLists{
		flex-direction: column;
		padding: 0;
		margin-top: 3.2%;
	}
	.theaterList{
		width: 100%;
		padding-left: 6.4%;
		margin: 3.2% 0;
	}
	.theaterList:before{
		left: 3.2%;
	}
	.theaterList__ttl{
		font-size: 1.6rem;
		padding-bottom: 14px;
		/*padding-bottom: 3.7334%;*/
	}
	.theaterList__ttl:before{
		font-size: 1rem;
		bottom: -5px;
		left: -3.2%;
	}
	.theaterList__ttl span{
		font-size: 1.2rem;
	}
	.theaterList__detail{
		/*padding-top: 3.7334%;*/
		padding-top: 14px;
		flex-direction: column;
	}
	.worldList__detail:before{
		left: -6.8376%;
	}
	.theaterDetail_img{
		width: 93.1624%;
		margin-right: 0;
		margin-bottom: 16px;
	}
	.theaterDetail_txtBold{
		font-size: 1.2rem;
		margin-bottom: 8px;
	}
	.theaterDetail_txtCaption{
		font-size: 1rem;
	}
	.theaterDetail_txt{
		font-size: 1.2rem;
	}
}




/*Ticket*/
.theaterContIn p.ticket{
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	line-height: 2;
}
.theaterContIn p.ticket:nth-of-type(1){
	padding-top: 20px;
}

#mvtk-widgets-container{
	margin: 20px auto;
	text-align: center;
}

@media screen and (max-width: 768px){
	.theaterContIn p.ticket{
		font-size: 1.2rem;
	}
	.theaterContIn p.ticket:nth-of-type(1){
		padding-top: 12px;
	}
	#mvtk-widgets-container{
		margin: 12px auto;
	}
}
.moviticket_part2{
	width: 100%;
	height: 500px;
}


/* greeting*/
.greetingContIn{
	width: 1040px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 2;
}
.greetingContIn img{
	max-width: 100%;
}
@media screen and (max-width: 768px){
	.greetingContIn{
		width: 87.2%;
		font-size: 1.2rem;
	}
}