* {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: inherit
}

::before,
::after {
    box-sizing: border-box
}

body {
    line-height: 1.25;
    font-weight: 400;
    font-size: 16px;
    font-family: Montserrat, SpoqaHanSansNeo, sans-serif;
    color: #000;
    letter-spacing: -0.5px
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    display: block
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: normal
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show
}

td {
    word-wrap: break-word
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0
}

legend,
caption {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0
}

address,
caption,
em,
var {
    font-style: normal;
    font-weight: inherit
}

strong {
    font-weight: 700
}

a {
    color: inherit;
    text-decoration: none
}

pre {
    font-family: inherit;
    white-space: pre-wrap
}

img {
    border: 0;
    vertical-align: top;
    width: 100%
}

select,
input,
textarea {
    width: 100%;
    vertical-align: middle;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    border: 0;
    background: #fff;
    color: #000
}

input[type=text],
input[type=submit],
input[type=password],
input[type=search],
input[type=number],
input[type=reset],
input[type=email],
input[type=tel],
input[type=search],
input[type=file],
input[type=email],
input[type=tel] {
    padding: 0 22px;
    height: 59px;
    line-height: 59px;
    border: 1px solid #d7d7d7;
    font-size: 18px;
    font-weight: 400
}

input[type=radio],
input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

input[type=text]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
textarea:focus {
    border-color: #000;
    background-color: #fff;
    outline: none
}

input[readonly] {
    pointer-events: none
}

::-moz-placeholder {
    font-size: inherit;
    color: #bcbcbc
}

:-ms-input-placeholder {
    font-size: inherit;
    color: #bcbcbc
}

::placeholder {
    font-size: inherit;
    color: #bcbcbc
}

textarea {
    overflow: auto;
    padding: 22px;
    resize: none;
    font-size: 18px;
    border: 1px solid #d7d7d7
}

button {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
    cursor: pointer;
    color: inherit
}

button:disabled {
    cursor: default
}

.hidden {
    position: absolute;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none
}

::-moz-selection {
    background: #093389;
    color: #fff
}

::selection {
    background: #093389;
    color: #fff
}

.main-title {
    position: relative;
    margin-bottom: 36px;
    color: #000
}

.main-title h2 {
    position: relative;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600
}

/* 기존 .main-title h2 .title-motion:first-child 관련 부분을 아래로 교체 */

/* 1. 부모 요소 relative 설정 */
.main-title h2 .title-motion {
    position: relative;
    display: inline-block; /* 텍스트 너비만큼만 밑줄을 긋기 위해 필요 */
    z-index: 1;
}

/* 2. 가상요소(after)로 언더라인 생성 */
.main-title h2 .title-motion::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;              /* 텍스트와의 간격 (음수면 아래로 내려감) */
    width: 100%;
    height: 9px;               /* 언더라인 두께 (두껍게 하려면 숫자를 키우세요) */
    background-color: #9ccd10; /* 언더라인 색상 */
    z-index: -1;               /* 텍스트 뒤로 배치 */
    
    /* 애니메이션 초기 상태 (가로폭 0) */
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s ease-out 0.2s; /* 속도 및 딜레이 설정 */
}

/* 3. 스크롤 등으로 .started 클래스가 붙으면 언더라인 확장 */
.main-title.started h2 .title-motion::after {
    transform: scaleX(1);
}

.main-title h2 .title-motion.v2:first-child::after {
    display: none
}

.main-title h2 .title-motion.v2 .ico-arr {
    width: 16px;
    height: 16px;
    margin-left: 8px
}

.main-title h2+strong {
    margin-top: 30px
}

.main-title h2+strong.en {
    margin-top: 10px
}

.main-title strong {
    font-size: 60px;
    letter-spacing: -1.5px;
    line-height: 1.3
}

.main-title strong+p {
    margin-top: 25px
}

.main-title strong.en {
    line-height: 1.25
}

.main-title strong.en+p {
    margin-top: 40px
}

.main-title p {
    font-size: 26px;
    letter-spacing: 0px;
    line-height: 1.54
}

.main-title .btn-more {
    margin-right: 15px
}

.main-title .title-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    overflow: hidden;
    transform: translateY(200px);
    opacity: 0;
    transition: 1s .2s
}

.main-title .title-box .title-motion {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    position: relative
}

.main-title .title-box .title-motion p{
    margin-top: 10px;
}

.main-title .title-box .title-motion:only-child .btn-more {
    margin-top: 60px
}

.main-title:nth-child(2) .title-box {
    transition-delay: 0.2s
}


.main-title:nth-child(3) .title-box {
    transition-delay: 0.4s
}

.main-title:nth-child(4) .title-box {
    transition-delay: 0.6s
}

.main-title:nth-child(5) .title-box {
    transition-delay: 0.8s
}

.main-title:nth-child(6) .title-box {
    transition-delay: 1s
}

.main-title:nth-child(7) .title-box {
    transition-delay: 1.2s
}

.main-title:nth-child(8) .title-box {
    transition-delay: 1.4s
}

.main-title:nth-child(9) .title-box {
    transition-delay: 1.6s
}

.main-title:nth-child(10) .title-box {
    transition-delay: 1.8s
}

.main-title.started .title-box {
    transform: translateY(0);
    opacity: 1
}

.main-title.started h2 .title-motion:first-child::after {
    transform: scale(1)
}

.visual-wrap .main-title {
    color: #fff;
    transition-delay: 1s
}
.visual-wrap {
    position: relative;
    overflow: hidden
}

.visual-wrap .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 60px;
    z-index: 9;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px
}

.visual-wrap .scroll-down .ico-scroll {
    display: block;
    margin: 10px auto 0
}

.visual-wrap .visual-swiper {
    overflow: hidden;
    height: 100vh
}

.visual-wrap .visual-swiper .swiper-slide {
    overflow: hidden
}

.visual-wrap .visual-swiper .swiper-slide img,
.visual-wrap .visual-swiper .swiper-slide video {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.visual-wrap .visual-swiper .swiper-slide .main-title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    width: 1440px;
    transform: translate(-50%, -50%);
    color: #fff
}

.visual-wrap .visual-swiper .swiper-slide .main-title strong {
    font-size: 74px
}

.visual-wrap .visual-swiper .swiper-slide .main-title strong+p {
    margin-top: 43px
}

.visual-wrap .visual-swiper .swiper-slide .main-title p {
    font-size: 24px
}

.visual-wrap .visual-swiper .swiper-slide .main-title .title-box .title-motion:only-child .btn-more {
    margin-top: 80px
}

.visual-wrap .visual-swiper .swiper-slide.swiper-slide-active .main-title .title-box {
    transform: translateY(0);
    opacity: 1
}
/* Technology R&D 섹션(vision-wrap) 내의 더보기 버튼 아이콘 스타일 지정 */
.vision-wrap .main-title .btn-more .ico-more {
    width: 61px;
    height: 11px;
    background-image: url(../images/icon/more.svg); /* 흰색 아이콘 적용 */
}

.vision-wrap {
    position: relative;
    overflow: hidden
}

.vision-wrap .inner-box {
    padding: 150px 0 160px 150px;
}


.vision-wrap .inner-box .title-motion strong {
    font-size: 70px
}

.visual-wrap .main-title {
    color: #fff;
    transition-delay: 1s
}
.vision-wrap .bg-box {
    overflow: hidden;
    position: relative;
    z-index: 99;
    left: calc(50% - 480px);
    top: 0;
    width: 366px;
    height: 230px;
    transition: .5s .5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    filter: gray;
    transform: translate(0);
    opacity: 1
}

.vision-wrap .bg-box .bg {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 63%;
    transform-origin: 0 0;
    transform: translateY(200px);
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.vision-wrap .bg-box .bg .bg-inner {
    width: 100%;
    height: 0;
    padding-bottom: 63%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-image: url(../images/main/img_vision.jpg)
}

.vision-wrap .bg-box .main-title {
    position: absolute;
    top: 200px;
    left: 50%;
    width: 1440px;
    transform: translateX(-50%);
    padding-left: 240px; 
    color: #fff
}

.vision-wrap .bg-box .main-title strong {
    font-size: 60px;

}

.vision-wrap .bg-box .main-title .title-box .title-motion:only-child .btn-more {
    margin-top: 80px
}

.vision-wrap .bg-box.started .bg {
    transform: translateY(0)
}

.vision-wrap .bg-box.active {
    left: 0;
    width: 100%;
    height: 100%;
    filter: none
}

.vision-wrap .bg-box.active .main-title h2 .title-motion:first-child::after {
    transform: scale(1)
}

.vision-wrap .bg-box.active .main-title .title-box {
    transform: translateY(0);
    transition-delay: 1s;
    opacity: 1
}

.product-wrap {
    padding: 180px 0 150px;
    background-image: url(../images/main/img_product.png)
}

.product-wrap .main-title {
    padding: 180px 0 150px;

}

.product-wrap .side-box {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    left: 0
}

.product-wrap .list-tab {
    width: 305px;
    transform: translateY(100px);
    opacity: 0;
    transition: .5s .5s
}

.product-wrap .list-tab.started {
    transform: translateY(0);
    opacity: 1
}

.product-wrap .list-tab li a {
    display: block;
    position: relative;
    padding: 15px 0;
    font-size: 30px;
    font-weight: 500;
    color: #aaa
}

.product-wrap .list-tab li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 162px;
    height: 1px;
    background-color: #000;
    transform-origin: 0 100%;
    transform: scaleX(0);
    transition: .8s cubic-bezier(0.17, 0.67, 0, 1.05)
}

.product-wrap .list-tab li.active a {
    color: #000
}

.product-wrap .list-tab li.active a::after {
    transform: scaleX(1)
}

.product-wrap .list-product {
    margin-right: -90px;
    margin-top: -460px;
    padding-left: 450px
}

.product-wrap .list-product li {
    width: 500px;
    margin-top: -220px;
    transform: translateY(350px);
    opacity: 0;
    transition: 2s cubic-bezier(0.17, 0.67, 0, 1.05)
}

.product-wrap .list-product li.started {
    transform: translateY(0);
    opacity: 1
}

.product-wrap .list-product li:nth-child(even) {
    margin-left: auto
}

.product-wrap .list-product li:first-child {
    margin-top: 0
}


/* cover */
.product-wrap .list-product li .img-box {
    overflow: hidden;
    position: relative;
    border-radius: 20px; /* img 태그에 있던 둥근 모서리를 부모에게 적용 */
}
.product-wrap .list-product li .img-box img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 510px;
    width: 100%;
}
/* 3. [추가] 그라데이션 커버 생성 (이미지 위에 덮어씌움) */
.product-wrap .list-product li .img-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 요청하신 그라데이션 이미지 적용 */
    background: url(../images/main/pro_gra.png) no-repeat center center;
    background-size: cover; 
    
    z-index: 1;           /* 이미지보다 위에 오도록 설정 */
    pointer-events: none; /* 마우스 클릭은 통과시켜 링크 작동 보장 */
}

/* 4. [중요] 텍스트가 그라데이션 밑으로 숨지 않도록 z-index 높이기 */
.product-wrap .list-product li .img-box .type-box {
    z-index: 2;
    position: absolute; /* 기존 코드에 이미 있지만 확실히 하기 위해 기재 */
}
/* .product-wrap .list-product li .img-box {
    overflow: hidden;
    position: relative
}

.product-wrap .list-product li .img-box img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 510px;
    border-radius: 20px;
    background: url(../images/main/pro_gra.png)
} */




.product-wrap .list-product li .img-box .type-box {
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    flex-wrap: wrap;
    flex-direction: column;
}

.product-wrap .list-product li .img-box .type-box .type {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: calc(50% - 12px);
    height: 50px;
    margin-left: 6px;
    margin-right: 6px;
    margin-bottom: 12px;
    padding: 0 20px 0 25px;
    border: 1px solid #d7d7d7;
    background: rgba(0, 0, 0, .2);
    border-radius: 30px;
    font-size: 18px;
    font-family: SpoqaHanSansNeo, sans-serif;
    letter-spacing: -0.25px;
    color: #fff;
    transition: .3s
}

.product-wrap .list-product li .img-box .type-box .type::after {
    content: "";
    display: inline-block;
    transform: rotate(-45deg);
    min-width: 10px;
    height: 10px;
    margin-left: 4px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff
}

.product-wrap .list-product li .img-box .type-box .type:hover {
    background: rgba(255, 255, 255, .6);
    color: #000
}

.product-wrap .list-product li .img-box .type-box .type:hover::after {
    border-color: #000
}

.product-wrap .list-product li .img-box .type-box.v2 .type {
    width: auto
}


.product-wrap .list-product li .type-box {
    margin-top: 30px
}

.product-wrap .list-product li .type-box strong {
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF
}

.product-wrap .list-product li .type-box strong span {
    margin-left: 10px;
    font-size: 20px;
}


.product-wrap .list-product li .type-box p {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #FFFFFF
}


.product-wrap .list-product li .title-box {
    margin-top: 30px
}

.product-wrap .list-product li .title-box strong {
    font-size: 40px;
    font-weight: 500
}

.product-wrap .list-product li .title-box strong span {
    margin-left: 10px;
    font-size: 20px;
    color: #e30011
}

.main-title .blue {
    color: #15547a;
}

.product-wrap .list-product li .title-box p {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.5
}

.global-wrap {
    overflow: hidden;
    position: relative;
    height: 601px;
    padding: 100px 0;
    transition: .5s 1.5s ease-out;
    background-image: url(../images/main/bg1.jpg);
    background-color: #d6cec1;
}

.global-wrap .main-title {
    display: inline-block;
    z-index: 10;
    margin-bottom: 0
}

.global-wrap .main-title .btn-more .ico-more {
    background-image: url(../images/icon/more_bk.svg);
    transition: 1s 1.5s ease-out
}

.global-wrap .main-title {
    color: #473e2f;
    transition-delay: 1s
}

.global-wrap .main-title .btn-more .ico-more {
    background-image: url(../images/icon/more_bk.svg)
}

.global-wrap .map-box {
    overflow: hidden;
    overflow-x: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transition: 1s 2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.global-wrap .map-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 50%;
    height: 100%;
    background-color: #000
}

.global-wrap .map-box .map-img,
.global-wrap .map-box .bg,
.global-wrap .map-box .list-area {
    width: 671px;
    height: 100%;
    margin-left: auto
}

.global-wrap .map-box .map-img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover
}

/* .global-wrap .map-box .bg {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #093389, #a52a30, #093389, #a52a30);
    background-size: 300% 100%;
    -webkit-animation: gradient 3s ease-out infinite;
    animation: gradient 3s ease-out infinite
} */

@-webkit-keyframes gradient {
    from {
        background-position-X: 100%
    }

    to {
        background-position-X: 0%
    }
}

@keyframes gradient {
    from {
        background-position-X: 100%
    }

    to {
        background-position-X: 0%
    }
}

.global-wrap .map-box .list-area {
    position: relative
}

.global-wrap .map-box .area-box {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    padding: 50px;
    margin-left: 434px;
    margin-top: -267px
}

.global-wrap .map-box .area-box.active {
    z-index: 5
}

.global-wrap .map-box .area-box.korea {
    margin-left: -114px;
    margin-top: -25px
}

.global-wrap .map-box .area-box.asia {
    margin-left: -64px;
    margin-top: 135px
}

.global-wrap .map-box .area-box.oceania {
    margin-left: 199px;
    margin-top: 207px
}

.global-wrap .map-box .area-box.middle {
    margin-left: -542px;
    margin-top: 73px
}

.global-wrap .map-box .area-box.eu {
    margin-left: -767px;
    margin-top: 22px
}

.global-wrap .map-box .area-box.africa {
    margin-left: -442px;
    margin-top: 330px
}

.global-wrap .map-box .area-box .title-box {
    position: relative
}

.global-wrap .map-box .area-box .title-box strong {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.global-wrap .map-box .area-box .title-box::after {
    content: "";
    position: absolute;
    top: calc(50% + 2px);
    left: calc(100% + 10px);
    width: 0;
    height: 0;
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-left: 10px solid #fff;
    border-right: 10px solid rgba(0, 0, 0, 0);
    transform: translateY(-50%);
    opacity: 0;
    transition: .3s
}

.global-wrap .map-box .area-box:hover .title-box::after {
    opacity: 1
}

.global-wrap.started .map-box {
    opacity: 1;
    transform: translateX(0)
}

.esg-wrap {
    padding-top: 154px
}

.esg-wrap .main-title {
    margin-bottom: 100px;
    padding: 0 20px
}

.esg-wrap .main-title .title-box {
    justify-content: center;
    text-align: center
}

.esg-wrap .main-title p {
    font-size: 22px
}

.esg-wrap .esg-box {
    overflow: hidden;
    position: relative;
    background: url(../images/main/bg_esg.jpg) 50% 0 no-repeat;
    background-size: cover
}

.esg-wrap .esg-box .door-inner .door {
    position: absolute;
    top: 0;
    z-index: 3;
    width: calc((100vw - 720px)/2);
    height: 100%;
    background-color: #fff
}

.esg-wrap .esg-box .door-inner .door.is-left {
    left: 0
}

.esg-wrap .esg-box .door-inner .door.is-right {
    right: 0
}

.esg-wrap .esg-box .door-inner.complete {
    width: 100%;
    border-radius: 0
}

.esg-wrap .esg-box .door-inner.complete .door.is-left {
    transform: translate3d(-101%, 0, 0)
}

.esg-wrap .esg-box .door-inner.complete .door.is-right {
    transform: translate3d(101%, 0, 0)
}

.esg-wrap .esg-box .list-esg {
    display: flex;
    justify-content: center;
    width: 1440px;
    margin: 0 auto
}

.esg-wrap .esg-box .list-esg li {
    position: relative;
    width: 100%;
    text-align: center
}

.esg-wrap .esg-box .list-esg li::after,
.esg-wrap .esg-box .list-esg li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .3);
    opacity: 0;
    transform-origin: 0 0;
    transform: scaleY(0);
    transition: 1s .5s
}

.esg-wrap .esg-box .list-esg li::before {
    display: none
}

.esg-wrap .esg-box .list-esg li:last-child::before {
    left: auto;
    right: 0;
    display: block
}

.esg-wrap .esg-box .list-esg li a {
    display: block
}

.esg-wrap .esg-box .list-esg li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .1);
    opacity: 0;
    transition: .5s
}

.esg-wrap .esg-box .list-esg li a:hover::before {
    opacity: 1
}

.esg-wrap .esg-box .list-esg li a:hover .ico-arr-circle {
    background-image: url(../images/icon/circle_arrow_active.svg)
}

.esg-wrap .esg-box .list-esg li a .text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 800px;
    color: #fff;
    opacity: 0;
    transition: 1s 1s
}

.esg-wrap .esg-box .list-esg li a .text-box p {
    margin-top: 22px;
    font-size: 18px
}

.esg-wrap .esg-box .list-esg li a .text-box strong {
    display: block;
    margin-top: 10px;
    font-size: 28px;
    font-weight: 400
}

.esg-wrap .esg-box .list-esg li a .text-box .ico-arr-circle {
    margin-top: 53px
}

.esg-wrap .esg-box .list-esg.started li::after,
.esg-wrap .esg-box .list-esg.started li::before {
    transform: scaleY(1);
    opacity: 1
}

.esg-wrap .esg-box .list-esg.started li a .text-box {
    opacity: 1
}

.news-wrap {
    padding-top: 150px
}

.news-wrap .list-news li {
    border-bottom: 1px solid #d7d7d7
}

.news-wrap .list-news li a {
    display: flex;
    align-items: center;
    position: relative;
    height: 190px
}

.news-wrap .list-news li a:hover .img-box {
    opacity: 1
}

.news-wrap .list-news li a .img-box {
    overflow: hidden;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 210px;
    height: 140px;
    opacity: 0;
    transition: .3s
}

.news-wrap .list-news li a .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.news-wrap .list-news li a .date-box {
    padding: 0 30px;
    text-align: center;
    color: #666
}

.news-wrap .list-news li a .date-box strong {
    font-size: 36px;
    font-weight: 500
}

.news-wrap .list-news li a .date-box p {
    font-size: 19px;
    font-weight: 500
}

.news-wrap .list-news li a .title-box {
    padding-left: 38px;
    padding-right: 220px;
    font-size: 26px;
    font-weight: 500;
    font-family: SpoqaHanSansNeo, sans-serif
}

.news-wrap .list-news li a .title-box .title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 50px;
    white-space: initial;
    height: 50px
}

.news-wrap .list-news li a .title-box .category {
    display: block;
    margin-bottom: 13px;
    color: #093389;
    font-weight: 500
}

.news-wrap .list-news li a .title-box .date {
    display: none
}

.story-wrap {
    overflow: hidden;
    padding: 100px 0 194px
}

.story-wrap .main-title h2 {
    font-size: 28px
}

.story-wrap .story-swiper {
    transform: translateY(100px);
    opacity: 0;
    transition: .5s .5s
}

.story-wrap .story-swiper.started {
    transform: translateY(0);
    opacity: 1
}

.story-wrap .swiper-button-box {
    display: none
}

.story-wrap .swiper-button-prev,
.story-wrap .swiper-button-next {
    margin-top: -52px
}

.story-wrap .swiper-button-prev {
    left: -64px
}

.story-wrap .swiper-button-next {
    right: -64px
}

.story-wrap .story-box {
    display: block
}

.story-wrap .story-box .img-box {
    display: block;
    overflow: hidden
}

.story-wrap .story-box .img-box img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: .5s
}

.story-wrap .story-box .img-box:hover img {
    transform: scale(1.2)
}

.story-wrap .story-box .title-box {
    display: block;
    margin-top: 36px
}

.story-wrap .story-box .title-box strong {
    font-size: 26px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 40px;
    white-space: initial;
    height: 80px
}

.banner-wrap {
    overflow: hidden
}

.banner-wrap .list-banner {
    display: flex;
    justify-content: center
}

.banner-wrap .list-banner li {
    overflow: hidden;
    position: relative;
    width: 100%
}

.banner-wrap .list-banner li:nth-child(1) a {
    margin-left: auto;
    padding-right: 100px
}

.banner-wrap .list-banner li:nth-child(2) a {
    padding-left: 148px
}

.banner-wrap .list-banner li a {
    display: block;
    width: 720px;
    height: 330px;
    padding-top: 175px;
    color: #fff
}

.banner-wrap .list-banner li a:hover .img-box {
    transform: scale(1.2)
}

.banner-wrap .list-banner li a .title-text {
    font-size: 32px;
    font-weight: 500
}

.banner-wrap .list-banner li a .sub-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
    font-size: 20px
}

.banner-wrap .list-banner li a .img-box {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: .5s
}

.banner-wrap .list-banner li a .img-box img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.banner-wrap .list-banner li a .ico-more {
    min-width: 61px;
    width: 61px
}

@media all and (max-width: 1024px) {
    .esg-wrap .esg-box {
        padding: 0 30px
    }

    .esg-wrap .esg-box .door {
        display: none
    }

    .story-wrap .story-swiper {
        margin-left: -30px;
        margin-right: -30px;
        padding: 0 60px 0 20px
    }

    .story-wrap .story-swiper .swiper-wrapper .swiper-slide {
        opacity: .5;
        transition: .3s
    }

    .story-wrap .story-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
        opacity: 1
    }

    .story-wrap .swiper-button-box {
        display: flex;
        position: initial;
        margin-top: 0;
        justify-content: center;
        margin-right: -40px
    }
    /* map-box가 가로 스크롤 컨테이너로 동작하지 않도록 */
    .global-wrap .map-box {
        overflow-x: hidden;
    }

    /* 내부 고정폭 요소를 section 폭에 맞게 확장 */
    .global-wrap .map-box .map-img,
    .global-wrap .map-box .bg,
    .global-wrap .map-box .list-area {
        width: 100%;
        max-width: none;
        margin-left: 0;
        left: 0;
        right: 0;
    }

    /* absolute 기준 정렬로 인한 잘림 방지 */
    .global-wrap .map-box .map-img {
        object-fit: cover;
    }
}

@media all and (min-width: 768px)and (max-width: 1439px) {
    .inner-box {
        width: 100%;
        padding-left: 50px;
        padding-right: 50px
    }

    .visual-wrap .scroll-down {
        display: none
    }

    .visual-wrap .visual-swiper {
        height: 90vh
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title {
        left: 50px;
        width: 70%;
        transform: translate(0, -50%)
    }

    .vision-wrap .inner-box {
        padding-left: 150px;
        padding-right: 150px
    }

    .vision-wrap .bg-box {
        left: calc(50% - 110px);
        width: 219px;
        height: 137px
    }

    .vision-wrap .bg-box .main-title {
        top: 120px;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        padding-left: 150px
    }

    .vision-wrap .bg-box.active .bg,
    .vision-wrap .bg-box.active .bg .bg-inner {
        padding-bottom: 80vh;
        transition: padding-bottom 1s 1s
    }

    .vision-wrap .bg-box.active .bg .bg-inner {
        background-position-x: 0%
    }

    .product-wrap .side-box {
        position: initial
    }

    .product-wrap .list-product {
        margin-right: 0;
        margin-top: 0;
        padding-left: 0
    }

    .product-wrap .list-product li {
        margin-left: auto;
        margin-top: 60px
    }

    .product-wrap .list-product li:first-child {
        margin-top: 0
    }

    /* map-box가 가로 스크롤 컨테이너로 동작하지 않도록 */
    .global-wrap .map-box {
        overflow-x: hidden;
    }

    /* 내부 고정폭 요소를 section 폭에 맞게 확장 */
    .global-wrap .map-box .map-img,
    .global-wrap .map-box .bg,
    .global-wrap .map-box .list-area {
        width: 100%;
        max-width: none;
        margin-left: 0;
        left: 0;
        right: 0;
    }

    /* absolute 기준 정렬로 인한 잘림 방지 */
    .global-wrap .map-box .map-img {
        object-fit: cover;
    }
    /* 지도 이미지 크기 & 위치 제어 */
    .global-wrap .map-box .map-img {
        position: absolute;
        top: 58%;
        left: 73%;

        /* 🔹 핵심: 모바일 전용 스케일 */
        width: 50%;
        max-width: none;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: contain;
        pointer-events: none;
    }

    .esg-wrap .esg-box .list-esg {
        width: 100%
    }

    .story-wrap .story-swiper {
        margin-left: -50px;
        margin-right: -50px;
        padding: 0 90px 0 50px
    }

    .banner-wrap .list-banner li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding-top: 0;
        line-height: 1.45
    }

    .banner-wrap .list-banner li:nth-child(1) a,
    .banner-wrap .list-banner li:nth-child(2) a {
        padding-left: 50px;
        padding-right: 50px
    }
}

@media all and (max-width: 767px) {
    .inner-box {
        width: 100%
    }

    .main-title {
        width: 100%
    }

    .main-title h2 {
        font-size: 16px
    }

    .main-title h2 .title-motion:first-child::after {
        content: "";
        /* width: 6px;
        height: 6px; */
        margin-left: 0px
    }

    .main-title h2 .title-motion.v2:first-child::after {
        display: none
    }

    .main-title h2 .title-motion.v2 .ico-arr {
        width: 12px;
        height: 12px;
        margin-left: 4px
    }

    .main-title h2+strong {
        margin-top: 10px
    }

    .main-title strong {
        font-size: 33px;
        line-height: 1.26
    }

    .main-title strong+p {
        margin-top: 20px
    }

    .main-title strong.en {
        font-size: 38px;
        line-height: 1.1
    }

    .main-title strong.en+p {
        margin-top: 20px
    }

    .main-title p {
        font-size: 16px;
        line-height: 1.42
    }

    .main-title .btn-more {
        margin-right: 0
    }

    .main-title .title-box .title-motion:only-child .btn-more {
        margin-top: 30px
    }

    .visual-wrap .scroll-down {
        display: none
    }

    .visual-wrap .visual-swiper {
        height: calc(100vh - 70px)
    }

    .visual-wrap .visual-swiper .swiper-slide.swiper-slide-active .main-title .title-box .title-motion {
        transform: translateY(0)
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title {
        left: 30px;
        width: calc(100% - 60px);
        transform: translate(0, -50%)
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title strong {
        font-size: 38px
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title strong+p {
        margin-top: 20px
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title p {
        font-size: 17px
    }

    .visual-wrap .visual-swiper .swiper-slide .main-title .title-box .title-motion:only-child .btn-more {
        margin-top: 40px
    }

    .visual-wrap .swiper-player-button {
        bottom: 22px;
        left: calc(50% + 70px);
        background-size: 12px auto
    }

    .vision-wrap .inner-box {
        padding: 90px 0 90px 30px
    }

    .vision-wrap .inner-box .main-title strong {
        font-size: 38px
    }

    .vision-wrap .bg-box {
        left: calc(50% - 110px);
        width: 219px;
        height: 137px
    }

    .vision-wrap .bg-box .main-title {
        top: 100px;
        left: 50%;
        width: 100%;
        transform: translateX(-50%);
        padding-left: 30px
    }

    .vision-wrap .bg-box .main-title strong {
        font-size: 38px
    }

    .vision-wrap .bg-box .main-title .title-box .title-motion:only-child .btn-more {
        margin-top: 40px
    }

    .vision-wrap .bg-box.active .bg,
    .vision-wrap .bg-box.active .bg .bg-inner {
        padding-bottom: 80vh;
        transition: padding-bottom 1s 1s
    }

    .vision-wrap .bg-box.active .bg .bg-inner {
        background-position-x: 65%
    }

    .product-wrap {
        padding: 80px 0
    }

    .product-wrap .main-title {
        padding: 85px 0 85px;
    }

    .product-wrap .main-title {
        margin-bottom: 30px;
        padding-left: 10px
    }

    .product-wrap .main-title strong {
        font-size: 33px
    }

    .product-wrap .main-title .btn-more {
        font-size: 14px
    }

    .product-wrap .side-box {
        position: initial
    }

    .product-wrap .list-tab {
        display: flex;
        align-items: center;
        overflow: hidden;
        overflow-x: auto;
        width: 100%;
        margin-bottom: 10px;
        transition-delay: 0s
    }

    .product-wrap .list-tab li a {
        padding: 15px 10px;
        font-size: 19px
    }

    .product-wrap .list-tab li a::after {
        display: none
    }

    .product-wrap .list-product {
        margin-right: 0;
        margin-top: 0;
        padding-left: 0
    }

    .product-wrap .list-product li {
        display: none;
        width: auto
    }

    .product-wrap .list-product li.active {
        display: block
    }

    .product-wrap .list-product li:nth-child(even) {
        margin-left: auto
    }

    .product-wrap .list-product li:first-child {
        width: auto
    }

    .product-wrap .list-product li:nth-child(2) {
        margin-top: 0
    }

    .product-wrap .list-product li:nth-child(3) {
        margin-top: 0
    }

    .product-wrap .list-product li:nth-child(4) {
        margin-top: 0
    }
    
    .product-wrap .list-product li:last-child {
        width: auto;
        margin-top: 0
    }

    .product-wrap .list-product li .img-box {
        width: 100%
    }

    .product-wrap .list-product li .img-box img {
        height: auto
    }

    .product-wrap .list-product li .img-box .type-box {
        bottom: 15px;
        left: 30px;
        right: 20px
    }

    .product-wrap .list-product li .img-box .type-box .type {
        width: calc(50% - 10px);
        height: 40px;
        padding: 0 15px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
        font-size: 15px
    }


    .product-wrap .list-produc li .type-box {
        margin-top: 25px;
        padding-left: 10px
    }

    .product-wrap .list-product li .type-box strong {
        font-size: 25px
    }

    .product-wrap .list-product li .type-box strong span {
        margin-left: 10px;
        font-size: 15px
    }

    .product-wrap .list-product li .type-box p {
        margin-top: 6px;
        font-size: 16px
    }

    .product-wrap .list-product li .title-box {
        margin-top: 25px;
        padding-left: 10px
    }

    .product-wrap .list-product li .title-box strong {
        font-size: 25px
    }

    .product-wrap .list-product li .title-box strong span {
        margin-left: 10px;
        font-size: 15px
    }

    .product-wrap .list-product li .title-box p {
        margin-top: 10px;
        font-size: 16px
    }

    .global-wrap {
        /* height: 650px; */
        padding: 80px 0 0
    }

    .global-wrap .main-title {
        margin-bottom: 0;
        padding-left: 10px
    }

    .global-wrap .main-title strong {
        font-size: 33px
    }

    /* map-box가 가로 스크롤 컨테이너로 동작하지 않도록 */
    .global-wrap .map-box {
        overflow-x: hidden;
    }

    /* 내부 고정폭 요소를 section 폭에 맞게 확장 */
    .global-wrap .map-box .map-img,
    .global-wrap .map-box .bg,
    .global-wrap .map-box .list-area {
        width: 100%;
        max-width: none;
        margin-left: 0;
        left: 0;
        right: 0;
    }

    /* absolute 기준 정렬로 인한 잘림 방지 */
    .global-wrap .map-box .map-img {
        object-fit: cover;
    }

    /* 지도 이미지 크기 & 위치 제어 */
    .global-wrap .map-box .map-img {
        position: absolute;
        top: 75%;
        left: 66%;

        /* 🔹 핵심: 모바일 전용 스케일 */
        width: 94%;
        max-width: none;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: contain;
        pointer-events: none;
    }



    .global-wrap .map-box .area-box {
        padding: 20px;
        margin-left: 270px;
        margin-top: -150px
    }

    .global-wrap .map-box .area-box.korea {
        margin-left: -55px;
        margin-top: -6px
    }

    .global-wrap .map-box .area-box.asia {
        margin-left: -26px;
        margin-top: 88px
    }

    .global-wrap .map-box .area-box.oceania {
        margin-left: 129px;
        margin-top: 132px
    }

    .global-wrap .map-box .area-box.middle {
        margin-left: -304px;
        margin-top: 53px
    }

    .global-wrap .map-box .area-box.eu {
        margin-left: -440px;
        margin-top: 22px
    }

    .global-wrap .map-box .area-box.africa {
        margin-left: -249px;
        margin-top: 204px
    }

    .global-wrap .map-box .area-box .title-box strong {
        font-size: 16px
    }

    .global-wrap .map-box .area-box .title-box::after {
        left: calc(100% + 6px);
        border-bottom: 6px solid rgba(0, 0, 0, 0);
        border-top: 6px solid rgba(0, 0, 0, 0);
        border-left: 6px solid #fff;
        border-right: 6px solid rgba(0, 0, 0, 0)
    }

    .esg-wrap {
        padding-top: 80px
    }

    .esg-wrap .main-title {
        margin-bottom: 50px;
        padding: 0 20px
    }

    .esg-wrap .main-title p {
        font-size: 16px
    }

    .esg-wrap .esg-box {
        padding: 0;
        background-position: 50% 50%;
        background-size: cover;
        transform: translateY(100px);
        opacity: 0;
        transition: .5s
    }

    .esg-wrap .esg-box.started {
        transform: translateY(0);
        opacity: 1
    }

    .esg-wrap .esg-box .door {
        display: none
    }

    .esg-wrap .esg-box .list-esg {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%
    }

    .esg-wrap .esg-box .list-esg.started li::after,
    .esg-wrap .esg-box .list-esg.started li::before {
        display: none
    }

    .esg-wrap .esg-box .list-esg li {
        width: 100%;
        text-align: center;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .3)
    }

    .esg-wrap .esg-box .list-esg li:first-child {
        border-top: 0
    }

    .esg-wrap .esg-box .list-esg li a .text-box {
        flex-direction: row;
        justify-content: space-between;
        height: 150px;
        padding: 0 50px
    }

    .esg-wrap .esg-box .list-esg li a .text-box p {
        display: none
    }

    .esg-wrap .esg-box .list-esg li a .text-box strong {
        position: relative;
        padding-right: 20px;
        margin-top: 0px;
        font-size: 16px
    }

    .esg-wrap .esg-box .list-esg li a .text-box strong::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 12px;
        height: 12px;
        margin-top: -7px;
        background-image: url("data: image/svg+xml, %3Csvg width='29' height='54' viewBox='0 0 29 54' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath d='M28 53 2 27 28 1' stroke='%23fff' stroke-width='6' fill='none' fill-rule='evenodd' /%3E%3C/svg%3E%0A");
        transform: rotate(180deg);
        background-size: contain;
        background-repeat: no-repeat
    }

    .esg-wrap .esg-box .list-esg li a .text-box .ico-arr-circle {
        display: none
    }

    .news-wrap {
        padding-top: 80px
    }

    .news-wrap .main-title {
        margin-bottom: 20px;
        padding-left: 10px
    }

    .news-wrap .main-title strong.title-box {
        flex-direction: column;
        align-items: flex-start
    }

    .news-wrap .main-title .btn-more {
        margin-top: 30px
    }

    .news-wrap .list-news {
        margin-top: 35px;
        border-top: 1px solid #d7d7d7
    }

    .news-wrap .list-news li a {
        height: 129px;
        padding-left: 125px
    }

    .news-wrap .list-news li a .img-box {
        top: 50%;
        right: auto;
        left: 0;
        width: 103px;
        height: 68.5px;
        opacity: 1
    }

    .news-wrap .list-news li a .date-box {
        display: none;
        text-align: center
    }

    .news-wrap .list-news li a .title-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        font-size: 18px
    }

    .news-wrap .list-news li a .title-box .title {
        width: 100%;
        flex-grow: 1;
        order: -1;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 25px;
        white-space: initial;
        height: 50px;
        margin-bottom: 4px
    }

    .news-wrap .list-news li a .title-box .category {
        margin-bottom: 0;
        margin-top: 5px;
        font-size: 15px
    }

    .news-wrap .list-news li a .title-box .date {
        display: block;
        margin-top: 5px;
        font-size: 15px;
        font-weight: 500;
        color: #666
    }

    .news-wrap .list-news li a .title-box .date::before {
        content: "";
        display: inline-flex;
        width: 4px;
        height: 4px;
        margin: 0 7px;
        background-color: #ccc;
        border-radius: 50%;
        vertical-align: middle
    }

    .story-wrap {
        padding: 50px 0 80px
    }

    .story-wrap .main-title {
        margin-bottom: 25px
    }

    .story-wrap .main-title h2 {
        font-size: 19px
    }

    .story-wrap .story-swiper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 60px 0 20px
    }

    .story-wrap .story-box .title-box {
        margin-top: 25px
    }

    .story-wrap .story-box .title-box strong {
        font-size: 18px;
        line-height: 25px
    }

    .banner-wrap .list-banner {
        flex-direction: column
    }

    .banner-wrap .list-banner li {
        overflow: hidden;
        position: relative;
        width: 100%
    }

    .banner-wrap .list-banner li:nth-child(1) a,
    .banner-wrap .list-banner li:nth-child(2) a {
        padding: 0 30px
    }

    .banner-wrap .list-banner li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 150px
    }

    .banner-wrap .list-banner li a .title-text {
        font-size: 19px
    }

    .banner-wrap .list-banner li a .sub-text {
        margin-top: 12px;
        font-size: 15px
    }

    .banner-wrap .list-banner li a .ico-more {
        min-width: 50px;
        width: 50px;
        height: 12px
    }
}

/*# sourceMappingURL=main.css.map */