@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document about
--------------------------------------------------------- */

#about {
	margin-bottom: 130px;
}

#about .container {
	width: 1210px;
}

#about p {
	margin-bottom: 50px;
}

#about .flex {
	display: flex;
	justify-content: space-between;
}

#about .section {
	width: 580px;
	text-align: justify;
}

#about h4 {
	margin-bottom: 10px;
	margin-left: 10px;
	font-weight: 600;
	font-size: 18px;
	color: var(--orange);
}

#about h4:before {
	display: inline-block;
	vertical-align: 0.3em;
	content: '';
	width: 16px;
	height: 1px;
	margin-right: 10px;
	background: var(--orange);
}

#about .table {
	display: table;
	width: 100%;
	height: 320px;
	border-collapse: separate;
	border-spacing: 10px;
	font-size: 15px;
}

#about dl {
	display: table-row;
}

#about dt {
	display: table-cell;
	vertical-align: middle;
	width: 130px;
	padding-bottom: 10px;
	border-bottom: solid 1px var(--orange);
	font-weight: 600;
}

#about dl:first-of-type dt {
	padding-top: 10px;
	border-top: solid 1px var(--orange);
}

#about dd {
	display: table-cell;
	vertical-align: middle;
	padding-bottom: 10px;
	border-bottom: solid 1px var(--silver);
}

#about dl:first-of-type dd {
	padding-top: 10px;
	border-top: solid 1px var(--silver);
}

/* ---------------------------------------------------------
	CSS Document flow
--------------------------------------------------------- */

#flow {
	margin-bottom: 120px;
	padding: 120px 0 60px;
	background: linear-gradient(-135deg, #f0f0f0 50%, #e6e6e6 50%);
}

#flow .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
	opacity: 0;
	position: relative;
	translate: 15% 0;
}

#flow .isActive .flex {
	opacity: 1;
	translate: 0;
	transition-duration: 0.5s;
	transition-delay: 0.4s;
	transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
}

#flow figure {
	width: 48%;
	margin-bottom: 50px;
	padding: 30px 30px 20px;
	background: #fff;
}

#flow figure img {
	height: 344px;
}

#flow figcaption {
	margin-top: 15px;
	font-weight: 600;
	font-size: 18px;
}

