@charset "UTF-8";

/*-----------------------------------

	base

-----------------------------------*/


/*-----------------------------------

	swiper

-----------------------------------*/
.swiper-container,
.swiper-slide {
	width: 100% !important;
}
.slide-img{
	width: 100%;
	height: calc(100vh - 78px) !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
}
.slide-text {
	position: absolute;
	z-index: 1000;
	right: 0;
    left: 5%;
	top: 40%;
    margin: auto;
}
.slide-text p {
    font-size: 32px;
    line-height: 180%;
    color: #fff;
	text-align:left;
    text-shadow: 2px 2px 3px #333;
    letter-spacing: 0.3em;
	line-height:220%;
}
.slide-text p .big_text{
    font-size: 90px;
	text-align:left;
	letter-spacing:0;
}
.swiper-button-next,
.swiper-button-prev {
	display: none;
}

@media screen and (max-width: 1100px) {
	
	.slide-text p {
		font-size: 25px;
	}
}

@media screen and (max-width: 640px) {

    .swiper-container,
    .swiper-slide {
    }
	.swiper-button-prev:after,
	.swiper-button-next:after {
		font-size: 22px !important;
	}
	.slide-img {
		height: calc(60vh - 60px) !important;
		background-position-x: center;
	}
	.swiper-slide img {
		width: 60% !important;
	}
	.slide-text p {
		font-size: 17px;
	}
	.slide-text p .big_text {
		font-size: 40px;
	}

}

@-webkit-keyframes zoomUp {
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}

@keyframes zoomUp { /* 1.15倍させる指定 */
  0% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
  100% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img { /* 12秒かけて拡大させる */
    -webkit-animation: zoomUp 12s linear 0s;
    animation: zoomUp 12s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*------------------
	about_block
------------------*/
#about_block {
	
}
/*block_01*/
#about_block .block_01 {
    display:table;
	width:100%;
}
#about_block .block_01 .img {
    width: 50%;
}
#about_block .block_01 .block_bg{
	/*background: url(img/index/movie/guide_movie.mp4) no-repeat;
	background-position: left bottom;*/
	/*background: #000;*/
	line-height: 0;
}
#about_block .block_01 .block_col{
    display: table-cell;
	vertical-align: middle;
}

#about_block .block_01 .block_bg.img.block_col video{
	width:100%;
}

#about_block .block_01 .block_col .img img{
	width:100%;
}
#about_block .block_01 .text_box{
	width:50%;
	padding: 13px 40px;
}

/*block_02*/
#about_block .block_02 {
    display:table;
	width:100%;
	background: #0d295e;
	position:relative;
}
#about_block .block_02:before {
    content: "ABOUT US";
    font-family: 'Noto Serif JP', serif;
    font-size: 70px;
    writing-mode: vertical-rl;
    position: absolute;
    left: 20px;
    top: 40px;
    color: #fff;
    opacity: 0.4;
    z-index: 30;
}
#about_block .block_02 .img {
    width: 50%;
}
#about_block .block_02 .block_bg {
    background: url(../img/index/about_bg_02.jpg) no-repeat;
	background-size:cover;
	background-position:right;
}
#about_block .block_02 .block_col{
    display: table-cell;
	vertical-align: middle;
}
#about_block .block_02 .img img{
	width:100%;
}
#about_block .block_02 .text_box{
	width:50%;
	padding: 60px;
}

#about_block .text_box p{
	color:#fff;
	font-size:16px;
	line-height:180%;
	margin-bottom: 20px;
}
#about_block .text_box p:last-child{
	margin-bottom: 0;
}
#about_block h2{
	font-size:32px;
	line-height:180%;
}
#about_block .bg_s {
	display:none;
}

@media screen and (max-width: 1400px) {

	#about_block .block_01 .img img,
	#about_block .block_02 .img img{
		 max-width: 0;
	}
	#about_block .block_02:before {
		font-size:60px;	
	}
	#about_block h2{
		font-size:24px;
		margin: 40px 0;
	}
	
}

@media screen and (max-width: 840px) {
	
	#about_block .block_01 .img,
	#about_block .block_02 .img,
	#about_block .block_01 .img img,
	#about_block .block_02 .img img,
	#about_block .block_01 .text_box,
	#about_block .block_02 .text_box  {
		width: 100%;
	}
	#about_block .block_01 .text_box {
		padding: 0 40px;
	}
	#about_block .block_01 .block_col,
	#about_block .block_02 .block_col {
		display: block;
	}
	#about_block .bg {
		display: none;
	}
	#about_block .bg_s {
		width:100%;
		display:block;
	}	
	#about_block .block_02:before {
		font-size: 60px;
	}
	
}

@media screen and (max-width: 640px) {
	
	#about_block h2 {
		font-size:18px;	
	}
	#about_block .block_02 .text_box {
		padding: 60px 20px 60px 80px;
	}
	#about_block .text_box p {
		font-size: 14px;
	}
	
}

/*-----------------------------------

	business_block

-----------------------------------*/
#business_block {
	padding: 80px 0;
}
#business_block .business_bg{
    position: relative;
	padding:0 0 130px 0;
}
#business_block .business_bg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 110px;
    background: #d8dee7;
    width: 100%;
    height: 60%;
    z-index: -1;
}
#business_block .business_bg:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background: url(../img/index/business_bg.png) no-repeat;
    background-size: 100% auto;
    width: 100%;
    height: 0;
    padding-top: 20%;
    z-index: -1;
}
#business_block ul li {
    width: 32%;
    float: left;
	padding: 40px;
    margin-right: 2%;
	color:#fff;
}
#business_block ul li:last-child {
	margin-right: 0;
}
#business_block ul li h3 {
    font-size: 55px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}
#business_block ul li h3 span {
    display: block;
    font-size: 18px;
    margin-top: 20px;
    letter-spacing: 0.1em;
}
#business_block ul li .txt {
    font-size: 16px;
    margin-bottom: 40px;
}
#business_block ul li:nth-child(1) {
	background: url(../img/index/business_img_01.png) no-repeat;
	background-size: cover;	
}
#business_block ul li:nth-child(2) {
	background: url(../img/index/business_img_02.png) no-repeat;
	background-size: cover;	
}
#business_block ul li:nth-child(3) {
	background: url(../img/index/business_img_03.png) no-repeat;
	background-size: cover;	
}
#business_block .business_btn {
    width: 180px;
    display: block;
    border: 2px solid #fff;
    padding: 7px;
    position: relative;
    color: #fff !important;
    margin: 0 auto;
	font-size:16px;
	font-weight:600;
    text-align: center;
}
@media screen and (max-width: 1000px) {
	
}
@media screen and (max-width: 840px) {
	
	#business_block .business_bg:before {
		height: 85%;
	}
	#business_block .business_bg {
		padding: 0 0 100px 0;
	}
	#business_block ul li {
		width: 100%;
		float: none;
		padding: 40px;
		margin-right: 0;
		margin-bottom:30px;
	}
	#business_block ul li:last-child {
		margin-bottom:0;
	}
}
@media screen and (max-width: 640px) {
	
	#business_block {
		padding: 50px 0;
	}

	#business_block .business_bg {
		padding: 0 0 60px 0px;
	}
	
}

/*-----------------------------------

	works_block

-----------------------------------*/
#works_block {
	padding-bottom: 80px;
}
#works_block ul li {
    width: 32%;
    float: left;
    margin-right: 2%;
	position:relative;
}
#works_block ul li:nth-child(3) {
	margin-right: 0;
}
#works_block ul li .text_box{
	margin-top:7px;
}
#works_block ul li .name{
	font-size:12px;
	letter-spacing:0.1em;
	line-height:150%;
	font-weight:600;
	background:#14439a;
	color:#fff;
	display:inline-block;
	padding:3px 10px;
	margin-bottom:5px;
}
#works_block ul li .txt {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
}
@media screen and (max-width: 840px) {
	
	
	
}
@media screen and (max-width: 640px) {

	#works_block {
		padding-bottom: 50px;
	}
	#works_block ul li {
		width: 49%;
	}
	#works_block ul li:nth-child(2) {
		margin-right: 0;
	}
	#works_block ul li:nth-child(3) {
		margin-top: 30px;
	}

	
}

/*-----------------------------------

	recruit_block

-----------------------------------*/
#recruit_block {
	padding: 80px 0;
	background: #d8dee7;
}
recruit_block img{
	display:block;
	margin:0 auto;
}

@media screen and (max-width: 640px) {

	#recruit_block {
		padding: 50px 0;
	}

}

/*-----------------------------------

	news_block

-----------------------------------*/
#news_block {
	padding: 80px 0;
}
#news_block ul{
	overflow:hidden;
}
#news_block li{
	float:left;
	width:49%;
	background:#fff;
	margin-right:2%;
}
#news_block li:nth-child(2){
	margin-right:0;
}
#news_block li a{
	display:block;
}
#news_block .news_img{
	display:inline-block;
	vertical-align:middle;
	position:relative;
}
#news_block .cate{
	font-size:12px;
	line-height: 150%;
	letter-spacing:0.1em;
	background:#005ca2;
	padding:4px 10px;
	color:#fff;
	position:absolute;
	left:0;
	top:0;
}
#news_block .news_text{
	display:inline-block;
	vertical-align:middle;
	padding:30px;
}
#news_block .news_text p{
	font-size:14px;
	font-weight:600;
}
#news_block .news_text p span{
	display:block;
}

@media screen and (max-width: 1200px) {
	
	#news_block .news_text {
		padding: 10px;
	}
	
}

@media screen and (max-width: 840px) {
	
	#news_block .news_img {
		width: 30%;
	}
	#news_block .news_text p {
		font-size: 12px;
	}
	
}

@media screen and (max-width: 640px) {
	
	#news_block {
		padding: 50px 0;
	}
	#news_block li {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom:30px;
	}
	#news_block li:last-child {
		margin-bottom:0;
	}
	
}

/*-----------------------------------

	access_block

-----------------------------------*/
#access_block .ggmap {
	position: relative;
	padding-bottom: 37.16%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
#access_block .ggmap iframe,
#access_block .ggmap object,
#access_block .ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 640px) {
	#access_block .ggmap {
		position: relative;
		padding-bottom: 54.16%;
		padding-top: 30px;
		height: 0;
		overflow: hidden;
	}
}