@charset "UTF-8";
/* CSS Document */
.title{
	background: url("../img/product/title.jpg") center center;
	background-position: cover;
	background-color: #004098;
	background-blend-mode:multiply;
}
.contents{
	text-align: center;
}
.contents h2{
	font-size: 24px;
	font-weight: bold;
	margin-top: 150px;
	display: inline-block;
	position: relative;
}
.contents h2::after{
	display: inline-block;
	position: absolute;
	content: '';
	bottom: -20px; /*下線の上下の位置*/
	left: 50%;
	width: 50px; /*下線の幅*/
	height: 5px; /*下線の太さ*/
	transform: translate(-50%); /*位置の調整*/
	background-color: #004098; /*下線の色*/
}
.contents p{
	margin-top: 40px;
}
.productlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 70px 0;
}
.productlist li{
	width: 30%;
	margin: 30px 0;
}
.productlist li figure{
	width: 100%;
	overflow: hidden;
}
.productlist li figure img{
	width: 100%;
	transition: all 0.3s ease;
}
.productlist li figure img:hover{
	transform: scale(1.1);
}
.productlist li h3{
	font-size: 120%;
	margin-top: 20px;
	text-align: justify;
}
.productlist li p{
	margin-top: 10px;
	text-align: justify;
}
.shiken{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	border:1px solid #999;
	padding: 50px;
}
.shiken li{
	width: 100%;
	text-align: justify;
}
.shiken li h3{
	font-size: 150%;
}
.shiken li p{
	margin-top: 20px;
}
.shiken li table{
	width:100%;
	margin: 20px auto 50px;
	line-height: 1.5;
}
.shiken li table tr{
	border-top:1px solid #999;
	border-bottom:1px solid #999;
}
.shiken li table th{
	text-align: center;
	font-weight: bold;
	padding: 15px;
	width: 20%;
}
.shiken li table td{
	padding: 15px 0;
	width: 80%;
	vertical-align: middle;
}

.shiken > li img{
	width: 100%;
}
@media only screen and (max-width: 667px){
	.contents h2{
		margin-top: 50px;
	}
	.productlist{
		margin: 20px 0;
	}
	.productlist li{
		width: 100%;
		margin: 30px 0;
	}
	.shiken{
		padding: 20px;
	}
	.shiken li:first-child{
		width: 100%;
	}
	.shiken li h3{
		font-size: 120%;
	}
	.shiken li p{
		margin-top: 10px;
		margin-bottom: 30px;
	}
	.shiken li:last-child{
		width: 100%;
	}
	.shiken li img{
		width: 100%;
	}
	.shiken li table{
		margin: 20px auto 20px;
	}
	.shiken li table tr{
		display: flex;
		flex-wrap: wrap;
	}
	.shiken li table th{
		text-align: left;
		font-weight: bold;
		padding: 10px 0 0;
		width: 100%;
	}
	.shiken li table th br{
		display: none;
	}
	.shiken li table td{
		padding: 10px 0;
		width: 100%;
		text-align: justify;
	}
}