@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* header */
.header {
	background-color: transparent;
	box-shadow: none;
}

.header.scroll {
	background-color: #FFF;
}

.header.scroll .globalNav__link {
	color: #222;
}

.header.scroll .globalNav__item:nth-of-type(8) .globalNav__link,
.header.scroll .globalNav__item:nth-of-type(9) .globalNav__link {
	color: #FFF;
}



/* globalNav */
.globalNav__link {
	color: #FFF;
}

.globalNav__item:nth-of-type(7) .globalNav__link {
	background-image: url("/img/common/icon_globalNav_instagram.png");
}



/* mvIndex */
.mvIndex {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mvIndex__content {
	position: absolute;
}

.mvIndex__img {
	display: block;
	width: 400px;
	height: auto;
	margin: 0 auto 50px auto;
}

.mvIndex__h1 {
	font-size: 18px;
	font-weight: 500;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}

.mvIndex__box {
	position: relative;
	top: 0;
	width: 100%;
	height: 100vh;
	min-height: 700px;
}

.mvIndex__item {
	animation-duration: 18s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
	animation-timing-function: linear;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover!important;
	background-position: center center!important;
}

.mvIndex__item--01 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_01.jpg");
	animation-name: mvIndex01;
}

.mvIndex__item--02 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_02.jpg");
	animation-name: mvIndex02;
}
	
.mvIndex__item--03 {
	background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),url("/img/index/bg_mvIndex_03.jpg");
	animation-name: mvIndex03;
}

/* 1枚目 */
@keyframes mvIndex01 {
	0% {opacity: 1;}
	28% {opacity: 1;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 1;}
}

/* 2枚目 */
@keyframes mvIndex02 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 1;}
	61% {opacity: 1;}
	67% {opacity: 0;}
	94% {opacity: 0;}
	100% {opacity: 0;}
}

/* 3枚目 */
@keyframes mvIndex03 {
	0% {opacity: 0;}
	28% {opacity: 0;}
	34% {opacity: 0;}
	61% {opacity: 0;}
	67% {opacity: 1;}
	94% {opacity: 1;}
	100% {opacity: 0;}
}

.scrollDown {
	position: absolute;
	bottom: 5px;
	left: 50%;
}

.scrollDown span{
	position: absolute;
	left: -15px;
	top: -100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
}

.scrollDown::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFF;
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
	0%{bottom: 45px;}
	100%{bottom: -5px;}
 }

@keyframes cirlemovehide {
	0%{opacity: 0}
	50%{opacity: 1;}
	80%{opacity: 0.9;}
	100%{opacity: 0;}
 }

.scrollDown::after{
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 50px;
	background: #FFF;
}



/* about */
.about__txt {
	margin-bottom: 50px;
}



/* build */
.build {
	position: relative;
}

.build__upper {
	width: 100%;
	height: 350px;
	background-image: url("/img/index/bg_build_upper.jpg");
	background-size: 2000px 350px; /* image size */
	animation: bg_upper 40s infinite linear;
}

@keyframes bg_upper {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2000px 0;
  }
}

.build__lower {
	width: 100%;
	height: 350px;
	background-image: url("/img/index/bg_build_lower.jpg");
	background-size: 2000px 350px; /* image size */
	animation: bg_lower 35s infinite linear;
}

@keyframes bg_lower {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}

.build__overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .6);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
}

.build__h2 {
	color: #FFF;
}

.build .h2__en {
	color: #FFF;
}

.build__txt {
	text-align: center;
	color: #FFF;
	max-width: 700px;
	margin: 0 auto;
}

.build__box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 620px;
	margin: 60px auto 0 auto;
}


.build__btn {
	background-color: transparent;
	border: 1px solid #FFF;
}



/* works */
.works {
	background-color: #F9F9F9;
}

.works__h2 {
	margin-bottom: 60px;
}

.works__box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.works__box::before{
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.works__box::after{
  content: "";
  display: block;
  width: 23%;
}

.works__item {
	width: 23%;
	margin-bottom: 40px;
}

.works__thumbnail {
	position: relative;
	display: block;
	transition: .2s;
	overflow: hidden;
	margin-bottom: 15px;
}

.works__thumbnail::before {
	display: block;
	content: "";
	padding-top: 100%;
}

.works__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .2s;
}

.works__thumbnail img:hover {
	-webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.works__h3 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 5px;
}

.works__txt {
	color: #AAA;
}



/* news */
.news__h2 {
	margin-bottom: 60px;
}

.news__box {
	margin-bottom: 60px;
}

.news__item {
	width: 100%;
	border-bottom: 1px solid #DDD;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-bottom: 20px;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news__date {
	display: inline-block;
	width: 120px;
}

.news__category {
	display: inline-block;
	width: 120px;
	margin-right: 30px;
}

.news__category p {
	width: 100%;
	font-size: 14px;
	text-align: center;
}

.news__category .information {
	background-color: #004ea2;
	color: #FFF;
}

.news__category .recruit {
	background-color: #008cd6;
	color: #FFF;
}

.news__category .works {
	background-color: #77d3fc;
	color: #FFF;
}

.news__category .other {
	background-color: #AAA;
	color: #FFF;
}

.news__h3 {
	display: inline-block;
	width: calc(100% - 250px);
}

.news__link:hover {
	text-decoration: underline;
}



/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

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

/* build */
.build__right {
	width: calc(50% - 50px);
}

.build__right-inner {
	width: 95%;
}

	
	
}



/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

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


	

}



/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

/* movie */
.mvIndex,
.mvIndex__box {
	height: 300px;
	min-height: 300px;
}
	
.mvIndex__content {
	margin-top: 50px;
}

.mvIndex__img {
	display: block;
	width: 180px;
	height: auto;
	margin: 0 auto 25px auto;
}

.mvIndex__h1 {
	font-size: 13px;
	font-weight: 600;
	color: #FFF;
	text-align: center;
	line-height: 1.8;
}

.scrollDown {
	display: none;
}
	
	
	
/* about */
.about__txt {
	margin-bottom: 30px;
}


	
	
/* build */
.build__h2 {
	margin-bottom: 10px;
}
	
.build__upper {
	height: 250px;
	background-size: 1785px 250px; /* image size */
	animation: bg_upper 40s infinite linear;
}

@keyframes bg_upper {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1785px 0;
  }
}

.build__lower {
	height: 250px;
	background-size: 1785px 250px; /* image size */
	animation: bg_lower 35s infinite linear;
}

@keyframes bg_lower {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1785px 0;
  }
}

.build__box {
	display: block;
	width: 100%;
	margin: 30px auto 0 auto;
}

.build__item:nth-of-type(1) {
	width: 100%;
	margin-bottom: 20px;
}
	
	
	
/* works */
.works__h2 {
	margin-bottom: 30px;
}

.works__box::before{
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.works__box::after{
  content: "";
  display: block;
  width: 23%;
}

.works__item {
	width: 47%;
	margin-bottom: 30px;
}

.works__thumbnail {
	margin-bottom: 10px;
}

.works__h3 {
	font-size: 16px;
	margin-bottom: 3px;
}

.works__txt {
	font-size: 12px;
}

	
	
/* news */
.news__h2 {
	margin-bottom: 30px;
}
	
.news__box {
	margin-bottom: 40px;
}
	
.news__item {
	padding-bottom: 15px;
	margin-bottom: 15px;
	padding-left: 0;
}

.news__date {
	width: 90px;
}

.news__category {
	width: 80px;
	margin-right: 0;
}

.news__category p {
	font-size: 12px;
	line-height: 1.6;
}

.news__h3 {
	display: block;
	width: 100%;
	margin-top: 5px;
}

.news__link {
	display: block;
	width: 100%;
	transition: .2s;
	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 5px;
}


	
	
	
}