@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;
}

#access_bg .route .table {
	margin-bottom: 60px;
}

#access_bg .route dl {
	display: flex;
	justify-content: space-between;
}

#access_bg .route dt {
	width: 180px;
	padding: 15px 0;
	border-bottom: solid 1px var(--orange);
	font-weight: 600;
}

#access_bg .route dl:first-of-type dt {
	border-top: solid 1px var(--orange);
}

#access_bg .route dd {
	width: 640px;
	padding: 15px 0;
	border-bottom: solid 1px var(--silver);
}

#access_bg .route dl:first-of-type dd {
	border-top: solid 1px var(--silver);
}

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

#history {
	margin-bottom: 120px;
}

#history .section_01 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
	position: relative;
}

#history .section_01:after {
	content: '';
	width: 120px;
	height: 200px;
	background: #f0f0f0 url(../images/arrow.svg) no-repeat center / 40px auto;
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

#history .section_02 {
	display: flex;
	justify-content: space-between;
	flex-flow: row-reverse;
	margin-bottom: 80px;
	position: relative;
}

#history .section_02:before {
	content: '';
	width: 100px;
	height: 200px;
	background: #f0f0f0 url(../images/arrow.svg) no-repeat center / 40px auto;
	transform: rotate(90deg);
	position: absolute;
	top: -150px;
	left: calc(55% + 220px);
}

#history .section_02:after {
	content: '';
	width: 120px;
	height: 200px;
	background: #f0f0f0 url(../images/arrow.svg) no-repeat center / 40px auto;
	transform: translateY(-50%) translateX(-50%) rotate(180deg);
	position: absolute;
	top: 50%;
	left: 50%;
}

#history .name {
	height: 43px;
	background: linear-gradient(to bottom, var(--black) 0%, #1a1a1a 100%);
	font-weight: 500;
	font-size: 15px;
	line-height: 44px;
	color: #fff;
}

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

#history .step1,
#history .step2,
#history .step3,
#history .step4 {
	width: 45%;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 0 0 1px var(--silver) inset;
	opacity: 0;
	translate: 15% 0;
}

#history.isActive .step1,
#history.isActive .step2,
#history.isActive .step3,
#history.isActive .step4 {
	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.isActive .step2 {
	transition-delay: 0.7s;
}

#history.isActive .step3 {
	transition-delay: 0.9s;
}

#history.isActive .step4 {
	transition-delay: 1.4s;
}

#history .step1 img,
#history .step3 img {
	height: 240px;
}

#history .step4 img {
	height: 270px;
}

#history figcaption {
	margin-top: 20px;
	font-size: 15px;
	line-height: 1;
}

#history .row {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 360px;
}

#history ol {
	display: flex;
	justify-content: space-between;
	width: 430px;
}

#history li {
	height: 240px;
	padding-top: 20px;
	border-radius: 4px;
	background: rgba(255, 93, 11, 0.2);
	text-align: left;
	writing-mode: vertical-rl;
	line-height: 56px;
	position: relative;
}

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

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

#history li:last-of-type:before,
#history li:last-of-type:after {
	display: none;
}
