@charset "utf-8";
/* CSS Document */
/********************************************************************
	works.css
*********************************************************************/



/*==========================================================================
	施工例 画像一覧
============================================================================*/
#contents .worksPhotoArea {
	background-color: #f6fdf0;
	padding: 30px 0;
}
#contents .worksPhotoArea .worksPhotoAreainnr {
	box-sizing: border-box;
	padding: 0 10px;	
}

#contents .worksPhotoArea .worksPhotoAreainnr .ttl {
	margin-bottom: 20px;
	font-size: 18px;
	border-left: 5px solid #66b566;
	text-indent: 15px;
	line-height: 1.2;
}
#contents .worksPhotoArea .worksPhotoAreainnr .txtbox {
	font-size: 16px;
}
#contents .worksPhotoArea .worksPhotoAreainnr .txtbox p {
	margin-bottom: 10px;
}
/*-- worksBox --*/
#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox li
{
	/*width: 100%;*/
	width: 48.5%;
	box-sizing: border-box;
	margin: 5px 0;
	border: 5px solid #FFF;
	box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
	background: #FFF;
	text-align: center;
}

/*-- リンク --*/
#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox li a:hover img {
  	opacity: 0.7;
}



/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {

	#contents .worksPhotoArea {
		padding: 60px 0;
	}
	#contents .worksPhotoArea .worksPhotoAreainnr {
		box-sizing: border-box;
		padding: 0 10px;	
	}
	#contents .worksPhotoArea .worksPhotoAreainnr .ttl {
		margin-bottom: 20px;
		font-size: 22px;
		border-left: 7px solid #66b566;
		text-indent: 15px;
		line-height: 1.2;
	}
	/*-- worksBox --*/
	#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox li {
		width: 48.5%;
		margin: 20px 0;
		box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
		background: #FFF;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
	#contents .worksPhotoArea {
		padding: 90px 0;
	}
	#contents .worksPhotoArea .worksPhotoAreainnr {
		box-sizing: border-box;
		padding: 0 10px;
		margin: 0 auto;
		max-width: 960px;
	}
	/*-- worksBox --*/
	#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox {
		justify-content:flex-start;
	}
	#contents .worksPhotoArea .worksPhotoAreainnr .worksPhotoBox li {
		box-sizing: border-box;
		width: 31%;
		margin: 20px 1%;
		box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
		background: #FFF;
	}
}


