.sub-visual {
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.sub-visual .bg,
.sub-visual .box {
	width: 100%;
	height: 100%;
}

.sub-visual .bg,
.sub-visual .bg * {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-visual .bg {
	z-index: -1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.sub-visual .bg figure,
.sub-visual .bg picture,
.sub-visual .bg img {
	min-width: 100%;
	min-height: 100%;
}

.sub-visual .bg figure,
.sub-visual .bg picture {
	transform: translate(-50%, -50%) scale(1.0835);
	transition: all 3s ease-in;
}

.sub-visual .bg img {
	max-width: inherit;
	max-height: 102%;
}

.sub-visual .box {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-visual .text {
	width: 100%;
	overflow-x: clip;
}

.sub-visual .text * {
	color: var(--color-white);
}

.sub-visual .text h2 {
	font-size: 14rem;
	font-weight: 700;
	opacity: 0;
	transform: translateX(-60px);
	transition: all 0.8s ease-in;
}

.sub-visual .path-box {
	column-gap: 20px;
	margin-top: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-visual .path-box a,
.sub-visual .path-box button {
	display: flex;
	align-items: center;
}

.sub-visual .path-box .home {
	width: 45px;
	height: 45px;
	flex-shrink: 0;
}

.sub-visual .path-box .home a {
	justify-content: center;
	background: var(--color-primary);
	border-radius: 50%;
	width: 100%;
	height: 100%;
}

.sub-visual .path-box .path {
	width: 100%;
	max-width: 240px;
	height: 65px;
	position: relative;
	display: none;
}

.sub-visual .path-box .path::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-white);
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0.3;
}

.sub-visual .path-box .path * {
	font-family: var(--font-pretendard);
}

.sub-visual .path-box .path button {
	justify-content: space-between;
	font-size: 1.9rem;
	font-weight: 600;
	padding: 0 20px;
	opacity: 0.3;
	width: 100%;
	height: 100%;
}

.sub-visual .path-box .path button img {
	transition: all 0.4s;
}

.sub-visual .path-box .path button.on img {
	transform: rotateX(180deg);
}

.sub-visual .path-box .path ul {
	width: 100%;
	background: var(--color-primary);
	padding: 12.5px 20px;
	z-index: 1;
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
}

.sub-visual .path-box .path ul>li>a {
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	padding: 7.5px 0;
	opacity: 0.3;
	transition: all 0.6s;
}

.sub-visual .path-box .path ul>li:hover>a, .sub-visual .path-box .path ul>li.on>a {
	opacity: 1;
}

.sub-visual .path-box .path.ov ul {
	z-index: 2;
}

.sub-visual .path-box .path.on::after,
.sub-visual .path-box .path.on button {
	opacity: 1;
}

.sub-visual .scroll-box {
	width: 25px;
	height: 40px;
	border-radius: 100px;
	position: absolute;
	right: 0;
	bottom: 60px;
	transition: all 0.1s ease-in;
}

.sub-visual .scroll-box::before, .sub-visual .scroll-box::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border-radius: 100px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.sub-visual .scroll-box::before {
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.sub-visual .scroll-box::after {
	border: 2px solid rgb(255, 255, 255);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.sub-visual .scroll-box span {
	display: block;
	width: 5px;
	height: 5px;
	background: var(--color-white);
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.sub-visual .scroll-box.off, .sub-visual .scroll-box.off::after, .sub-visual .scroll-box.off * {
	transition: all 1s var(--slow);
}

.sub-visual .scroll-box.off {
	transform: translateY(5px);
}

.sub-visual .scroll-box.off::after {
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

.sub-visual .scroll-box.off span {
	width: 1px;
	height: 1px;
	opacity: 0.3;
	top: calc(100% - 10px);
}

.sub-visual.on .bg figure {
	transform: translate(-50%, -50%) scale(1);
}

.sub-visual.on .bg picture {
	transform: translate(-50%, -50%) scale(1);
}


.sub-visual.on .text h2 {
	opacity: 1;
	transform: translateX(0);
}

:root {
	--left-width: 520px;
}

.sub-contents .sub-page .page-title {
	text-align: center;
}

.sub-contents .sub-page .page-title.left {
	text-align: left;
}

.sub-contents .sub-page .page-title span {
	color: var(--color-primary);
	font-size: 2rem;
	font-weight: 700;
	text-transform: uppercase;
}

.sub-contents .sub-page .page-title h3 {
	color: #111;
	font-size: calc(var(--font74) - 0.2rem);
	font-weight: 700;
	margin-top: 20px;
}

.sub-contents .sub-page .page-tab {
	width: var(--left-width);
	position: sticky;
	top: 0;
	transition: all 0.6s;
}

.sub-contents .sub-page .page-tab * {
	transition: all 0.6s;
}

.sub-contents .sub-page .page-tab ul {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.sub-contents .sub-page .page-tab button {
	column-gap: 40px;
	font-size: 2.4rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	text-align: left;
}

.sub-contents .sub-page .page-tab span {
	color: #ccc;
	font-weight: 600;
}

.sub-contents .sub-page .page-tab .arrow-w {
	opacity: 0;
	transform: translateX(-20px);
}
.sub-contents .sub-page .page-tab li:hover span, .sub-contents .sub-page .page-tab li.on span {
	color: var(--color-primary);
}

.sub-contents .sub-page .page-tab li:hover .arrow-w, .sub-contents .sub-page .page-tab li.on .arrow-w {
	opacity: 1;
	transform: translateX(0);
}

.sub-contents .sub-page .page-tab li.on span {
	font-size: 1.333333em;
}

.sub-contents .sub-page .page-tab.white span {
	color: rgba(255, 255, 255, 0.3);
}

.sub-contents .sub-page .page-tab.white .arrow-cls {
	stroke: var(--color-white);
}

.sub-contents .sub-page .page-tab.white li:hover span, .sub-contents .sub-page .page-tab.white li.on span {
	color: var(--color-white);
}

.sub-contents .sub-page .page-tab.white li.on .arrow-w {
	filter: brightness(0) invert(1);
}


.sub-contents .sub-page .depth3-tab,
.sub-contents .sub-page .depth3-tab li a,
.sub-contents .sub-page .depth4-tab {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .sub-page .depth3-tab *,
.sub-contents .sub-page .depth4-tab * {
	transition: all 0.4s var(--slow);
}

.sub-contents .sub-page .depth3-tab li a,
.sub-contents .sub-page .depth4-tab li a {
	color: var(--color-gray);
	font-family: var(--font-pretendard);
}

.sub-contents .sub-page .depth3-tab {
	column-gap: 10px;
}

.sub-contents .sub-page .depth3-tab li {
	width: 475px;
	height: 85px;
	background: #f8f8f8;
}

.sub-contents .sub-page .depth3-tab li a {
	font-size: 2.2rem;
	font-weight: 700;
	width: 100%;
	height: 100%;
}

.sub-contents .sub-page .depth3-tab li:hover, .sub-contents .sub-page .depth3-tab li.on {
	background: var(--color-primary);
}

.sub-contents .sub-page .depth3-tab li:hover a, .sub-contents .sub-page .depth3-tab li.on a {
	color: var(--color-white);
}

.sub-contents .sub-page .depth4-tab li:not(:last-child) {
	display: flex;
	align-items: center;
}

.sub-contents .sub-page .depth4-tab li:not(:last-child)::after {
	content: "";
	display: block;
	width: 2px;
	height: 15px;
	background: var(--color-border);
	margin: 0 60px;
}

.sub-contents .sub-page .depth4-tab li a {
	font-size: 2.4rem;
	font-weight: 600;
}

.sub-contents .sub-page .depth4-tab li:hover a, .sub-contents .sub-page .depth4-tab li.on a {
	color: #111;
}

.sub-contents .affiliate .map-box {
	padding: 50px;
	position: relative;
}

.sub-contents .affiliate .map-box::before {
	content: '';
	display: block;
	width: 100vw;
	height: 100%;
	background: #f8f8f8;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
}

.sub-contents .affiliate .map {
	width: 100%;
	max-width: 1235px;
	margin: 0 auto;
}

.sub-contents .affiliate .map .circle {
	transform: scale(1);
	transform-origin: center;
	transform-box: content-box;
	animation-duration: 2.1s;
	animation-timing-function: ease-in;
	animation-iteration-count: infinite;
}

.sub-contents .affiliate .map .circle-big {
	animation-name: circleBig;
}

.sub-contents .affiliate .map .circle-small {
	animation-name: circleSmall;
}

.sub-contents .affiliate .workplace .map-box {
	padding: 0;
	position: relative;
	width: 100%;
}

.sub-contents .affiliate .workplace .map-box::before {
	display: none;
}

.sub-contents .affiliate .workplace  .map {
	max-width: 100%;
}

@keyframes circleBig {
	0% {
		opacity: 0.07;
		transform: scale(1);
	}
	90% {
		opacity: 0;
		transform: scale(4.665);
	}
	100% {
		opacity: 0;
		transform: scale(4.665);
	}
}

@keyframes circleSmall {
	0% {
		opacity: 0.12;
		transform: scale(1);
	}
	90% {
		opacity: 0;
		transform: scale(78.05);
	}
	100% {
		opacity: 0;
		transform: scale(78.05);
	}
}
.sub-contents .affiliate .text {
	position: relative;
}
.sub-contents .affiliate .text a.link {
	position: absolute;
	right: 0;
	top: -10px;
	padding: 0 38px;
	display: inline-flex;
	height: 65px;
	justify-content: center;
	align-items: center;
	gap: 15px;
	border-radius: 10px;
	background: var(--color-primary);
	color: #fff;
	font-size: 1.9rem;
	font-weight: 500;
	line-height: 130%;
}

.sub-contents .affiliate .text * {
	font-family: var(--font-pretendard);
}

.sub-contents .affiliate .text h4 {
	color: #111;
	font-size: 4.2rem;
	font-weight: 600;
	margin-bottom: 60px;
}

.sub-contents .affiliate .text p {
	color: #333;
	font-size: 2.1rem;
	font-weight: 300;
	letter-spacing: -0.020em;
	line-height: 1.7;
}

.sub-contents .workplace * {
	font-family: var(--font-pretendard);
}

.sub-contents .workplace .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.sub-contents .workplace .top * {
	letter-spacing: -0.020em;
}

.sub-contents .workplace .top h4 {
	color: #111;
	font-size: 3.2rem;
	font-weight: 600;
}

.sub-contents .workplace .top ul,
.sub-contents .workplace .top ul li {
	display: flex;
	align-items: center;
}

.sub-contents .workplace .top ul {
	justify-content: flex-end;
	column-gap: 60px;
}

.sub-contents .workplace .top ul li {
	column-gap: 15px;
	color: #333;
	font-size: 2.1rem;
	font-weight: 300;
}

.sub-contents .workplace .top ul li br {
	display: none;
}

.sub-contents .workplace hr {
	width: 100%;
	height: 1px;
	background: var(--color-black);
	margin: 20px 0 40px;
}

.sub-contents .workplace .map-box {
	width: 100%;
	height: 540px;
}

.sub-contents .workplace .root_daum_roughmap,
.sub-contents .workplace .root_daum_roughmap .wrap_map,
.sub-contents .workplace iframe {
	width: 100%;
	height: 100%;
}

.sub-contents .workplace .img-box {
	display: flex;
	column-gap: 40px;
	margin-top: 40px;
}

.sub-contents .secondary .page-title {
	position: absolute;
}

.sub-contents .secondary .page-tab {
	padding-top: 80px;
}

.sub-contents .secondary .description .info h4 {
	color: var(--color-primary);
	font-size: 3.2rem;
	font-weight: 600;
}

.sub-contents .secondary .description .info p {
	color: #333;
	font-size: 2.1rem;
	font-weight: 300;
	line-height: 1.7;
	font-family: var(--font-pretendard);
}

.sub-contents .secondary .description .info p b {
	font-weight: 600;
}

.sub-contents .secondary .description h5 {
	color: #111;
	font-size: 2.6rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.sub-contents .secondary .description h6 {
	font-size: 2.1rem;
}

.sub-contents .secondary .description .item-box {
	display: grid;
}

.sub-contents .secondary .description .features .item-box {
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
}

.sub-contents .secondary .description .features .item {
	width: 100%;
	height: 240px;
	display: flex;
	flex-direction: column;
	background: #f8f8f8;
	padding: 30px;
}

.sub-contents .secondary .description .features .text em {
	color: #ccc;
	font-size: 1.9rem;
	font-weight: 700;
}

.sub-contents .secondary .description .features .text h6 {
	color: #111;
	font-weight: 500;
	font-family: var(--font-pretendard);
	margin-top: 20px;
}

.sub-contents .secondary .description .features .icon {
	margin: auto 0 0 auto;
}

.sub-contents .secondary .description .areas .item-box,
.sub-contents .secondary .description .shape .item-box {
	grid-template-columns: repeat(2, 1fr);
	row-gap: 20px;
	column-gap: 20px;
}

.sub-contents .secondary .description .areas .item *,
.sub-contents .secondary .description .shape .item * {
	color: var(--color-white);
}

.sub-contents .secondary .description .areas .img img,
.sub-contents .secondary .description .shape .img img {
	min-width: 100%;
}

.sub-contents .secondary .description .areas .item {
	position: relative;
}

.sub-contents .secondary .description .areas .item span {
	font-size: 2.8rem;
	font-weight: 700;
	font-family: var(--font-pretendard);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .secondary .description .shape .item {
	background: #f8f8f8;
	padding: 30px;
}

.sub-contents .secondary .description .shape .item h6 {
	height: 65px;
	background: #222;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .secondary .plan::before {
	background-image: url("/img/sub/bg_secondary2.jpg");
	left: calc(50% - (var(--left-width)) / 2);
}

.sub-contents .secondary .plan * {
	color: var(--color-white);
}

.sub-contents .secondary .plan>p {
	font-size: 2.1rem;
	font-weight: 300;
	line-height: 1.7;
	font-family: var(--font-pretendard);
}

.sub-contents .secondary .plan .table-box {
	width: calc(100% + 20px);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .secondary .plan .table-box table {
	border-collapse: separate;
	border-spacing: 10px;
}

.sub-contents .secondary .plan .table-box table thead th {
	height: 85px;
	background: linear-gradient(90deg, #0E3AAA 0%, #474D5E 100%);
	font-size: 2.1rem;
	font-weight: 600;
}

.sub-contents .secondary .plan .table-box table th,
.sub-contents .secondary .plan .table-box table td {
	height: 65px;
	font-size: 1.9rem;
	text-align: center;
}

.sub-contents .secondary .plan .table-box table th {
	background: linear-gradient(96deg, #7496ED 0%, #2C3C63 100%);
	font-weight: 700;
}

.sub-contents .secondary .plan .table-box table td {
	background: rgba(255, 255, 255, 0.05);
	font-weight: 500;
	font-family: var(--font-pretendard);
	position: relative;
}

.sub-contents .secondary .plan .table-box table td::after {
	content: "";
	display: block;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border: 1px solid transparent;
	background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%) border-box;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: subtract;
	-webkit-mask-composite: xor;
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm * {
	font-family: var(--font-pretendard);
}

.sub-contents .tpm .page-tab {
	top: 120px;
}

.sub-contents .tpm .content>div>p,
.sub-contents .tpm .content>div>p b {
	line-height: 1.7;
}

.sub-contents .tpm .content>div>p {
	color: #333;
	font-size: 2.1rem;
	font-weight: 300;
}

.sub-contents .tpm .content>div>p b {
	font-weight: 600;
}

.sub-contents .tpm .content>hr {
	width: 100%;
	height: 1px;
	background: var(--color-border);
}

.sub-contents .tpm .total .item-box {
	display: flex;
	justify-content: center;
}

.sub-contents .tpm .total .circle-wrap {
	position: relative;
}

.sub-contents .tpm .total .circle-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(auto, 120px));
	row-gap: 180px;
	column-gap: 20px;
}

.sub-contents .tpm .total .circle-list .circle,
.sub-contents .tpm .total .circle-list .circle::after {
	border-radius: 50%;
}

.sub-contents .tpm .total .circle-list .circle {
	background: var(--color-white);
	padding: 50% 0;
	position: relative;
}

.sub-contents .tpm .total .circle-list .circle::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .total .circle-list .circle::after {
	border-color: var(--color-primary);
}

.sub-contents .tpm .total .circle-list .circle h5 {
	color: #111;
	font-size: 2.2rem;
	font-weight: 500;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .total .circle-list.en .circle h5 {
	font-size: 1.85rem;
}

.sub-contents .tpm .total .circle-list .top {
	grid-area: 1/2;
}

.sub-contents .tpm .total .circle-list .bottom {
	grid-row-start: 2;
}

.sub-contents .tpm .total .circle-list .left {
	grid-column-start: 1;
}

.sub-contents .tpm .total .circle-list .right {
	grid-column-start: 3;
}

.sub-contents .tpm .total .center,
.sub-contents .tpm .total .center::after,
.sub-contents .tpm .total .center .inner {
	border-radius: 50%;
}

.sub-contents .tpm .total .center::after,
.sub-contents .tpm .total .center .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .total .center {
	width: 90%;
	background: #fafafa;
	padding: 45% 0;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}

.sub-contents .tpm .total .center::after {
	content: "";
	display: block;
	width: 77.7777%;
	height: 77.7777%;
	border: 2px dashed #eee;
	pointer-events: none;
}

.sub-contents .tpm .total .center .inner {
	width: 55.5555%;
	height: 55.5555%;
	background: var(--color-primary);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .total .center .inner * {
	color: var(--color-white);
}

.sub-contents .tpm .total .center .inner img {
	width: 12px;
}

.sub-contents .tpm .total .center .inner h5 {
	font-size: 2.6rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.sub-contents .tpm .total .center .inner span {
	font-size: 1.8rem;
	font-weight: 600;
	opacity: 0.6;
}

.sub-contents .tpm .total .text-box {
	min-width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-content: center;
	row-gap: 180px;
	column-gap: 300px;
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%);
}

.sub-contents .tpm .total .text-box>div {
	align-items: center;
}

.sub-contents .tpm .total .text-box .row {
	column-gap: 15px;
}

.sub-contents .tpm .total .text-box .column {
	row-gap: 15px;
	grid-area: 2/1/2/3;
}

.sub-contents .tpm .total .text-box p {
	color: var(--color-primary);
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--font-redhatdisplay);
	white-space: nowrap;
}

.sub-contents .tpm .activities .top {
	display: grid;
	grid-template-columns: 1fr 190px 1fr;
	align-items: center;
}

.sub-contents .tpm .activities .top h6 {
	height: 55px;
	color: var(--color-white);
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .activities .top .left {
	background: #1A243E;
}

.sub-contents .tpm .activities .top .right {
	background: #374A7A;
}

.sub-contents .tpm .activities .top .center {
	border-radius: 50%;
	padding: 50% 0;
	position: relative;
}

.sub-contents .tpm .activities .top .center::before,
.sub-contents .tpm .activities .top .center h6 {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .activities .top .center::before {
	content: "";
	display: block;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	background: var(--color-white);
}

.sub-contents .tpm .activities .top .center h6 {
	width: 84.2105%;
	height: 84.2105%;
	background: linear-gradient(135deg, #1A243E 0%, #374A7A 100%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .activities .lists {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
	margin-top: 40px;
	position: relative;
}

.sub-contents .tpm .activities .lists::before, .sub-contents .tpm .activities .lists::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .tpm .activities .lists::before {
	width: 1px;
	height: 20px;
	border-right: 2px dashed var(--color-border);
	top: -40px;
}

.sub-contents .tpm .activities .lists::after {
	width: calc(75% + 20px);
	height: 1px;
	border-top: 2px dashed var(--color-border);
	top: -20px;
}

.sub-contents .tpm .activities .lists .dot-line {
	height: 20px;
	margin: 0 0 -14px;
}

.sub-contents .tpm .activities .lists .dot-line::before {
	top: -20px;
	transform: translateX(-50%);
}

.sub-contents .tpm .activities .lists dl,
.sub-contents .tpm .activities .lists dl dd {
	display: flex;
	flex-direction: column;
}

.sub-contents .tpm .activities .lists dl {
	height: 100%;
	row-gap: 10px;
	position: relative;
}

.sub-contents .tpm .activities .lists dl dt {
	width: 100%;
	height: 55px;
	flex-shrink: 0;
	color: #333;
	font-size: 1.7rem;
	font-weight: 500;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .activities .lists dl dt::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .activities .lists dl dd {
	height: 100%;
	row-gap: 5px;
	background: #f8f8f8;
	padding: 20px;
}

.sub-contents .tpm .activities .lists dl p {
	color: #333;
	font-weight: 300;
}

.sub-contents .tpm .activities .bg {
	background: #f8f8f8;
	padding: 20px;
}

.sub-contents .tpm .activities .build {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 10px;
}

.sub-contents .tpm .activities .build * {
	text-align: center;
}

.sub-contents .tpm .activities .build p,
.sub-contents .tpm .activities .build dl>* {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .activities .build p {
	background: #555;
	color: var(--color-white);
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.sub-contents .tpm .activities .build dl {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.sub-contents .tpm .activities .build dl>* {
	background: var(--color-white);
	position: relative;
}

.sub-contents .tpm .activities .build dl>*::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .activities .build dl dt {
	height: 55px;
	flex-shrink: 0;
	color: #333;
	font-weight: 500;
	font-family: "Red Hat Display", "Pretendard", sans-serif;
}

.sub-contents .tpm .activities .build dl dd {
	height: 100%;
	color: #333;
	font-weight: 300;
	padding: 20px;
}

.sub-contents .tpm .activities .build dl dd::before {
	content: "";
	display: block;
	width: 2px;
	height: 10px;
	background: var(--color-border);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .tpm .activities .build+p {
	width: 100%;
	height: 55px;
	background: #aaa;
	color: var(--color-white);
	font-size: 1.7rem;
	font-weight: 600;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.sub-contents .tpm .activities .arrow-h {
	margin: 0 auto;
}

.sub-contents .tpm .activities h6.bottom {
	width: 100%;
	height: 75px;
	background: #2B54BD;
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .system ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 10px;
	column-gap: 10px;
}

.sub-contents .tpm .system ul li {
	background: #f8f8f8;
	padding: 20px 30px;
}

.sub-contents .tpm .system ul p {
	color: #333;
	font-size: 1.9rem;
	font-weight: 300;
}

.sub-contents .tpm .propulsion h6 {
	color: var(--color-white);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .propulsion .grid {
	display: grid;
	grid-template-columns: 0.454fr auto 0.454fr;
	column-gap: 20px;
}

.sub-contents .tpm .propulsion .workflow,
.sub-contents .tpm .propulsion .center {
	display: grid;
	grid-template-rows: 55px auto 95px;
	row-gap: 20px;
	align-items: center;
}

.sub-contents .tpm .propulsion .workflow div {
	height: 100%;
	position: relative;
}

.sub-contents .tpm .propulsion .workflow p {
	height: 100%;
	background: #aaa;
	color: var(--color-white);
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .propulsion .workflow span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .tpm .propulsion .workflow span:first-child {
	top: -30px;
}

.sub-contents .tpm .propulsion .workflow span:last-child {
	bottom: -30px;
}

.sub-contents .tpm .propulsion .center h6 {
	height: 100%;
	background: #555;
	font-size: 1.8rem;
	font-weight: 600;
}

.sub-contents .tpm .propulsion .center .bg {
	background: #f8f8f8;
	padding: 20px;
}

.sub-contents .tpm .propulsion .center .bg:has(p) ul li {
	height: 85px;
}

.sub-contents .tpm .propulsion .center .bg p {
	color: #1F3082;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	margin-top: 20px;
}

.sub-contents .tpm .propulsion .center ul {
	display: flex;
	column-gap: 10px;
}

.sub-contents .tpm .propulsion .center ul li {
	width: 100%;
	height: 55px;
	background: var(--color-white);
	color: #333;
	font-weight: 300;
	text-align: center;
	padding: 0 20px;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .tpm .propulsion .center ul li::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .propulsion .line-box {
	width: 100%;
	height: 80px;
	margin: -7px 0;
	position: relative;
}

.sub-contents .tpm .propulsion .dot-line.box {
	width: calc(100% - 180px);
	height: 50%;
	align-items: flex-start;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .tpm .propulsion .dot-line.box::before {
	width: 100%;
	height: calc(100% - 2px);
	border: 2px dashed var(--color-border);
	border-top: none;
}

.sub-contents .tpm .propulsion .dot-line.box span:first-child {
	transform: translateX(-7px);
}

.sub-contents .tpm .propulsion .dot-line.box span:last-child {
	transform: translateX(7px);
}

.sub-contents .tpm .propulsion .dot-line.v {
	height: 100%;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .tpm .propulsion .item-box>h6 {
	width: 100%;
	height: 75px;
	background: #2B54BD;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
}

.sub-contents .certificate .item-box {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: var(--gap120);
	column-gap: 40px;
}

.sub-contents .certificate .item .img-box {
	position: relative;
	position: relative;
}

.sub-contents .certificate .item .img-box::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .certificate .item .img-box .img {
	padding: 69.445% 0;
	position: relative;
	overflow: hidden;
}

.sub-contents .certificate .item .img-box .img>img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: all 0.6s var(--slow);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .certificate .item .img-box::after {
	transition: all 0.4s var(--slow);
}

.sub-contents .certificate .item .img-box button,
.sub-contents .certificate .item .img-box button span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .certificate .item .img-box button {
	opacity: 0;
	transition: all 0.4s var(--slow);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .certificate .item .img-box button span {
	width: 80px;
	height: 80px;
	background: var(--color-primary);
	border-radius: 50%;
}

.sub-contents .certificate .item p {
	color: #111;
	font-size: 2rem;
	font-weight: 500;
	font-family: var(--font-pretendard);
	text-align: center;
	margin-top: 30px;
}

.sub-contents .certificate .item:hover .img-box::after {
	border-color: var(--color-primary);
}

.sub-contents .certificate .item:hover .img-box button {
	opacity: 1;
}

.sub-contents .certificate .popup {
	width: 480px;
	background: var(--color-white);
	padding: 30px;
	z-index: 4;
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .certificate .popup .close {
	display: flex;
	margin-left: auto;
}

.sub-contents .certificate .popup .column {
	padding: 30px;
}

.sub-contents .certificate .popup .img {
	border: 2px solid var(--color-border);
	padding: 68.885% 0;
	position: relative;
	overflow: hidden;
}

.sub-contents .certificate .popup .img>img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: all 0.6s var(--slow);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .certificate .popup p {
	color: #111;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	font-family: var(--font-pretendard);
}

.sub-contents .purpose .item-box {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
}

.sub-contents .purpose .item {
	display: grid;
	grid-template-columns: 280px 120px auto;
	align-items: flex-start;
}

.sub-contents .purpose .item * {
	font-family: var(--font-pretendard);
}

.sub-contents .purpose .item h6,
.sub-contents .purpose .item .dot-line {
	height: 75px;
}

.sub-contents .purpose .item h6 {
	width: 100%;
	color: var(--color-white);
	font-size: 2.1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .purpose .item>h6 {
	background: #aaa;
	font-weight: 600;
}

.sub-contents .purpose .item p {
	color: #333;
	font-size: 1.7rem;
	font-weight: 300;
	line-height: 1.7;
	padding: 40px;
	position: relative;
}

.sub-contents .purpose .item p::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .purpose .text {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.sub-contents .purpose .text h6 {
	background: #2B54BD;
	font-weight: 500;
}

.sub-contents .purpose .bg {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	background: #F8F8F8;
	padding: 20px;
}

.sub-contents .purpose .bg .text h6 {
	flex-shrink: 0;
	background: #374A7A;
}

.sub-contents .purpose .bg .text p {
	height: 100%;
	background: var(--color-white);
}

.sub-contents .ethics .banner {
	position: relative;
}

.sub-contents .ethics .banner .bg,
.sub-contents .ethics .banner .bg img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .ethics .banner .bg {
	width: 100vw;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.sub-contents .ethics .banner .bg img {
	min-width: 100%;
	max-width: inherit;
	max-height: 100%;
}

.sub-contents .ethics .banner dl * {
	color: var(--color-white);
	font-family: var(--font-pretendard);
}

.sub-contents .ethics .banner dl dt {
	font-size: calc(var(--font74) + 0.6rem);
	font-weight: 700;
	margin-bottom: 30px;
}

.sub-contents .ethics .banner dl dd {
	font-size: 2.3rem;
	font-weight: 500;
	line-height: 1.7;
	opacity: 0.8;
}

.sub-contents .ethics .list-box,
.sub-contents .ethics .list-box .lists {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.sub-contents .ethics .list-box>h6 {
	width: 100%;
	height: 75px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 2.1rem;
	font-weight: 600;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .ethics .list-box *:not(em) {
	font-family: var(--font-pretendard);
}

.sub-contents .ethics .list-box .item,
.sub-contents .ethics .list-box .item dl {
	display: grid;
}

.sub-contents .ethics .list-box .item {
	grid-template-columns: 100px 40px auto;
}

.sub-contents .ethics .list-box .item * {
	font-size: 1.9rem;
}

.sub-contents .ethics .list-box .item em,
.sub-contents .ethics .list-box .item dl dt {
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .ethics .list-box .item em {
	color: var(--color-gray);
	font-weight: 700;
}

.sub-contents .ethics .list-box .item dl {
	column-gap: 10px;
	grid-template-columns: 250px auto;
}

.sub-contents .ethics .list-box .item dl dt {
	color: #333;
	font-weight: 600;
	padding: 0 5px;
}

.sub-contents .ethics .list-box .item dl dd {
	padding: 40px;
}

.sub-contents .ethics .list-box .item dl p {
	align-items: flex-start;
	color: #555;
	font-weight: 300;
	letter-spacing: -0.02em;
	line-height: 1.7;
}

.sub-contents .ethics .list-box .item dl p::before {
	transform: translateY(0.5em);
}

.sub-contents .ethics .list-box .item:nth-child(odd) em,
.sub-contents .ethics .list-box .item:nth-child(odd) dl dt,
.sub-contents .ethics .list-box .item:nth-child(odd) dl dd {
	position: relative;
}

.sub-contents .ethics .list-box .item:nth-child(odd) em::after,
.sub-contents .ethics .list-box .item:nth-child(odd) dl dt::after,
.sub-contents .ethics .list-box .item:nth-child(odd) dl dd::after {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--color-border);
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .ethics .list-box .item:nth-child(even) em,
.sub-contents .ethics .list-box .item:nth-child(even) dl dt,
.sub-contents .ethics .list-box .item:nth-child(even) dl dd {
	background: #f8f8f8;
}

.sub-contents .integrity .txt-list p {
	font-size: 2.1rem;
	font-weight: 600;
	color: #111;
	line-height: 1.3;
	padding-bottom: 40px;
	border-bottom: 1px solid #000;
}

.sub-contents .integrity .txt-list dl {
	padding:0 20px;
}

.sub-contents .integrity .txt-list dt {
	font-size: 1.9rem;
	font-weight: 300;
	color: #555;
	line-height: 1.3;
}

.sub-contents .integrity .txt-list .box {
	background: #F8F8F8;
	padding: 40px;
}

.sub-contents .integrity .txt-list li:not(:last-child) {
	margin-bottom: 20px;
}

.sub-contents .integrity .txt-list .box li:not(:last-child) {
	margin-bottom: 15px;
}

.sub-contents .integrity .txt-list li {
	font-size: 1.9rem;
	font-weight: 300;
	color: #555;
	line-height: 1.3;
}

.sub-contents .integrity .txt-list .box li {
	font-size: 1.7rem;
}

.sub-contents .code .sub-flex {
	flex-wrap: wrap;
}

.sub-contents .code .txtbox {
	width: 520px;
	position: sticky;
	top: 100px;
}

.sub-contents .code .txtbox h4 {
	font-size: 5.4rem;
	font-weight: 300;
	color: #555;
	line-height: 1.3;
	letter-spacing: -0.06em;
}

.sub-contents .code .txtbox h4.en {
	font-size: 5.0rem;
}

.sub-contents .code .txtbox h4 strong {
	font-weight: 600;
	color: #111;
	display: inline-block;
	margin-left: 5.5%;
}

.sub-contents .code .img-list {
	width: calc(100% - 520px);
}

.sub-contents .code .img-list ul {
	gap: 180px 80px;
	flex-wrap: wrap;
}

.sub-contents .code .img-list ul li {
	flex-wrap: wrap;
	position: relative;
	width: calc((100% - 80px) / 2);
}

.sub-contents .code .img-list ul li .imgbox {
	position: relative;
}
.sub-contents .code .img-list ul li:nth-child(2) {
	margin-top: 400px;
}

.sub-contents .code .img-list ul li:nth-child(3),
.sub-contents .code .img-list ul li:nth-child(5) {
	margin-top: -400px;
}

.sub-contents .code .img-list ul li .over {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
    justify-content: center;
	text-align: center;
	padding:0 20px;
}

.sub-contents .code .img-list ul li .over::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(152deg, #1A243E 0%, #374A7A 100%);
	transition: all 0.4s var(--slow);
	opacity: 0;
}

.sub-contents .code .img-list ul li:hover .over::after {
	opacity: 1;
}

.sub-contents .code .img-list ul li .over .txt {
	font-size: 2.4rem;
	font-weight: 500;
	color: #fff;
	line-height: 1.5;
	letter-spacing: -0.03em;
}

.sub-contents .code .img-list ul li .over .icon,
.sub-contents .code .img-list ul li .over .txt {
	position: relative;
	z-index: 2;
}

.sub-contents .human .item-box {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.sub-contents .human .item {
	background: #f8f8f8;
	padding: 0 40px;
}

.sub-contents .human .item button {
	width: 100%;
	column-gap: 20px;
	padding: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .human .item em,
.sub-contents .human .item h6 {
	font-size: 2.6rem;
	text-align: left;
}

.sub-contents .human .item em {
	color: var(--color-gray);
	font-weight: 700;
}

.sub-contents .human .item h6 {
	color: #111;
	font-weight: 600;
}

.sub-contents .human .item .plus {
	width: 20px;
	height: 20px;
	margin-left: auto;
	position: relative;
}

.sub-contents .human .item .plus span {
	display: block;
	background: var(--color-black);
	transition: all 0.4s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .human .item .plus span::first-child {
	width: 100%;
	height: 2px;
}

.sub-contents .human .item .plus span:last-child {
	width: 2px;
	height: 100%;
}

.sub-contents .human .item p {
	background: var(--color-white);
	color: #555;
	font-size: 1.8rem;
	font-weight: 300;
	font-family: var(--font-pretendard);
	line-height: 1.7;
	padding: 60px;
	margin-bottom: 40px;
	display: none;
}

.sub-contents .human .item.on .plus span:last-child {
	height: 0;
}

.sub-contents .standards .download-button {
	display: inline-flex;
	align-items: center;
	height: 75px;
	column-gap: 20px;
	background: var(--color-gray);
	padding: 0 60px;
	margin-left: auto;
}

.sub-contents .standards .download-button span {
	color: var(--color-white);
	font-size: 1.9rem;
	font-weight: 600;
}

.sub-contents .fairness .contents dt h4 {
	color: #111;
	font-size: 2.6rem;
	font-weight: 600;
}

.sub-contents .fairness .contents dd {
	margin-top: 30px;
}

.sub-contents .fairness .contents dd .box {
	padding: 60px;
	color: #333;
	font-size: 2.1rem;
	font-weight: 300;
	line-height: 1.7;
	background: #F8F8F8;
}

.sub-contents .fairness .contents dd .download-button span {
	font-size: 1.9rem;
}

.sub-contents .guidance .contents .tit {
	border-bottom: 1px solid #000;
	padding-bottom: 40px;
}

.sub-contents .guidance .contents .tit strong {
	color: #111;
	font-size: 4.2rem;
	font-weight: 600;
	line-height: 1.3;
}

.sub-contents .guidance .contents .box p {
	line-height: 1.7;
}

.sub-contents .guidance .contents .box dd{
	padding: 40px;
	background: #fff;
	margin-bottom: 40px;
}

.sub-contents .guidance .contents .box li {
	color: #555;
	font-size: 1.9rem;
	font-weight: 300;
	line-height: 1.3;
	font-family: var(--font-pretendard);
}

.sub-contents .guidance .contents .box li:not(:last-child) {
	margin-bottom: 20px;
}

.sub-contents .guidance .contents .process {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.sub-contents .guidance .contents .process li {
	width: calc((100% - 240px) / 4);
	height: 55px;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	background: rgba(26, 36, 62, 0.40);
	color: #fff;
	font-size: 1.7rem;
	font-weight: 600;
	line-height: 1.3;
	position: relative;
	padding: 0 5px;
}

.sub-contents .guidance .contents .process li:nth-child(2) {
	background: rgba(26, 36, 62, 0.60);
}

.sub-contents .guidance .contents .process li:nth-child(3) {
	background: rgba(26, 36, 62, 0.80);
}

.sub-contents .guidance .contents .process li:nth-child(4) {
	background: #1A243E;
}

.sub-contents .guidance .contents .process li::after {
	content: '';
	display: block;
	background: url(/img/svg/arrow_right.svg) center no-repeat;
	width: 80px;
	height: 14px;
	position: absolute;
	left: -80px;
	top: 50%;
	transform: translate(0, -50%);
}

.sub-contents .guidance .contents .process li:first-child::after {
	display: none;
}

.sub-contents .welfare .item-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 50px;
	column-gap: 50px;
}

.sub-contents .welfare .item {
	width: 100%;
	padding: 50% 0;
	position: relative;
}

.sub-contents .welfare .item .img,
.sub-contents .welfare .item .img::after,
.sub-contents .welfare .item .text {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .welfare .item .img::after {
	content: '';
	display: block;
	background: rgba(26, 36, 62, 0.8);
}

.sub-contents .welfare .item .text {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding:0 10px;
}

.sub-contents .welfare .item .text * {
	color: var(--color-white);
}

.sub-contents .welfare .item .text dl dt {
	font-size: 3.8rem;
	font-weight: 600;
	margin-bottom: 40px;
}

.sub-contents .welfare .item .text dl dd {
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: -0.020em;
	line-height: 1.5;
	opacity: 0.6;
}

.sub-contents .paging {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .paging a {
	width: auto;
	height: auto;
	border: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .paging .arr,
.sub-contents .paging ul {
	column-gap: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .paging .arr .first img,
.sub-contents .paging .arr .last img {
	margin: 0 -0.5px;
}

.sub-contents .paging ul {
	padding: 0 15px;
}

.sub-contents .paging ul li a {
	width: 35px;
	height: 35px;
	background: transparent;
	border-radius: 50%;
	color: var(--color-gray);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	position: relative;
	transition: all 0.4s;
}

.sub-contents .paging ul li:hover a, .sub-contents .paging ul li.on a {
	color: var(--color-white);
	background: var(--color-primary);
}

.sub-contents .gallery-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: var(--gap120);
	column-gap: 50px;
}

.sub-contents .gallery-box .item {
	width: 100%;
}

.sub-contents .gallery-box .img {
	padding: 30% 0;
	position: relative;
	overflow: hidden;
}

.sub-contents .gallery-box .img>img {
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	transition: all 0.6s var(--slow);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .gallery-box a:hover .img>img {
	transform: translate(-50%, -50%) scale(1.1);
}

.sub-contents .gallery-box .img span {
	width: 80px;
	height: 80px;
	background: var(--color-primary);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.4s;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .gallery-box .text {
	margin-top: 30px;
}

.sub-contents .gallery-box .text h5 {
	height: 3em;
	color: #111;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 20px;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.sub-contents .gallery-box .text span {
	color: var(--color-gray);
	font-size: 1.8rem;
	font-weight: 700;
}

.sub-contents .gallery-box .item:hover .img span {
	opacity: 1;
}

.sub-contents .view-box .top,
.sub-contents .view-box .file {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

.sub-contents .view-box .top {
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 40px;
}

.sub-contents .view-box .top span {
	color: var(--color-primary);
	font-size: 2rem;
	font-weight: 700;
}

.sub-contents .view-box .top h4 {
	color: #111;
	font-size: 4.8rem;
	font-weight: 600;
}

.sub-contents .view-box .top p {
	color: var(--color-gray);
	font-size: 1.8rem;
	font-weight: 600;
}

.sub-contents .view-box .top p b {
	font-weight: 700;
}

.sub-contents .view-box .top .row {
	align-items: center;
	column-gap: 20px;
}

.sub-contents .view-box .top .row hr {
	width: 1px;
	height: 16px;
	background: var(--color-border);
}

.sub-contents .view-box .content {
	padding: 20px 0;
}

.sub-contents .view-box .file {
	margin: 80px 0 20px;
}

.sub-contents .view-box .file h6 {
	color: #111;
	font-size: 2.1rem;
	font-weight: 500;
}

.sub-contents .view-box .file a {
	height: 65px;
	background: #f8f8f8;
	padding: 0 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.sub-contents .view-box .file span {
	color: #aaa;
	font-size: 1.7rem;
	font-weight: 500;
}

.sub-contents .view-box .file img {
	filter: brightness(0.6667);
}

.sub-contents .view-box .post-box {
	display: flex;
	align-items: center;
	column-gap: 40px;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 60px 20px;
}

.sub-contents .view-box .post-box .post {
	width: 100%;
	display: flex;
	align-items: center;
	column-gap: 40px;
}

.sub-contents .view-box .post-box .post dl * {
	font-size: 1.9rem;
}

.sub-contents .view-box .post-box .post dl dt {
	color: #111;
	font-weight: 600;
	margin-bottom: 10px;
}

.sub-contents .view-box .post-box .post dl dd {
	height: 1.3em;
	color: #333;
	font-weight: 300;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.sub-contents .view-box .post-box .post span {
	flex-shrink: 0;
}

.sub-contents .view-box .post-box .post .arrow-cls {
	stroke: var(--color-gray);
}

.sub-contents .view-box .post-box .prev {
	justify-content: flex-start;
	text-align: left;
}

.sub-contents .view-box .post-box .next {
	justify-content: flex-end;
	text-align: right;
}

.sub-contents .view-box .list-button {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	display: grid;
	grid-template-rows: repeat(3, 4px);
	grid-template-columns: repeat(3, 4px);
	align-content: center;
	justify-content: center;
	row-gap: 6px;
	column-gap: 6px;
	background-color: var(--color-primary);
}

.sub-contents .view-box .list-button span {
	display: block;
	background: var(--color-white);
	width: 100%;
	height: 100%;
}

/* register */
:root {
    --form-height: 65px;
}
.register-box .reBox>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 80px;
}

.register-box .reBox>ul>li {
    position: relative;
    width: 100%;
}

.register-box .reBox>ul>li.w50 {
    width: calc((100% - 80px) / 2);
}

.register-box .reBox>ul>li>label {
    color: #111;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    margin-bottom: 15px;
}

.register-box .reBox>ul>li>label span {
    position: relative;
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
    text-indent: -9999em;
}

.register-box .reBox>ul>li>label span:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #FF0E0E;
}

.register-box .reBox>ul>li .ipbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

.register-box .reBox>ul>li input[type="text"],
.register-box .reBox>ul>li input[type="password"] {
    height: var(--form-height);
    padding: 0 30px;
    font-size: 1.9rem;
    color: #333;
    font-weight: 400;
    border: 1px solid #E5E5E5;
    outline: none;
    background: none;
    border-radius: 0;
    background-color: #fff;
}

.register-box .reBox>ul>li select {
    width: 100%;
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 50px 0 30px;
    font-size: 1.9rem;
    color: #333;
    font-weight: 400;
    border: 1px solid #E5E5E5;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background:#fff url(/img/sub/icon_select_down.png) right center no-repeat;
}

.register-box .reBox>ul>li select::-ms-expand {
    display: none;
}

.register-box .reBox>ul>li textarea {
    width: 100%;
    height: 180px;
    line-height: 1.6;
    padding: 30px;
    font-size: 1.9rem;
    color: #333;
    font-weight: 400;
    border: 1px solid #E5E5E5;
    outline: none;
    background-color: #fff;
    border-radius: 0;
}

.register-box .reBox>ul>li input.ip01 {
    width: 100%
}

.register-box .reBox>ul>li .calendar,
.register-box .reBox>ul>li select.sel01 {
    width: 33%
}

.register-box .reBox>ul>li input[type="text"]:hover,
.register-box .reBox>ul>li input[type="password"]:hover,
.register-box .reBox>ul>li select:hover,
.register-box .reBox>ul>li textarea:hover {
    border: 2px solid #1A243E;
}

.register-box .reBox>ul>li input[type="text"]:hover,
.register-box .reBox>ul>li input[type="password"]:hover {
    padding: 0 29px;
}

.register-box .reBox>ul>li select:hover {
    padding: 0 49px 0 29px;
    line-height: calc(var(--form-height) - 2px);
}

.register-box .reBox>ul>li textarea:hover {
    padding: 29px;
}

.register-box .reBox>ul>li input::placeholder,
.register-box .reBox>ul>li textarea::placeholder {
    color: #ccc;
    opacity: 1;
    font-weight: 300;
}

.register-box .reBox>ul>li .code-box {
    display: flex;
    gap: 10px;
    position: relative;
    width: 100%;
}

.register-box .reBox>ul>li .code-box .img {
    width: 175px;
}

.register-box .reBox>ul>li .code-box input {
    width: calc(100% - 175px - var(--form-height) - 10px)
}

.register-box .reBox>ul>li .code-box .btn_refresh {
    height: var(--form-height);
    width: var(--form-height);
    border: none;
    outline: none;
    background: #222 url(/img/sub/btn_refresh.svg) center center no-repeat;
}

.register-box .file {
    display: flex;
    gap: 0 10px;
    width: 100%;
}

.register-box .file>input {
    width: calc(100% - 280px - 10px);
}

.register-box .file label {
    width: 280px;
    position: relative;
    height: var(--form-height);
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #222;
}

.register-box .file label input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.register-box .privacy-box {
    margin-top: 60px;
}

.register-box .privacy-box>p {
    color: #111;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    margin-bottom: 15px;
}

.register-box .privacy-box>p>span {
    position: relative;
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
    text-indent: -9999em;
}

.register-box .privacy-box>p>span:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #FF0E0E;
}

.register-box .privacy-box .scroll-box {
    margin-top: 15px;
    height: 200px;
    overflow: auto;
    background: #F8F8F8;
    padding: 30px;
}

.register-box .privacy-box .scroll-box * {
    font-size: 100%;
}

.register-box .privacy-box .ch {
    margin-top: 20px;
    display: flex;
}

.register-box .privacy-box .ch input[type="checkbox"] {
    opacity: 0;
    height: auto;
    line-height: auto;
}

.register-box .privacy-box .ch input[type="checkbox"]+span {
    position: relative;
    padding: 0 0 0 40px;
    font-weight: 300;
    font-size: 1.9rem;
    line-height: 1.4 !important;
    display: inline-block;
    color: #111;
}

.register-box .privacy-box .ch input[type="checkbox"]+span:before {
    content: '';
    display: block;
    width: 23px;
    height: 23px;
    vertical-align: middle;
    transition: all 0.3s;
    border: 1px solid #E5E5E5;
    position: absolute;
    left: 0;
    top: -1px;
}

.register-box .privacy-box .ch input[type="checkbox"]:checked+span:before {
    border: 1px solid #1A243E;
    background: #1A243E url(/img/sub/ch_on.svg) no-repeat center/ cover;
}

.sub-contents .btn-box,
.register-box .btnCont {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-contents .btn-box a,
.sub-contents .btnCont a,
.register-box .btnCont button {
    background: var(--color-primary);
    width: 420px;
    height: 85px;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.3;
    display: flex;
	align-items: center;
    justify-content: center;
}
.sub-contents .btnCont a.cancel {
    background: var(--color-gray);
}

.sub-contents .btn-box {
    margin-top: 120px;
}

.sub-contents .btn-down a {
    display: flex;
	align-items: center;
    justify-content: center;
	text-align: center;
	width: 280px;
    height: var(--form-height);
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
	background: var(--color-primary);
}

.register-box .btnCont button.w100 {
    width: 100%;
}

.register-box .calendar {
	position: relative;
}

.register-box .ch-list {
 	width: 100%;
	flex-wrap: wrap;
	gap: 10px 60px;
	margin-top: 10px;
}

.register-box .ch-list li {
	width: auto;
}

.register-box .rd input[type="radio"] {
    opacity: 0;
    height: auto;
    line-height: auto;
}

.register-box .rd input[type="radio"]+span {
    position: relative;
    padding: 0 0 0 40px;
    font-weight: 300;
    font-size: 1.9rem;
    line-height: 1.4 !important;
    display: inline-block;
    color: #111;
}

.register-box .rd input[type="radio"]+span:before {
    content: '';
    display: block;
    width: 23px;
    height: 23px;
    vertical-align: middle;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: 0;
    background: url(/img/svg/rd_off.svg) no-repeat center/ cover;
}

.register-box .rd input[type="radio"]:checked+span:before {
    background: url(/img/svg/rd_on.svg) no-repeat center/ cover;
}

.sub-contents .support .contents {
	flex-wrap: wrap;
}

.sub-contents .support .contents .txtbox {
	width: 640px;
	position: sticky;
    top: 100px;
}

.sub-contents .support .contents .txtbox p {
    color: #111;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.5;
	letter-spacing: -0.05em;
}

.sub-contents .support .contents .txtbox ul {
    margin-top: 120px;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.sub-contents .support .contents .txtbox li {
	width: 100%;
	display: flex;
}

.sub-contents .support .contents .txtbox li i {
	width: 30px;
}

.sub-contents .support .contents .txtbox li img {
	vertical-align: middle;
}

.sub-contents .support .contents .txtbox li strong {
	width: 160px;
    color: #111;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
	letter-spacing: -0.03em;
}

.sub-contents .support .contents .txtbox li span {
	width: calc(100% - 160px);
    color: #555;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.3;
	letter-spacing: -0.03em;
}

.sub-contents .support .contents .support-ip {
	width: calc(100% - 640px);
}

.ui-widget {
    font-size: 1.6rem;
}

.ui-datepicker .ui-datepicker-year {
    display: inline-block;
    margin-right: 5px;
}

.ui-datepicker .ui-datepicker-year:after {
    content: "년";
}

.ui-datepicker-trigger {
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);
}

.sub-contents .recruit-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 50px;
	column-gap: 50px;
}

.sub-contents .recruit-list .item {
	width: 100%;
}

.sub-contents .recruit-list .txtbox{
	padding: 60px;
	background: #F8F8F8;
	min-height: 217px;
	border: 2px solid #F8F8F8;
	transition: all 1s;
}

.sub-contents .recruit-list .txtbox:hover  {
	border: 2px solid var(--color-primary)
}

.sub-contents .recruit-list .txtbox .type {
	color: #fff;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 40px;
	display: inline-block;
	padding: 10px 30px;
    background: #1A243E;
}

.sub-contents .recruit-list .txtbox .type.finish {
    background: #aaa;
}

.sub-contents .recruit-list .txtbox h5 {
	height: 3em;
	color: #111;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 20px;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.sub-contents .recruit-list .txtbox span {
	color: var(--color-gray);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
}

.sub-contents .recruit-list .txtbox span strong {
	color: #111;
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
    position: relative;
}

.sub-contents .recruit-list .txtbox span strong::before {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 50%;
	transform:translateY(-50%);
    background: #000;
}

.sub-contents .recruit-reg {
	margin-top: 80px;
	padding: 120px 20px;
	background: #F8F8F8;
}

.sub-contents .recruit-reg .register-box {
	max-width: 960px;
	margin: 0 auto;
}

.sub-contents .recruit-reg .register-box .privacy-box .scroll-box {
    background: #fff;
}
.sub-contents .recruit-reg .register-box .btnCont {
	display: flex;
	gap: 10px;
}
.sub-contents .recruit-reg .register-box .btnCont a,
.sub-contents .recruit-reg .register-box .btnCont button {
	width: 50%
}


.sub-contents .talent .slide-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.sub-contents .talent .slide-wrap {
    max-width: 1920px;
    margin: 0 auto;
}

.sub-contents .talent .slide-wrap .swiper-slide {
    position: relative;
    width: 73%
}

.sub-contents .talent .slide-wrap .swiper-slide .txtbox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-contents .talent .slide-wrap .swiper-slide .txtbox strong {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.20);
    color: transparent;
    font-size: 150px;
    font-style: italic;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.sub-contents .talent .slide-wrap .swiper-slide .txtbox span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .talent .slide-wrap .option-box {
    display: none
}

.sub-contents .talent .value-box {
    flex-wrap: wrap;
}

.sub-contents .talent .value-box .txtbox {
    width: 520px;
    position: sticky;
    top: 100px;
}

.sub-contents .talent .value-box .txtbox h4 {
    color: #111;
    font-size: 5.4rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.07em;
}

.sub-contents .talent .value-box .txtbox h4 strong {
    font-weight: 600;
    display: block;
    margin-left: 40px;
}

.sub-contents .talent .value-box .listbox {
    width: calc(100% - 520px);
}

.sub-contents .talent .value-box .listbox ul {
    border-top: 1px solid #000;
}

.sub-contents .talent .value-box .listbox li {
    display: flex;
    align-items: center;
    gap: 20px 100px;
    border-bottom: 1px solid #E5E5E5;
    padding: 80px 60px;
}

.sub-contents .talent .value-box .listbox li dt {
    color: var(--color-gray);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.3;
}

.sub-contents .talent .value-box .listbox li dt strong {
    margin-right: 20px;
    font-size: 2.8rem;
    color: #111;
    font-weight: 500;
}

.sub-contents .talent .value-box .listbox li dd {
    margin-top: 20px;
    color: #333;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .environmental *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .environmental .contents .top {
    padding-top: 150px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.sub-contents .environmental .contents .top .circle-box {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 320px;
    height: 320px;
    border-radius: 320px;
    border: 2px solid var(--color-primary);
    background: #FFF;
    box-shadow: 0px 0px 50px 0px rgba(26, 36, 62, 0.20);
}

.sub-contents .environmental .contents .top .circle-box dt {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 auto;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 100px;
    background: var(--color-primary);
}

.sub-contents .environmental .contents .top .circle-box dd {
    margin-top: 30px;
    color: #333;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.sub-contents .environmental .contents .top .circle-box::after {
    content: '';
    display: block;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: -130px;
    transform: translate(0, -50%);
    height: 2px;
    width: 125px;
    border-top: 2px dashed #fff;
}

.sub-contents .environmental .contents .top .circle-box:nth-child(1)::after {
    right: -130px;
    left: unset
}

.sub-contents .environmental .contents .top .center {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
}

.sub-contents .environmental .contents .top .center .cbox {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 400px;
    width: 320px;
    height: 320px;
    border: 40px solid #F0F0F0;
    background: var(--color-primary);
}

.sub-contents .environmental .contents .top .center .cbox h4 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .environmental .contents .top .center .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 450px;
    background: #FAFAFA;
}

.sub-contents .environmental .contents .top .center .line::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 600px;
    border: 2px dashed #E5E5E5;
}

.sub-contents .environmental .contents .box {
    position: relative;
    margin: 260px auto 0;
    max-width: 840px;
    display: flex;
    gap: 10px 40px;
}

.sub-contents .environmental .contents .box::after {
    content: '';
    display: block;
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(calc(-50% + 2px));
    height: 238px;
    width: 2px;
    border-left: 2px dashed var(--color-primary);
}

.sub-contents .environmental .contents .box::before {
    content: '';
    display: block;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    height: 120px;
    width: calc((100% + 36px) / 2);
    border: 4px dashed var(--color-primary);
    border-width: 2px 2px 0;
    border-radius: 10px;
}

.sub-contents .environmental .contents .box dl {
    width: calc((100% - 40px) / 2);
    position: relative;
    z-index: 2;
}

.sub-contents .environmental .contents .box dl::before {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border: 4px solid #fff;
    background: var(--color-primary);
    border-radius: 10px;
}

.sub-contents .environmental .contents .box dt {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 75px;
    background: #AAA;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .environmental .contents .box dl:nth-child(2) dt {
    background: #555;
}

.sub-contents .environmental .contents .box dd {
    margin-top: 10px;
    padding: 30px;
    border: 2px solid #E5E5E5;
}

.sub-contents .environmental .contents .box dd .sbox {
    padding: 0 30px;
}

.sub-contents .environmental .contents .box dd .sbox.bg {
    padding: 30px;
    background: #F8F8F8;
    margin-top: 30px;
}

.sub-contents .environmental .contents .box dd .sbox li {
    color: #333;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .environmental .contents .box dd .sbox li:not(:last-child) {
    margin-bottom: 15px;
}

.sub-contents .environmental .bottom {
    margin-top: 150px;
    padding: 150px 0 200px;
    background: url(/img/sub/environmental_bg.jpg) no-repeat center / cover;
}

.sub-contents .environmental .bottom .box,
.sub-contents .environmental .bottom .box .w50,
.sub-contents .environmental .bottom .box .i-box {
    display: flex;
    gap: 10px 60px;
}

.sub-contents .environmental .bottom .box .txtbox {
    margin-top: 40px;
    color: #fff;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.sub-contents .ci *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .ci h4 {
    color: #333;
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .ci .top .logo-box {
    margin-top: 40px;
    background: #F8F8F8;
    padding: 150px 20px;
    text-align: center
}

.sub-contents .ci .top .info-box {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.sub-contents .ci .top .info-box dl {
    width: calc((100% - 40px) / 2);
}

.sub-contents .ci .top .info-box dt {
    color: #222;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.7;
}

.sub-contents .ci .top .info-box dd {
    margin-top: 30px;
}

.sub-contents .ci .top .info-box dd li:not(:last-child) {
    margin-bottom: 15px;
}

.sub-contents .ci .top .info-box dd li {
    color: #555;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .ci .top .txt_b {
    margin-top: 80px;
    color: #111;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .ci .list {
    display: flex;
    flex-wrap: wrap;
}

.sub-contents .ci .list dt {
    width: 520px;
}

.sub-contents .ci .list dd {
    width: calc(100% - 520px);
}

.sub-contents .ci .list dd>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sub-contents .ci .list dd>ul>li {
    width: calc((100% - 20px) / 2);
}

.sub-contents .ci .list dd>ul>li.full {
    width: 100%;
}

.sub-contents .ci .list dd>ul>li .box {
    height: 200px;
    border: 2px solid #E5E5E5;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #1A243E 0%, #374A7A 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-contents .ci .list dd>ul>li .text {
    text-align: center;
    margin-top: 20px;
    color: #111;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.sub-contents .ci .list dd .btn {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.sub-contents .ci .list dd .btn a {
    display: flex;
    align-items: center;
    background: var(--color-gray);
    padding: 15px 40px;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .ci .list dd .btn a img {
    margin-left: 20px;
}

.sub-contents .ci .list dd .btn a.bg {
    background: var(--color-primary);
}

.sub-contents .vision *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .vision .contents>dl {
    display: flex;
    flex-wrap: wrap;
}

.sub-contents .vision .contents>dl:nth-child(2) {
    align-items: center;
}

.sub-contents .vision .contents>dl>dt {
    width: 400px;
}

.sub-contents .vision .contents>dl>dd {
    width: calc(100% - 400px);
}

.sub-contents .vision .contents>dl>dt .sbox {
    width: 280px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #1A243E;
}

.sub-contents .vision .contents>dl>dt h4 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
}

.sub-contents .vision .contents>dl>dd .box-1 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #2B54BD;
}

.sub-contents .vision .contents>dl>dd .box-2 ul {
    display: flex;
    justify-content: space-around;
}

.sub-contents .vision .contents>dl>dd .box-2 li .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 320px;
    height: 320px;
    border-radius: 1000px;
    background: linear-gradient(152deg, #1A243E 0%, #374A7A 100%);
}

.sub-contents .vision .contents>dl>dd .box-2 li .circle .text {
    margin-top: 30px;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.sub-contents .vision .contents>dl>dd .box-3 ul {
    display: flex;
    gap: 20px;
}

.sub-contents .vision .contents>dl>dd .box-3 li {
    color: #333;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
    width: calc((100% - 40px) / 3);
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #E5E5E5;
    background: #FFF;
}

.sub-contents .vision .contents>dl>dd .box-4>ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.sub-contents .vision .contents>dl>dd .box-4>ul>li {
    width: calc((100% - 40px) / 3);
    padding: 40px;
    background: #F8F8F8;
}

.sub-contents .vision .contents>dl>dd .box-4>ul>li li {
    color: #333;
    font-size: 1.9rem;
    font-weight: 300;
    line-height: 1.5;
}

.sub-contents .vision .contents>dl>dd .box-4>ul>li li:not(:last-child) {
    margin-bottom: 10px;
}

.sub-contents .vision .contents>dl>dd .box-4>ul>li .square {
    align-items: flex-start;
}

.sub-contents .vision .contents>dl>dd .box-4>ul>li .square::before {
    margin-top: 7px;
}

.sub-contents .history *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .history .contents h4 {
    color: #111;
    font-size: 6.4rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.05em;
}

.sub-contents .history .contents .top .text-box {
    display: flex;
    justify-content: space-between;
    margin-top: 33px;
}

.sub-contents .history .contents .top .text-box>div {
    width: 50%;
}

.sub-contents .history .contents .top .text-box .text {
    color: #333;
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .history .contents .top .text-box .list {
    text-align: right;
}

.sub-contents .history .contents .top .text-box .list figure,
.sub-contents .history .contents .top .text-box .list .item .img-box::after {
    display: none
}

.sub-contents .history .contents .top .text-box .list p {
    margin: 0;
    color: var(--color-gray);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.3;
    display: inline-block
}

.sub-contents .history .contents .top .text-box .list .item {
    display: inline-block;
    margin-left: 6px;
}

.sub-contents .history.certificate .popup p>span.bar {
    display: none
}

.sub-contents .history .history-box>dl {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
}

.sub-contents .history .history-box>dl>dt {
    width: 520px;
}

.sub-contents .history .history-box>dl>dt h4 {
    position: sticky;
    top: 100px;
}

.sub-contents .history .history-box>dl>dd {
    width: calc(100% - 520px);
}

.sub-contents .history .history-box>dl>dd .list-box {
    border-top: 1px solid #000;
}

.sub-contents .history .history-box>dl>dd .list-box dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 40px;
    border-bottom: 1px solid #E5E5E5;
}

.sub-contents .history .history-box>dl>dd .list-box dl>dt {
    width: 200px;
    color: #111;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.sub-contents .history .history-box>dl>dd .list-box dl>dd {
    width: calc(100% - 200px);
}

.sub-contents .history .history-box>dl>dd .list-box dl>dd li {
    position: relative;
    padding-left: 60px;
    color: #333;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .history .history-box>dl>dd .list-box dl>dd li strong {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray);
    font-weight: 700;
}

.sub-contents .history .history-box>dl>dd .list-box dl>dd li:not(:last-child) {
    margin-bottom: 20px;
}

.sub-contents .founder *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .founder .contents .top {
    display: flex;
    height: 580px;
    background: url(/img/sub/founder_bg.jpg) no-repeat center / cover;
}

.sub-contents .founder .contents .top>div {
    width: 50%;
    height: 100%;
}

.sub-contents .founder .contents .top .imgbox {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.sub-contents .founder .contents .top .info-box {
    display: flex;
    align-items: center;
    padding-right: 20px;
}

.sub-contents .founder .contents .top .info-box dt {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
}

.sub-contents .founder .contents .top .info-box dt strong {
    font-size: 4.8rem;
    font-weight: 600;
    margin-right: 8px;
}

.sub-contents .founder .contents.director .top .info-box dt strong {
    font-size: 4.2rem;
}

.sub-contents .founder .contents .top .info-box dd {
    margin-top: 60px;
}

.sub-contents .founder .contents .top .info-box dd li {
    color: rgba(255, 255, 255, 1);
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.7;
}

.sub-contents .founder .contents .top .info-box dd li:not(:last-child) {
    margin-bottom: 10px;
}

.sub-contents .founder .contents .top .info-box dd li.square {
    align-items: flex-start;
}

.sub-contents .founder .contents .top .info-box dd li.square::before {
    margin-top: 7px;
}

.sub-contents .founder .contents .text-box {
    text-align: center;
}

.sub-contents .founder .contents .text-box p {
    color: #333;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.7;
}

.sub-contents .founder .contents .text-box p strong {
    font-weight: 600;
}

.sub-contents .founder .contents .text-box p:not(:last-child) {
    margin-bottom: 40px;
}

.sub-contents .founder .contents .listbox {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.sub-contents .founder .contents .listbox dl {
    width: calc((100% - 120px) / 3);
    margin-top: 75px;
    position: relative;
    border: 2px solid #E5E5E5;
}

.sub-contents .founder .contents .listbox dl dt {
    position: absolute;
    left: -2px;
    top: -75px;
    width: calc(100% + 4px);
    height: 55px;
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sub-contents .founder .contents .listbox dl dd {
    padding: 30px;
}

.sub-contents .founder .contents .listbox dl dd li:not(:last-child) {
    margin-bottom: 30px;
}

.sub-contents .founder .contents .listbox dl dd li {
    color: #333;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.3;
}

.sub-contents .founder .contents .listbox dl dd li strong {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gray);
    font-size: 1.9rem;
    font-weight: 600;
}

.sub-contents .founder .contents .listbox .box {
    width: calc((100% - 60px) / 2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.sub-contents .founder .contents .listbox .box dl {
    width: 100%;
}

.sub-contents .founder .contents .listbox .box dd {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.sub-contents .founder .contents .listbox .box dd ul {
    width: calc((100% - 20px) / 2);
}

.sub-contents .founder .contents .listbox .box dd ul.full {
    width: 100%;
}

.sub-contents .overview *:not(em) {
    font-family: var(--font-pretendard);
}

.sub-contents .overview .contents {
    margin-top: 3%
}

.sub-contents .overview .contents .img-box,
.sub-contents .overview .contents .img-box>div,
.sub-contents .overview .contents .img-box .cont {
    position: relative;
}

.sub-contents .overview .contents .img-box .text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sub-contents .overview .contents .img-box .text p {
    color: #fff;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.03em;
}

.sub-contents .overview .contents .img-box .text .stxt {
    margin-top: 20px;
    color: #fff;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
}

.sub-contents .overview .contents .motion-box .cont {
    height: 100vh;
}

.sub-contents .overview .contents .motion-box .cont.off {
    height: auto !important;
}

.sub-contents .overview .contents .motion-box .imgbox {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-contents .overview .contents .motion-box .imgbox .img {
    position: relative;
    max-width: 94.80%;
    width: 100%;
    transition: all 0.8s 0.1s
}

.sub-contents .overview .contents .motion-box .imgbox .img::before {
    content: '';
    display: block;
    margin-bottom: 45%;
    transition: all 0.8s 0.1s
}

.sub-contents .overview .contents .motion-box .imgbox .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-contents .overview .contents .motion-box .cont.off .imgbox .img {
    max-width: 1600px;
    transition: all 1.0s
}

.sub-contents .overview .contents .motion-box .cont.off .imgbox .img::before {
    margin-bottom: 36.21%;
    transition: all 1.0s
}

.sub-contents .overview .contents .motion-box .cont.on .imgbox .img::before {
    margin-bottom: var(--margin-bottom, 100vh);
}

.sub-contents .overview .contents .motion-box .cont.on .imgbox .img {
    max-width: 100%;
}

.sub-contents .overview .contents .motion-box .txt {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 2;
}

.sub-contents .overview .contents .motion-box .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.sub-contents .overview .contents .img-list {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    gap: 150px 0;
}

.sub-contents .overview .scroll-box {
    width: 25px;
    height: 40px;
    border-radius: 100px;
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    transition: all 0.1s ease-in;
    z-index: 5;
}

.sub-contents .overview .scroll-box::before,
.sub-contents .overview .scroll-box::after {
    content: "";
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sub-contents .overview .scroll-box::before {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sub-contents .overview .scroll-box::after {
    border: 2px solid rgb(255, 255, 255);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.sub-contents .overview .scroll-box span {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.sub-contents .overview .scroll-box.off,
.sub-contents .overview .scroll-box.off::after,
.sub-contents .overview .scroll-box.off * {
    transition: all 1s var(--slow);
}

.sub-contents .overview .scroll-box.off {
    transform: translate(-50%, 5px);
}

.sub-contents .overview .scroll-box.off::after {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

.sub-contents .overview .scroll-box.off span {
    width: 1px;
    height: 1px;
    opacity: 0.3;
    top: calc(100% - 10px);
}



.board-box .flex-box,
.board-box .flex-box p{
	display: flex;
	align-items: center;
}

.board-box .flex-box {
	column-gap: 20px;
	flex-shrink: 0;
}

.board-box .flex-box * {
	font-size: 1.8rem;
}

.board-box .flex-box p {
	column-gap: 10px;
	font-weight: 600;
}

.board-box .flex-box p em {
	font-weight: 400;
}

.board-box {
	border-top: 1px solid var(--color-black);
}

.board-box .list {
	border-bottom: 1px solid #e5e5e5;
}

.board-box a {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 15px;
	padding: 40px;
}

.board-box a>span {
	background: var(--color-green);
	border-radius: 100px;
	color: var(--color-white);
	font-weight: 700;
	padding: 5px 20px;
}

.board-box a>em {
	color: #ddd;
	font-weight: 700;
}

.board-box .text {
	width: 100%;
	display: flex;
	column-gap: 80px;
	align-items: flex-end;
	justify-content: space-between;
}

.board-box .text h5 {
	height: 1.3em;
	color: #222;
	font-size: 2.4rem;
	font-weight: 500;
	-webkit-line-clamp: 1;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.board-box .flex-box * {
	color: #ccc;
}

.board-box li.empty {
	text-align:center;
	color: #666;
	font-size: 2rem;
	padding:50px 0;
	border-bottom:1px solid #ddd;
}


@media (max-width: 1400px) {
	.board-box .text {
		column-gap: 40px;
	}
}

@media (max-width: 1200px) {
	.board-box a {
		padding: 40px 30px;
	}
}

@media (max-width: 1024px) {
	.board-box .text {
		flex-direction: column;
		align-items: flex-start;
		row-gap: 15px;
		column-gap: 0;
	}
}

@media (max-width: 768px) {
	.board-box .flex-box *{
		font-size: 1.7rem;
	}

	.board-box a {
		padding: 30px 20px;
	}

	.board-box .text h5 {
		font-size: 2.2rem;
	}

}

@media (max-width: 640px) {
	.board-box .flex-box * {
		font-size: 1.6rem;
	}

	.board-box a {
		padding: 20px;
	}

	.board-box a>span {
		font-size: 1.4rem;
		padding: 5px 15px;
	}

	.board-box .text {
		row-gap: 10px;
	}

	.board-box .text h5 {
		font-size: 1.9rem;
	}
}