@charset "utf-8";
/* CSS Document */

/* ----- 背景用の動画ファイル ----- */
#bg-video{
 position: fixed;
 right: 0;
 bottom: 0;
 min-width: 100%;
 min-height: 100%;
 width: 100%;
 height: 90vh;
 z-index: -100;
 background: url('poster.jpg') no-repeat;
 background-size: cover;
}
/* ----- 背景の上に表示させたいコンテンツ ----- */
.header-title{
 position: relative; /*必ず必要*/
 z-index: 2; /*必ず必要*/
 display: flex;
 width: 100%;
 justify-content: center;
 align-items: center;
 text-align:center;
 margin: auto;
}
/* ----- グラデーションオーバーレイ ----- */
.video-wrap {
height: 90vh;
/* background: linear-gradient(-45deg, rgba(4, 114, 124, 0.4),rgba(17, 66, 99, 0.6));*/
}
