@charset "utf-8";

/* ******************************************
	General
****************************************** */


/* *******************
	introduction
******************* */
#introduction {
	padding: 0;
	margin: 0;
	position: relative;
	background-color: #000;
}
#introduction a {
	display: block;
	position: relative;
}
#introduction .movie {
	width: 75%;
	aspect-ratio: 112/63;
	margin-left: 25%;
}
#introduction picture img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	line-height: 0.1em;
}
#introduction picture img.movie_poster {
	position: absolute;
	top: 0;
	right: 0;
	width: 75%;
/* 	animation: movie_fade_out 10s; */
/* 	opacity:0; */
}
#introduction picture iframe {
	object-fit: cover;
	width: 100%;
	height: 100%;
	line-height: 0.1em;
	pointer-events: none;
/* 	animation: movie_fade_in 12s; */
}

@keyframes movie_fade_in {
	0%   { opacity:0; }
	50%   { opacity:0.3; }
	100% { opacity:1; }
}
@keyframes movie_fade_out {
	0%   { opacity:1; }
	50%   { opacity:0.7; }
	100% { opacity:0; }
}


#introduction .title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	display: flex;
	align-items: center;
}
#introduction .title .title_inner {
	width: 50%;
	height: 100%;
	padding: 0 4%;
	background-image: linear-gradient(88deg, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.1) 90%, rgba(0, 0, 0, 0) 100%);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#introduction .title h2 {
	width: 100%;
	display: block;
	font-size: min(2.7vw,40px);
	line-height: 1.2em;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #fff;
	color: #fff;
	letter-spacing: normal;
}
#introduction .title h3 {
	width: 100%;
	display: block;
	font-size: min(2vw,25px);
	line-height: 1.4em;
	color: #fff;
	margin-bottom: 0;
}

@media screen and (max-width:1024px) {
}
@media screen and (max-width:768px) {
	#introduction .title {
		display: none;
	}
	#introduction .movie {
		width: 100%;
		margin-left: 0;
	}
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:450px) {
}


/* *******************
	information
******************* */
#information dl {
	padding: 0;
	margin: 0;
}
#information dl dt {
	padding: 12px 0;
	margin: 0;
	position: absolute;
	width: 200px;
}
#information dl dd {
	padding: 12px 0;
	padding-left: 200px;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #999;
}
#information .category {
	display: inline-block;
	background-color: #000;
	border-radius: 5px;
	text-align: center;
	width: 80px;
	line-height: 1em;
	padding: 3px 0;
	font-size: 14px;
	color: #fff;
	margin-left: 10px;
}

@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
	#information dl dt {
		padding: 12px 0 0;
		position: relative;
		width: unset;
	}
	#information dl dd {
		padding-left: 0;
	}
}
@media screen and (max-width:450px) {
}





/* *******************
	contents
******************* */
#contents {
	padding-bottom: 0;
}

@media screen and (min-width:1400px) {
}
@media screen and (max-width:768px) {
}
@media screen and (max-width:600px) {
}
@media screen and (max-width:450px) {
}

