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

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

#about {
	margin-bottom: 130px;
}

#about .container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 60px;
	background: linear-gradient(to right, #E0E0E0 0%, #fff 50%, #E0E0E0 100%);
	font-size: 15px;
	line-height: 1.7;
}

#about .row {
	width: 330px;
	padding: 10px 0 20px;
	border-left: solid 1px rgba(43, 43, 43, 0.2);
}

#about .row:nth-of-type(3),
#about .row:nth-of-type(5) {
	border-right: solid 1px rgba(43, 43, 43, 0.2);
}

#about .row:nth-of-type(-n+3) {
	margin-bottom: 60px;
}

#about .row figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
}

#about .row dt {
	margin-bottom: 10px;
	font-weight: 600;
	font-size: 20px;
}

#about .row dd {
	font-size: 15px;
	line-height: 1.7;
}

/* ---------------------------------------------------------
	CSS Document company
--------------------------------------------------------- */

#company {
	margin-bottom: 130px;
}

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

#company .section {
	text-align: left;
	font-size: 15px;
}


#company .table {
/*
	display: table;
*/
	width: 580px;
	margin-bottom: 60px;
/*
	border-bottom: solid 1px var(--silver);
*/
}

/*
#company dl {
	display: table-row;
	margin-bottom: 1px;
	border-top: solid 1px var(--silver);
}

#company dt {
	display: table-cell;
	vertical-align: middle;
	width: 150px;
	padding: 1em 0;
	font-weight: 600;
}

#company dd {
	display: table-cell;
	vertical-align: middle;
	padding: 1em 0;
}

*/

#company dl {
	display: flex;
	justify-content: space-between;
}

#company dt {
	width: 150px;
	padding: 15px 0;
	border-bottom: solid 1px var(--orange);
	font-weight: 600;
}

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

#company dd {
	width: 420px;
	padding: 15px 0;
	border-bottom: solid 1px var(--silver);
}

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

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

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

#company .figure {
	width: 570px;
}

#company .figure figure {
	height: 400px;
	margin-bottom: 5px;
	opacity: 0;
	translate: 15% 0;
}

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

/* ---------------------------------------------------------
	CSS Document access
--------------------------------------------------------- */

#access_bg {
	margin-bottom: 120px;
	padding: 120px 0 30px;
	background: #f0f0f0;
}

#access_bg .map {
	margin-bottom: 50px;
	opacity: 0;
	translate: 15% 0;
}

#access_bg .map.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);
}

#access_bg .map img {
	height: 742px;
}

#access_bg .map .more {
	margin-top: 30px;
}

#access_bg .route {
	margin: 0 100px 50px;
	padding: 60px 80px 40px;
	background: #fff;
	text-align: left;
	font-size: 15px;
}

#access_bg .route .name {
	display: flex;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: var(--orange);
}

#access_bg .route .name .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

#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 .container {
	display: flex;
	justify-content: space-between;
	text-align: left;
	font-size: 15px;
}

#history .row {
	position: relative;
	opacity: 0;
	translate: 15% 0;
}

#history .isActive .row {
	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 .row:last-of-type {
	transition-delay: 0.6s;
}

#history .row:after {
	content: '';
	width: 1px;
	height: calc(100% + 5px);
	height: 100%;
	border-radius: 100%;
	background: var(--orange);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	left: 121px;
}

#history dl,
#history .dl {
	display: flex;
	align-items: start;
	padding: 15px 0;
}

#history dt,
#history .dt {
	width: 140px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	position: relative;
}

#history dt:after,
#history .dt:after {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background: var(--orange);
	transform: translateY(-50%);
	position: absolute;
	top: 50%;
	right: 16px;
}

#history dd,
#history .dd {
	flex: 1;
}

/* ---------------------------------------------------------
	CSS Document appreciation
--------------------------------------------------------- */

#appreciation {
	margin-bottom: 120px;
	padding: 120px 0 30px;
	background: #f0f0f0;
}

#appreciation .container {
	width: 960px;
	text-align: left;
}

#appreciation .section {
	margin-bottom: 70px;
	opacity: 0;
	translate: 15% 0;
}

#appreciation .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);
}

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

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

#appreciation p {
	margin-bottom: 20px;
}

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

#appreciation .figure img {
	height: 335px;
}

/* ---------------------------------------------------------
	CSS Document err
--------------------------------------------------------- */

#err {
	margin-bottom: 130px;
}

#err p {
	margin-bottom: 40px;
}
