@charset "UTF-8";

/*--------------------------------------------------------------------
processing.html
product.html
flow.html
devequal.html
equipment.html
works.css
--------------------------------------------------------------------*/


h4#topTxt {
	border-bottom: 0 none;
	text-align: center;
	color: var(--co-orange);
}
h4#topTxt::before { display: none; }
/*------------worksList-------processing/product--------------------------------------------------------*/
#worksList {
	display: flex;
	gap: 60px 40px;
	flex-wrap: wrap;
}
#worksList > div {
	width: calc((100% - 40px) / 2);
	max-width: 530px;
}
@media (max-width: 600px) {
	#worksList > div {
		width: 100%;
		margin: 0 auto;
	}
}


/*------------processing---------------------------------------------------------------*/
/*------------procTxt------------------------*/
#processing #procTxt p { text-align: center; }
#processing #procTxt ul {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin-top: 1em;
}
#processing #procTxt ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 25px * 2) / 3);
	background-color: var(--co-gray10);
	padding: 1em;
	text-align: center;
}
@media (max-width: 880px) {
	#processing #procTxt ul li { width: calc((100% - 25px) / 2); }
}


/*------------product---------------------------------------------------------------*/


/*------------flow---------------------------------------------------------------*/
#flow { counter-reset: number; }
#flow > p {
	margin-bottom: 30px;
	text-align: center;
}
#flow h4 {
	display: flex;
	align-items: center;
}
#flow h4 em::before {
	display: block;
	margin-right: 1em;
	padding: 0.25em 1em;
	background-color: var(--co-pink);
	counter-increment: number;
  content: counter(number, decimal-leading-zero);
	font-size: 0.58em;
	color: var(--co-white);
	font-weight: bold;
}
#flow ol {
	margin-top: 1em;
	padding-left: 1.5em;
	list-style: decimal;
}

/*------------devequal---------------------------------------------------------------*/
/*------------devequal------------------------*/
#devequal { counter-reset: number; }
#devequal .fleBox { align-items: center; }
#devequal .list:not(:first-of-type) { margin-top: 1em; }
#devequal .list {
	display: flex;
	gap: 1em;
}
#devequal .list:before {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.25em 1em;
	background-color: var(--co-blue);
	counter-increment: number;
  content: counter(number);
	color: var(--co-white);
	font-weight: bold;
}
#devequal .list dl dt{
	font-size: 1.125em;
	font-weight: bold;
	color: var(--co-blue);
}
/*------------quality------------------------*/
#quality > p { text-align: center; }

#quality ul {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	margin-top: 1em;
}
#quality ul li {
	width: calc((100% - 25px * 2) / 3);
	max-width: 350px;
	margin: 0 auto;
}
#quality ul li p + p {
	margin-top: 0.5em;
	text-align: center;
}
@media (max-width: 880px) {
	#quality ul li { width: calc((100% - 25px) / 2); }
}
@media (max-width: 480px) {
	#quality ul li { width: 100%; }
}
/*------------tray------------------------*/
#tray > p { text-align: center; }

#tray ul {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 1em;
}
#tray ul li {
	width: calc((100% - 40px) / 2);
	max-width: 530px;
	margin: 0 auto;
}
@media (max-width: 480px) {
	#tray ul li { width: 100%; }
}


/*------------equipment---------------------------------------------------------------*/
#equipment h5 {
	margin-bottom: 1em;
	font-size: 1.125em;
	font-weight: bold;
	color: var(--co-green);
}
#equipment #listBtn {
	width: 250px;
	margin-top: 1em;
}
#equipment #listBtn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0.5em 1.5em;
	background-color: var(--co-blue);
	border: 1px solid var(--co-blue);
	text-align: center;
	font-weight: bold;
	color: var(--co-white);
	transition: 0.5s;
  z-index: 1;
}
#equipment #listBtn a::before {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 9px;
	background-color: var(--co-white);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	right: 0.5em;
	transform: var(--transformY);
	transition: 0.5s;
}
#equipment #listBtn a:hover {
	background-color: var(--co-white);
	color: var(--co-blue);
}
#equipment #listBtn a:hover::before {
	background-color: var(--co-blue);
}
#equipment table tr th,
#equipment table tr td {
	min-width: auto;
	text-align: center;
}
#equipment table tr td { border-right: 1px solid var(--co-gray30); }
#equipment table tr:first-of-type th:last-of-type,
#equipment table tr td:last-of-type { border-right: 0 none; }
#equipment table tr td:last-of-type { width: 10%; }

@media (max-width: 620px) {
	article .ScrollBar {
		width: 100%;
		white-space: nowrap;
		overflow: auto;
	}
	article .ScrollBar::before {
		display: block;
		content: "横にタップして全体を確認できます。";
		font-weight: bold;
		color: var(--co-red);
	}
	article .ScrollBar table tr th,
	article .ScrollBar table tr td {
		display: table-cell;
		width: auto;
		margin: 0;
		border-top: 1px solid var(--co-gray30);
		border-bottom: 1px solid var(--co-gray30);
	}
}