@charset "UTF-8";
/*===================================================================
	corporate/About page - common.css
===================================================================*/

/* bg_line */
.bg_line {
	position: relative;
	padding-bottom: 57px;
}
.bg_line:after {
	display: block;
	position: absolute;
	left: 50%;
	content: '';
	width: 2px;
	height: 48px;
	margin-top: 8px;
	background-image: url("/corporate/common/img/bg_line.png");
	background-repeat: no-repeat;
}

.link_page ul li a,
.heading_ttl02 {
	font-family: 'Meiryo', sans-serif;
}

/* link_page */
.link_page ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.link_page ul li {
	position: relative;
	font-weight: bold;
}
.link_page ul li a {
	position: relative;
	display: inline-block;
	line-height: 1.5;
	color: #005AB4;
}
.link_page ul li:after {
	width: 24px;
	height: 24px;
	background-image: url("/corporate/common/img/icon_page_link_arrow.png");
	content: '';
	background-repeat: no-repeat;
	background-size: cover;
	transition: .4s;
}
.link_page ul li.active {
	color: #BFBFBF;
}
.link_page ul li.active:after {
	background-image: url("/corporate/common/img/icon_page_link_arrow_active.png");
}

/* PC styles */
@media print, screen and (min-width: 768px) {
	/* link_page */
	.link_page ul li {
		position: relative;
		margin-right: 30px;
		font-size: 28px;
		font-weight: bold;
	}
	.link_page ul li:after {
		display: block;
		position: absolute;
		top: 50%;
		right: -31px;
		transform: translateY(-50%);
	}
	.link_page ul li a:hover {
		color: #FF3300;
	}
	.link_page ul li:last-child {
		padding-left: 58px;
	}
}

/* SP styles */
@media screen and (max-width:767px) {
	#contents {
		padding: 0;
	}
	.wrap,
	.sp_wrap {
		padding: 0 15px;
	}
	.sp_wrap_30 {
		padding: 0 30px;
	}
	.sp_no_wrap {
		padding: 0 !important;
	}
	/* mv_area_common */
	.mv_area_common {
		padding: 40px 0 31px;
	}
	/* link_page */
	.link_page ul {
		align-items: center;
	}
	.link_page ul li {
		font-size: 24px;
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.link_page ul li:after {
		display: inline-block;
		background-position: center right;
		margin: 3px 0 0 8px;
	}
	.link_page ul li:not(:first-child) {
		margin-top: 17px;
	}
}