@charset "UTF-8";
/* CSS Document */


/* ----------------------------------------------
	カテゴリー（AGP・FAS）
------------------------------------------------- */
h3 {
	width: 5em;
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	line-height: 1em;
}
h3::after {
	content: "";
	background-color: #016f9c;
	display: block;
	height: 5px;
	width: 1.5em;
	margin: 10px auto 0;
	border-radius: 5px;
}

#p_category {}
#p_category .stageWrap {
	display: grid;
	grid-template-rows: repeat(2,auto);
	gap: 50px;
	place-items: center;
}


/* ----------------------------------------------
	導入事例
------------------------------------------------- */
#introduction .introduction_in {
	height: 250px;
	margin: auto;
}
#introduction .introduction_in h4 {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	display: grid;
	place-items: center;
	margin: auto;
	filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
	/*mix-blend-mode: overlay;*/
}
#introduction .introduction_in .in_more .more {
	background-image: linear-gradient(120deg, rgba(255, 255, 255, 0), 15%, rgba(0, 0, 0, 0.5) 15%, rgba(0, 0, 0, 0.5));
	border: none;
	border-radius: 0 0 30px;
	color: #fff;
	padding: 10px;
	width: 12em;
	height: 50px;
	position: absolute;
	text-align: center;
	font-weight: bold;
	bottom: 0;
	right: 0;
	display: grid;
	place-items: center;
}


/* ----------------------------------------------
	各設備・主要機器
------------------------------------------------- */
#list {
	background-color: #e4f7f3;
}
#list .stageWrap {
	margin: auto;
}
#list h5 {
	font-size: 20px;
	font-weight: bold;
	border-left: solid 8px #016f9c;
	padding-left: 1em;
}
#list .list_in {
	padding: 50px 0;
}
#list .list_in ul {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}
#list .list_in ul li {
}
#list .list_in ul li a {
	display: block;
	text-align: center;
	line-height: 2em;
	border-radius: 25px;
}
#list .list_in ul li a img {
	display: block;
	width: 100%;
	height: 160px;
	border-radius: 25px;
	background-color: #666;
	object-fit: cover;
}


/*-
	PC版（821px以上）ここから
------------------------------------------------- */
@media screen and (min-width:821px), print{
	
	/* ----------------------------------------------
		カテゴリー（AGP・FAS）
	------------------------------------------------- */
	#p_category {}
	#p_category .p_category_in {
		width: 800px;
	}
	
	
	/* ----------------------------------------------
		導入事例
	------------------------------------------------- */
	#introduction .introduction_in {
		width: 800px;
	}
	
	
	/* ----------------------------------------------
		各設備・主要機器
	------------------------------------------------- */
	#list .stageWrap {
		width: 800px;
	}
	#list .list_in ul {
		grid-template-columns: repeat(3,1fr);
	}
	
	
}


/*-
	SP版（820px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 820px) {
	
	/* ----------------------------------------------
		カテゴリー（AGP・FAS）
	------------------------------------------------- */
	#p_category {}
	#p_category .p_category_in {
		width: 100%;
	}
	
	
	/* ----------------------------------------------
		導入事例
	------------------------------------------------- */
	
	
	/* ----------------------------------------------
		各設備・主要機器
	------------------------------------------------- */
	#list .list_in ul {
		grid-template-columns: repeat(2,1fr);
	}
	
	
}

