@charset "UTF-8";

/*=============================================================
#header
=============================================================*/
#header {
  width: 100%;
  padding: 1%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000 !important;
  position: fixed;
}

#header .header_nav ul {
  display: flex;
}

#header .header_nav ul li:not(first-child) {
  padding-left: 50px;
}

#header .header_nav ul li a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}

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

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  right: 80px;
  top: 50%;
  /*全体の高さ*/
  height: 50px;
  z-index: 1000 !important;
}

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

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

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

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

  100% {
    width: 0;
    left: 50px;
    opacity: 0;
  }
}

/*=============================================================
#mainimage
=============================================================*/
#mainimage {
  width: 100vw;
  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: 133px;
  color: #fff;
  line-height: 1.2em;
}

#container {
  position: relative;
}

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

/*=============================================================
#about
=============================================================*/
#about {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}

#about .body {
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

#about .head {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 160, 233, 0.5);
  z-index: 100 !important;
}

#about .box {
  position: relative;
}

#about .box::after {
  position: absolute;
  content: "";
  background: url("../image/bg_about.jpg");
  background-size: cover;
  background-position: right;
  width: 50%;
  right: 0;
  top: 0;
  height: 100vh;
}

#about .box_inner {
  padding: 50px;
  width: 40%;
  text-align: left;
}

#about h2 {
  margin: 140px auto 30px !important;
}

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

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

/*=============================================================
#works
=============================================================*/
#works {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}

#works .body {
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

#works .head {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 160, 233, 0.3);
  z-index: 100 !important;
}

#works .box {
  position: relative;
  width: 100%;
  height: 100%;
}

#works .box::after {
  position: absolute;
  content: "";
  background: url("../image/bg_works.jpg");
  background-size: cover;
  background-position: bottom;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 50%;
}

#works .box_inner {
  padding: 50px;
  display: flex;
  text-align: left;
}

#works .box_inner .left {
  width: 500px;
}

#works .box_inner .right {
  width: 653px;
}

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

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

#works p {
  margin: 60px auto 20px !important;
}

/*=============================================================
#recruit
=============================================================*/
#recruit {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}

#recruit .body {
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

#recruit .head {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 160, 233, 0.3);
  z-index: 100 !important;
}

#recruit .box {
  position: relative;
}

#recruit .box::after {
  position: absolute;
  content: "";
  background: url("../image/bg_recruit.jpg");
  background-size: cover;
  background-position: right;
  width: 100%;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: 0;
}

#recruit .box_inner {
  padding: 50px;
  width: 543px;
  text-align: left;
  position: relative;
  z-index: 1000;
}

#recruit h2 {
  margin: 140px auto 30px !important;
}

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

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

/*=============================================================
#contact
=============================================================*/
#contact {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}

#contact .body {
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

#contact .head {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 160, 233, 0.3);
  z-index: 100 !important;
}

#contact .box {
  position: relative;
}

#contact .box_inner {
  padding: 50px;
  display: flex;
  text-align: left;
  box-sizing: border-box;
}

#contact .box_inner .left {
  width: 40%;
}

#contact .box_inner .right {
  width: 60%;
}

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

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

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

#footer .body {
  height: 100vh;
}

#footer .box {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 50px;
}


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

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