body,html {
	margin:0;
	padding:0;
}
ul {
	list-style-type: none;
	padding:0;
}
.cast-display {
    margin: 0;
    padding: 0;
	width: 100%;
    max-width: 1920px;
    max-height: 1080px;
}
.cast-photo {
    min-width: 1880px;
    min-height: 1050px;
    padding: 15px 20px;
    margin: 0;
}
.cast-photo > li {
	position: relative;
    padding: 4px;
    float: left;
    width: 336px;
    height: 474px;
	margin: 21px 15.6px;
	color: #ffffff;
    /* background: #000000; */
}
.cast-mark {
	padding: 24px 24px 0 0;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
}
.cast-mark li {
    margin-bottom: 10px;
}
.cast-mark img {
	width: 90%;
}
.frame {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	z-index: 98;
}
.wait-color {
	color: #ff0000;
}
.cast-info {
    font-size: 130%;
    line-height: 1.8em;
    color: #1742ff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px 32px 17px;
    z-index: 98;
}
.sugu {
	width: 60px;
	position: absolute;
	right: 30px;
	bottom: 50px;
	z-index: 99;
}
.cast-video {
    width: 100%;
    height: auto;
}
/*header設定*/
#video-wrap{
    position: relative;/*h1の中央寄せ配置の起点とするためのrelative*/
    height: 100vh;/*高さを全画面にあわせる*/
} 

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

/*見出し設定*/
h1{
    /*要素の配置*/
    position:absolute;
    /*要素を天地中央寄せ*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    /*見た目の調整*/
    color:#fff;
    text-shadow: 0 0 15px #666;
}