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

  product Css

------------------------------*/
h2{
    font-weight: 600;
    letter-spacing: 0.25rem;
	font-size: 30px;
}
h2 span{
   	display: block;
    line-height: 1;
    font-size: 18px;
    color: #a7a7a7;
    font-weight: 300;
	padding-top: 10px;
}
.more-btn{
	border: solid 1px #dcdcdc;
    padding: 10px 60px;
    border-radius: 30px;
    display: inline-block;
}
a:hover .more-btn{
	background-color: #fdc230;
	color: #fff;
}
/*一覧　nav-list*/
#nav-list{
	color: #fff;
    text-align: left;
	font-size: 14px;
}
#nav-list a{
	color: #fff;
}
#nav-list .ttl{
	font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.25rem;
	margin-bottom: 10px;
}
#nav-list .list-bg{
	position: relative;
	display: block;
	background: linear-gradient(144deg, #37aecd 0%,#2e70c0 50%),url(../img/product-bg.jpg);
	background-blend-mode: multiply;
	background-size: cover;
	height: 300px;
	z-index: 0;
}
#nav-list .even{
	background: linear-gradient(144deg, #3481b0 0%,#314f97 50%),url(../img/product-bg.jpg);
}
#nav-list .bg-img:before{
	content: "";
	position: absolute;
    top: 0;
    left: 0;
	opacity: 0.5;
	z-index: -1;
	transition: all 300ms 0s ease;
	background-image: url(../img/product-img01.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
#nav-list .bg-img:hover:before{
	opacity: 1;
}
#nav-list .surveying:before{background-image: url(../img/product-img01.png);}
#nav-list .laser:before{background-image: url(../img/product-img02.png);}
#nav-list .inspection:before{background-image: url(../img/product-img03.png);}
#nav-list .supplies:before{background-image: url(../img/product-img04.png);}
#nav-list .tack:before{background-image: url(../img/product-img05.png);}
#nav-list .digging:before{background-image: url(../img/product-img06.png);}

#nav-list .odd .txt{
	padding-left: 50%;
    padding-top: 70px;
}
#nav-list .even .txt{
    padding-top: 70px;
    padding-right: 50%;
}
#nav-list .list-bg .txt .detail{
	margin-bottom: 30px;
}

#nav-list a.more-btn:hover{
	background-color: #fff;
	color: #2e70c0;
}


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	#nav-list .bg-img:before {
		background-position: top center;
	}
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	
	
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	#nav-list .list-bg {
		height: 150px;
	}
	#nav-list .odd .txt {
		padding-left: 40%;
		padding-top: 40px;
	}
	#nav-list .even .txt {
		padding-top: 40px;
		padding-right: 40%;
	}
	#nav-list .ttl {
    	font-size: 18px;
	}
	#nav-list .txt .detail{
		display: none;
	}
}

