@charset "UTF-8";

/*--------------------------------------------------------------------
works.html
works.css
--------------------------------------------------------------------*/

/*------------works---------------------------------------------------------------*/
main article section .aboList {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
main article section .aboPho {
	width: 100%;
	max-width: 500px;
}
main article section .aboTxt {
	width: 100%;
	max-width: 560px;
}

@media (max-width: 819px) {
	main article section .aboList { display: block; }
	main article section .aboPho {
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	main article section .aboTxt {
		width: 100%;
		max-width: 100%;
		margin: 1em auto 0;
	}
}

/*------------circle---------------------------------------------------------------*/
.circle { margin: 1em 0; }
.circle li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
.circle li::before {
	padding-right: 0.3em;
	content: "〇";
}

/*------------delivery---------------------------------------------------------------*/
#delivery .aboList { flex-flow: row-reverse; }
#delivery dl:not(:first-of-type) { margin-top: 1em; }
#delivery dl dt {
	font-family: var(--mincho);
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-orange);
}

/*------------quality---------------------------------------------------------------*/
#quality .aboList { flex-flow: row; }
#quality section:nth-of-type(2n) .aboList { flex-flow: row-reverse; }
#quality ul#crane {
	display: flex;
	flex-flow: wrap;
	gap: 20px 40px;
	margin-top: 40px;
}
#quality ul#crane li { width: calc((100% - 40px * 2) / 3); }
#quality ul#crane li p + p {
	margin-top: 0;
	padding: 0.25em 1em;
	background-color: #ededed;
	line-height: 1.2;
	text-align: center;
	font-size: 1.875em;
	font-weight: bold;
	color: #172a86;
}
#quality #movie {
	position: relative;
	width: 100%;
	margin-top: 20px;
	padding-top: 56.25%;
}
#quality #movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
#quality section:nth-of-type(1) .aboPho { max-width: 320px; }
#quality section:nth-of-type(1) .aboTxt { max-width: 740px; }
#quality #warehouse .aboList {
	margin-top: 1em;
}
#quality #warehouse .aboPho {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 340px;
	padding: 20px;
	background-color: #ededed;
}
#quality #warehouse .aboPho h5 {
	padding-bottom: 0.15em;
	border-bottom: 3px solid #172a86;
	line-height: 1.2;
	text-align: center;
	font-size: 2.25em;
	color: #172a86;
}
#quality #warehouse .aboPho dl {
	display: flex;
	margin-top: 1em;
}
#quality #warehouse .aboPho dl dt::after { content: "："; }
#quality #warehouse .aboPho dl dt { font-weight: bold; }
#quality #warehouse .aboTxt { max-width: 720px; }
#quality #warehouse .aboTxt dl:not(:first-of-type) { margin-top: 1em; }
#quality #warehouse .aboTxt dl dt {
	line-height: 1.2;
	font-size: 2.25em;
	font-weight: bold;
	color: #172a86;
}

@media (max-width: 819px) {
	#quality ul#crane {
		display: block;
		margin-top: 0;
	}
	#quality ul#crane li {
		width: 100%;
		margin-top: 20px;
	}
	#quality #warehouse .aboPho { margin-top: 1em; }
	#quality #warehouse .aboPho h5 { font-size: 2em; }
	#quality #warehouse .aboTxt dl dt { font-size: 2em; }
}

/*------------education---------------------------------------------------------------*/
#education .aboList { flex-flow: row-reverse; }
#education section:nth-of-type(2n) .aboList { flex-flow: row; }
#education h4 span {
	font-size: 0.67em;
	font-weight: bold;
}
#education #training {
	display: flex;
	flex-flow: wrap;
	gap: 20px;
	margin-top: 1em;
}
#education #training li { width: calc((100% - 20px * 2) / 3); }
#education #awards .circle li:last-of-type::before {
	padding-right: 0;
	content: "";
}
#education #awPho {
	display: flex;
	gap: 40px;
}
#education dl dt {
	font-family: var(--mincho);
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-orange);
}
#education dl dd ul {
	display: flex;
	flex-flow: wrap;
	gap: 10px;
}
#education dl dd ul li { width: calc((100% - 10px) / 2); }

@media (max-width: 819px) {
	#education #training li { width: calc((100% - 20px) / 2); }
	#education #awPho { display: block; }
	#education dl:not(:first-of-type) { margin-top: 1em; }
}

/*------------qualification---------------------------------------------------------------*/
#qualification h4 { text-align: center; }
#qualification h4::before,
#qualification h4::after { display: none; }
#qualification ul {
	display: flex;
	justify-content: space-between;
	gap: 10px 16px;
	margin-top: 1em;
}
#qualification ul li {
	width: calc((100% - 16px * 3) / 4);
	padding: 0.5em 0;
	background-color: var(--co-sky);
	border-radius: 8px;
	text-align: center;
	color: var(--co-white);
}

@media (max-width: 819px) {
	#qualification ul { flex-flow: wrap; }
	#qualification ul li { width: calc((100% - 16px) / 2); }
}

