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

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

#about {
	margin-bottom: 80px;
}

#about .flex {
	display: flex;
	justify-content: space-between;
	margin-top: 70px;
}

#about figure {
	opacity: 0;
	position: relative;
	translate: 15% 0;
}

#about.isActive figure {
	opacity: 1;
	translate: 0;
	transition-duration: 0.5s;
	transition-delay: 0.8s;
	transition-timing-function: opacity, translate;
}

#about figure img {
	height: 434px;
}

#about .section {
	width: 580px;
	text-align: justify;
	font-size: 15px;
	opacity: 0;
	position: relative;
	translate: 15% 0;
}

#about.isActive .section {
	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);
}

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

#about p + h4 {
	margin-top: 40px;
}

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

#about ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

#about li {
	margin: 0 10px 10px 0;
	padding: 0 1em;
	background: #f0f0f0;
}

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

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

#flow .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#flow .section {
	width: 48%;
	margin-bottom: 80px;
	opacity: 0;
	position: relative;
	translate: 15% 0;
}

#flow .section.isActive {
	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 h4 {
	margin-bottom: 40px;
}

#flow .box {
	padding: 30px;
	background: #fff;
}

#flow figure {
	height: 344px;
	margin-bottom: 20px;
}

#flow figure img {
	height: 344px;
}

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

#flow .table dl {
	display: flex;
	justify-content: space-between;
	width: 47%;
}

#flow .table dt {
	width: 5em;
	padding-bottom: 10px;
	border-bottom: solid 1px var(--orange);
	text-align: left;
	color: var(--orange);
}

#flow .table dd {
	width: calc(100% - 5em);
	padding-bottom: 10px;
	border-bottom: solid 1px var(--silver);
	text-align: right;
}
