@charset "UTF-8";
/* CSS Document */


/* ----------------------------------------------
	製品リスト
------------------------------------------------- */
#p_list {}
#p_list .stageWrap {
	display: grid;
	gap: 20px;
}
#p_list .stageWrap h4 {
	color: #016f9c;
	font-weight: bold;
}
#p_list .stageWrap h3 {
	font-weight: bold;
}
#p_list .stageWrap h3 {
	font-weight: bold;
}
#p_list .stageWrap h3:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
}
#p_list .p_list_in .list{
	display: grid;
	gap: 20px;
}
#p_list .p_list_in .list li {
	width: 100%;
	height: auto;
}
#p_list .p_list_in .list li a {
	border-radius: 20px;
	border: solid 1px #cdcdcd;
	/*line-height: 3em;*/
	text-align: center;
	width: 100%;
}
#p_list .p_list_in .list li a img {
	width: 100%;
	height: 160px;
	border-radius: 20px 20px 0 0;
	object-fit: cover;
}
#p_list .p_list_in .list li a p {
	padding: 5px 0;
	height: 4em;
	display: grid;
	place-items: center;
	border-top: solid 1px #cdcdcd;
}


/*-
	PC版（821px以上）ここから
------------------------------------------------- */
@media screen and (min-width:821px), print{
	
	/* ----------------------------------------------
		製品リスト
	------------------------------------------------- */
	#p_list .stageWrap {
		width: 800px;
		margin: auto;
	}
		
	#p_list .stageWrap h3:after {
		background: linear-gradient(90deg, #016f9c 0%, #016f9c 5%, #d7d7d7 5%, #d7d7d7 100%);
	}
	
	#p_list .p_list_in .list{
		grid-template-columns: repeat(3, 1fr);
	}
	
	
}


/*-
	SP版（820px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 820px) {
	
	/* ----------------------------------------------
		製品リスト
	------------------------------------------------- */
	#p_list .stageWrap h3:after {
		background: linear-gradient(90deg, #016f9c 0%, #016f9c 10%, #d7d7d7 10%, #d7d7d7 100%);
	}
	
	#p_list .p_list_in .list{
		grid-template-columns: repeat(2, 1fr);
	}
	
 #p_list .p_list_in .list li a img {
	height: 200px;
}
	
}


/*-
	SP版（768px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 768px) {
	
	/* ----------------------------------------------
		製品リスト
	------------------------------------------------- */
	#p_list .p_list_in .list{
		grid-template-columns: repeat(1, 1fr);
	}
	
	
}
