/* 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: cover;
}
.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 */

/* promotion S */
.inner-title__sub {
	text-align: center;
	color: var(--primary);
	font-size: var(--font-size-h3);
	font-weight: 500;
	line-height: var(--font-lh-h3);
	letter-spacing: var(--font-ls-h3);
}
.promotion-content {
	grid-column: 1/4;
	padding: 0 23px;
}
.promotion-content__list {
	margin-bottom: 50px;
}
.promotion-content__list li {
	margin-bottom: 40px;
}
.promotion-content__list a {
	display: block;
}
.promotion-content__list img {
	width: 100%;
	margin-bottom: 17px;
}
.promotion-content__list h3 {
	margin-bottom: 5px;

	color: #626262;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.promotion-content__list p {
	color: #c4c4c4;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.wrap-pagenation {
	margin-bottom: 60px;

	display: flex;
	justify-content: center;
	align-items: center;
}
.wrap-pagenation button {
	color: #d8d8d8;
	font-size: var(--font-size-body1);
	font-weight: 500;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
.pages {
	padding: 0 30px;
	/* width: 62px; */
}
.wrap-pagenation a {
	color: var(--black);
	font-size: var(--font-size-body1);
	font-weight: 700;
	line-height: var(--font-lh-body1);
	letter-spacing: var(--font-ls-body1);
}
/* promotion E */

/* news S */
.news-content {
	grid-column: 2/3;
}
.input-box {
	width: 246px;
	height: 30px;
	margin: auto;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--black);
	padding-bottom: 9px;

	display: flex;
}
.input-box input {
	height: 100%;
}
.input-box button {
	height: 100%;
	width: 30px;
	background-image: url(/images/common/icon_search_m.svg);
	background-repeat: no-repeat;
	background-size: 90%;
}
.news-content__list {
	width: 100%;
	text-align: start;
}
thead {
	height: 53px;
	background: #fafafc;
}
th {
	vertical-align: middle;
}
tr > td:nth-child(1) {
	vertical-align: middle;
	text-align: center;
}
tr > td:nth-child(2) {
	padding: 9px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
tr > td:nth-child(2) p:nth-child(1) {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: 1px;
	color: #626262;
}

tr > td:nth-child(2) p:nth-child(2) {
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
	letter-spacing: 0px;
	text-align: left;
	color: #b5b5b5;
}
/* news E */
