/* ログイン背景 */
.wrapper {
	background-size: cover;
	height: 100%;
	width: 100%;
	/* position: fixed; */
	top: 0
	overflow: auto;
}
/* .background1 {
	background-image: url("/img/background/background_1.jpg");
}
.background2 {
	background-image: url("/img/background/background_2.jpg");
}
.background3 {
	background-image: url("/img/background/background_3.jpg");
}
.background4 {
	background-image: url("/img/background/background_4.jpg");
}
.background5 {
	background-image: url("/img/background/background_5.jpg");
} */


/* ログイン背景 */

.bg-video-wrap {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
background: url(./sapmle.png) no-repeat center center/cover;
}
video {
min-width: 100%;
min-height: 100vh;
z-index: 1;
}
.overlay {
width: 100%;
height: 100vh;
position: absolute;
top: 0;
left: 0;
background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 50%);
background-size: 4px 4px;
z-index: 2;
}
