@charset "UTF-8";

body{
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}

/*=============================================================
#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
=============================================================*/
#mainimage {
width: 100%;
height: 100vh;
}
#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;
}
}
/* ------ slide image ------- */
.hero-slide__img {
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-name: slideAnime;
  animation-timing-function: ease;
  display: block;
  min-height: 100vh;
  object-fit: cover;
  opacity: 0;
  width: 100%;
  z-index: 0;
}

.hero-slide__item:nth-of-type(1) .hero-slide__img {
  animation-delay: 0s;
}

.hero-slide__item:nth-of-type(2) .hero-slide__img {
  animation-delay: 5s;
}

.hero-slide__item:nth-of-type(3) .hero-slide__img {
  animation-delay: 10s;
}

.hero-slide__item:nth-of-type(4) .hero-slide__img {
  animation-delay: 15s;
}

@keyframes slideAnime {
  0% {
    opacity: 0;
    transform: scale(1.2, 1.2);
  }

  16% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  49% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}

/* ------ hero erea ------- */
.hero {
  height: 100vh;
  overflow: hidden;
  position: relative;
    margin: auto;
}

.hero__inner {
  margin: auto;
}

/* ------ hero title ------- */
.hero__title {
  font-size: 50px;
  font-weight: bold;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.hero-slide__item {
  bottom: 0;
  height: 100%;
  position: absolute;
  right: -10%;
  width: 110%;
}
/*=============================================================
#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 30px!important;
}
#about h3{
margin-bottom: 20px!important;
}
#about p{
margin-bottom: 20px!important;
}
/*=============================================================
#works
=============================================================*/
#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 .box_inner .left{
}
#works .box_inner .right{
}
#works h2{
margin: 100px auto 30px!important;
}
#works h3{
margin-bottom: 20px!important;
}
#works p{
margin-bottom: 20px!important;
}
/*=============================================================
#recruit
=============================================================*/
#recruit {
}
#recruit .body{
}
#recruit .head{
}
#recruit .box{
background: url("../image/bg_recruit.jpg");
background-size: cover;
}
#recruit .box_inner{
padding: 3%;
text-align: left;
}
#recruit h2{
margin: 100px auto 30px!important;
}
#recruit h3{
margin-bottom: 20px!important;
}
#recruit p{
margin-bottom: 20px!important;
}

/*=============================================================
#contact
=============================================================*/
#contact {
background: #fff;
}
#contact .body{
}
#contact .box_inner{
padding: 3%;
text-align: left;
}
#contact .box_inner .left{
}
#contact .box_inner .right{
}
#contact h2{
margin: 100px auto 20px!important;
}

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

#footer {
width: 100%;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#footer .body{
}
#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;
}