@charset "UTF-8";

/*=============================================================
#header
=============================================================*/
#header {
  display: none;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

/*=============================================================
#mainimage
=============================================================*/

#container video {
  width: 100%;
  height: 100vh;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
}

#mainimage {
  width: 100%;
  height: 100vh;
  position: relative;
}

#mainimage .copy {
  position: absolute;
  bottom: 10%;
  left: 8%;
  text-align: left;
}

#mainimage .copy h1 {
  font-family: "Gill Sans", sans-serif;
  font-size: 80px;
  color: #fff;
  line-height: 1.2em;
}

@media screen and (max-width: 768px) {

  /* 320pxまでの幅の場合に適応される */
  #mainimage .copy h1 {
    font-size: 50px;
  }
}

/*=============================================================
#about
=============================================================*/
#about {
  background: #fff;
}

#about .body {
  background: url("../image/bg_about.jpg");
  background-size: cover;
}

#about .box {
  background: rgba(255, 255, 255, 0.7);
}

#about .box_inner {
  padding: 3%;
  text-align: left;
}

#about h2 {
  margin: 100px auto 60px !important;
}

#about h3 {
  margin-bottom: 40px !important;
}

#about p {
  margin-bottom: 40px !important;
}

/*=============================================================
#works
=============================================================*/
#works .body {
  background: url("../image/bg_works.jpg");
  background-size: cover;
}

#works .box {
  background: rgba(255, 255, 255, 0.7);
}

#works .box_inner {
  padding: 3%;
  text-align: left;
}

#works h2 {
  margin: 100px auto 60px !important;
}

#works h3 {
  margin-bottom: 40px !important;
}

#works p {
  margin-bottom: 40px !important;
}

/*=============================================================
#recruit
=============================================================*/

#recruit .box {
  background: url("../image/bg_recruit.jpg");
  background-size: cover;
}

#recruit .box_inner {
  padding: 3%;
  text-align: left;
}

#recruit h2 {
  margin: 100px auto 60px !important;
}

#recruit h3 {
  margin-bottom: 40px !important;
}

#recruit p {
  margin-bottom: 40px !important;
}

/*=============================================================
#contact
=============================================================*/
#contact {
  background: #fff;
}

#contact .box_inner {
  padding: 3%;
  text-align: left;
}

#contact h2 {
  margin: 100px auto 20px !important;
}

/*=============================================================
#footer
=============================================================*/

#footer {
  width: 100%;
  background: linear-gradient(to bottom right, #00a0e9, 80%, #f8b62b);
  padding: 2% 1%;
  box-sizing: border-box;
}

#footer .box {
  text-align: center;
}

#footer p {
  color: #fff;
  margin: 30px 0;
}

#footer iframe {
  width: 100%;
}

#footer p.copyright {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 150%;
  color: #fff;
}