@charset "utf-8";
/* CSS Document */
/* ---------------------------------------------------------

.

----------------------------------------------------------*/
#story .container{
	width: 100%;
	min-width: 768px;
	margin: 0 auto;
	padding: 60px 20px 0 20px;
	position: relative;
	object-fit: contain;
}
@media screen and (max-width: 768px) {
	#story .container{
		max-width: 100%;
		min-width: 280px;
		padding: 40px 10px 0 10px;
		box-sizing: border-box;
	}
	
}
/* ---------------------------------------------------------

video

----------------------------------------------------------*/
#story .videoWrap{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
#story .videoWrap .dot{
	background: url("../img/common/ptn/PTN_dot.png") repeat;
	position: absolute;
	width: 100%;
	height: 100%;
}
#story .videoWrap .gray{
	background: #000;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}
#story .videoWrap video{
	display: block;
	object-fit: cover;
	min-width: 100%;
}
@media screen and (max-width: 768px) {
	#story .videoWrap{
		height: 100%;
	}
	#story .videoWrap video{
		min-height: 100%;
	}
}
/* ---------------------------------------------------------

h2

----------------------------------------------------------*/
#story h2{
	display: block;
	margin: auto;
	width: 80vw;
	max-width: 760px;
	margin-bottom: 30px;
}
#story h2 img{
	display: block;
	width: 100%;
}
@media screen and (max-width: 768px) {
	#story h2{
		width: 80vw;
	}
}
/* ---------------------------------------------------------

storyBody

----------------------------------------------------------*/
#story .storyBody{
	position: relative;
}
#story .storyBody p{
	color: #fff;
	text-align: center;
	font-size:min(1.8vw,24px);
	line-height: 2.0;
	font-weight: 800;
	margin-bottom: 2em;
}
#story .storyBody p span{
	font-size: 1.4em;
}
#story .storyBody p span.imp{
	color: #FFD500;
}
@media screen and (max-width: 768px) {
	#story .storyBody p{
		font-size: 3.2vw;
		line-height: 1.8;
	}
	
}
/* ---------------------------------------------------------

playMovie

----------------------------------------------------------*/
#story .playMovie{
	width: 200px;
	position: absolute;
	bottom: 220px;
	right: 5vw;
	cursor: pointer;
}
#story .playMovie .playButtonText{
	display: block;
	width: 100%;
}
#story .playMovie .playButton{
	display: block;
	width: 200px;
	height: 120px;
	position: relative;
}
#story .playMovie .playButton .outerImg{
	width: 60% !important;
}
#story .playMovie .playButton .innerImg{
	width: 15% !important;
	left: 3%;
}
@media screen and (max-width: 768px) {
	#story .playMovie{
		position: static;
		width: 150px;
		margin: auto;
	}
	#story .playMovie .playButton{
		width: 150px;
		height: 100px;
	}
}