


/*==========================================
スライダー
===========================================*/
.slider {
	position:relative;
	z-index: 1;
}


/*　背景画像設定　*/
.slider-item01 {
    background:url(../images/mainImg.jpg);
}

.slider-item02 {
    background:url(../images/mainImg02.jpg);
}

.slider-item03 {
    background:url(../images/mainImg03.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}




/*矢印の設定*/
.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}


.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}



@media only screen and (max-width: 799px){
	.slider {
		height: 70vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	}
	.slider-item {
		height:70vh;
	}
	.slick-prev, 
	.slick-next {
		top: 52%;
	}
	
	.slick-dots {
		margin:-26px 0 0 0;/*ドットの位置*/
	}

}


/*==========================================
  マップ埋め込み
===========================================*/
.ggmap{
	position: relative;
	padding-bottom: 36.25%;
	height: 0;
	overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*==========================================
 conncept
===========================================*/
#concept{}
#concept h2 span{
	display: block;
}

@media only screen and (max-width: 799px){
	#concept h2 span{
		display:inline;
	}
}

/*==========================================
 works
===========================================*/
#works{}
.worksImg_wrap ul {
	overflow: hidden;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.worksImg_wrap ul li {
	width: calc(100% / 3);
}


.s1tai1 {
  background-size: cover;
  background-position: center center;
  padding-top: 100%;
  width: 100%;
}

@media only screen and (max-width: 799px){
	.worksImg_wrap ul li {
		width:50%;
	}
}


/*==========================================
 technology
===========================================*/
#technology{}
#technology .inner{
	width: 90%;
	margin: 0 auto;
	padding-top: 15px;
}

#technology .inner ul{
	width: 100%;
	overflow: hidden;
	display:flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#technology .inner ul li{
	width: 28%;
	padding-bottom: 50px;
}

#technology .inner ul li img{
	width: 100%;
	max-width: 336px;
}

#technology .inner ul li h3{
	font-weight: bold;
	font-size: 2rem;
	margin-top: 20px;
	text-align: center;
}

#technology .inner ul li div{
	padding-top: 15px;
	line-height: 1.7;
	font-size: 1.58rem;
}

@media only screen and (min-width: 800px) and (max-width: 939px) {
	
	#technology .inner ul li{
		width: 44%;
	}
}


@media only screen and (max-width: 799px){
	#technology .inner ul li{
		width: 100%;
	}
	
	#technology .inner ul li:last-of-type{
		padding-bottom: 0;
	}

	#technology .inner ul li img{
		margin: 0 auto;
		display: block;
	}
	#technology .inner ul li h3{
		font-size: 2.2rem;
	}

	#technology .inner ul li div{
		text-align: left;
		width: 94%;
		margin: 0 auto;
	}

}





/*==========================================
  access
===========================================*/

#access{}
#access .inner p{}