@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;
	background: #f0f0f0;
}

#flow .container {
	width: 960px;
}

#flow .step {
	margin-top: 50px;
	padding: 30px;
	background: #fff;
	opacity: 0;
	position: relative;
	translate: 15% 0;
}

#flow .isActive .step {
	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 .step:after {
	content: '';
	width: 10px;
	height: 10px;
	border-bottom: solid 2px var(--gray);
	border-right: solid 2px var(--gray);
	transform: translateX(-50%) rotate(45deg);
	position: absolute;
	left: 50%;
	bottom: -30px;
}

#flow .step:last-of-type:after {
	display: none;
}

#flow .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#flow .box + .box {
	margin-top: 30px;
}

#flow .box img {
	height: 198px;
}

#flow .box .row {
	width: 520px;
	text-align: justify;
	font-size: 15px;
}

#flow .box .num {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 15px;
	border-bottom: solid 1px var(--orange);
	color: var(--orange);
}

#flow .box .num span {
	margin-left: 3px;
	font-size: 20px;
}

#flow .box .name {
	margin-bottom: 15px;
	font-weight: 600;
	font-size: 20px;
}

/* ---------------------------------------------------------
	CSS Document history
--------------------------------------------------------- */

#history {
	margin-bottom: 120px;
}

#history .container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
}

#history .name {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	margin-right: 50px;
	border-radius: 100%;
	background: var(--orange);
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
	position: relative;
}

#history .name:after {
	content: '';
	width: 50px;
	height: 1px;
	background: var(--gray);
	position: absolute;
	top: 74px;
	right: -50px;
}

#history ul {
	width: 418px;
	margin-right: 30px;
	padding-left: 60px;
	text-align: left;
	position: relative;
}

#history ul:after {
	content: '';
	width: 1px;
	height: calc(100% - 55px);
	background: var(--gray);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 0;
}

#history li {
	width: 360px;
	height: 55px;
	padding-left: 15px;
	border-radius: 4px;
	background: rgba(255, 93, 11, 0.2);
	text-align: left;
	line-height: 56px;
	position: relative;
}

#history li:before {
	content: '';
	width: 50px;
	height: 1px;
	background: var(--gray);
	position: absolute;
	top: 27px;
	left: -60px;
}

#history li:after {
	content: '';
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-top: solid 1px var(--gray);
	border-right: solid 1px var(--gray);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	left: -18px;
}

#history li + li {
	margin-top: 20px;
}

#history figure {
	display: flex;
	justify-content: flex-start;
	width: 470px;
	height: 430px;
	overflow: hidden;
	border-radius: 4px;
	opacity: 0;
	translate: 15% 0;
}

#history.isActive figure {
	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);
}

#history figure img {
	height: 430px;
	object-fit: cover;
	object-position: 15%;
}
