@charset "utf-8";
#movie {
	position: relative;
	top: 0;
	left: 0;
	z-index:0;
	width: 100%;
	height:90%;
	background:#A8404A;
	overflow:hidden;
	}
#movie video {
	position: absolute;
	/* absolute 中央ぞろえ */
	min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    z-index: 0;
    background-size: cover;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	}

@media screen and (max-width: 959px) {
	body#switch video{ visibility: hidden; }
	#movie { height:50%; background: url(../movie/top.jpg) top center no-repeat; background-size:cover;overflow:hidden; }
}
@media only screen and (max-width: 767px) {
	#movie { height:225px;}
	}