/* common */
:root {
    --color-point01: #5C15DD;
    --color-point02: #89F73F;
    --font80: 80px;
    --font66: 66px;
    --font36: 36px;
    --font24: 24px;
    --font22: 22px;
    --font20: 20px;
}

@media screen and (max-width:1840px) {
    :root {
        --font80: clamp(56px, 4.35vw, 80px);
        --font66: clamp(40px, 3.59vw, 66px);
        --font36: clamp(26px, 1.96vw, 36px);
        --font24: clamp(20px, 1.3vw, 24px);
        --font22: clamp(18px, 1.2vw, 22px);
        --font20: clamp(16px, 1.09vw, 20px);
    }
}
@media screen and (max-width:1400px) {
    :root {
        --font80: clamp(40px, 4vw, 56px);
        --font66: clamp(32px, 2.86vw, 40px);
        --font36: clamp(22px, 1.86vw, 26px);
        --font24: clamp(18px, 1.43vw, 20px);
        --font22: clamp(17px,1.29vw,18px);
        --font20: clamp(16px, 1.09vw, 20px);
    }
}
/* 검색 */
.search{display:flex; align-items: center; justify-content: flex-end; gap:0 10px; margin-bottom: 80px;}
.search select{width: 200px; height: 60px; padding: 0 25px; background-color: #f5f5f5; border-radius:5px}
.search .search-input{display:flex; align-items: center; gap:0 10px}
.search .search-input input{background: #f5f5f5; padding: 0 20px; border-radius:5px; width: 300px; height: 60px; font-size: 16px; color: #111;} 
.search .search-input button{width: 60px; height: 60px; background: var(--color-point01); border-radius:5px}
/* 테이블 */
.table-box table tr{position: relative;}
.table-box table tr th{font-weight: 600; font-size: 19px; background: #eee; padding: 27px 0;}
.table-box table tr th:first-of-type{border-radius:10px 0 0 10px}
.table-box table tr th:last-of-type{border-radius:0 10px 10px 0}
.table-box table tbody td{font-weight: 300; font-size: var(--font22); color: #333; padding: 45px 0; border-bottom: 1px solid #eee; text-align: center;}
.table-box table tbody td a{display: block; padding: 0 20px 0 40px; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.table-box table tbody td.date{font-size: 18px; color: #666666;}
/* 팝업 */
.popup-box{position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s;}
.popup-box.on{opacity:1; visibility: visible;}
.popup-box .close{position: absolute; top: -30px; right: -30px; width: 30px; height: 30px; cursor: pointer;}
.popup-box .close svg{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);}
.popup-box .popup-info{position: absolute; width: calc(100% - 32px); top: 50%; left: 50%; transform: translate(-50%,-50%); background: #fff;}
.popup-box .popup-info{max-width: 660px; aspect-ratio: 660 / 315; border-radius:20px; padding: 30px;}
.popup-box .popup-info .iframe-box{width: 100%; aspect-ratio: 600 / 315; border-radius:20px; overflow: hidden;}

@media screen and (max-width:1840px) {
    .search{margin-bottom: clamp(40px, 4.35vw, 80px);}
    .table-box table tr th{font-size: clamp(16px, 1.03vw, 19px);  padding: clamp(10px,1.47vw,27px);}
    .table-box table tbody td{padding: clamp(20px,2.45vw,45px);}
    .table-box table tbody td a{padding: 0 20px 0 clamp(20px,2.17vw,40px);}
    .table-box table tbody td.date{font-size: clamp(15px,0.98vw,18px);}
}

@media screen and (max-width:1024px) {
    .popup-box .close{right: 0; top: -40px;}
    .popup-box .popup-info{border-radius:10px; padding: clamp(14px, 2.93vw, 30px);}
    .popup-box .popup-info .iframe-box{border-radius:10px; aspect-ratio: 600 / 330;}  
}

@media screen and (max-width:768px) {
    .table-box table tbody td a{padding: 0;}
    .search{margin-bottom: 20px;}
    .search select{width: 140px; height: 50px;}
    .search .search-input input{width: 260px; height: 50px;}
    .search .search-input button{width: 50px; height: 50px;}
    
}

.sv{position: relative; height: 600px;}
.sv .box{position: absolute; bottom: 100px; left: 100px;}
.sv ul{display:flex; gap:0 45px; align-items: center;}
.sv ul li{position: relative; font-weight: 700; font-size: 16px; color: #fff; text-transform: uppercase;}
.sv ul li::after{content:""; position: absolute; top: 50%; right: -25px; width: 5px; height: 10px; background: url("/img/common/icon-arrow-location.svg") 50% 50% no-repeat; transform: translateY(-50%);}
.sv ul li:last-of-type{text-transform: none;}
.sv ul li:last-of-type::after{display: none;}
.sv .tit{margin-top: 19px;}
.sv .tit h2{font-size: 100px; font-weight: 700; color: #fff; text-transform: uppercase;}
.sv ul li svg{transform: translateY(3px);}

.sv.black ul li{color: #333;}
.sv.black .tit h2{color: #111;}
.sv.black ul li svg rect{fill: var(--color-point01);}
.sv.black ul li svg path{fill: #fff;}
.sv.black ul li::after{background: url("/img/sub/icon-arrow-locationH.svg") 50% 50% no-repeat;}
.sv02{background: url('/img/sub/sv02.jpg') 16% 50% / cover no-repeat !important;}

.sub{padding: 200px 0;}
.sub .sub-tit{text-align: center; margin-bottom: 100px;}
.sub .sub-tit h2{font-weight: 700; font-size: var(--font80); color: #000;}
.sub .sub-tit .tab{display:flex; width: 100%; margin-top: 100px;}
.sub .sub-tit .tab li{border-radius:10px; font-weight: 600; font-size: var(--font20); background: transparent; color: #111; line-height: 60px; opacity: 1; transition: 0.3s; cursor: pointer;}
.sub .sub-tit .tab li:hover{opacity: 1;}
.sub .sub-tit .tab li.on{background: var(--color-point02); opacity:1;}


@media screen and (max-width:1840px) {
    .sv{height: clamp(340px, 32.61vw, 600px);}
    .sv .box{left: clamp(16px,5.43vw,60px); bottom: clamp(16px,5.43vw,60px);}
    .sv .tit{margin-top: clamp(10px,1.03vw,19px);}
    .sv .tit h2{font-size: clamp(50px,5.43vw,100px);}

    .sub{padding: clamp(80px, 10.87vw,200px) 0;}
    .sub .sub-tit{margin-bottom: clamp(50px,2.72vw,100px);}
    .sub .sub-tit .tab{margin-top: clamp(50px,2.72vw,100px);}
}
@media screen and (max-width:768px) {
    .sv ul{gap:0 30px}
    .sv ul li::after{right: -18px;}
    .sub .sub-tit .tab li{line-height: 45px; border-radius:5px}
}

/* COMPANY 
======================================= */
/* MSL Profile */
.msl .flex-box{display:flex; align-items: center; margin-bottom: 200px;}
.msl .flex-box .txt{width: 50%; padding-right: 120px;}
.msl .flex-box .txt strong{font-weight: 700; font-size: 100px; color: #000;}
.msl .flex-box .txt p{font-weight: 300; font-size: var(--font22); color: #333; line-height: 1.63636; margin-bottom: 30px;}
.msl .flex-box .txt p:first-of-type{font-weight: 500; font-size: 28px; margin-top: 50px;}
.msl .flex-box .txt p:last-of-type{margin-bottom: 0;}
.msl .flex-box .img{width: 50%;}
.msl .company-info ul{display:flex; align-items: center; text-align: center; border-radius:10px; overflow: hidden;}
.msl .company-info ul li{position: relative; width: 20%; padding: 10px;}
.msl .company-info ul li::after{content:"";position: absolute; top: 50%; right: 0; width: 1px; height: 14px; background: #111; transform: translateY(-50%); opacity: 0.2;}
.msl .company-info ul li:last-of-type::after{display: none;}
.msl .company-info ul li span.f-bl{font-weight: 600; font-size: var(--font20);}
.msl .company-info ul li span:not(.f-bl){font-weight: 300; font-size: var(--font20); color: #333;}
.msl .company-info ul:first-of-type li{background: #eee; padding-block: 22px;}
.msl .company-info ul:last-of-type{border:1px solid #eee; margin-top: 10px;}
.msl .company-info ul:last-of-type li{padding-block: 21px;}
.msl .company-info ul:last-of-type li::after{background: #eee; opacity: 1; height: 30px;}
.msl .company-info ul:last-of-type span:first-of-type{display: none;}
@media screen and (max-width:1840px) {
    .msl .flex-box{margin-bottom: clamp(50px, 10.87vw,200px);}
	.msl .flex-box .txt{padding-right: 90px;}
    .msl .flex-box .txt strong{font-size: clamp(40px,5.43vw,100px);}
    .msl .flex-box .txt p:first-of-type{font-size: clamp(22px,1.52vw,28px); margin-top: clamp(14px,2.72vw,50px); margin-bottom: clamp(16px,1.63vw ,30px);}
}
@media screen and (max-width:1400px) {
	.msl .flex-box .txt{padding-right: 60px;}
}
@media screen and (max-width:1300px) {
    .msl .flex-box .txt{width: 58%;}
    .msl .flex-box .img{width: 42%;}
}
@media screen and (max-width:1024px) {
    .msl .flex-box{flex-wrap:wrap;}
    .msl .flex-box .txt{width: 100%; text-align: center; padding-right: 0;}
    .msl .flex-box .img{width: 60%; margin: 20px auto 0;}
    .msl .company-info ul:first-of-type{display: none;}
    .msl .company-info ul:last-of-type{border:none; flex-wrap:wrap; gap:20px; align-items: flex-start;}
    .msl .company-info ul:last-of-type li{width: calc((100% - 40px) / 3); padding-block: 0;}
    .msl .company-info ul:last-of-type span:first-of-type{display: block; padding-block: 12px; margin-bottom: 10px; background: #eee; border-radius:10px}
    .msl .company-info ul:last-of-type li::after{display: none;}
}
@media screen and (max-width:768px) {
    .msl .flex-box .img{width: 100%; }
    .msl .flex-box .txt p br{display: none;}
    .msl .company-info ul:last-of-type li{width: calc((100% - 30px) / 2);}
}
/* History */
.history .history-list{position: relative;}
.history .history-list .line{position: absolute; top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); background-color: #DDDDDD;}
.history .history-list .line span{position: absolute; top: 0; left: 50%; width: 3px; height: 60px; background-color: var(--color-point01); transform: translateX(-50%); border-radius:4px}
.history .history-list .line span::after{content:""; position: absolute; bottom: 0; left: 50%; width: 10px; height: 10px; background: var(--point-color); transform: translate(-50%,2px); border-radius: 50%;}
.history .history-list .item{display:flex; gap:0 176px; padding-bottom: 150px;}
.history .history-list .item:last-of-type{padding-bottom: 0;}
.history .history-list .item > ul{width: calc(50% - 88px); text-align: right;}
.history .history-list .item > ul > li{display: inline-block; text-align: left;}
.history .history-list .item > ul > li span{position: relative; display: block; font-weight: 700; font-size: 100px; color: #aaa; text-align: right; margin-bottom: 40px; transition: color 0.3s;}
.history .history-list .item > ul > li span::after{content:""; position: absolute; top: 50%; right: -96px; width: 10px; height: 10px; border-radius: 50%; border:3px solid transparent; background: #CCCCCC; transform: translateY(-50%); z-index: 10;}
.history .history-list .item > ul > li > ul > li{position: relative; font-weight: 300; font-size: 20px; color: #666; padding-left: 19px; margin-bottom: 10px;}
.history .history-list .item > ul > li > ul > li:last-of-type{margin-bottom: 0;}
.history .history-list .item > ul > li > ul > li::after{content:""; position: absolute; top: 11px; left: 0; width: 4px; height: 4px; border-radius:50%; background: #000;}
.history .history-list .item figure{width: calc(50% - 88px); overflow: hidden; aspect-ratio: 600 / 450;}
.history .history-list .item figure img{max-width: 100%; max-height: 100%; object-fit: contain; object-position: top; border-radius: 10px; }
.history .history-list .item.right figure{order:-1}
.history .history-list .item.right > ul{text-align: left;}
.history .history-list .item.right > ul > li > span{text-align: left;}
.history .history-list .item.right > ul > li > span::after{left: -96px; right: auto;}
.history .history-list .item.on > ul > li span{color: #000;}
.history .history-list .item.on > ul > li span::after{ width: 20px; height: 20px; border-color:var(--color-point01); background: #fff; right: -101px;}
.history .history-list .item.on.right > ul > li > span::after{left: -101px;}
@media screen and (max-width:1440px) {
    .history .history-list .item > ul > li span{font-size: clamp(60px,6.94vw,100px); margin-bottom: clamp(20px, 2.78vw, 40px);}
}
@media screen and (max-width:1024px) {
    .history .history-list .item{gap:0 80px; padding-bottom: 80px;}
    .history .history-list .item > ul,
    .history .history-list .item figure{width: calc(50% - 40px);}
    .history .history-list .item > ul > li > ul > li{font-size: 17px; padding-left: 15px;}
    .history .history-list .item > ul > li > ul > li::after{top: 9px;}
    .history .history-list .item > ul > li span::after{right: -48px; left: auto;}
    .history .history-list .item.on > ul > li span::after{right: -54px;}
    .history .history-list .item.right > ul > li > span::after{left: -48px;}
    .history .history-list .item.on.right > ul > li > span::after{left: -52px;}
}
@media screen and (max-width:768px) {
    .history .history-list .line{left: auto; transform: translateX(0); right: 0;;}
    .history .history-list .item.on > ul > li span::after{width: 10px; height: 10px;}
    .history .history-list .item.on.right > ul > li > span::after,
    .history .history-list .item.right > ul > li > span::after,
    .history .history-list .item > ul > li span::after,
    .history .history-list .item.on > ul > li span::after{right: -28px; left: auto;}
    .history .history-list .item{flex-wrap:wrap; padding-bottom: 40px; padding-right: 20px;}
    .history .history-list .item figure{order:2 !important; width: 100%; margin-top: 26px; aspect-ratio: unset;}
    .history .history-list .item figure img{width: 100%;}
    .history .history-list .item > ul > li span{font-size: 46px; margin-bottom: 6px; text-align: left;}
    .history .history-list .item.right > ul,
    .history .history-list .item > ul{width: 100%; text-align: left;}
    .history .history-list .item > ul > li,
    .history .history-list .item.right > ul > li > span{text-align: left !important; width: 100%;}
}
/* Philosophy */
.philosophy .philosophy-list .item{display:flex; align-items: flex-start; margin-bottom: 200px;}
.philosophy .philosophy-list .item:last-of-type{margin-bottom: 0;}
.philosophy .philosophy-list .item figure{border-radius:10px; overflow: hidden;}
.philosophy .philosophy-list .item .box{position: relative; margin-left: -130px; padding-top: 121px; margin-top: 130px; border-radius:5px 10px 10px 10px; overflow: hidden; width: 50%; z-index: 10;}
.philosophy .philosophy-list .item .box::before{content:""; position: absolute; top: 0; left: 0; width: 100%; height: 121px; background: url("/img/sub/bg-philosophy01.png") 0 0 /cover no-repeat;}
.philosophy .philosophy-list .item02 .box::before{background: url("/img/sub/bg-philosophy02.png") 0 0 /cover no-repeat;}
.philosophy .philosophy-list .item03 .box::before{background: url("/img/sub/bg-philosophy03.png") 0 0 /cover no-repeat;}
.philosophy .philosophy-list .item04 .box::before{background: url("/img/sub/bg-philosophy04.png") 0 0 /cover no-repeat;}
.philosophy .philosophy-list .item .box .txt{ padding: 29px 60px 60px; background: #F5F5F5;}
.philosophy .philosophy-list .item01 .box .txt{padding: 29px 57px 96px 60px;}
.philosophy .philosophy-list .item .box .txt p{font-weight: 300; font-size: var(--font22); line-height: 1.63636; margin-bottom: 40px;}
.philosophy .philosophy-list .item .box .txt p:last-of-type{margin-bottom: 0;}
.philosophy .philosophy-list .item .box .txt p span{margin-right: 10px;}
.philosophy .philosophy-list .item .box .txt p span,
.philosophy .philosophy-list .item .box .txt strong{font-weight: 700; font-size: 46px; color: var(--color-point01);}
.philosophy .philosophy-list .item .box .txt strong{margin-bottom: 20px;}
.philosophy .philosophy-list .item .box .txt ul{margin-top: 40px;}
.philosophy .philosophy-list .item .box .txt ul li{position: relative; padding: 20px 30px 20px 70px; border-radius:10px; font-weight: 300; font-size: var(--font20); color: #666; background: #fff; line-height: 1.6; margin-bottom: 10px;}
.philosophy .philosophy-list .item .box .txt ul li::before{content:""; position: absolute; top: 24px; left: 30px; width: 25px; height: 25px; background: url("/img/sub/icon-circle-chk.svg") 50% 50% no-repeat;}
.philosophy .philosophy-list .item .box .txt ul li:last-of-type{margin-bottom: 0;}
.philosophy .philosophy-list .item .box .txt figure{margin-top: 20px;}
.philosophy .philosophy-list .item:nth-of-type(2n) .box{margin-left: 0;}
.philosophy .philosophy-list .item:nth-of-type(2n) figure{order:2; margin-left: -150px;}

@media screen and (max-width:1840px) {
    .philosophy .philosophy-list .item{margin-bottom: clamp(50px, 10.87vw,200px);}
    .philosophy .philosophy-list .item .box .txt p span,
    .philosophy .philosophy-list .item .box .txt strong{font-size: clamp(30px,2.5vw,46px);}
    .philosophy .philosophy-list .item .box .txt ul li br,
    .philosophy .philosophy-list .item .box .txt p br{display: none;}
    .philosophy .philosophy-list .item .box .txt,
    .philosophy .philosophy-list .item01 .box .txt{padding: 20px clamp(20px,3.26vw,60px)  clamp(20px,3.26vw,60px);}
}
@media screen and (max-width:1200px) {
    .philosophy .philosophy-list .item {flex-wrap:wrap;}
    .philosophy .philosophy-list .item figure{width: 100%;}
    .philosophy .philosophy-list .item figure img{width: 100%;}
    .philosophy .philosophy-list .item .box{width: 80%; margin-left: 30px; margin-top: -150px;}
    .philosophy .philosophy-list .item .box .txt ul li br,
    .philosophy .philosophy-list .item .box .txt p br{display: block;}
    .philosophy .philosophy-list .item:nth-of-type(2n) .box{margin-left: 30px;}
    .philosophy .philosophy-list .item:nth-of-type(2n) figure{order:-1; margin-left: 0;}
}
@media screen and (max-width:1024px) {
    .philosophy .philosophy-list .item .box{width: 100%; margin: -80px 20px 0;}
    .philosophy .philosophy-list .item .box .txt ul li br,
    .philosophy .philosophy-list .item .box .txt p br{display: none;}
}
@media screen and (max-width:768px) {
    .philosophy .philosophy-list .item .box{margin-top: -30px; margin-right: 0 !important; margin-left: 0 !important; padding-top: 60px;}
    .philosophy .philosophy-list .item .box::before{height: 60px;}
    .philosophy .philosophy-list .item .box .txt strong{margin-bottom: 10px;}
}
/* contact */
.contact .sub-tit{position: relative;}
.contact .sub-tit h2{padding-bottom: 160px;}
.contact .sub-tit .tab{position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; margin-top: 0;}
.contact .sub-tit .tab li{background: #fff;}
.contact .sub-tit .tab.on{position: fixed; top: 80px; bottom: auto; left: 0; width: 100%; z-index: 10; margin-top: 0; transition: 0.3s;} 
.contact .sub-tit .tab.on li{ border-radius: 0;}
#wrap:has(.header.down) .contact .sub-tit .tab.on{top: 0;}
.contact .scroll-sec .item .flex-box{display:flex; align-items: flex-start; justify-content: space-between; margin-bottom: 200px;}
.contact .scroll-sec .item .flex-box:last-of-type{margin-bottom: 0;}
.contact .scroll-sec .item .flex-box h3{position: relative; font-weight: 700; font-size: var(--font66);color: #000; padding-top: 35px;}
.contact .scroll-sec .item .flex-box h3::before{content:""; position: absolute; top: 0; left: 0; width: 30px; height: 15px; background: var(--color-point01);}
.contact .scroll-sec .item .flex-box > .box{width: 1200px; }
.contact .scroll-sec .item .flex-box > .box dl{position: relative; display:flex; gap:0 40px; align-items: center; background: #f5f5f5; padding: 45px 140px; border-radius:10px; margin-bottom: 20px;}
.contact .scroll-sec .item .flex-box > .box dl::after{content:""; position: absolute; top: 50%; left: 40px; background: url("/img/sub/icon-location01.svg") 50% 50% no-repeat; width: 60px; height: 60px; transform: translateY(-50%);}
.contact .scroll-sec .item .flex-box > .box figure, 
.contact .scroll-sec .item .flex-box > .box .root_daum_roughmap .wrap_map{ height: 500px; }
.contact .scroll-sec .item .flex-box > .box figure{ border-radius:10px; overflow: hidden;}
.contact .scroll-sec .item .flex-box > .box iframe{ width: 100% !important; height: 100% !important; }
.contact .scroll-sec .item .flex-box > .box .root_daum_roughmap{ width: 100%; }
.contact .scroll-sec .item .flex-box > .box .root_daum_roughmap .map_border{ display: none !important; }
.contact .scroll-sec .item .flex-box .box dl dt{ font-weight: 600; font-size: var(--font22); color: #222;}
.contact .scroll-sec .item .flex-box .box dl dd{font-weight: 300; font-size: var(--font20); color: #666;}
.contact .scroll-sec .item .flex-box .info-list{display:flex; width: 1200px; gap: 0 20px; align-items: center;}
.contact .scroll-sec .item .flex-box .info-list .box{width: calc((100% - 40px) / 3); background: #f5f5f5; padding: 28px 40px;border-radius:10px;}
.contact .scroll-sec .item .flex-box .info-list .box dl{display:flex; align-items: center; gap:0 8px; margin-top: 20px;}
.contact .scroll-sec .item .flex-box .info-list .box dl dt{width: 70px;}
@media screen and (max-width:1840px) {
    .contact .sub-tit h2{padding-bottom: clamp(95px,8.7vw,160px);}
    .contact .scroll-sec .item .flex-box{margin-bottom: clamp(50px, 10.87vw,200px);}
    .contact .scroll-sec .item .flex-box > .box,
    .contact .scroll-sec .item .flex-box .info-list{width: calc(100% - 340px);}
}
@media screen and (max-width:1500px) {
    .contact .scroll-sec .item .flex-box .info-list .box{padding: 20px 24px;}
}
@media screen and (max-width:1200px) {
    .contact .sub-tit .tab.on{ top: 55px;} 
    #wrap:has(.header.down) .contact .sub-tit .tab.on{top: 0;}
}
@media screen and (max-width:1300px) {
    .contact .scroll-sec .item .flex-box > .box,
    .contact .scroll-sec .item .flex-box .info-list{width: calc(100% - 240px);}
    .contact .scroll-sec .item .flex-box > .box dl{padding: 45px 40px 45px 140px;}
    .contact .scroll-sec .item .flex-box .info-list{flex-wrap:wrap; gap:20px;}
    .contact .scroll-sec .item .flex-box .info-list .box{display:flex; align-items: center; gap:0 30px; width: 100%;}
    .contact .scroll-sec .item .flex-box .info-list .box dl{margin-top: 0;}
}
@media screen and (max-width:1024px) {
    .contact .scroll-sec .item .flex-box{flex-wrap:wrap;}
    .contact .scroll-sec .item .flex-box > .box,
    .contact .scroll-sec .item .flex-box .info-list,
    .contact .scroll-sec .item .flex-box h3{width: 100%;}
    .contact .scroll-sec .item .flex-box h3{margin-bottom: 30px;}
	.contact .scroll-sec .item .flex-box > .box figure, 
	.contact .scroll-sec .item .flex-box > .box .root_daum_roughmap .wrap_map{ height: 400px; }
}
@media screen and (max-width:768px) {
    .contact .sub-tit .tab{height: 45px;}
    .contact .scroll-sec .item .flex-box > .box dl::after{left: 16px;}
    .contact .scroll-sec .item .flex-box .info-list .box,
    .contact .scroll-sec .item .flex-box > .box dl{padding: 20px 16px;}
    .contact .scroll-sec .item .flex-box > .box dl{padding-left: 96px;}
    .contact .scroll-sec .item .flex-box .info-list .box{gap:0 20px}
    .contact .scroll-sec .item .flex-box .box dl{flex-wrap:wrap; gap:10px}
    .contact .scroll-sec .item .flex-box .box dl dd{width: 100%;}
    .contact .scroll-sec .item .flex-box .info-list .box dl{gap:10px}
}
/* 게시판 상세 */
.board-view .tit{text-align: center; padding-bottom: 80px; border-bottom: 2px solid #000;}
.board-view .tit h2{font-weight: 600; font-size: 50px; color: #000;}
.board-view .tit ul{display:flex; align-items: center; justify-content: center; gap:0 60px; margin-top: 30px;}
.board-view .tit ul li{position: relative; font-weight: 300; font-size: var(--font20); color: #666;}
.board-view .tit ul li::after{content:""; position: absolute; top: 50%; right: -31px; width: 1px; height: 12px; background: #ddd; transform: translateY(-50%);}
.board-view .tit ul li:last-of-type::after{display: none;}
.board-view .file-box{margin: 84px 0 100px; display:flex; gap:0 40px; align-items: flex-start; background: #f5f5f5; border-radius:10px; padding: 30px 40px;}
.board-view .file-box strong{position: relative; font-weight: 500; font-size: 18px; color: #000;}
.board-view .file-box strong img{margin-right: 10px;}
.board-view .file-box ul li{margin-bottom: 20px;}
.board-view .file-box ul li:last-of-type{margin-bottom: 0;}
.board-view .file-box ul li a{display: block; font-weight: 300; font-size: 18px; color: #666; }
.board-view .file-box ul li a .icon{border-bottom: 1px solid #666;}
.board-view .edit-box{text-align: center;}
.board-view .edit-box figure{margin-bottom: 60px;}
.board-view .edit-box p{font-weight: 300; font-size: var(--font20); color: #333; line-height: 1.7em;}
.board-view .post-box{display:flex; justify-content: space-between; align-items: center;margin-top: 150px; padding-top: 30px; border-top: 2px solid #000;}
.board-view .post-box a{display:flex; gap:0 20px; align-items: center;}
.board-view .post-box a p{font-weight: 500; font-size: 18px; color: #222;}
.board-view .post-box a.list{font-weight: 500; font-size: 18px; color: #222;}
.board-view .post-box a:last-of-type p{order:-1;}
@media screen and (max-width:1024px) {
    .board-view .tit{padding-bottom: 40px;}
    .board-view .tit h2{font-size: clamp(26px,3.91vw,40px);}
    .board-view .tit ul{margin-top: 20px;}
    .board-view .tit ul li{ font-size: 16px;}
    .board-view .file-box{margin: 40px 0 50px; gap:0 20px; padding: 20px;}
    .board-view .file-box ul li,
    .board-view .file-box strong{font-size: 16px;}
    .board-view .file-box strong img{width: 18px; margin-right: 5px;}
    .board-view .file-box ul{width: calc(100% - 101px);}
    .board-view .file-box ul li a{font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
    .board-view .edit-box figure{margin-bottom: 30px;}
    .board-view .post-box{margin-top: 60px; padding-top: 16px;}
}

/* business 
======================================= */
/* Solution */
.solution .sub-tit{position: relative;}
.solution .sub-tit h2{padding-bottom: 160px;}
.solution .sub-tit .tab{position: absolute; bottom: 0; left: 0; width: 100%; height: 60px; margin-top: 0;}
.solution .sub-tit .tab.on{position: fixed; top: 80px; bottom: auto; left: 0; width: 100%; z-index: 10; margin-top: 0; transition: 0.3s;} 
.solution .sub-tit .tab.on li{ border-radius: 0;}
#wrap:has(.header.down) .solution .sub-tit .tab.on{top: 0;}
.solution .sub-tit .tab li{background: #fff;}
.solution .scroll-sec .sec{margin-bottom: 200px;}
.solution .scroll-sec .sec > div{margin-bottom: 150px;}
.solution .scroll-sec .sec:last-of-type,
.solution .scroll-sec .sec > div:last-of-type{margin-bottom: 0;}
.solution .sol-tit02{position: relative; font-weight: 700; font-size: 50px; color: #111; padding-top: 40px;}
.solution .sol-tit02::before{content:""; position: absolute; top: 0; left: 0; width: 30px; height: 15px; background: var(--color-point01);}
.solution .sec .flex-box{display:flex; flex-wrap:wrap; gap:20px; margin-top: 40px;}

.solution .sol-tit{margin-top: 100px; text-align: center;}
.solution .sol-tit h3{font-weight: 700; font-size: var(--font66); color: var(--color-point01);}
.solution .sol-tit p{margin: 80px 0 40px; font-weight: 300; font-size: var(--font20); line-height: 1.7; color: #333;}
.solution .sol-tit figure{border-radius:10px; aspect-ratio: 1720 / 500; overflow: hidden;}
.solution .sol-tit figure img{width: 100%; height: 100%; object-fit: cover;}
.solution .partners .flex-box .box{width: calc((100% - 60px) / 4); height: 140px; }
.solution .partners .flex-box .box a{display: block; position: relative; height: 120px; border:1px solid #ddd; border-radius:5px; margin-top: 20px; transition: 0.3s;}
.solution .partners .flex-box .box a figure{position: absolute; top: calc(50% - 0px); left: 0; width: 100%; text-align: center; text-align: center; transform: translateY(-50%); transition: 0.3s;}
.solution .partners .flex-box .box a figure img{ max-width: 70%; max-height: 80px; object-fit: contain;}
.solution .partners .flex-box .box a p{position: absolute; bottom: 20px; left: 0; width: 100%; font-weight: 600; font-size: 18px; color: var(--color-point01); text-align: center; opacity: 0; transition: 0.3s;}
.solution .partners .flex-box .box a p svg{margin-left: 10px; transform: translateY(4px);}
.solution .feature .flex-box .box{display:flex; gap:0 27px; align-items: center; width: calc((100% - 40px) / 3); background: #F5F5F5; padding: 30px 27px; border-radius: 10px;}
.solution .feature .flex-box .box p{font-weight: 300; font-size: var(--font20); color: #333;}
.solution .feature .flex-box .box figure{display:flex; align-items: center; justify-content: center; width: 100px; height: 100px; border-radius: 50%; background: #fff; flex-shrink: 0;}
.solution .feature .flex-box .box figure img{max-width: 60px; max-height: 60px; object-fit: contain;}
.solution .application .flex-box .box{position: relative; width: calc((100% - 40px) / 3); border-radius:20px; overflow: hidden;}
.solution .application .flex-box .box .img{position: relative;}
.solution .application .flex-box .box .img figure{aspect-ratio: 560 / 420;}
.solution .application .flex-box .box .img figure img{width: 100%; height: 100%; object-fit: cover;}
.solution .application .flex-box .box .img p{position: absolute; top: 30px; left: 30px; color: #fff; font-weight: 600; font-size: var(--font24); letter-spacing: 0;}
.solution .application .flex-box .box .txt{position: absolute; top: 0; left: 0; width: 100%; height: 100%;background: linear-gradient(180deg,rgba(92, 21, 221, 1) 0%, rgba(50, 11, 119, 1) 100%); padding: 30px; opacity: 0; overflow-y: auto; transition: 0.3s;}
.solution .application .flex-box .box .txt{-ms-overflow-style: none; scrollbar-width: none; }
.solution .application .flex-box .box .txt::-webkit-scrollbar {display: none;}
.solution .application .flex-box .box .txt p{font-weight: 100; font-size: var(--font20); line-height: 1.5; color: #fff; margin-bottom: 15px;}
.solution .application .flex-box .box .txt p:last-of-type{margin-bottom: 0;}


@media (hover: hover){
    .solution .partners .flex-box .box:hover a{height: 140px; margin-top: 0; border-color: var(--color-point01); border-width: 2px;}
    .solution .partners .flex-box .box:hover figure{top: calc(50% - 20px);}
    .solution .partners .flex-box .box:hover p{opacity: 1;}
    .solution .application .flex-box .box:hover .txt{opacity: 1;}
}
@media screen and (max-width:1840px) {
    .solution .sub-tit h2{padding-bottom: clamp(95px,8.7vw,160px);}
    .solution .sol-tit{margin-top: clamp(50px, 5.43vw, 100px);}
    .solution .sol-tit p{margin: clamp(30px,4.35vw,80px) 0 clamp(16px,2.17vw,40px);}
    .solution .scroll-sec .sec{margin-bottom: clamp(80px, 10.87vw,200px);}
    .solution .scroll-sec .sec > div{margin-bottom: clamp(60px,8.15vw,150px);} 
    
    .solution .sol-tit02{font-size: clamp(30px,2.72vw,50px);}
}
@media screen and (max-width:1400px) {
    .solution .partners .flex-box .box{width: calc((100% - 40px) / 3);}
    .solution .feature .flex-box .box,
    .solution .application .flex-box .box{width: calc((100% - 20px) / 2)}
}
@media screen and (max-width:1200px) {
    .solution .sub-tit .tab.on{ top: 55px;} 
    #wrap:has(.header.down) .solution .sub-tit .tab.on{top: 0;}
	.solution .partners .flex-box .box a figure img{ max-height: 70px; }
}
@media screen and (max-width:1024px) {
    /* .solution .sol-tit p br{display: none;} */
    .solution .sol-tit02{padding-top: 24px;}
    .solution .sec .flex-box{margin-top: 30px;}
    .solution .partners .flex-box .box{width: calc((100% - 20px) / 2)}
	.solution .partners .flex-box .box a figure img{ max-height: 60px; }
    .solution .feature .flex-box .box figure{width: 60px; height: 60px; flex-shrink: 0;}
    .solution .feature .flex-box .box figure img{max-width: 35px; max-height: 35px;}
}
@media screen and (max-width:768px) {
    .solution .sub-tit .tab{height: 45px;}
    .solution .feature .flex-box .box{padding: 15px; gap:0 10px}
    /* .solution .partners .flex-box .box a figure img{max-width: 120px;} */
	.solution .partners .flex-box .box a figure img{ max-width: 80%; max-height: 50px; }
    .solution .partners .flex-box .box{height: 120px;}
    .solution .application .flex-box .box .txt{position: relative; margin-top: -40px; opacity: 1; border-radius:20px}
}
@media screen and (max-width:500px) {
    .solution .feature .flex-box .box,
    .solution .application .flex-box .box{width: 100%}
    .solution .partners .flex-box .box a{margin-top: 0;}
    .solution .application .flex-box .box .txt{margin-top: -120px;}
}
/* Partners */
.partners-list .item{margin-bottom: 20px;}
.partners-list .item:last-of-type{margin-bottom: 0;}
.partners-list .item a{position: relative; display: flex; align-items: center; gap:0 100px; padding: 20px 100px 20px 20px; border:1px solid #f5f5f5; border-radius:10px; transition: 0.3s;}
.partners-list .item a > figure{display: flex; align-items: center; justify-content:center; width: 400px; aspect-ratio: 400 / 240; height: 100%; background: #f5f5f5; border-radius:10px; overflow: hidden;transition: 0.3s;}
.partners-list .item a > figure > img{ max-width: 70%; max-height: 70%; object-fit: cover;}
.partners-list .item a .txt{width: calc(100% - 500px);}
.partners-list .item a .txt strong{font-weight: 700; font-size: var(--font36);transition: 0.3s;}
.partners-list .item a .txt p{font-weight: 300; font-size: var(--font20); line-height: 1.7; color: #666; margin-top: 20px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;}
.partners-list .item a .btn .common-btn{width: 40px; height: 40px;}
.partners-list .item a .btn .common-btn .view-box{width: 20px; height: 20px; }
.partners-list .item a .btn .common-btn .view-box figure{transform: translate(-20px, 0);}
.partners-list .item a .btn .common-btn .view-box figure img{width: 20px; height: 20px;}
.partners-list .item a .btn .common-btn .view-box figure img:first-of-type{transform: translateY(-20px);}
@media (hover: hover){
    .partners-list .item a:hover{background: #F4F2F9;}
    .partners-list .item a:hover .txt strong{color: var(--color-point01);}
    .partners-list .item a:hover > figure{background: #fff;}
    .partners-list .item a:hover .btn .common-btn .view-box figure{transform: translate(0, 20px);}
}
@media screen and (max-width:1840px) {
    .partners-list .item a{gap:0 30px; padding: 20px 30px 20px 20px;}
}

@media screen and (max-width:1024px) {
    .partners-list .item a > figure{width: 100%; padding:20px;}
    .partners-list .item a .txt{width: calc(100% - 270px);}
    .partners-list .item a .txt p{margin-top: 8px;}
}

@media screen and (max-width:768px) {
    .partners-list .item a{padding: 20px;}
    .partners-list .item a .btn{position: absolute; top: 20px; right: 20px;}
    .partners-list .item a{flex-wrap:wrap; gap:18px;}
    .partners-list .item a .txt{width: 100%;}
}
/* Partners 상세 */
.inc .detail-box .top-sec{margin-bottom: 200px;}
.inc .detail-box .top-sec .flex-box{display:flex; align-items: center; gap:0 100px}
.inc .detail-box .top-sec .flex-box figure{position: relative; width: calc(50% - 50px); background: #F5F5F5; padding-bottom: 29.1%; border-radius:10px; overflow: hidden;}
.inc .detail-box .top-sec .flex-box figure img{position: absolute; top: 50%; left: 50%; max-width: 100%; max-height: 100%; transform: translate(-50%,-50%); padding: 80px;}
.inc .detail-box .top-sec .flex-box .txt{width: calc(50% - 50px); letter-spacing: -0.03em;}
.inc .detail-box .top-sec .flex-box .txt p{font-weight: 300; font-size: var(--font20); color: #333; line-height: 1.54545; margin-bottom: 20px;}
.inc .detail-box .top-sec .flex-box .txt p:last-of-type{margin-bottom: 0;}
.inc .detail-box .top-sec .flex-box .txt p strong{display: block; font-weight: 600; font-size: 24px; line-height: 1.38461; color: #222; margin-bottom: 20px;}
.inc .detail-box .top-sec .flex-box .txt .go-site{margin-top: 40px; width: 200px; background: var(--color-point01); margin-left: auto; border-radius:5px; overflow: hidden;}
.inc .detail-box .top-sec .flex-box .txt .go-site a{display: block; line-height: 60px; color: #fff; font-weight: 600; font-size: 18px; color: #fff; text-align: center;}
.inc .detail-box .sec{margin-bottom: 200px;}
.inc .detail-box .sec:last-of-type{margin-bottom: 0;}
.inc .detail-box .sec h3{font-weight: 700; font-size: 50px; color: #111; margin-bottom: 40px;}
.inc .detail-box .sec h3 span{color: var(--color-point01);}
/* 상세 소타이틀 추가 251231 */
.inc .detail-box .sec.cate-sec  h4 {font-weight: 600; font-size: var(--font22); color: #333; line-height: 1.54545; margin-bottom: 20px;}
.inc .detail-box .sec .flex-box {display:flex; flex-wrap:wrap; align-items: center; box-sizing:border-box; border-bottom:1px dashed #ccc; padding-bottom:40px; margin-bottom:40px;}
.inc .detail-box .sec .flex-box:last-of-type {margin-bottom:0; padding:bottom; border-bottom:none;}
.inc .detail-box .sec.cate-sec .flex-box {gap:50px 30px;}
.inc .detail-box .sec.cate-sec .flex-box .item{display:flex; gap:0 30px; align-items: center; width: calc((100% - 120px) / 5);}
.inc .detail-box .sec.cate-sec .flex-box .item figure{display:flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: #F5F5F5; border-radius:50%; flex-shrink: 0;} 
.inc .detail-box .sec.cate-sec .flex-box .item figure img{max-width: 50px; max-height: 50px; object-fit: contain;}
.inc .detail-box .sec.cate-sec .flex-box .item p{font-family: "Barlow", sans-serif; font-weight: 400; font-size: var(--font20); color: #333;}
.inc .detail-box .sec.news .flex-box{gap:20px}
.inc .detail-box .sec.news .flex-box:has(.slick-list) .slick-list{margin-right: -20px;}
.inc .detail-box .sec.news .flex-box:has(.slick-list) .item{margin-right: 20px;}
.inc .detail-box .sec.news .flex-box .item{width: calc((100% - 40px) / 3);}
.inc .detail-box .sec.news .flex-box .item a{display: block;}
.inc .detail-box .sec.news .flex-box .item .mask-box{position: relative; aspect-ratio: 560 / 360;}
.inc .detail-box .sec.news .flex-box .item .mask-box .mask{ mask-image: url("/img/sub/no-img.png"); -webkit-mask-image: url("/img/sub/no-img.png"); mask-size: 100% 100%; -webkit-mask-size: 100% 100%; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; mask-position: center; -webkit-mask-position: center; padding-bottom: 64.3%;}
.inc .detail-box .sec.news .flex-box .item .mask-box .mask img{object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(1); width: 100%; height: 100%; transform-origin: center; border-radius:10px 10px 0 10px; transition: 0.3s;}
.inc .detail-box .sec.news .flex-box .item .mask-box .btn{position: absolute; bottom: 0; right: 0;}
.inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn{width: 50px; height: 50px;}
.inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn .view-box{width: 20px; height: 20px; }
.inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn .view-box figure{transform: translate(-20px, 0);}
.inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn .view-box figure img{width: 20px; height: 20px;}
.inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn .view-box figure img:first-of-type{transform: translateY(-20px);}
.inc .detail-box .sec.news .flex-box .item .txt{margin-top: 20px;}
.inc .detail-box .sec.news .flex-box .item .txt strong{display: block; font-weight: 500; font-size: var(--font22); color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.inc .detail-box .sec.news .flex-box .item .txt p{font-size: 16px; color: #aaa; margin-top: 10px;}
.inc .detail-box .sec.related .flex-box{gap:20px}
.inc .detail-box .sec.related .flex-box:has(.slick-list) .slick-list{margin-right: -20px;}
.inc .detail-box .sec.related .flex-box:has(.slick-list) .item{margin-right: 20px;}
.inc .detail-box .sec.related .flex-box .item{width: calc((100% - 60px) / 4); cursor: pointer;}
.inc .detail-box .sec.related .flex-box .item figure{position: relative; border-radius: 10px; overflow: hidden;}
.inc .detail-box .sec.related .flex-box .item figure img{width: 100%; height: 100%; object-fit: cover;}
.inc .detail-box .sec.related .flex-box .item figure::after{content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; background: url("/img/sub/icon-play.png") 50% 50% no-repeat}
.inc .list-link{text-align: center; margin-top: 150px;}
.inc .list-link a{display: inline-block; vertical-align: top; width: 200px; line-height: 60px; border-radius:5px; background-color: var(--color-point01); font-weight: 600; font-size: 18px; color: #fff;} 
.inc .slick-dots{display:flex; align-items: center; justify-content: center; gap:10px; margin: 0 auto;}
.inc .slick-dots li{font-size: 0;}
.inc .slick-dots li button{display: block; width: 10px; height: 10px; font-size: 0; border-radius:50%; background: #ddd; padding: 0;}
.inc .slick-dots li.slick-active button{background: #111;}

@media (hover: hover){
    .inc .detail-box .sec.news .flex-box .item a:hover .mask-box > img{transform: translate(-50%,-50%) scale(1.1);}
    .inc .detail-box .sec.news .flex-box .item a:hover .mask-box .btn .common-btn{background: var(--color-point01);}
    .inc .detail-box .sec.news .flex-box .item a:hover .btn .common-btn .view-box figure{transform: translate(0, 20px);}
}
@media screen and (max-width:1840px) {
    .inc .detail-box .sec,
    .inc .detail-box .top-sec{margin-bottom: clamp(80px, 10.87vw,200px);}
    .inc .detail-box .top-sec .flex-box .txt strong{font-size: clamp(20px,1.41vw,26px);}
    .inc .detail-box .top-sec .flex-box .txt p br,
    .inc .detail-box .top-sec .flex-box .txt strong br{display: none;}
    .inc .detail-box .sec h3{font-size: clamp(30px,2.72vw,50px);}
    .inc .list-link{margin-top: clamp(60px,8.15vw,150px);}
    .inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn{width: clamp(30px,2.72vw,50px); height: clamp(30px,2.72vw,50px);}
}
@media screen and (max-width:1400px) {
    .inc .detail-box .top-sec .flex-box{gap:0 50px}
    .inc .detail-box .top-sec .flex-box .txt,
    .inc .detail-box .top-sec .flex-box figure{width: calc(50% - 25px);}
    .inc .detail-box .top-sec .flex-box .txt strong,
    .inc .detail-box .top-sec .flex-box .txt p{margin-bottom: 10px;}
    .inc .detail-box .sec.cate-sec .flex-box{gap:30px 20px}
    .inc .detail-box .sec.cate-sec .flex-box .item{gap:0 20px; width: calc((100% - 60px) / 4);}
}

@media screen and (max-width:1024px) {
    .inc .detail-box .sec h3{margin-bottom: 30px;}
    .inc .detail-box .top-sec .flex-box{gap:30px; flex-wrap: wrap;}
    .inc .detail-box .top-sec .flex-box .txt,
    .inc .detail-box .top-sec .flex-box figure{width: 100%;}
    .inc .detail-box .top-sec .flex-box figure{padding-bottom: clamp(200px,24.41vw,250px);}
    .inc .detail-box .top-sec .flex-box figure img{padding: 40px;}
    .inc .detail-box .top-sec .flex-box .txt p br,
    .inc .detail-box .top-sec .flex-box .txt strong br{display: block;}
    .inc .list-link a,
    .inc .detail-box .top-sec .flex-box .txt .go-site a{line-height: 50px;}
    .inc .detail-box .sec.cate-sec .flex-box .item{width: calc((100% - 40px) / 3);}
    .inc .detail-box .sec.news .flex-box .item{width: calc((100% - 20px) / 2);}
    .inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn{width: clamp(20px,3.91vw,40px); height: clamp(20px,3.91vw,40px);}
    .inc .detail-box .sec.related .flex-box .item{width: calc((100% - 20px) / 2);}
}
@media screen and (max-width:768px) {
    .inc .detail-box .top-sec .flex-box .txt p br,
    .inc .detail-box .top-sec .flex-box .txt strong br{display: none;}
    .inc .detail-box .sec.cate-sec .flex-box .item figure{width: 60px; height: 60px;}
    .inc .detail-box .sec.cate-sec .flex-box .item figure img{max-width: 30px; max-height: 30px;}
    .inc .detail-box .sec.cate-sec .flex-box .item{width: calc((100% - 20px) / 2);}
    .inc .detail-box .sec.news .flex-box:has(.slick-list) .slick-list{margin-right: 0; padding: 0 20px !important;}
    .inc .detail-box .sec.news .flex-box:has(.slick-list) .item{margin:0 5px;}
    .inc .detail-box .sec.news .flex-box .item{width: 100%;}
    .inc .detail-box .sec.news .flex-box .item .mask-box .btn .common-btn{width: clamp(35px,7.8vw,64px); height: clamp(35px,7.8vw,64px);}
    .inc .detail-box .sec.news .flex-box .item .txt{margin-top: 14px;}
    .inc .detail-box .sec.news .flex-box .item .txt p{margin-top: 6px;}
}
/* career 
======================================= */
/* 인재상 */
.talent .talent-box .item{display:flex; margin-bottom: 30px;}
.talent .talent-box .item:last-of-type{margin-bottom: 0;}
.talent .talent-box .item > figure{width: 50%; border-radius:10px; overflow: hidden;}
.talent .talent-box .item > figure img{height: 100%; object-fit: cover;}
.talent .talent-box .item:last-of-type > figure{order:2}
.talent .talent-box .item .txt{width: 50%; padding: 40px 40px 60px 60px; border-radius:10px; background: #F5F5F5;}
.talent .talent-box .item .txt figure{text-align: right;}
.talent .talent-box .item .txt strong{font-weight: 700; font-size: var(--font36); color: var(--color-point01); text-transform: uppercase;}
.talent .talent-box .item .txt h3{font-weight: 500; font-size: var(--font36); line-height: 1.38888; margin: 20px 0;}
.talent .talent-box .item .txt p{font-weight: 300; font-size: var(--font20); color: #444; line-height: 1.8;}
@media screen and (max-width:1024px) {
    .talent .talent-box .item{flex-wrap:wrap; gap:20px}
    .talent .talent-box .item .txt,
    .talent .talent-box .item > figure{width: 100%;}
    .talent .talent-box .item > figure img{width: 100%; object-fit: contain; height: auto;}
    .talent .talent-box .item:last-of-type > figure{order:-1}
    .talent .talent-box .item .txt{padding: 20px 20px;}
    .talent .talent-box .item .txt figure{width: clamp(60px,9.77vw,100px); height: clamp(60px, 9.77vw, 100px); margin-left:  auto;}
}
/* 복리후생제도 */
.welfare .welfare-box .item{width: 100%; background: rgba(92, 21, 221, 0.05); border-radius:10px; margin-bottom: 20px;}
.welfare .welfare-box .item:last-of-type{margin-bottom: 0;}
.welfare .welfare-box .item .acco-btn{position: relative; display:flex; align-items: center; justify-content: space-between; padding: 54px 80px; border:2px solid transparent; background: #F5F5F5; border-radius:10px; cursor: pointer; transition: 0.3s;}
.welfare .welfare-box .item .acco-btn h3{display:flex; gap:0 30px; align-items: center; font-weight: 600; font-size: var(--font36); color: #111;}
.welfare .welfare-box .item .acco-btn h3 span{font-weight: 700; font-size: var(--font20); color: var(--color-point01); text-transform: capitalize;}
.welfare .welfare-box .item .acco-btn p{width: 520px; margin-right: 180px; font-size: var(--font22); color: #333;}
.welfare .welfare-box .item .acco-btn .btn{position: absolute; top: 50%; right: 80px; transform: translateY(-50%);}
.welfare .welfare-box .item .acco-btn .btn .common-btn{width: 40px; height: 40px;}
.welfare .welfare-box .item .acco-btn .btn .common-btn .view-box{width: 20px; height: 20px; }
.welfare .welfare-box .item .acco-btn .btn .common-btn .view-box figure{transform: translate(-20px, 0);}
.welfare .welfare-box .item .acco-btn .btn .common-btn .view-box figure img{width: 20px; height: 20px;}
.welfare .welfare-box .item .acco-btn .btn .common-btn .view-box figure img:first-of-type{transform: translateY(-20px);}
.welfare .welfare-box .item .acco-info{display: none; padding: 80px 100px;}
.welfare .welfare-box .item:first-of-type .acco-info .flex-box{align-items: flex-start;}
.welfare .welfare-box .item .acco-info .flex-box{display:flex; align-items: center;}
.welfare .welfare-box .item .acco-info .flex-box figure{width: 500px; margin-right: 150px;}
.welfare .welfare-box .item .acco-info .flex-box figure img{width: 100%;}
.welfare .welfare-box .item .acco-info .flex-box ul{width: calc(100% - 650px);}
.welfare .welfare-box .item .acco-info .flex-box ul li{margin-bottom: 60px;}
.welfare .welfare-box .item .acco-info .flex-box ul li:last-of-type{margin-bottom: 0;}
.welfare .welfare-box .item .acco-info .flex-box ul li span{display:flex; gap:10px; align-items: center; font-weight: 600; font-size: var(--font24); color: #222;}
.welfare .welfare-box .item .acco-info .flex-box ul li p{ font-weight: 300; font-size: var(--font20); color: #555; margin-top: 20px;}
.welfare .welfare-box .item .acco-info .close-btn{border-top:2px solid #fff; padding-top: 50px; margin-top: 60px; text-align: center; cursor: pointer;}
.welfare .welfare-box .item .acco-info .close-btn p{width: 160px; line-height: 60px; background: var(--color-point01); border-radius:5px; color: #fff; font-weight: 600; font-size: var(--font20); margin-left: auto;}
.welfare .welfare-box .item.on .acco-btn{background: #fff; border-color:var(--color-point01)}
@media (hover: hover){
    .welfare .welfare-box .item:hover .acco-btn .btn .common-btn .view-box figure{transform: translate(0, 20px);}
}
@media screen and (max-width:1840px) {
    .welfare .welfare-box .item .acco-btn{padding: clamp(20px, 2.93vw, 54px) clamp(20px, 4.35vw,80px);}
    .welfare .welfare-box .item .acco-btn p{width: clamp(400px,28.26vw,520px); margin-right: clamp(70px, 9.78vw, 180px);}
    .welfare .welfare-box .item .acco-btn .btn{right: clamp(40px, 4.35vw,80px);}
    .welfare .welfare-box .item .acco-info{padding: clamp(30px, 4.35vw, 80px) clamp(50px, 5.43vw, 100px);}
    .welfare .welfare-box .item .acco-info .flex-box figure{width: clamp(300px, 27.17vw, 500px); margin-right: clamp(50px,8.15vw,150px);}
    .welfare .welfare-box .item .acco-info .flex-box ul{width: calc(100% - (clamp(50px,8.15vw,150px) + clamp(300px, 27.17vw, 500px)))}
    .welfare .welfare-box .item .acco-info .flex-box ul li{margin-bottom: clamp(20px, 3.26vw, 60px);}
    .welfare .welfare-box .item .acco-info .flex-box ul li p{margin-top: 10px;}
}
@media screen and (max-width:1500px) {
    .welfare .welfare-box .item .acco-btn{padding: 35px 30px;}
    .welfare .welfare-box .item .acco-btn h3{gap:0 10px}
    .welfare .welfare-box .item .acco-btn p{width: clamp(420px,28.26vw,520px); margin-right: clamp(80px, 9.78vw, 180px);}
    .welfare .welfare-box .item .acco-btn .btn{right: 30px;}
}
@media screen and (max-width:1024px) {
    .welfare .welfare-box .item .acco-info .flex-box{flex-wrap:wrap;}
    .welfare .welfare-box .item .acco-info .flex-box figure{width: 500px;}
    .welfare .welfare-box .item .acco-info .flex-box ul{width: 100%; display:flex; gap:0 20px; flex-wrap:wrap; margin-top: 40px;}
    .welfare .welfare-box .item .acco-info .flex-box ul li{width: calc(50% - 10px);}
    .welfare .welfare-box .item .acco-info .close-btn{margin-top: 40px; padding-top: 30px;}
    .welfare .welfare-box .item .acco-info .close-btn p{line-height: 50px;}
    .welfare .welfare-box .item .acco-btn{padding: 20px; flex-wrap:wrap;}
    .welfare .welfare-box .item .acco-btn p{width: 100%; margin-top: 10px; margin-right: 60px;}
    .welfare .welfare-box .item .acco-btn .btn{right: 20px;}
}
@media screen and (max-width:768px) {
    .welfare .welfare-box .item .acco-info{padding: 20px 16px 40px;}
}
/* 채용공고 */
.recruitment .step-box .step-list{display:flex; align-items: center; gap:0 100px}
.recruitment .step-box .step-list .item{position: relative; display:flex; align-items: center; justify-content: center; width: calc((100% - 500px) / 6);  background: #F5F5F5; border-radius:132px; text-align: center; padding: 40px 0;}
.recruitment .step-box .step-list .item::after{content:""; position: absolute; top: 50%; right: -65px; width: 30px; height: 30px; transform: translateY(-50%); background: url("/img/sub/icon-recruitment-arrow.png") 50% 50% no-repeat;} 
.recruitment .step-box .step-list .item:last-of-type::after{display: none;}
.recruitment .step-box .step-list .item p{font-weight: 600; font-size: 18px; color: #333;}
.recruitment .step-box .step-list .item p:last-of-type{font-weight: 500; font-size: 20px; color: #333;}
.recruitment .step-box .step-list .item figure{margin: 38px 0 36px;}
.recruitment .step-box .step-list .item.on{background: var(--color-point01); }
.recruitment .step-box .step-list .item.on p{color: #fff;}
.recruitment .step-box .step-list .item.on figure img{filter: brightness(0) saturate(100%) invert(100%) sepia(31%) saturate(0%) hue-rotate(284deg) brightness(108%) contrast(101%);}
.recruitment .step-box ul{margin:60px 0 200px;}
.recruitment .step-box ul li{position: relative; font-weight: 300; font-size: 18px; color: #666; padding-left: 15px; margin-bottom: 15px;}
.recruitment .step-box ul li:last-of-type{margin-bottom: 0;}
.recruitment .step-box ul li::before{content:""; position: absolute; top: 8px; left: 0; width: 5px; height: 5px; border-radius:1px; background: #666;}

.recruitment .recruit-list > ul > li{border:1px solid #ddd; border-radius:10px; margin-bottom: 10px;}
.recruitment .recruit-list > ul > li:last-of-type{margin-bottom: 0;}
.recruitment .recruit-list > ul > li > ul{display:flex; align-items: center;}
.recruitment .recruit-list > ul > li > ul > li{position: relative; font-weight: 300; font-size: var(--font20); color: #666; text-align: center;}
.recruitment .recruit-list > ul > li > ul > li::after{content:""; position: absolute; top: 50%; right: 0; width: 1px; height: 14px; background: #d9d9d9; transform: translateY(-50%);}
.recruitment .recruit-list > ul > li > ul > li:last-of-type::after{display: none;}
.recruitment .recruit-list > ul > li > ul > li > a{display: flex; align-items: center; gap:0 40px; font-weight: 500; font-size: var(--font22); color: #222; padding: 40px 60px; text-align: left;}
.recruitment .recruit-list > ul > li > ul > li > a:not(.icon) span{display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.recruitment .recruit-list > ul > li > ul > li > a .icon{display: flex; align-items: center; justify-content: center; background: #F5F5F5; text-align: center; flex-shrink: 0; line-height: 70px; width: 70px; height: 70px; border-radius:50%; color: #333; font-weight: 600; font-size: 16px;}
.recruitment .recruit-list > ul > li > ul > li > a .icon.ing{background: var(--color-point01); font-weight: 500; color: #FFF;}
.recruitment .recruit-list > ul > li > ul > li > a .icon.end{background: #ccc; font-weight: 500; color: #FFF;}
.recruitment .recruit-list > ul > li > ul > li.f-bl{font-weight: 400;}
.recruitment .recruit-list > ul > li > ul > li:nth-of-type(1){width: 64%;}
.recruitment .recruit-list > ul > li > ul > li:nth-of-type(2){width: 18%;}
.recruitment .recruit-list > ul > li > ul > li:nth-of-type(3){width: 10%;}
.recruitment .recruit-list > ul > li > ul > li:nth-of-type(4){width: 8%;}
.recruitment .recruit-list > ul > li > ul > li .btn .common-btn{width: 40px; height: 40px; margin: 0 auto;}
.recruitment .recruit-list > ul > li > ul > li .btn .common-btn .view-box{width: 20px; height: 20px; }
.recruitment .recruit-list > ul > li > ul > li .btn .common-btn .view-box figure{transform: translate(-20px, 0);}
.recruitment .recruit-list > ul > li > ul > li .btn .common-btn .view-box figure img{width: 20px; height: 20px;}
.recruitment .recruit-list > ul > li > ul > li .btn .common-btn .view-box figure img:first-of-type{transform: translateY(-20px);}
@media (hover: hover){
    .recruitment .recruit-list > ul > li:hover > ul > li .btn .common-btn .view-box figure{transform: translate(0, 20px);}
}
@media screen and (max-width:1840px) {
    .recruitment .step-box .step-list .item{padding: clamp(20px,2.17vw,40px) 0;}
    .recruitment .step-box .step-list .item figure{margin: clamp(24px, 2.07vw, 38px) 0 clamp(22px, 1.96vw, 36px);}
    .recruitment .step-box ul{margin:clamp(40px,3.26vw,60px) 0 clamp(80px, 10.87vw,200px);}
}
@media screen and (max-width:1500px) {
    .recruitment .step-box .step-list{gap:0 50px}
    .recruitment .step-box .step-list .item{width: calc((100% - 250px) / 6);}
    .recruitment .step-box .step-list .item::after{right: -40px;}
}
@media screen and (max-width:1200px) {
    .recruitment .step-box .step-list .item{padding: 40px 0;}
    .recruitment .step-box .step-list .item figure{width: 40px; height: 40px; margin: 16px auto;}
    .recruitment .step-box .step-list .item p,
    .recruitment .step-box .step-list .item p:last-of-type{font-size: 16px;}
    .recruitment .recruit-list > ul > li > ul > li > a{padding: 20px; gap:0 20px}
    .recruitment .recruit-list > ul > li > ul > li > a .icon{width: 50px; height: 50px; line-height: 50px; font-size: 14px;}
}
@media screen and (max-width:1024px) {
    .recruitment .step-box .step-list{flex-wrap:wrap; gap:30px 100px}
    .recruitment .step-box .step-list .item{width: calc((100% - 200px) / 3);}
    .recruitment .step-box .step-list .item::after{right: -65px;}
    .recruitment .step-box .step-list .item:nth-of-type(3)::after{display: none;}
    .recruitment .step-box ul li{font-size: 16px;}
    .recruitment .step-box ul li::before{top: 6px;}
    .recruitment .recruit-list > ul > li > ul{position: relative; flex-wrap:wrap; padding: 20px;}
    .recruitment .recruit-list > ul > li > ul > li:first-of-type{width: 100%; margin-bottom: 10px;}
    .recruitment .recruit-list > ul > li > ul > li:first-of-type::after{display: none;}
    .recruitment .recruit-list > ul > li > ul > li a{padding: 0;}
    .recruitment .recruit-list > ul > li > ul > li a span:not(.icon){margin-right: 60px;}
    .recruitment .recruit-list > ul > li > ul > li:nth-of-type(2){width: auto; padding-right: 20px;}
    .recruitment .recruit-list > ul > li > ul > li:nth-of-type(3){width: auto; padding: 0 20px;}
    .recruitment .recruit-list > ul > li > ul > li:nth-of-type(3)::after{display: none;}
    .recruitment .recruit-list > ul > li > ul > li:nth-of-type(4){width: auto; position: absolute; top: 50%; right: 20px; transform: translateY(-50%);}
}
@media screen and (max-width:768px) {
    .recruitment .step-box .step-list{flex-wrap:wrap; gap:30px 40px}
    .recruitment .step-box .step-list .item{width: calc((100% - 80px) / 3); padding: 30px 0;}
    .recruitment .step-box .step-list .item::after{right: -30px; width: 20px;height:30px; border-radius:4px}
    .recruitment .step-box .step-list .item:nth-of-type(3)::after{display: none;}
    .recruitment .step-box ul{margin: 40px 0;}
}
/* 채용공고 상세 */
.board-view.recruit-view .tit ul li .icon{display: flex; align-items: center; justify-content: center; text-align: center; flex-shrink: 0; width: 70px; height: 70px; border-radius:50%; color: #fff; font-weight: 600; font-size: 16px;}
.board-view.recruit-view .tit ul li .icon.ing{background: var(--color-point01);}
.board-view.recruit-view .tit ul li .icon.end{background: #ccc;}
.board-view.recruit-view .file-box{margin: 60px 0;}
.board-view.recruit-view .job-link-box{display:flex; align-items: center; justify-content: center; gap:10px; margin-top: 60px;}
.board-view.recruit-view .job-link-box a{display: block; width: 200px; line-height: 60px; background: var(--color-point01); color: #fff; border-radius:5px; font-weight: 600; font-size: 18px; text-align: center;}
.board-view.recruit-view .job-link-box a.bg02{background: var(--color-point02); color: #111;}
.board-view.recruit-view .post-box .list{justify-content: center; width: 200px; line-height: 60px; background: #111; color: #fff; border-radius:5px; font-weight: 600; text-align: center; margin: 60px auto 0;}
@media screen and (max-width: 1024px) {
    .board-view.recruit-view .file-box{margin: 40px 0;}
    .board-view.recruit-view .job-link-box{margin-top: 40px;}
    .board-view.recruit-view .post-box .list,
    .board-view.recruit-view .job-link-box a{width: 180px; font-size: 16px; line-height: 50px;}
    .board-view.recruit-view .post-box .list{margin-top: 40px;}
    .board-view.recruit-view .tit ul li .icon{width: 50px; height: 50px; line-height: 50px; font-size: 14px;}
    .board-view.recruit-view .tit ul{gap:0 30px}
    .board-view.recruit-view .tit ul li::after{top:calc(50% - 1px); right: -16px;}
}
/* 개인정보처리방침, 이용약관 
======================================= */
.privacy .box{margin-bottom: 50px;}
.privacy .box h2{font-weight: 600; font-size: 20px; margin-bottom: 30px; color: #222;}
.privacy .box strong{display: block; font-weight: 500; font-size: 18px; color: #333; margin-bottom: 10px;}
.privacy .box p.color333{color: #333;}
.privacy .box p.fs23 {font-size:23px; margin-bottom:0; padding-bottom:0;}
.privacy .box ul.pl20 {padding-left:20px;}
.privacy .box p,
.privacy .box ul li {font-weight: 300; font-size: 18px; color: #666; line-height: 1.66666em; margin:5px 0;}
.privacy .box ul li ul {padding-left: 20px;}
.privacy .box ul li ul li {position: relative; padding-left: 0px;}
/*.privacy .box ul li ul:not(.not) li::before{content:""; position: absolute; top: 12px; left: 0;  width: 3px; height: 3px; background: #666; border-radius:50%}*/

@media screen and (max-width: 1024px) {
    .privacy .box{margin-bottom: 30px;}
    .privacy .box h2{font-size: 18px; margin-bottom: 20px;}
    .privacy .box p,
    .privacy .box ul li,
    .privacy .box strong{font-size: 16px;}
    .privacy .box ul li ul{padding-left: 15px;}
    /*.privacy .box ul li ul li{padding-left: 8px;}
    .privacy .box ul li ul li::before{top: 10px;}*/
}