@charset "UTF-8";

/*=============================================================
#header
=============================================================*/
#header {
width: 97%;
margin: 2% 1%;
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: #fff;
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;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#mainimage .box{
height: 94vh;
background: #fff;
}
#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;
}
/* ------ slide image ------- */
.hero-slide__img {
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-name: slideAnime;
  animation-timing-function: ease;
  display: block;
  min-height: 94vh;
  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: 94vh;
  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 {
width: 100vw;
height: 100vh;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#about .body{
height: 94vh;
background: #fff;
position: relative;
}
#about .head{
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,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: 94vh;
}
#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;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#works .body{
height: 94vh;
background: #fff;
position: relative;
}
#works .head{
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,0.5);
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;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#recruit .body{
height: 94vh;
background: #fff;
position: relative;
}
#recruit .head{
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,0.5);
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: 94vh;
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;
background: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#contact .body{
height: 94vh;
background: #fff;
position: relative;
}
#contact .head{
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,0.5);
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: #364a82;
padding: 2% 1%;
box-sizing: border-box;
}
#footer .body{
height: 94vh;
background: #364a82;
}
#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;
}