@charset "UTF-8";

/*--------------------------------------------------------------------
about.html
example.html
works.css
--------------------------------------------------------------------*/


/*------------about---------------------------------------------------------------*/
#about #photo ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}
#about #photo ul li { width: calc((100% - 40px) / 2); }
#about #photo ul li:first-of-type { width: 100%; }
#about p { margin-top: 20px; }
#about #construction {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}
#about #construction div { width: calc((100% - 40px) / 2); }
#about #construction ul li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#about #construction ul li:last-of-type { text-align: right; }
#about #construction ul li::before {
	padding-right: 0.3em;
	content: "・";
}
#about #construction ul li:last-of-type::before { display: none; }

@media (max-width: 960px) {
}
@media (max-width: 550px) {
	#about section {
		flex-direction: column;
		gap: 50px;
	}
	#about .aboList {
		width: 100%;
		max-width: 520px;
		margin: 0 auto;
	}
}


/*------------example---------------------------------------------------------------*/
#example ul {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
#example ul li {
	position: relative;
	width: calc((100% - 40px) / 2);
}
#example ul li:first-of-type::before {
	position: absolute;
	display: block;
	content: "";
	width: 15px;
	height: 16px;
	background-color: var(--co-blue);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 42%;
	left: 102.5%;
}
#example ul li p + p {
	margin-top: 0.25em;
	text-align: center;
}
#example div:not(:first-of-type) { margin-top: 75px; }

@media (max-width: 650px) {
	#example ul { flex-direction: column; }
	#example ul li {
		width: 100%;
		text-align: center;
	}
	#example ul li:first-of-type::before {
		width: 16px;
		height: 15px;
		clip-path: polygon(50% 100%, 0 0, 100% 0);
		top: 102.5%;
		left: 50%;
	}
}

@media (max-width: 480px) {
}