/*
Theme Name: inception1976
*/

@charset "UTF-8";

/* ================================
 Reset
================================ */
*, *::before, *::after {
	box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}
ul, ol {
	list-style: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	text-decoration: none;
	color: inherit;
}
button, input, select, textarea {
	font: inherit;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
}
button {
	cursor: pointer;
}


/* ================================
 TOP
================================ */
#top_page {
	width: 100%;
	height: 100svh;
	background: url(images/fallback.png) no-repeat center / cover;
}
.video-wrapper {
	position: fixed;
	inset: 0;
}
video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}
.black_bg {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}
.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-4deg);
	width: 83%;
}
@media (max-width: 768px) {
	video {
		width: 100vw;
		height: auto;
	}
}




