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

/*-----------------------------------------------

 実績

-----------------------------------------------*/
.articleCont article.productBox{
	margin: 0 20px;
}
.articleCont article.productBox .h2Box{
	text-align: center;
}
.articleCont article.productBox .h2Box h2 span.mainTitle{
	display: block;
	background-image: url(../_images/bg_line_red.gif);
	background-repeat: repeat;
	padding: 0 10px;
	border-radius: 20px 20px 0 0;
}
.articleCont article.productBox .h2Box h2 span.itemName{
	display: block;
	background-image: linear-gradient(180deg, rgba(198, 198, 198, 0) 0%, rgba(198, 198, 198, 0) 96.5%, #9f9f9f 100%);
	background-size: 100% 1.5em;
	padding: 3px 0;
	color: #126d9c;
	font-size: 34px;
	font-weight: bold;
	line-height: 1.5em;
}


.articleCont article.productBox h3{
	background-color: #f5ebe7;
	color: #cb2525;
	margin: 30px 0;
	padding: 5px 15px 5px 25px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.7em;
	position: relative;
}
.articleCont article.productBox h3:before{
	content: "";
	display: block;
	background-color: #cb2525;
	width: 5px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}


.articleCont article.productBox h4{
	background-image: url(../_images/bg_line_gray.gif);
	background-repeat: repeat;
	color: #cb2525;
	margin: 50px 0 30px;
	padding: 15px 10px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.3em;
	text-align: center;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

/*商品仕様*/
.articleCont article.productBox .textCont .specBox{
	margin: 20px 50px 50px;
	padding: 15px;
	border: 1px solid #bababa;
}
.articleCont article.productBox .textCont .specBox dl{
	display: flex;
	flex-wrap: wrap;
	font-size: 15px;
}
.articleCont article.productBox .textCont .specBox dl dt{
	width: 25%;
	color: #116d9d;
	margin: 5px 0;
	padding: 7px 15px;
	position: relative;
}
.articleCont article.productBox .textCont .specBox dl dd{
	width: 75%;
	margin: 5px 0;
	padding: 7px 20px;
	position: relative;
}
.articleCont article.productBox .textCont .specBox dl dd:before{
	content: "";
	display: block;
	background-color: #116d9d;
	width: 1px;
	height: 95%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.articleCont article.productBox .textCont .specBox dl dt:after,
.articleCont article.productBox .textCont .specBox dl dd:after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #dcdcdc;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;
	margin: auto;
}


/*紹介*/
.articleCont article.productBox .textCont ul.productDetail{
	margin: 40px 0;
}
.articleCont article.productBox .textCont ul.productDetail li{
	width: 400px;
	margin: 0 0 30px;
}
.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(odd){
	float: left;
}
.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(even){
	float: right;
}
.articleCont article.productBox .textCont ul.productDetail li img{
	border: 1px solid #bababa;
}
.articleCont article.productBox .textCont ul.productDetail li p{
	margin: 10px 0;
}



@media screen and ( max-width: 768px ){
	.articleCont article.productBox{
		margin: 0 2%;
	}
	.articleCont article.productBox .h2Box h2 span.mainTitle img{
		max-width: 630px;
	}
	.articleCont article.productBox .h2Box h2 span.itemName{
		background-size: 100% 1.5em;
		font-size: 26px;
		line-height: 1.5em;
	}

	.articleCont article.productBox h4{
		margin: 50px 0 30px;
		padding: 10px 5px;
		font-size: 28px;
		line-height: 1.2em;
	}

	/*商品仕様*/
	.articleCont article.productBox .textCont .specBox{
		margin: 20px 3% 50px;
		padding: 10px;
	}
	.articleCont article.productBox .textCont .specBox dl dt{
		padding: 5px 10px;
	}
	.articleCont article.productBox .textCont .specBox dl dd{
		padding: 5px 10px;
	}

	/*紹介*/
	.articleCont article.productBox .textCont ul.productDetail{
		margin: 40px 0;
	}
	.articleCont article.productBox .textCont ul.productDetail li{
		width: 48%;
		margin: 0 1% 30px;
	}
	.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(odd){
		float: left;
	}
	.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(even){
		float: right;
	}
	.articleCont article.productBox .textCont ul.productDetail li p{
		margin: 10px 0;
	}
}

@media screen and ( max-width: 490px ){
	.articleCont article.productBox .h2Box h2 span.itemName{
		font-size: 24px;
	}

	/*商品仕様*/
	.articleCont article.productBox .textCont .specBox dl dt{
		width: 100%;
		padding: 2px 10px;
		margin: 0;
	}
	.articleCont article.productBox .textCont .specBox dl dd{
		width: 100%;
		margin: 0 0 10px;
		padding: 2px 10px;
	}
	.articleCont article.productBox .textCont .specBox dl dd:before{
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		right: 0;
		top: -3px;
		bottom: auto;
		margin: auto;
	}

	.articleCont article.productBox .textCont .specBox dl dt:after{
		display: none;
	}

	/*紹介*/
	.articleCont article.productBox .textCont ul.productDetail li{
		width: 95%;
		max-width: 400px;
		margin: 0 auto 30px;
	}
	.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(odd),
	.articleCont article.productBox .textCont ul.productDetail li:nth-of-type(even){
		float: none;
	}
	.articleCont article.productBox .textCont ul.productDetail li p{
		margin: 10px 0;
	}
}

