@charset "utf-8";
/* top.css */

/*プロパティ順番
////////////////////////////////////////////////////*//*


	Mozillaが採用している「ボックスモデルによる記述順番」

	01 display
	02 list-style
	03 position
	04 float
	05 clear
	06 width
	07 height
	08 margin
	09 padding
	10 border
	11 background
	12 color
	13 font
	14 text-decoration
	15 text-align
	16 vertical-align
	17 white-space
	18 other text
	19 content


///////////////////////////////////////////////////////*/


/*　トップページ 共通設定
////////////////////////////////////////////////////*/
.mv_wrap {
	position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
	order:1;
}
.mv_wrap::before {
	position: absolute;
	z-index: 1;
	content: "";
	display: block;
	width:100%;
	height: calc(100vh);
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAB5JREFUGFdjZGBgmMnAwJDOAAEzGWEMKJ2OVQBFCwCo8wU3JqXTUwAAAABJRU5ErkJggg==);
}
.mv_wrap video{
	width: 100%;
	height: auto;
	/* height: calc(100vh - 230px); */
	/* aspect-ratio: 16 / 9; */
	object-fit: cover;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}

@media screen and (max-width: 768px) {
	.mv_wrap {
		height: 70vh;
		
	}
}

