/* common S */
.section-title {
	position: relative;

	font-size: var(--font-size-h2);
	font-weight: 700;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.section-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 3px;
	background: var(--primary);
}

.section-description {
	margin-bottom: 40px;

	font-size: var(--font-size-h5);
	font-weight: 500;
	line-height: var(--font-lh-h5);
	letter-spacing: var(--font-ls-h5);
}
.inner-title {
	grid-column: 2/3;

	position: relative;
	margin-top: 30px;
	margin-bottom: 35px;
	padding-top: 60px;
}
.inner-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 60px;
	background: var(--primary);
}
.inner-title p {
	margin-top: 15px;

	text-align: center;
	color: var(--primary);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}

.main {
	width: 100%;
	margin-top: 60px;

	display: grid;
	grid-template-columns: 23px 1fr 23px;
	grid-template-rows: 265px 50px auto auto auto;
}
.banner {
	position: relative;
	grid-column: 1/4;
	background-size: auto 100%;
}
.banner-cover {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner-cover h1 {
	color: var(--pri-white);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.banner-cover p {
	color: var(--pri-white);
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}

.inner-sub-nav {
	grid-column: 1/4;
	display: flex;
}
.page-group {
	width: 35%;
	height: 100%;
	background: #1e1e1e;

	display: flex;
	justify-content: center;
	align-items: center;
}
.page-group p {
	color: var(--pri-white);
	font-size: var(--font-size-body1);
	font-weight: 400;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.page-list {
	position: relative;
	width: 65%;
	height: 100%;
	background: #f9f9f9;
}
.page-list input {
	display: none;
}
.page-list label {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-left: 20px;
	padding-top: 13px;

	color: var(--primary);
	font-size: var(--font-size-body1);
	font-weight: 400;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.page-list label::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
	width: 13px;
	height: 6px;
	background-image: url(/images/common/icon_arrow_blue.svg);
	background-size: cover;
}

/* common E */

/* business common S */
section {
	grid-column: 1/4;
	padding: 30px 0 60px 0;

	display: grid;
}
.content-title {
	grid-column: 2/3;
	margin-bottom: 30px;

	text-align: center;
	color: var(--primary);
	font-size: var(--font-size-h2);
	font-weight: 500;
	line-height: var(--font-lh-h2);
	letter-spacing: var(--font-ls-h2);
}
.content-sub-title {
	grid-column: 2/3;
	margin-bottom: 10px;

	color: #000000;
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}
.content-description {
	margin-bottom: 30px;
	grid-column: 2/3;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.content-inner-banner {
	margin-bottom: 15px;
	grid-column: 2/3;
	height: 110px;
	background-size: 100%;
	background-repeat: no-repeat;
}
.content-img {
	grid-column: 2/3;
	margin-bottom: 20px;
}
.content-img img {
	width: 100%;
}
/* business common E */

/* mobility content S */
.mobility-content {
	display: grid;
	grid-template-columns: 23px auto 23px;
	grid-template-rows: repeat(5, auto);
}
.mobility-banner {
	background-image: url(/images/business/mobility/banner_mobility.jpg);
}

.mobility-items {
	grid-column: 2/3;
}
.mobility-item {
	margin-bottom: 15px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.13);
}
.mobility-items dt {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	margin-bottom: 15px;

	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	letter-spacing: 0px;
	text-align: center;
}
.mobility-item--sky {
	border-top: 5px solid #5187bf;
}
.mobility-item--sky dt {
	color: #5187bf;
	border-bottom: 1px solid #5187bf;
}
.mobility-item--black {
	border-top: 5px solid #1e1e1e;
}
.mobility-item--black dt {
	color: var(--black);
	border-bottom: 1px solid #1e1e1e;
}
.mobility-item--green {
	border-top: 5px solid #487230;
}
.mobility-item--green dt {
	color: #487230;
	border-bottom: 1px solid #487230;
}
.mobility-items dd {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	height: 130px;
}
.mobility-items dd strong {
	max-width: 220px;
	width: 100%;
	margin-bottom: 23px;

	text-align: center;
	color: var(--black);
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}
.mobility-items dd p {
	max-width: 280px;
	width: 100%;

	text-align: center;
	color: #4b4b57;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
/* mobility content E */
