@charset "UTF-8";

.title_green {
  background: #065446;
  color: #e5e5e5;
  display: flex;
  align-items: center;
  padding: 0.5em 0.5em 0.5em 35px;
  margin-bottom: 10px;
}

.title_green h2 {
  position: relative;
  font-size: 20px;
  font-weight: 100;
}

.title_green h2 span {
  font-family: "Gill Sans", 'Gill Sans Nova';
  font-size: 14px;
  font-weight: 100;
  padding-left: 0.2em;
}

/*=============================================================
#mainimage
=============================================================*/
#mainimage {
  width: 100%;
  height: 110vh;
  position: relative;
  overflow: hidden;
  z-index: -10;
  margin-top: -110px;
}

#mainimage video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1000;
  object-fit: cover;
}

#mainimage::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

#mainimage .copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}

#mainimage .copy h1 {
  font-size: 24px;
  color: #fff;
  font-family: "Gill Sans", 'Gill Sans Nova';
}

#mainimage .copy h1 span {
  font-size: 12px;
  color: #fff;
}

/*====== 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;
  }
}

/*=============================================================
#about
=============================================================*/
#about {
  margin: 30px 0;
}

#about .about_box {
  padding-bottom: 30px;
}

#about .about_box dt {
  text-align: left;
  margin-bottom: 30px;
}

#about .title_green h2::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url("../image/icon_about.png");
  background-size: cover;
  top: 2%;
  left: -23%;
}

#about .about_box dd {
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 66.6666666667%;
  background: url("../image/about_img01.jpg");
  background-size: cover;
  border-radius: 10px;
  position: relative;
}

#about .about_box dd p {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

/*=============================================================
#business
=============================================================*/
#business {
  margin: 30px 0;
}

#business .business_box {
  padding-bottom: 30px;
}

#business .business_box dt {
  text-align: left;
  margin-bottom: 30px;
}

#business .title_green h2::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url("../image/icon_business.png");
  background-size: cover;
  top: 2%;
  left: -23%;
}

#business .business_box dd {
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 66.6666666667%;
  background: url("../image/business_img01.jpg");
  background-size: cover;
  border-radius: 10px;
  position: relative;
}

#business .business_box dd p {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

/*=============================================================
#recruit
=============================================================*/
#recruit .title_green h2::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url("../image/icon_recruit.png");
  background-size: cover;
  top: 2%;
  left: -23%;
}

#recruit .rectuit_img {
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 46.153846%;
  position: relative;
  margin: 30px 0 60px;
}

#recruit .rectuit_img video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1000;
  object-fit: cover;
  border-radius: 10px;
}



#recruit .recruit_box {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit- transform: translateX(-50%);
}

#recruit .recruit_box p {
  margin-top: 20px;
  text-align: center;
}


/*=============================================================
#contact
=============================================================*/
#contact .title_green h2::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  background: url("../image/icon_contact.png");
  background-size: cover;
  top: 2%;
  left: -23%;
}