.sub-visual .text {
	padding: 120px 0 80px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 30px;
}

.sub-visual .text h2,
.sub-visual .text .path-box {
	opacity: 0;
	transition: all 1s;
}

.sub-visual .text h2 {
	color: #111;
	font-size: var(--font112);
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
}

.sub-visual .text .path-box,
.sub-visual .text .home a,
.sub-visual .text .path {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-visual .text .path {
	display: none;
}

.sub-visual .text .path::before {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 15px;
}

.sub-visual .text .path a {
	color: #ccc;
	font-size: 2rem;
}

.sub-visual .text .path.on a {
	color: var(--color-green);
	font-weight: 600;
}

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

.sub-visual .bg::after {
	content: "";
	display: block;
	width: 0;
	height: 100%;
	background: var(--color-green);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: all 0.8s;
}

.sub-visual .bg .img,
.sub-visual .bg video {
	opacity: 0;
	transform: scale(1.1);
}

.sub-visual .bg .img {
	transition: all 1s;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.sub-visual .bg video {
	width: 100%;
}

.sub-visual.on .text h2,
.sub-visual.on .text .path-box {
	opacity: 1;
}

.sub-visual.on .text h2 {
	transform: translateY(0);
}

.sub-visual.on .text .path-box {
	transition-delay: 0.4s;
}

.sub-visual.on .bg::after {
	animation-name: off;
	animation-duration: 1.6s;
	animation-timing-function: cubic-bezier(0.9, 0.02, 0.19, 1);
	animation-fill-mode: forwards;
}

@keyframes off {
	0% {
		width: 0;
		left: 0;
	}

	40% {
		width: 100%;
		left: 0;
	}

	60% {
		width: 100%;
		left: 0;
	}

	100% {
		width: 100%;
		left: 100%;
	}
}

.sub-visual.on .img,
.sub-visual.on video {
	opacity: 1;
	transform: scale(1);
	transition-delay: 1s;
}

.sub-wrap {
	padding-top: 80px;
}

.sub-contents .sub-page {
	padding: var(--gap150) 0 0;
}

.sub-contents .sub-page.top-x {
	padding: 0 0 var(--gap150);
}

.sub-contents .sub-page h3,
.sub-contents .sub-page h4 {
	color: #111;
	line-height: 1.5;
	font-family: var(--font-pretendard);
}

.sub-contents .sub-page h3 {
	font-size: var(--font64);
}

.sub-contents .sub-page h4 {
	font-size: var(--font48);
}

.sub-contents .sub-page .column {
	display: flex;
	flex-direction: column;
}

.sub-contents .sub-page .column.gap150 {
	row-gap: var(--gap150);
}

.sub-contents .sub-page .column.gap120 {
	row-gap: var(--gap120);
}

.sub-contents .sub-page .column.gap80 {
	row-gap: var(--gap80);
}

.sub-contents .sub-page .column.gap60 {
	row-gap: calc(var(--gap80) - 20px);
}

.sub-contents .sub-page .padding-box {
	padding: var(--gap150) 0;
}

.sub-contents .vision .title p {
	color: #555;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.8;
	font-family: var(--font-pretendard);
	margin-top: 60px;
}

.sub-contents .vision .youtube-iframe{
	padding-bottom: 56.34%;
	position: relative;
	overflow: hidden;
}

.sub-contents .vision .youtube-iframe iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%; 
	transform: translate(-50%, -50%);
}

.sub-contents .vision .img-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	row-gap: 0;
	column-gap: 20px;
}
.sub-contents .vision .title-box {
	position: relative;
}
.sub-contents .vision .catalog {
	position: absolute;
	right: 0;
	bottom: 20px;
}
.sub-contents .catalog * {
	color: #fff !important;
} 
.sub-contents .catalog a {
	display: flex;
	align-items: center;
	padding:0 20px;
	background:var(--color-green);
	border-radius: 50px;
	height: 52px;
	white-space: nowrap;
	font-size: 1.5rem;
	font-weight: 600;
	width: 100%;
	gap:0 5px;
}
.sub-contents .catalog img {
	margin-right: 5px;
}

.sub-contents .ceo .flex-box {
	position: relative;
}

.sub-contents .ceo .text h4 {
	font-weight: 600;
}

.sub-contents .ceo .text h4 br {
	display: none;
}

.sub-contents .ceo .text h6 {
	color: #111;
	font-size: 2.6rem;
	line-height: 1.7;
	margin: 60px 0;
}

.sub-contents .ceo .text h6 b {
	color: var(--color-green);
	font-weight: 600;
}

.sub-contents .ceo .text .p-box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 60px;
	column-gap: 0;
}

.sub-contents .ceo .text p {
	color: #555;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.8;
}

.sub-contents .ceo .text p b {
	color: #111;
	font-weight: 500;
}

.sub-contents .ceo .symbol {
	width: 21.3645%;
	flex-shrink: 0;
	padding: 10.505% 0;
	position: relative;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.sub-contents .ceo .symbol svg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .ceo .symbol.on .symbol-cls:nth-child(odd) {
	fill: var(--color-green);
}

.sub-contents .ceo .symbol.on .symbol-cls:nth-child(even) {
	fill: var(--color-blue);
}

.sub-contents .ceo .symbol.on .symbol-cls.ani {
	transform: translate(0, 0);
}

.sub-contents .history .text-ani {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	font-size: 14rem;
	text-align: center;
	padding: 0 19.885%;
	position: relative;
}

.sub-contents .history .text-ani>* {
	transition: all 0.8s;
}

.sub-contents .history .text-ani .top {
	height: 0.7135em;
	transform: translateX(-150%);
}

.sub-contents .history .text-ani .img,
.sub-contents .history .text-ani .img img {
	position: absolute;
	top: 50%;
	left: 50%;
}

.sub-contents .history .text-ani .img {
	width: 100%;
	height: 2.5em;
	overflow: hidden;
	transform: translate(-50%, 100%);
}

.sub-contents .history .text-ani .img img {
	transform: translate(-50%, -50%);
}

.sub-contents .history .text-ani .bottom {
	color: #111;
	font-weight: 700;
	transform: translateX(150%);
}

.sub-contents .history .text-ani.on .top,
.sub-contents .history .text-ani.on .bottom {
	transform: translateX(0);
}

.sub-contents .history .text-ani.on .img {
	transform: translate(-50%, -50%);
}

.sub-contents .history .img-box {
	padding: 9.375% 0;
	position: relative;
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
}

.sub-contents .history .img-box>*,
.sub-contents .history .img-box .bg img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .history .img-box>* {
	width: 100%;
	height: 100%;
}

.sub-contents .history .img-box .bg img {
	max-width: inherit;
}

.sub-contents .history .img-box .text {
	row-gap: 10px;
	font-size: 2.8rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .history .img-box .text * {
	color: var(--color-white);
	opacity: 0;
	transition: all 0.8s;
}

.sub-contents .history .img-box .text span {
	font-size: 2.785em;
	font-weight: 700;
	letter-spacing: 0.4em;
}

.sub-contents .history .img-box .text h6 {
	font-weight: 500;
	transform: translateY(40px);
}

.sub-contents .history .img-box.on {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.sub-contents .history .img-box.on .text * {
	opacity: 1;
	transition-delay: 0.2s;
}

.sub-contents .history .img-box.on .text span {
	letter-spacing: -0.02em;
}

.sub-contents .history .img-box.on .text h6 {
	transform: translateY(0);
}

.sub-contents .history .list-box {
	position: relative;
}

.sub-contents .history .list-box::before {
	content: "";
	display: block;
	width: 2px;
	height: calc(100% - 4.5em);
	background: #e5e5e5;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
}

.sub-contents .history .list-box dl {
	width: 50%;
	position: relative;
}

.sub-contents .history .list-box dl dt,
.sub-contents .history .list-box dl dd {
	opacity: 0;
	transition: all 0.8s;
}

.sub-contents .history .list-box dl dt {
	color: #111;
	font-size: 8.8rem;
	font-weight: 700;
	letter-spacing: 0.4em;
	margin-bottom: 40px;
	position: relative;
}

.sub-contents .history .list-box dl dt::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background: var(--color-white);
	border: 4px solid var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.sub-contents .history .list-box dl dd {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	transform: translateY(40px);
}

.sub-contents .history .list-box dl dd * {
	font-size: 2.2rem;
}

.sub-contents .history .list-box dl div {
	display: flex;
	align-items: flex-start;
}

.sub-contents .history .list-box dl span {
	width: 80px;
	flex-shrink: 0;
	color: #111;
	font-weight: 700;
	transform: translateY(0.05em);
}

.sub-contents .history .list-box dl p {
	color: #333;
	font-weight: 300;
	font-family: var(--font-pretendard);
}

.sub-contents .history .list-box dl.on dt,
.sub-contents .history .list-box dl.on dd {
	opacity: 1;
}

.sub-contents .history .list-box dl.on dt {
	letter-spacing: -0.02em;
}

.sub-contents .history .list-box dl.on dd {
	transform: translateY(0);
	transition-delay: 0.2s;
}

.sub-contents .history .list-box .t-right {
	margin-left: auto;
	padding-left: 80px;
}

.sub-contents .history .list-box .t-right dt::before {
	left: -87px;
}

.sub-contents .history .list-box .t-left {
	text-align: right;
	padding-right: 80px;
}

.sub-contents .history .list-box .t-left dt::before {
	right: -87px;
}

.sub-contents .history .list-box .t-left div {
	flex-direction: row-reverse;
}

.sub-contents .history .short::before {
	height: calc(100% - 7.5em);
}

.sub-contents .identity .rolling {
	padding-top: 40px;
	margin-top: calc(-1 * var(--gap150));
}

.sub-contents .identity .rolling .inner,
.sub-contents .identity .rolling .flex-box {
	display: flex;
}

.sub-contents .identity .rolling .inner {
	position: relative;
}

.sub-contents .identity .rolling .flex-box {
	column-gap: 20px;
	padding: 0 10px;
}

.sub-contents .identity .rolling span {
	color: #eee;
	font-size: 7.4rem;
	font-weight: 700;
	white-space: nowrap;
}

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

.sub-contents .identity .information {
	column-gap: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .identity .information .logo {
	width: 48.8635%;
	flex-shrink: 0;
	position: relative;
	aspect-ratio: 1.91/1;
}

.sub-contents .identity .information .logo::before {
	content: "";
	display: block;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 5px solid #f8f8f8;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .identity .information .logo img {
	max-width: 55.116279%;
}

.sub-contents .identity .information p {
	color: #555;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.8;
	font-family: var(--font-pretendard);
}

.sub-contents .identity .title {
	font-size: var(--font48);
	margin-bottom: 40px;
}

.sub-contents .identity .title h5 {
	display: grid;
	grid-template-columns: 5px auto;
	column-gap: 25px;
	color: #111;
	font-size: 0.791667em;
	font-weight: 700;
	margin-bottom: 20px;
}

.sub-contents .identity .title h5::before {
	content: "";
	display: block;
	background: var(--color-green);
	width: 100%;
	height: 100%;
}

.sub-contents .identity .title p {
	color: #333;
	font-size: 2rem;
	font-weight: 300;
	font-family: var(--font-pretendard);
}

.sub-contents .identity .primary .item-box,
.sub-contents .identity .wordmark .item-box {
	column-gap: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.sub-contents .identity .primary .logo,
.sub-contents .identity .wordmark .logo {
	background: #F4F5F9;
	aspect-ratio: 3.0715/1;
}

.sub-contents .identity .primary .item span,
.sub-contents .identity .wordmark .item span {
	display: block;
	color: #333;
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	margin-top: 40px;
}

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

.sub-contents .identity .corporate .item {
	padding: 40px;
}

.sub-contents .identity .corporate .item * {
	color: var(--color-white);
}

.sub-contents .identity .corporate .item dl,
.sub-contents .identity .corporate .item dl dd {
	display: flex;
	flex-direction: column;
}

.sub-contents .identity .corporate .item dl {
	justify-content: space-between;
	row-gap: 55px;
	width: 100%;
	height: 100%;
}

.sub-contents .identity .corporate .item dl dt {
	font-size: 2.8rem;
	font-weight: 700;
}

.sub-contents .identity .corporate .item dl dd {
	row-gap: 5px;
}

.sub-contents .identity .corporate .item span {
	font-size: 1.8rem;
	opacity: 0.5;
}

.sub-contents .identity .corporate .green {
	background: #8FC31F;
}

.sub-contents .identity .corporate .blue {
	background: #009A9D;
}

.sub-contents .identity .corporate .black {
	background: #231815;
}

.sub-contents .partners .flex-box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	column-gap: 60px;
}

.sub-contents .partners .title {
	flex-shrink: 0;
}

.sub-contents .partners .title p {
	color: #111;
	font-size: 3.2rem;
	font-weight: 300;
	line-height: 1.6;
}

.sub-contents .partners .title span {
	color: var(--color-green);
	font-size: var(--font120);
	font-weight: 700;
}

.sub-contents .partners .item-box {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	justify-content: center;
}

.sub-contents .partners .logo-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 20px;
	column-gap: 20px;
}

.sub-contents .partners .logo-box.on .item {
	transform: scale(1);
}

.sub-contents .partners .item {
	background: #f4f5f9;
	border-radius: 10px;
	padding: 50% 0;
	position: relative;
	transform: scale(0);
	transition: all 0.8s cubic-bezier(0.65, 0.01, 0, 1.28);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .partners .item img {
	max-width: calc(100% - 40px);
	max-height: calc(100% - 40px);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .partners .item.nope {
	background: linear-gradient(180deg, #F4F5F9 0%, #FFF 100%);
	padding: 17.5% 0;
}

.sub-contents .partners .dots {
	row-gap: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .partners .dots span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.sub-contents .partners .dots span:nth-child(1) {
	background: #888;
}

.sub-contents .partners .dots span:nth-child(2) {
	background: #bbb;
}

.sub-contents .partners .dots span:nth-child(3) {
	background: #ddd;
}

.sub-contents .partners .plus-box {
	display: grid;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

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

.sub-contents .facility .information {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .facility .information .text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .facility .information .g-pin > g,
.sub-contents .facility .information .g-pin > .facility-line {
	animation-duration: 4s;
	animation-iteration-count: infinite;
}

.sub-contents .facility .information .g-up > g {
	animation-name: gUp;
}

.sub-contents .facility .information .g-down > g {
	animation-name: gDown;
}

.sub-contents .facility .information .g-up .facility-line {
	animation-name: gUpHeight;
}

.sub-contents .facility .information .g-down .facility-line {
	animation-name: gDownHeight;
}

@keyframes gUp {
	0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes gDown {
	0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
@keyframes gUpHeight {
	0% {
		height: 10px;
    }
    50% {
		height: 20px;
		transform: translateY(-10px);
    }
}
@keyframes gDownHeight {
	0% {
		height: 10px;
    }
    50% {
		height: 20px;
    }
}

.sub-contents .facility h5 {
	color: #111;
	font-size: 3.6rem;
	font-weight: 600;
	margin-bottom: 40px;
}

.sub-contents .facility h5:has(span) {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.sub-contents .facility .process > span {
	display: block;
	color: #888;
	font-size: 1.9rem;
	font-weight: 300;
	text-align: right;
}

.sub-contents .facility .process .item-box {
	width: 100%;
	max-width: 1600px;
	margin: 40px auto 0;
	position: relative;
}

.sub-contents .facility .process .desktop .img {
	width: 100%;
	z-index: -1;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .facility .process .desktop .img img {
	width: 67.5%;
}

.sub-contents .facility .process .desktop .text-box {
	width: 100%;
}

.sub-contents .facility .process .mobile {
	display: none;
}

.sub-contents .facility .facilities .tab-title {
	display: grid;
	grid-template-columns: repeat(10, 1fr);
	column-gap: 10px;
}

.sub-contents .facility .facilities .tab-title li {
	width: 100%;
	height: 80px;
}

.sub-contents .facility .facilities .tab-title li button {
	background: #F4F5F9;
	color: #ccc;
	font-size: 1.9rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .facility .facilities.stxt .tab-title li button {
	font-weight: 400;
}

.sub-contents .facility .facilities .tab-title li:hover button, .sub-contents .facility .facilities .tab-title li.on button {
	background: var(--color-green);
	color: var(--color-white);
}

.sub-contents .facility .facilities .item-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px;
	align-items: center;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: 60px 80px;
	margin-top: 60px;
}

.sub-contents .facility .facilities .img-box {
	display: flex;
	column-gap: 10px;
}

.sub-contents .facility .facilities .text-box {
	display: flex;
	flex-direction: column;
	row-gap: 40px;
}

.sub-contents .facility .facilities .text-box h6 {
	display: flex;
	align-items: center;
	column-gap: 20px;
	color: #111;
	font-size: 2rem;
	font-weight: 600;
}

.sub-contents .facility .facilities .text-box h6::before {
	content: "";
	display: block;
	width: 3px;
	height: 20px;
	background: var(--color-green);
}

.sub-contents .facility .facilities .text-box h6 span {
	color: #888;
	font-size: 1.7rem;
	font-weight: 400;
	margin-left: auto;
}
.sub-contents .facility .facilities .text-box h5 {
	margin-bottom: 15px;
}
.sub-contents .facility .facilities .text-box p {
	color: #555;
	font-size: 1.8rem;	
}
.sub-contents .facility .facilities .text-box ul {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 15px;
}
.sub-contents .facility .facilities .text-box ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
	font-weight: 300;
}
.sub-contents .product .item .text ul img {
    flex-shrink: 0;
}

.sub-contents .facility .facilities .table-box {
	margin-top: 20px;
}

.sub-contents .facility .facilities .table-box table th,
.sub-contents .facility .facilities .table-box table td {
	height: 50px;
	font-size: 1.7rem;
	text-align: center;
}

.sub-contents .facility .facilities .table-box table th:not(:first-child),
.sub-contents .facility .facilities .table-box table td:not(:first-child) {
	border-left: 2px solid var(--color-white);
}

.sub-contents .facility .facilities .table-box table th:not(:last-child),
.sub-contents .facility .facilities .table-box table td:not(:last-child) {
	border-right: 2px solid var(--color-white);
}

.sub-contents .facility .facilities .table-box table th {
	color: var(--color-white);
	font-weight: 600;
}

.sub-contents .facility .facilities .table-box table td {
	background: #f8f8f8;
	color: #555;
	font-weight: 300;
}

.sub-contents .facility .facilities .machine table th {
	background: #333;
}

.sub-contents .facility .facilities .spec table th {
	background: #888;
}

.sub-contents .factory h4 {
	font-weight: 600;
	text-align: center;
}

.sub-contents .factory h4 span {
	color: var(--color-green);
}

.sub-contents .factory h4.tit {
	font-size: var(--font22);
	line-height: 1.8;
}

.sub-contents .factory h4.tit span.txt {
	font-size: var(--font22);
	color: #333;
	font-weight: 300;
	font-family: var(--font-pretendard);
}

.sub-contents .factory h4.tit span.txt span {
	font-size: calc(var(--font48) + 0.6rem);
	font-weight: 300;
	color: #111;
	font-family: var(--font-pretendard);
	display: block;
}

.sub-contents .logistic .item-box {
	align-items: flex-start;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 0;
	column-gap: 40px;
}

.sub-contents .logistic .item {
	position: relative;
}

.sub-contents .logistic .item:nth-child(2) {
	margin-top: 80px;
}

.sub-contents .logistic .img {
	overflow: hidden;
}

.sub-contents .logistic .img img {
	transition: all 0.6s;
}

.sub-contents .logistic .text {
	row-gap: 20px;
	font-size: var(--font48);
	padding: 40px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

.sub-contents .logistic .text em {
	display: block;
	font-size: 18rem;
	font-weight: 900;
	font-style: italic;
	opacity: 0.2;
	position: absolute;
	left: 40px;
	bottom: 40px;
}

.sub-contents .logistic .text h5, .sub-contents .logistic .text p {
	font-family: var(--font-pretendard);
}

.sub-contents .logistic .text h5 {
	font-size: 0.791667em;
	font-weight: 600;
}

.sub-contents .logistic .text p {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
	opacity: 0.8;
}

.sub-contents .logistic .item:hover .img img {
	transform: scale(1.05785);
}

.sub-contents .quality .title {
	margin-bottom: 60px;
}

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

.sub-contents .quality .title h5 {
	display: flex;
	column-gap: 30px;
	border-bottom: 1px solid var(--color-border);
	color: #111;
	font-size: var(--font42);
	font-weight: 600;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.sub-contents .quality .title h5 em {
	display: inline-block;
	color: var(--color-green);
	font-weight: 700;
	position: relative;
}

.sub-contents .quality .title h5 em::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-green);
	position: absolute;
	top: calc(100% + 19px);
	left: 0;
}

.sub-contents .quality .title p {
	color: #222;
	font-size: 2.2rem;
	font-weight: 300;
}

.sub-contents .quality .img-box {
	display: flex;
	column-gap: 20px;
}

.sub-contents .quality .inventory .img-box {
	justify-content: center;
	background: #F4F5F9;
	padding: 20px;
}

.sub-contents .quality .bg {
	position: relative;
}

.sub-contents .quality .bg::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100%;
	background: url("/img/sub/bg_quality_03.jpg") no-repeat center/cover;
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

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

.sub-contents .quality .certificate h5 {
	column-gap: 15px;
	color: #111;
	font-size: calc(var(--font48) + 0.6rem);
	font-weight: 600;
	margin-bottom: 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .quality .certificate h5 img {
	height: 1.315em;
}

.sub-contents .quality .certificate p {
	color: #333;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.8;
}

.sub-contents .quality .values {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 160px;
	align-items: flex-start;
}

.sub-contents .quality .values .item {
	position: relative;
	overflow: hidden;
}

.sub-contents .quality .values .item:nth-child(even) {
	margin-top: 240px;
}

.sub-contents .quality .values .item img {
	transition: all 0.8s;
}

.sub-contents .quality .values .item:hover img {
	transform: scale(1.1);
}

.sub-contents .quality .values .text {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .quality .values .text * {
	color: var(--color-white);
	font-weight: 600;
	font-family: var(--font-pretendard);
}

.sub-contents .quality .values .text em {
	font-size: 2.5rem;
	opacity: 0.8;
}

.sub-contents .quality .values .text h5 {
	font-size: var(--font48);
	margin: 20px 0;
}

.sub-contents .quality .values .text p {
	font-size: 2.4rem;
}

.sub-contents .sanitation .item {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 0;
	column-gap: 40px;
}

.sub-contents .sanitation .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: var(--font48);
	padding: 40px;
}

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

.sub-contents .sanitation .text em {
	color: #ccc;
	font-weight: 900;
}

.sub-contents .sanitation .text em::before {
	content: "0";
	color: #eee;
}

.sub-contents .sanitation .text h5 {
	color: #111;
	font-size: 0.75em;
	font-weight: 600;
	margin: 40px 0 20px;
}

.sub-contents .sanitation .text p {
	color: #222;
	font-size: 2.2rem;
	font-weight: 300;
}

.sub-contents .sanitation .text.t-left {
	text-align: left;
}

.sub-contents .sanitation .text.t-right {
	text-align: right;
}

.sub-contents .product .item {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	column-gap: 40px;
}

.sub-contents .product .item .img,
.sub-contents .product .item .text {
	width: 50%;
}

.sub-contents .product .item .img.on.clip-left {
	transform: translateX(-80px);
}

.sub-contents .product .item .img.on.clip-right {
	transform: translateX(80px);
}

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

.sub-contents .product .item .text>* {
	opacity: 0;
	transition: all 1s;
}

.sub-contents .product .item .text>*:not(ul) {
	transform: translateX(80px);
}

.sub-contents .product .item .text .eng-text {
	display: inline-block;
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 700;
}

.sub-contents .product .item .text h4 {
	font-weight: 700;
	margin: 15px 0 40px;
}

.sub-contents .product .item .text p {
	font-weight: 300;
}

.sub-contents .product .item .text>p {
	color: #222;
	font-size: 2rem;
	line-height: 1.7;
}

.sub-contents .product .item .text ul {
	margin-top: 80px;
	transform: translateY(80px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	row-gap: 15px;
}

.sub-contents .product .item .text ul li {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 20px;
}

.sub-contents .product .item .text ul img {
	flex-shrink: 0;
}

.sub-contents .product .item .text ul p {
	color: #555;
	font-size: 1.8rem;
}

.sub-contents .product .item .text.on>* {
	opacity: 1;
}

.sub-contents .product .item .text.on>*:not(ul) {
	transform: translateX(0);
}

.sub-contents .product .item .text.on ul {
	transform: translateY(0);
}

.sub-contents .brand .lists {
	column-gap: 80px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.sub-contents .brand .lists .item,
.sub-contents .brand .lists .item a {
	overflow: hidden;
}

.sub-contents .brand .lists .item {
	padding: 17.8575% 0;
	position: relative;
}

.sub-contents .brand .lists .item a,
.sub-contents .brand .lists .item a::after,
.sub-contents .brand .lists .item .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .brand .lists .item a,
.sub-contents .brand .lists .item a::after {
	transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.sub-contents .brand .lists .item a {
	width: 100%;
	height: 100%;
}

.sub-contents .brand .lists .item a::after {
	content: "";
	display: block;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 5px solid var(--color-green);
	opacity: 0;
	pointer-events: none;
}

.sub-contents .brand .lists .item .img img {
	max-height: inherit;
	z-index: -1;
}

.sub-contents .brand .lists .text {
	row-gap: 10px;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .brand .lists .more {
	opacity: 0.5;
}

.sub-contents .brand .lists .more::before,
.sub-contents .brand .lists .more em {
	color: var(--color-white);
}

.sub-contents .brand .lists .item:hover a {
	width: calc(100% - 20px);
	height: calc(100% - 20px);
}

.sub-contents .brand .lists .item:hover a::after {
	opacity: 1;
}

.sub-contents .brand .lists .item:hover .more {
	opacity: 1;
}

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

.sub-contents .brand .process .text-box {
	font-size: var(--font48);
}

.sub-contents .brand .process .text-box h5 {
	color: #111;
	font-size: 0.791667em;
	font-weight: 700;
	margin-bottom: 20px;
}

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

.sub-contents .brand .process .item-box {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .brand .process .item-box p {
	font-size: 2rem;
}

.sub-contents .brand .process .item-box span {
	font-size: 1.8rem;
}

.sub-contents .brand .process .logos {
	height: 90px;
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.sub-contents .brand .process .logos::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background: var(--color-blue);
	margin-left: -20px;
}

.sub-contents .brand .process .logos figure {
	height: 100%;
}

.sub-contents .brand .process .middle {
	display: flex;
	flex-direction: column;
	row-gap: 100px;
	padding-left: 50px;
	position: relative;
}

.sub-contents .brand .process .middle::before {
	content: "";
	display: block;
	width: 2px;
	height: 200px;
	background: var(--color-blue);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.sub-contents .brand .process .middle>div {
	height: 100px;
	display: grid;
	grid-template-columns: 320px auto;
	align-content: center;
}

.sub-contents .brand .process .text {
	width: 100%;
	height: 100px;
	position: relative;
	margin: auto 0;
}

.sub-contents .brand .process .text::before, .sub-contents .brand .process .text::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY(-50%);
}

.sub-contents .brand .process .text::before {
	width: 50px;
	height: 2px;
	background: var(--color-blue);
}

.sub-contents .brand .process .text::after {
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-left: 12px solid var(--color-blue);
	border-bottom: 6px solid transparent;
}

.sub-contents .brand .process .text p {
	color: var(--color-blue);
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .brand .process .text p::before {
	content: "";
	display: block;
	width: calc(100% - 8px);
	height: calc(100% - 8px);
	border: 4px solid var(--color-blue);
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .brand .process .arrow-box {
	column-gap: 30px;
	margin: 0 30px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .brand .process .polygon {
	width: 200px;
	row-gap: 20px;
	background: url("/img/sub/polygon_brand_02.png") no-repeat center/100%;
	position: relative;
	aspect-ratio: 1.2048192/1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .brand .process .polygon span {
	color: #333;
	font-weight: 600;
}

.sub-contents .brand .process .consumer {
	position: relative;
}

.sub-contents .brand .process .consumer .icon {
	width: 150px;
	height: 150px;
	background: var(--color-blue);
	border-radius: 50%;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .brand .process .consumer .icon::before {
	content: "";
	display: block;
	border-radius: 50%;
	box-shadow: 0px 0px 30px rgba(0, 154, 157, 0.4);
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .brand .process .consumer span {
	display: inline-block;
	color: var(--color-blue);
	font-weight: 700;
	position: absolute;
	top: calc(100% + 20px);
	left: 50%;
	transform: translateX(-50%);
}

.sub-contents .pb .logo {
	margin-bottom: -40px;
}

.sub-contents .pb .text-box,
.sub-contents .pb .p-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.sub-contents .pb .text-box {
	row-gap: 60px;
	text-align: center;
}

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

.sub-contents .pb .text-box h4 {
	color: #111;
	font-size: calc(var(--font48) + 0.6rem);
	line-height: 1.5;
	font-weight: 300;
}

.sub-contents .pb .text-box h4 b {
	font-weight: 600;
}

.sub-contents .pb .p-box {
	row-gap: 40px;
}

.sub-contents .pb .p-box p {
	color: #333;
	font-size: 2.2rem;
	font-weight: 300;
	line-height: 1.8;
}

.sub-contents .pb .img-box {
	display: flex;
	column-gap: 20px;
}

.sub-contents .pb hr {
	width: 1px;
	height: 55px;
	background: var(--color-black);
}

.sub-contents .esg .title p {
	color: #333;
	font-size: 2.2rem;
	font-weight: 300;
	font-family: var(--font-pretendard);
	margin-top: 30px;
}

.sub-contents .esg .item-box {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	aspect-ratio: 2.648275/1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.sub-contents .esg .item-box::after {
	content: "";
	display: block;
	background-size: 33.3333333333% 100%;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, transparent 1px, transparent 100%);
	pointer-events: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .esg .bg {
	z-index: -1;
	transition: all 0.8s;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .esg .item .bg {
	opacity: 0;
}

.sub-contents .esg .text {
	row-gap: 20px;
	text-align: center;
	position: relative;
	transition: all 0.6s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sub-contents .esg .text::before {
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .esg .text * {
	color: var(--color-white);
	font-weight: 600;
	font-family: var(--font-pretendard);
}

.sub-contents .esg .text h4 {
	font-size: var(--font42);
}

.sub-contents .esg .text h4 span {
	display: block;
	font-size: 0.666665em;
	margin-top: 10px;
	opacity: 0.3;
}

.sub-contents .esg .text p {
	font-size: 2rem;
	line-height: 1.5;
}

.sub-contents .esg .text p.txt {
	font-weight: 300;
}

@media screen and (hover: hover) and (min-width: 1024px) {
	.sub-contents .esg .text {
		row-gap: 0;
	}

	.sub-contents .esg .text::before {
		opacity: 0;
	}

	.sub-contents .esg .text p {
		height: 0;
		overflow: hidden;
	}

	.sub-contents .esg .item:hover .bg {
		opacity: 1;
	}

	.sub-contents .esg .item:hover .text {
		row-gap: 40px;
	}

	.sub-contents .esg .item:hover .text::before {
		opacity: 1;
	}

	.sub-contents .esg .item:hover .text p {
		height: auto;
	}
}

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

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

.sub-contents .sns .item-box .img img {
	min-width: 100%;
	max-width: inherit;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .inquiry .flex-box {
	height: 100%;
	display: flex;
	align-items: flex-start;
}

.sub-contents .inquiry .flex-box.between {
	column-gap: 60px;
	justify-content: space-between;
}

.sub-contents .inquiry .title {
	flex-shrink: 0;
}

.sub-contents .inquiry .title * {
	font-weight: 300;
}

.sub-contents .inquiry .title span {
	color: #111;
	font-size: 9.4rem;
}

.sub-contents .inquiry .title p {
	color: #222;
	font-size: 2.6rem;
	margin-top: 20px;
}

.sub-contents .inquiry .inquiry-box {
	width: 100%;
	max-width: 1000px;
}

.sub-contents .career h4 {
	font-weight: 600;
}

.sub-contents .career .title p {
	color: #555;
	font-size: 2rem;
	font-weight: 300;
	font-family: var(--font-pretendard);
	margin-top: 20px;
}

.sub-contents .career .item-box {
	margin-top: 40px;
}

.sub-contents .career .why .item {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 0;
	column-gap: 40px;
}

.sub-contents .career .why .text-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	position: relative;
}

.sub-contents .career .why .text-box.t-left {
	text-align: left;
}

.sub-contents .career .why .text-box.t-left .icon {
	right: 60px;
}

.sub-contents .career .why .text-box.t-right {
	text-align: right;
}

.sub-contents .career .why .text-box.t-right .icon {
	left: 60px;
}

.sub-contents .career .why .text {
	font-size: var(--font48);
}

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

.sub-contents .career .why .text em {
	color: #ccc;
	font-weight: 900;
}

.sub-contents .career .why .text em::before {
	content: "0";
	color: #eee;
}

.sub-contents .career .why .text h5 {
	color: #111;
	font-size: 0.75em;
	font-weight: 300;
	line-height: 1.5;
	margin-top: 40px;
}

.sub-contents .career .why .text h5 b {
	font-weight: 600;
}

.sub-contents .career .why .icon {
	position: absolute;
	bottom: 60px;
}

.sub-contents .career .talent .item-box {
	position: relative;
}

.sub-contents .career .talent .circle-box,
.sub-contents .career .talent .circle,
.sub-contents .career .talent .circle::after,
.sub-contents .career .talent .icon-box,
.sub-contents .career .talent .logo {
	border-radius: 50%;
}

.sub-contents .career .talent .circle-box {
	width: 47.7%;
	background: url("/img/sub/line_career_02.png") no-repeat center/100%;
	padding: 23.85% 0;
	margin: 0 auto;
	position: relative;
}

.sub-contents .career .talent .circle,
.sub-contents .career .talent .circle::after,
.sub-contents .career .talent .icon-box,
.sub-contents .career .talent .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .career .talent .circle {
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	background: #fcfcfc;
}

.sub-contents .career .talent .circle::after {
	content: "";
	display: block;
	width: 87.5%;
	height: 87.5%;
	background: #f8f8f8;
}

.sub-contents .career .talent .icon-box {
	width: 71.4285%;
	height: 71.4285%;
	background: var(--color-white);
	display: grid;
	grid-template-rows: repeat(2, 1fr);
	grid-template-columns: repeat(2, 1fr);
	row-gap: 10px;
	column-gap: 10px;
}

.sub-contents .career .talent .icon-box .ani-tl {
	border-radius: 1000px 0 0 0;
}

.sub-contents .career .talent .icon-box .ani-tr {
	border-radius: 0 1000px 0 0;
}

.sub-contents .career .talent .icon-box .ani-bl {
	border-radius: 0 0 0 1000px;
}

.sub-contents .career .talent .icon-box .ani-br {
	border-radius: 0 0 1000px 0;
}

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

.sub-contents .career .talent .icon.blue {
	background: var(--color-blue);
}

.sub-contents .career .talent .icon.gray {
	background: #e9e9e9;
}

.sub-contents .career .talent .icon.green {
	background: var(--color-green);
}

.sub-contents .career .talent .logo {
	width: 30.95%;
	background: var(--color-white);
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
	padding: 15.475% 0;
}

.sub-contents .career .talent .logo svg {
	width: 68.4615%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .career .talent .logo .logo-text {
	fill: var(--color-black);
}

.sub-contents .career .talent .text-box {
	width: 100%;
	max-width: 1600px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 140px;
	column-gap: 27%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .career .talent .text {
	display: flex;
	column-gap: 30px;
	position: relative;
}

.sub-contents .career .talent .text span {
	color: #f8f8f8;
	font-size: 12rem;
	font-style: italic;
	position: absolute;
	z-index: -1;
}

.sub-contents .career .talent .text span.left {
	left: 0;
}

.sub-contents .career .talent .text span.right {
	right: 0;
}

.sub-contents .career .talent .text span.top {
	top: -61%;
}

.sub-contents .career .talent .text span.bottom {
	bottom: -61%;
}

.sub-contents .career .talent .text dl dt {
	color: #111;
	font-size: 3.2rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.sub-contents .career .talent .text dl dd {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.sub-contents .career .talent .text dl p {
	display: flex;
	align-items: start;
	column-gap: 10px;
	color: #333;
	font-size: 1.8rem;
	font-weight: 300;
}

.sub-contents .career .talent .text dl p::before, .sub-contents .career .talent .text dl p::after {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	flex-shrink: 0;
	background: var(--color-green);
	border-radius: 50%;
	transform: translateY(0.6em);
}

.sub-contents .career .talent .text .arrow {
	flex-shrink: 0;
	transform: translateY(10px);
}

.sub-contents .career .talent .text.t-right, .sub-contents .career .talent .text.t-right p {
	justify-content: flex-end;
}

.sub-contents .career .talent .text.t-right {
	text-align: right;
}

.sub-contents .career .talent .text.t-right p::before {
	display: none;
}

.sub-contents .career .talent .text.t-left, .sub-contents .career .talent .text.t-left p {
	justify-content: flex-start;
}

.sub-contents .career .talent .text.t-left {
	text-align: left;
}

.sub-contents .career .talent .text.t-left p::after {
	display: none;
}

.sub-contents .career .talent .ani-tl,
.sub-contents .career .talent .ani-tr,
.sub-contents .career .talent .ani-bl,
.sub-contents .career .talent .ani-br {
	opacity: 0;
	transition: all 1.2s cubic-bezier(0.65, 0.01, 0, 1.28);
}

.sub-contents .career .talent .ani-tl {
	transform: translate(-80px, -80px);
}

.sub-contents .career .talent .ani-tr {
	transform: translate(80px, -80px);
}

.sub-contents .career .talent .ani-bl {
	transform: translate(-80px, 80px);
}

.sub-contents .career .talent .ani-br {
	transform: translate(80px, 80px);
}

.sub-contents .career .talent .item-box.on .ani-tl,
.sub-contents .career .talent .item-box.on .ani-tr,
.sub-contents .career .talent .item-box.on .ani-bl,
.sub-contents .career .talent .item-box.on .ani-br {
	opacity: 1;
	transform: translate(0, 0);
	transition-delay: 0.1s;
}

.sub-contents .career .process .item-box {
	width: 100%;
	max-width: 1600px;
	display: grid;
	grid-template-columns: repeat(3, 15% 6px) 15% auto 15%;
	align-items: center;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}

.sub-contents .career .process .item-box>* {
	opacity: 0;
	transform: translateX(-60px);
	transition: all 0.6s;
}

.sub-contents .career .process .item-box .item,
.sub-contents .career .process .item-box .inner {
	border-radius: 50%;
}

.sub-contents .career .process .item-box .item {
	width: 100%;
	background: transparent url("/img/sub/line_career_03.png") no-repeat center/100%;
	padding: 50% 0;
	position: relative;
}

.sub-contents .career .process .item-box .inner {
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 20px;
	column-gap: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.sub-contents .career .process .item-box .inner em {
	color: var(--color-green);
	font-size: 1.8rem;
	font-weight: 900;
	font-style: italic;
}

.sub-contents .career .process .item-box .inner h6 {
	color: #111;
	font-size: 2.4rem;
	font-weight: 500;
}

.sub-contents .career .process .item-box figure {
	display: inline-flex;
	align-items: center;
}

.sub-contents .career .process .item-box .final .inner {
	background: linear-gradient(135deg, #8FC31F 0%, #009A9D 100%);
}

.sub-contents .career .process .item-box .final .inner em,
.sub-contents .career .process .item-box .final .inner h6 {
	color: var(--color-white);
}

.sub-contents .career .process .item-box .angle-box {
	max-width: 22px;
	column-gap: 2px;
	margin: 0 25px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.sub-contents .career .process .item-box img {
	width: 100%;
	filter: brightness(1) invert(0.685);
}

.sub-contents .career .process .item-box.on>* {
	opacity: 1;
	transform: translateX(0);
}

.sub-contents .career .process .item-box.on>*:nth-child(1) {
	transition-delay: 0.1s;
}

.sub-contents .career .process .item-box.on>*:nth-child(2) {
	transition-delay: 0.2s;
}

.sub-contents .career .process .item-box.on>*:nth-child(3) {
	transition-delay: 0.3s;
}

.sub-contents .career .process .item-box.on>*:nth-child(4) {
	transition-delay: 0.4s;
}

.sub-contents .career .process .item-box.on>*:nth-child(5) {
	transition-delay: 0.5s;
}

.sub-contents .career .process .item-box.on>*:nth-child(6) {
	transition-delay: 0.6s;
}

.sub-contents .career .process .item-box.on>*:nth-child(7) {
	transition-delay: 0.7s;
}

.sub-contents .career .process .item-box.on>*:nth-child(8) {
	transition-delay: 0.8s;
}

.sub-contents .career .process .item-box.on>*:nth-child(9) {
	transition-delay: 0.9s;
}

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

.sub-contents .career .welfare .item {
	width: 100%;
	height: 320px;
	background: #f8f8f8;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	row-gap: 50px;
	column-gap: 0;
}

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

.sub-contents .career .welfare .item dl dt {
	color: var(--color-green);
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.sub-contents .career .welfare .item dl dd {
	color: #555;
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.5;
}

.sub-contents .facility .info .option-box {
    margin-top: 40px;
    width: 100%;
}

.sub-contents .facility .info .swiper-pagination {
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #F8F8F8;
    transition: all 0.3s;
    border-radius: 0;
    overflow: hidden;
}

/*
.sub-contents .facility .info .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 100%;
    background-color: transparent;
    margin: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
}

.sub-contents .facility .info .swiper-pagination-bullet .line {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: block;
    width: 0;
    height: 5px;
    background: #8FC31F;
}

.sub-contents .facility .info .swiper-pagination-bullet.swiper-pagination-bullet-active .line {
    width: 100%;
    transition: all 4.2s;
}
*/

.sub-contents .facility .info .sub-swiper {
    margin-top: 40px;
}

.sub-contents .facility .info .sub-swiper .swiper-slide {
    cursor: pointer;
}


.sub-contents .facility .info .sub-swiper .swiper-slide dl dt svg {
    margin-bottom: 20px;
}

.sub-contents .facility .info .sub-swiper .swiper-slide dl dt svg path {
    fill: #ccc;
    transition: all 0.3s;
}

.sub-contents .facility .info .sub-swiper .swiper-slide.swiper-slide-active dl dt svg path {
    fill: #8FC31F
}

.sub-contents .facility .info .sub-swiper .swiper-slide dl dt {
    color: #ccc;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.3s;
}

.sub-contents .facility .info .sub-swiper .swiper-slide dl dd {
    margin-top: 10px;
    color: #ccc;
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.3;
    transition: all 0.3s;
}

.sub-contents .facility .info .sub-swiper .swiper-slide.swiper-slide-active dl dt,
.sub-contents .facility .info .sub-swiper .swiper-slide.swiper-slide-active dl dd {
    color: #111;
}


.sub-contents .facility .info .progress-bar {
    width: 100%;
    height: 1px;
    position: relative;
}

.sub-contents .facility .info .progress-bar span {
    background: var(--color-green);

}

.sub-contents .facility .info .swiper-pagination-progressbar-fill {
    transition-duration: 5.2s !important;
}






