@charset "utf-8";

/*-----------------------------------------
 * サイト共通
 * ----------------------------------------- */

body {
  background: #000;
}


/*-----------------------------------------
 * contents
 * ----------------------------------------- */
#wrapper {
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

 height: 100vh;
 background: linear-gradient(-45deg, rgba(4, 114, 124, 0.4), rgba(17, 66, 99, 0.6));
}
#background_video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
#video_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/bg.png') no-repeat;
  background-size: cover;
  background-position: center;
}
.main_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-45deg, rgba(0, 0, 0, 0.4), rgba(1, 27, 45, 0.6));
  text-align: center;
}
.main_content h1 {
  margin-bottom: 10px;
  font-size: 11.25vw;
  line-height: 1;
  color: #fff;
}
.main_content p {
  font-size: 4.375vw;
  line-height: 1.4;
  color: #fff;
}
.main_content_inner {
}
footer {

  width: 100%;
}
footer ul {
  padding:2% 0;
  font-size: 12px;
  line-height: 1.6;
  color:#FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
}


@media (min-width: 769px) {
  .main_content h1 {
    font-size: 100px;
  }
  .main_content p {
    font-size: 24px;
  }
}
