@charset "utf-8";

.pv-wrap {
	position: relative;
	left: -550px;
	top: 0px;
	width: 1200px;
	height: auto;
}

.pv-bg {
	position: relative;
	width: 1200px;
	height: 1000px;
	background: url("../images/pv/bg.png") no-repeat;
	background-size: 1200px 1000px;
	background-position: center top;
}

.pv-bg .youtube-wrap {
	position: absolute;
	left: 173px;
	top: 313px;
	width: 854px;
	height: 480px;
}

.youtube-wrap {
	-webkit-animation: 'yt' 3s ease 0s;
	animation: 'yt' 3s ease 0s;
}

@-webkit-keyframes yt {
	0% {
		opacity: 0;
		-ms-filter: "alpha(opacity=0)";
	}
	100% {
		opacity: 1;
		-ms-filter: "alpha(opacity=100)";
	}
}

@keyframes yt {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

