@charset "UTF-8";

/*section1 hero*/
.hero-section {
    padding: 30px;
    height: calc(var(--vh, 1vh) * 100);
    box-sizing: border-box;
}

.hero-section .hero-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50px;
}

.hero-section .hero-content .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.hero-section .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section .swiper-slide .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transform: scale(1.05);
}

.hero-section .swiper-slide.swiper-slide-active .img,
.hero-section .swiper-slide.swiper-slide-duplicate-active .img {
    animation: image-zoom-out 4s 0s forwards;
}

.hero-section .swiper-slide .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-section .swiper-slide .inner {
    height: 100%;
}

.hero-section .txt-container {
    position: absolute;
    width: 100%;
    bottom: 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #FFF;
}

.hero-section .tit-wrap {
    padding-bottom: 60px;
}

.hero-section .tit-wrap h2 {
    font-size: clamp(30px, 3vw, 50px);
    font-weight: 600;
    line-height: 130%;
    /* 65px */
    letter-spacing: -0.05em;
}

.hero-section .tit-wrap h2 span {
    display: block;
}

.hero-section .tit-wrap h2 span.txt-frame {
    overflow: hidden;
}

.hero-section .tit-wrap h2 span.txt-frame .txt {
    transform: translateY(1.2em);
}

.hero-section .swiper-slide-active .tit-wrap h2 span.txt-frame .txt {
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

.hero-section .swiper-slide-active .tit-wrap h2 span.txt-frame:nth-child(2) .txt {
    transition-delay: 0.3s;
}

.hero-section .txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-section .txt-wrap p {
    text-align: right;
    font-size: clamp(14px, 1.2vw, 20px);
    font-weight: 400;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.25px;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(1.2em);
}

.hero-section .swiper-slide-active .txt-wrap p {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

.hero-section .txt-wrap a {
    display: flex;
    border-radius: 100px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.6s ease-in-out;
    transform: translateY(1.2em);
    opacity: 0;
}

.hero-section .swiper-slide-active .txt-wrap a {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

.hero-section .txt-wrap a svg {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: all 0.4s ease-in-out;
}

.hero-section .txt-wrap a svg use {
    stroke: #FFFFFF;
}

.hero-section .txt-wrap a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-section .txt-wrap a:hover svg {
    transform: translateX(4px) rotate(45deg);
}

.hero-section .progress-wrap {
    position: absolute;
    bottom: 120px;
    left: 80px;
    z-index: 5;
    color: #fff;
}

.hero-section .progress-wrap .progress-bar .bar {
    transform-origin: left;
}

.hero-section .progress-wrap .pause-btn {
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
}

.hero-section .progress-wrap .pause-btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    transition: all 0.2s ease-in-out;
}

.hero-section .progress-wrap .pause-btn span.start {
    opacity: 0;
}

.hero-section .progress-wrap .pause-btn.pause span.start {
    opacity: 1;
}

.hero-section .progress-wrap .pause-btn.pause span.pause {
    opacity: 0;
}

@keyframes image-zoom-out {
    from {
        transform: scale(1.05, 1.05);
    }

    to {
        transform: scale(1, 1);
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        padding: 0;
    }

    .hero-section .hero-content {
        border-radius: 0;
    }

    .hero-section .txt-wrap p {
        display: none;
    }

    .hero-section .txt-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-section .txt-container {
        bottom: 50px;
    }

    .hero-section .tit-wrap h2 {
        font-size: clamp(28px, 8vw, 32px);
    }

    .hero-section .tit-wrap h2 span.txt-frame {
        overflow: visible;
    }

    .hero-section .tit-wrap h2 span.txt-frame .txt {
        opacity: 0;
    }

    .hero-section .swiper-slide-active .tit-wrap h2 span.txt-frame .txt {
        opacity: 1;
    }

    .hero-section .progress-wrap {
        left: 20px;
    }

    .hero-section .progress-wrap {
        width: 60%;
        min-width: 150px;
    }

    .progress-wrap .progress-bar {
        width: calc(100% - 40px);
    }

    .hero-section .txt-wrap a {
        font-size: 15px;
        gap: 2px;
    }

    .hero-section .txt-wrap a svg {
        width: 20px;
        height: 20px;
    }

    .hero-section .progress-wrap .pause-btn {
        margin-left: 12px;
    }
}

/*section1 about*/
.section-about {
    padding: 185px 0;
}

.section-about .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-about .img-wrap {
    position: relative;
    padding-right: 125px;
    width: 53.82%;
}

.section-about .img-wrap .img1 {
    border-radius: 32px;
    overflow: hidden;
    isolation: isolate;
    width: 86.34%;
    min-width: 400px;
}

.section-about .img-wrap .img2 {
    position: absolute;
    width: 36.5%;
    bottom: -85px;
    right: 0px;
    border-radius: 32px;
    isolation: isolate;
    overflow: hidden;
    box-shadow: 3px -3px 10px 0 rgba(0, 0, 0, 0.10);

}

.section-about .txt-wrap {
    padding-right: clamp(50px, 5vw, 100px);
    padding-left: 50px;
}

.section-about .txt-wrap .tit {
    margin-bottom: 60px;
    font-family: Pretendard;
}

.section-about .txt-wrap .tit h5 {
    color: #6E0000;
    font-size: clamp(30px, 3vw, 60px);
    font-weight: 600;
    line-height: 130%;
    /* 78px */
    letter-spacing: -0.0093em;
}

.section-about .txt-wrap .tit img {
    width: clamp(200px, 20vw, 435px);
}

.section-about .txt-wrap .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-about .txt-wrap .txt p {
    margin-bottom: 12px;
    color: #2C2C2C;
    font-size: clamp(16px, 1.4vw, 22px);
    font-weight: 300;
    line-height: 140%;
    /* 30.8px */
    letter-spacing: -0.025em;
}

.section-about .txt-wrap .txt p b {
    font-weight: 600;
}

.section-about .txt-wrap .txt p b.color-red {
    color: #6E0000;
}

.section-about .txt-wrap .txt p:last-of-type {
    margin-bottom: 40px;
}

.section-about .txt-wrap .txt .btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid #6E0000;
    background: rgba(17, 17, 17, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(2px);
    color: #6E0000;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.36px;
    transition: all 0.6s ease-in-out;
}

.section-about .txt-wrap .txt .btn .icon {
    fill: transparent;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.section-about .txt-wrap .txt .btn .icon use {
    stroke: #6E0000;
    transition: all 0.4s ease-in-out;
}

.section-about .txt-wrap .txt .btn:hover {
    background-color: #6E0000;
    color: #fff;
}

.section-about .txt-wrap .txt .btn:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.section-about .txt-wrap .txt .btn:hover .icon use {
    stroke: #fff;
}

@media screen and (max-width: 768px) {
    .section-about {
        padding: 80px 0;
    }

    .section-about .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-about .img-wrap {
        width: 100%;
    }

    .section-about .img-wrap {
        width: 100%;
        padding-right: 0;
    }

    .section-about .img-wrap .img1 {
        width: 100%;
        min-width: 0;
        border-radius: 11px;
        width: calc(100% - 10px);
    }

    .section-about .img-wrap .img2 {
        bottom: -30px;
        right: 0px;
        border-radius: 11px;
    }

    .section-about .txt-wrap {
        padding-left: 0;
        padding-top: 70px;
        padding-right: 0;
    }

    .section-about .txt-wrap .tit {
        margin-bottom: 32px;
    }

    .section-about .txt-wrap .tit h5 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .section-about .txt-wrap .tit img {
        width: 240px;
    }

    .section-about .txt-wrap .txt p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .section-about .txt-wrap .txt p:last-of-type {
        margin-bottom: 20px;
    }

    .section-about .txt-wrap .txt .btn {
        font-size: 15px;
        padding: 10px 20px;
    }

}

.section-vision {
    padding: 180px 0;
    background-image: url(/img/common/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-vision .tit-wrap {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-vision .tit {
    display: flex;
    gap: 12px;
    font-family: Pretendard;
}

.section-vision .tit img {
    display: block;
    width: clamp(200px, 20vw, 435px);
}

.section-vision .tit h5 {
    font-size: clamp(30px, 3vw, 60px);
    color: #6E0000;
    font-weight: 600;
    line-height: 130%;
    /* 78px */
    letter-spacing: -0.02em;
}

.section-vision .btn-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-vision .btn-wrap li button {
    display: flex;
    width: 48px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #FFF;
    box-shadow: 0 2px 4px 0 rgba(58, 58, 58, 0.12);
    display: block;
    transition: all 0.4s ease-in-out;
    margin-top: 2%;
}

.section-vision .btn-wrap li button svg path {
    transition: all 0.4s ease-in-out;
}

.section-vision .btn-wrap li button:hover {
    background-color: #6E0000;
}

.section-vision .btn-wrap li button:hover svg path {
    stroke: #fff;
}

.section-vision .vision-list-wrap .swiper-slide {
    display: flex;
    aspect-ratio: 91/102;
    padding: 48px 32px 32px 32px;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 32px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    box-shadow: 4px 6px 12px 0 rgba(255, 255, 255, 0.13) inset;
    position: relative;
    overflow: hidden;
}

.section-vision .vision-list-wrap .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.section-vision .vision-list-wrap .swiper-slide .txt-wrap {
    position: relative;
    z-index: 2;
}

.section-vision .vision-list-wrap .swiper-slide::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), #E6E6E6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    will-change: opacity;
}

.section-vision .vision-list-wrap .swiper-slide .txt-wrap h5 {
    color: #111;
    font-size: clamp(16px, 1.4vw, 30px);
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    transition: all 0.8s ease-in-out;
    will-change: color;
    -webkit-transition: color 0.8s ease-in-out;
    transform: translateZ(0);
    /* 하드웨어 가속 활성화 */
    -webkit-transform: translateZ(0);
    /* iOS Safari용 prefix */
}

.section-vision .vision-list-wrap .swiper-slide .txt-wrap p {
    color: #2C2C2C;
    font-size: clamp(12px, 1vw, 16px);
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: -0.03em;
    transition: all 0.8s ease-in-out;
    will-change: color;
    -webkit-transition: color 0.8s ease-in-out;
    transform: translateZ(0);
    /* 하드웨어 가속 활성화 */
    -webkit-transform: translateZ(0);
    /* iOS Safari용 prefix */
}

.section-vision .vision-list-wrap .icon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    width: calc(100% - 64px);
    bottom: 32px;
    left: 32px;
    z-index: 2;
}


.section-vision .vision-list-wrap .icon-wrap .arrow {
    width: 32px;
    height: 32px;
    fill: transparent;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    -webkit-transition: opacity 0.8s ease-in-out;
    will-change: opacity;
    -webkit-will-change: opacity;
    transform: translateZ(0);
    /* 하드웨어 가속 활성화 */
    -webkit-transform: translateZ(0);
    /* iOS Safari용 prefix */
}

.section-vision .vision-list-wrap .icon-wrap .arrow use {
    stroke: #ffffff;
    fill: transparent;

}

.section-vision .vision-list-wrap .icon-wrap .icon {
    fill: transparent;
    width: clamp(45px, 4vw, 70px);
    height: clamp(45px, 4vw, 70px);
    transform: translate3d(0, 0, 0);
    /* 부모에도 하드웨어 가속 */
    -webkit-transform: translate3d(0, 0, 0);
}


.section-vision .vision-list-wrap .icon-wrap .icon use {
    stroke: #BEBEBE;
    transition: stroke 0.8s ease-in-out;
    -webkit-transition: stroke 0.8s ease-in-out;
    will-change: stroke;
    -webkit-will-change: stroke;
    transform: translate3d(0, 0, 0);
    /* translateZ(0) 대신 translate3d 사용 */
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    /* 렌더링 최적화 */
    -webkit-backface-visibility: hidden;
    fill: transparent;
}

.section-vision .vision-list-wrap .swiper-slide:hover::before {
    opacity: 1;
}

.section-vision .vision-list-wrap .swiper-slide:hover .txt-wrap h5 {
    color: #fff;
}

.section-vision .vision-list-wrap .swiper-slide:hover .txt-wrap p {
    color: #fff;
}

/* .section-vision .vision-list-wrap .swiper-slide:hover .txt-wrap * {
    color: #fff;
} */

.section-vision .vision-list-wrap .swiper-slide:hover .icon-wrap .arrow {
    opacity: 1;
}

.section-vision .vision-list-wrap .swiper-slide:hover .icon use {
    stroke: #ffffff;
}

@media screen and (max-width: 768px) {
    .section-vision {
        padding: 60px 0;
    }

    .section-vision .btn-wrap {
        display: none;
    }

    .section-vision .tit-wrap {
        margin-bottom: 40px;
    }

    .section-vision .tit-wrap .tit {
        flex-direction: column;
        gap: 12px;
    }

    .section-vision .tit-wrap .tit img {
        width: 240px;
    }

    .section-vision .tit-wrap .tit h5 {
        font-size: 30px;
    }

    .section-vision .vision-list-wrap .swiper-slide {
        padding: 32px 48px;
    }

    .section-vision .vision-list-wrap .swiper-slide .txt-wrap h5 {
        font-size: 24px;
    }

    .section-vision .vision-list-wrap .swiper-slide .txt-wrap p {
        font-size: 15px;
    }

    .section-vision .vision-list-wrap .swiper-slide .txt-wrap p br {
        display: none;
    }

    .section-vision .vision-list-wrap .icon-wrap .icon {
        width: 70px;
        height: 70px;
    }



    .section-vision .vision-list-wrap .swiper-slide.swiper-slide-active::before {
        opacity: 1;
    }

    .section-vision .vision-list-wrap .swiper-slide.swiper-slide-active .txt-wrap h5 {
        color: #fff;
    }

    .section-vision .vision-list-wrap .swiper-slide.swiper-slide-active .txt-wrap p {
        color: #fff;
    }

    .section-vision .vision-list-wrap .swiper-slide.swiper-slide-active .icon-wrap .arrow {
        opacity: 1;
    }

    .section-vision .vision-list-wrap .swiper-slide.swiper-slide-active .icon-wrap .icon use {
        stroke: #ffffff;
    }

}

.section-product {
    padding: 120px 0;
    overflow: hidden;
}

.section-product .top-info-wrap {
    position: relative;
}

.section-product .top-info-wrap .bg-txt {
    position: absolute;
    right: 0;
    top: 0;
    width: clamp(150px, 70vw, 1340px);
    z-index: -1;
}

.section-product .top-info-wrap .bg-txt img {
    display: block;
    width: 100%;
}

.section-product .top-info-wrap .info-list {
    position: relative;
    margin-bottom: 100px;
}

.section-product .top-info-wrap .info-list .info {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-product .top-info-wrap .info-list .info.on {
    opacity: 1;
    pointer-events: all;
}

.section-product .top-info-wrap .info-list .info1 {
    position: relative;
}

.section-product .top-info-wrap .info-list .txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-product .top-info-wrap .info-list .txt-wrap h5 {
    color: #6E0000;
    font-size: 36px;
    font-weight: 600;
    line-height: 130%;
    /* 46.8px */
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.section-product .top-info-wrap .info-list .txt-wrap h3 {
    color: #141414;
    font-size: 46px;
    font-weight: 600;
    line-height: 140%;
    /* 64.4px */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.section-product .top-info-wrap .info-list .txt-wrap p {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.025em;
    margin-bottom: 40px;
}

.section-product .top-info-wrap .info-list .txt-wrap a {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid rgba(17, 17, 17, 0.01);
    background: #6E0000;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.02em;
    transition: all 0.6s ease-in-out;
}

.section-product .top-info-wrap .info-list .txt-wrap .icon {
    fill: transparent;
    width: 24px;
    height: 24px;
    transition: all 0.4s ease-in-out;
}

.section-product .top-info-wrap .info-list .txt-wrap .icon use {
    stroke: #ffffff;
    transition: all 0.4s ease-in-out;
}

.section-product .top-info-wrap .info-list .txt-wrap a:hover {
    background-color: #fff;
    color: #6E0000;
    border-color: #6E0000;
}

.section-product .top-info-wrap .info-list .txt-wrap a:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.section-product .top-info-wrap .info-list .txt-wrap a:hover .icon use {
    stroke: #6E0000;
}

.section-product .top-info-wrap .nav-list {
    display: flex;
}

.section-product .top-info-wrap .nav-list li {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: #ADADAD;
    transition: all 0.6s ease-in-out;
}

.section-product .top-info-wrap .nav-list li h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.03em;
}

.section-product .top-info-wrap .nav-list li .line {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(173, 173, 173, 0.20);
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.section-product .top-info-wrap .nav-list li .line::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), #1B3146;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out;
}

.section-product .top-info-wrap .nav-list li h6 {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
}

.section-product .top-info-wrap .nav-list li.on .line::after {
    transform: scaleX(1);
}

.section-product .top-info-wrap .nav-list li.on {
    color: #6E0000;
}

.section-product .top-info-wrap .nav-list li:hover {
    color: #6E0000;
}

.section-product .top-info-wrap .nav-list li:hover .line {
    background-color: rgba(173, 173, 173, 0.60);
}


.section-product .product-list-wrap {
    padding-top: 100px;
    padding-bottom: 120px;
}


.section-product .product-list-wrap .product-list-item {
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 100px;
    display: none;
}

.section-product .product-list-wrap .product-list-item.on {
    display: flex;
}

.section-product .product-list-wrap .product-list-item .product-item {
    width: calc(33.333% - 16px);
}

.section-product .product-list-wrap .product-list-item .product-item .img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
    border: 1px solid #EDEDED;
    background: #FAFAFA;
}


.section-product .product-list-wrap .product-list-item .product-item .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.section-product .product-list-wrap .product-list-item .product-item .img:hover img {
    transform: scale(1.05);
}

.section-product .product-list-wrap .product-list-item .product-item .txt-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.section-product .product-list-wrap .product-list-item .product-item .txt-wrap h5 {
    color: #2C2C2C;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    /* 36px */
    letter-spacing: -0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: clac(100% - 30px);
}

.section-product .product-list-wrap .product-list-item .product-item .txt-wrap a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), #1B3146;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-product .product-list-wrap .product-list-item .product-item .txt-wrap a .icon {
    fill: transparent;
    width: 30px;
    height: 30px;
}

.section-product .product-list-wrap .product-list-item .product-item .txt-wrap a .icon use {
    stroke: #ffffff;
}

.section-product .product-list-wrap .btn-wrap {
    display: flex;
    justify-content: center;

}

.section-product .product-list-wrap .btn-wrap a {
    border-radius: 100px;
    border: 1px solid #6E0000;
    background: rgba(17, 17, 17, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(2px);
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #6E0000;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.02em;
    transition: all 0.6s ease-in-out;
}



.section-product .product-list-wrap .btn-wrap .icon {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: all 0.4s ease-in-out;
}

.section-product .product-list-wrap .btn-wrap .icon use {
    stroke: #6E0000;
    transition: all 0.4s ease-in-out;
}

.section-product .product-list-wrap .btn-wrap a:hover {
    background-color: #6E0000;
    color: #fff;
}

.section-product .product-list-wrap .btn-wrap a:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.section-product .product-list-wrap .btn-wrap a:hover .icon use {
    stroke: #fff;
}

@media screen and (max-width: 768px) {
    .section-product {
        padding: 60px 0;
    }

    .section-product .top-info-wrap .info-list {
        margin-bottom: 40px;
    }

    .section-product .top-info-wrap .info-list .info {
        flex-direction: column-reverse;
    }

    .section-product .top-info-wrap .info-list .txt-wrap {
        text-align: center;
        padding-top: 40px;
        align-items: center;
    }

    .section-product .top-info-wrap .info-list .txt-wrap h3 {
        width: 100%;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-product .top-info-wrap .info-list .txt-wrap p {
        font-size: 16px;
        margin-bottom: 32px;
        min-height: 11em;
    }

    .section-product .top-info-wrap .info-list .txt-wrap p br {
        display: none;
    }

    .section-product .top-info-wrap .info-list .txt-wrap h5 {
        font-size: 20px;
        text-align: center;
    }

    .section-product .top-info-wrap .info-list .txt-wrap a {
        margin: 0 auto;
    }

    .section-product .top-info-wrap .bg-txt {
        width: 120vw;
    }

    .section-product .top-info-wrap .nav-list li {
        padding: 24px 0;
    }

    .section-product .top-info-wrap .nav-list li h5 {
        font-size: 16px;
    }

    .section-product .top-info-wrap .nav-list li h6 {
        font-size: 10px;
    }

    .section-product .top-info-wrap .nav-list li .line {
        margin: 12px 0;
        height: 2px;
    }

    .section-product .product-list-wrap {
        padding-bottom: 60px;
    }

    .section-product .product-list-wrap .product-list-item {
        padding-bottom: 40px;
    }

    .section-product .product-list-wrap .product-list-item .product-item {
        width: 100%;
    }

    .section-product .product-list-wrap .product-list-item .product-item .txt-wrap {
        padding-bottom: 20px;
    }

    .section-product .product-list-wrap .product-list-item .product-item .txt-wrap h5 {
        font-size: 20px;
    }
}

.section-visual {
    background-color: #000;
    height: 100vg;
    position: relative;
    overflow: inherit;
}

.section-visual .item-roller {
    width: 100%;
    height: 100vh;
    top: 0;
}

body.kakao-webview .section-visual {
    height: calc(var(--vh, 1vh) * 100);
}

body.kakao-webview .section-visual .item-roller {
    height: calc(var(--vh, 1vh) * 100);
}

.section-visual .item-roller .inner {
    height: 100%;
}

.section-visual .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.section-visual .video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-visual .video-bg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(160.29% 67.18% at 50.91% 50.46%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 1;
}

.section-visual .item-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 100px;
}

.section-visual .item-wrap {
    pointer-events: none;
}

.section-visual .item-wrap.on {
    pointer-events: all;
}

.section-visual .item-wrap.item1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-visual .item-wrap.item1 .tit {
    color: #fff;
    position: relative;
}

.section-visual .item-wrap.item1 .tit .tit-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: inset(0 0 0 0);
}

.section-visual .item-wrap.item1 .tit .line-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-visual .item-wrap.item1 .tit .line-wrap .line-frame {
    width: 100%;
    height: 1px;
    background-color: #fff;
    transform: scaleX(0);
    /* opacity: 0; */
}

.section-visual .item-wrap.item1 .tit h5 {
    font-size: clamp(30px, 3vw, 60px);
    font-weight: 600;
    line-height: 160%;
}

.section-visual .item-wrap.item1 .tit .line {
    display: block;
    width: 32px;
    height: 3px;
    background-color: #fff;
    margin: 0 20px;
}

.section-visual .item-wrap.item2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.section-visual .item-wrap.item2 .tit-wrap {
    opacity: 0;
    transform: translateX(50px);
}

.section-visual .item-wrap.item2 .tit-wrap img {
    width: clamp(200px, 30vw, 550px);
    margin-bottom: 40px;
    display: block;
}

.section-visual .item-wrap.item2 .tit-wrap h5 {
    color: #FFF;
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: 300;
    line-height: 140%;
    /* 56px */
    letter-spacing: -0.06em;
}

.section-visual .item-wrap.item2 .txt-wrap {
    opacity: 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-visual .item-wrap.item2 .txt-wrap p {
    color: #FFF;
    font-family: Pretendard;
    font-size: clamp(16px, 1.4vw, 22px);
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    /* 30.8px */
    letter-spacing: -0.025em;
    margin-bottom: 32px;
}

.section-visual .item-wrap.item2 .txt-wrap a {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(5px);
    color: #FFF;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 700;
    line-height: 150%;
    /* 30px */
    letter-spacing: -0.027em;
    transition: background-color 0.4s ease-in-out;
}

.section-visual .item-wrap.item2 .txt-wrap a .icon {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: transform 0.4s ease-in-out;
}

.section-visual .item-wrap.item2 .txt-wrap a .icon use {
    stroke: #ffffff;
}

.section-visual .item-wrap.item2 .txt-wrap a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.section-visual .item-wrap.item2 .txt-wrap a:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

@media screen and (max-width: 768px) {
    ection-visual .item-wrap {
        padding-top: 30px;
    }

    .section-visual .item-wrap {
        padding-top: 0;
    }

    .section-visual .item-wrap.item1 .tit .tit-inner {
        flex-direction: column;
    }

    .section-visual .item-wrap.item1 .tit .line {
        width: 32px;
        height: 3px;
        margin: 20px auto;
    }

    .section-visual .item-wrap.item1 .tit h5 {
        font-size: clamp(20px, 8vw, 30px);
        text-align: center;
    }

    .section-visual .item-wrap.item2 {
        flex-direction: column;
        justify-content: center;
        gap: 40px
    }

    .section-visual .item-wrap.item2 .tit-wrap {
        width: 100%;
        padding: 27px 15px 27px 30px;
    }

    .section-visual .item-wrap.item2 .tit-wrap img {
        width: 265px;
        max-width: 80%;
    }

    .section-visual .item-wrap.item2 .tit-wrap h5 {
        font-size: 20px;
    }

    .section-visual .item-wrap.item2 .txt-wrap {
        width: 100%;
        padding: 0 15px 0 30px;
    }

    .section-visual .item-wrap.item2 .txt-wrap p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .section-visual .item-wrap.item2 .txt-wrap a {
        font-size: 15px;
        padding: 10px 20px;
    }

    .section-visual .item-wrap.item2 .txt-wrap a svg {
        width: 20px;
        height: 20px;
    }

    .section-visual .item-wrap.item1 .tit .line-wrap {
        display: none;
    }
}

.section-news {
    padding: 120px 0;
}

.section-news .top-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-news .top-content-wrap .btn {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid rgba(17, 17, 17, 0.01);
    background: #6E0000;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.36px;
    flex-shrink: 0;
    transition: all 0.6s ease-in-out;
}

.section-news .top-content-wrap .btn .icon {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: all 0.4s ease-in-out;
}

.section-news .top-content-wrap .btn .icon use {
    stroke: #ffffff;
    transition: all 0.4s ease-in-out;
}

.section-news .top-content-wrap .btn:hover {
    background-color: #fff;
    color: #6E0000;
    border-color: #6E0000;
}

.section-news .top-content-wrap .btn:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.section-news .top-content-wrap .btn:hover .icon use {
    stroke: #6E0000;
}

.section-news .tit-wrap h5 {
    color: #6E0000;
    font-size: clamp(20px, 2vw, 36px);
    font-weight: 600;
    line-height: 130%;
    /* 46.8px */
    letter-spacing: -0.72px;
    margin-bottom: 12px;
}

.section-news .tit-wrap h3 {
    color: #141414;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 600;
    line-height: 140%;
    /* 64.4px */
    letter-spacing: -0.92px;
    text-transform: uppercase;
}

.section-news .item-wrap {
    display: flex;
    gap: 60px;
}

.section-news .item-wrap .detail-item {
    width: 58.53%;
}

.section-news .item-wrap .detail-item .img {
    border-radius: 32px;
    border: 1px solid #D7D7D7;
    overflow: hidden;
    isolation: isolate;
}

.section-news .item-wrap .detail-item .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.section-news .item-wrap .detail-item .img:hover img {
    transform: scale(1.025);
}

.section-news .item-wrap .detail-item .tit-con {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    align-items: flex-start;
}

.section-news .item-wrap .detail-item .tit-con .txt-box {
    max-width: calc(100% - 200px);
}

.section-news .item-wrap .detail-item .tit-con .txt-box h5 {
    color: #898989;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 500;
    line-height: 120%;
    /* 24px */
    letter-spacing: -0.035em;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.section-news .item-wrap .detail-item .tit-con .txt-box h5::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: #6E0000;
    margin-right: 0.4em;
}

.section-news .item-wrap .detail-item .tit-con .txt-box h5 .line {
    display: block;
    width: 1px;
    height: 12px;
    margin: 0 8px;
    background-color: #898989;
}

.section-news .item-wrap .detail-item .tit-con .txt-box h3 {
    overflow: hidden;
    color: #111;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 600;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out;
}

.section-news .item-wrap .detail-item .tit-con .txt-box h3:hover {
    color: #6E0000;
}

.section-news .item-wrap .detail-item .tit-con .btn {
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100px;
    border: 1px solid rgba(17, 17, 17, 0.01);
    background: #6E0000;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: -0.36px;
    flex-shrink: 0;
    transition: all 0.6s ease-in-out;
    display: none;
}

.section-news .item-wrap .detail-item .tit-con .btn .icon {
    width: 24px;
    height: 24px;
    fill: transparent;
    transition: all 0.4s ease-in-out;
}

.section-news .item-wrap .detail-item .tit-con .btn .icon use {
    stroke: #ffffff;
    transition: all 0.4s ease-in-out;
}

.section-news .item-wrap .detail-item .tit-con .btn:hover {
    background-color: #fff;
    color: #6E0000;
    border-color: #6E0000;
}

.section-news .item-wrap .detail-item .tit-con .btn:hover .icon {
    transform: translateX(4px) rotate(45deg);
}

.section-news .item-wrap .detail-item .tit-con .btn:hover .icon use {
    stroke: #6E0000;
}

.section-news .item-list {
    width: 38.24%;
}

.section-news .item-list li {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.section-news .item-list li .img {
    width: 46.15%;
    border-radius: 20px;
    border: 1px solid #D7D7D7;
    overflow: hidden;
    isolation: isolate;
}


.section-news .item-list li .img img {
    display: block;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.section-news .item-list li .img:hover img {
    transform: scale(1.025);
}

.section-news .item-list li .txt-wrap h5 {
    color: #898989;
    font-size: clamp(13px, 1vw, 20px);
    font-weight: 500;
    line-height: 120%;
    /* 24px */
    letter-spacing: -0.7px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-news .item-list li .txt-wrap h5::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: #6E0000;
}

.section-news .item-list li .txt-wrap h3 {
    color: #111;
    font-size: clamp(13px, 1vw, 20px);
    font-weight: 500;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-news .item-list li .txt-wrap p {
    color: #2C2C2C;
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 300;
    line-height: 140%;
    /* 22.4px */
    letter-spacing: -0.4px;
}


.section-news .mobile-item-wrap {
    display: none;
}

@media screen and (max-width: 768px) {
    .section-news {
        padding: 60px 0;
    }

    .section-news .tit-wrap {
        text-align: center;
        width: 100%;
    }

    .section-news .top-content-wrap {
        margin-bottom: 40px;
    }

    .section-news .tit-wrap h5 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .section-news .tit-wrap h3 {
        font-size: 28px;
    }

    .section-news .item-wrap {
        flex-direction: column;
    }

    .section-news .item-wrap .detail-item {
        width: 100%;
    }

    .section-news .item-list {
        display: none;
    }

    .section-news .item-wrap .detail-item .tit-con .btn {
        display: flex;
    }

    .section-news .top-content-wrap .btn {
        display: none;
    }

    .section-news .item-wrap .detail-item .tit-con {
        flex-direction: column;
        align-items: center;
    }

    .section-news .item-wrap .detail-item .tit-con .txt-box {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    .section-news .item-wrap .detail-item .tit-con .txt-box h5 {
        font-size: 16px;
    }

    .section-news .item-wrap .detail-item .tit-con .txt-box h3 {
        width: 100%;
        font-size: 22px;
    }

    .section-news .item-wrap .detail-item .tit-con .btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .section-news .item-wrap .detail-item .tit-con .btn .icon {
        width: 20px;
        height: 20px;
    }

    .section-news .item-wrap {
        display: none;
    }

    .section-news .mobile-item-wrap {
        display: block;
    }

    .section-news .mobile-item-wrap .img-wrap {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #D7D7D7;
        isolation: isolate;
    }

    .section-news .mobile-item-wrap .txt-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 24px;
    }

    .section-news .mobile-item-wrap .txt-wrap h5 {
        color: #898989;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
        /* 19.2px */
        letter-spacing: -0.56px;
        margin-bottom: 12px;
    }

    .section-news .mobile-item-wrap .txt-wrap h3 {
        overflow: hidden;
        color: #111;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-family: Pretendard;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        /* 136.364% */
        letter-spacing: -0.66px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .section-news .mobile-item-wrap .txt-wrap .btn {
        border-radius: 100px;
        border: 1px solid rgba(17, 17, 17, 0.01);
        background: #6E0000;
        box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
        backdrop-filter: blur(2px);
        display: flex;
        padding: 10px 20px;
        justify-content: center;
        align-items: center;
        gap: 2px;
        color: #FFF;
        font-size: 15px;
        font-weight: 500;
        line-height: 140%;
        /* 21px */
        letter-spacing: -0.3px;
    }

    .section-news .mobile-item-wrap .txt-wrap .icon {
        width: 20px;
        height: 20px;
        fill: transparent;
        transition: all 0.4s ease-in-out;
    }

    .section-news .mobile-item-wrap .txt-wrap .icon use {
        stroke: #ffffff;
    }
}

.section-contact {
    padding: 32px;
}

.section-contact .bg-wrap {
    background-image: url(/img/common/contact_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 70px 0;
}

.section-contact .tit-wrap {
    margin-bottom: 75px;
    color: #fff;
}

.section-contact .tit-wrap h5 {
    font-size: clamp(20px, 2vw, 36px);
    font-weight: 600;
    line-height: 130%;
    /* 46.8px */
    letter-spacing: -0.72px;
    margin-bottom: 12px;
}

.section-contact .tit-wrap h3 {
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 600;
    line-height: 140%;
    /* 64.4px */
    letter-spacing: -0.92px;
    text-transform: uppercase;
}

.section-contact .btn-wrap {
    display: flex;
    justify-content: flex-end;
}

.section-contact .btn-list {
    display: flex;
    gap: 24px;
}

.section-contact .btn-list li {
    border-radius: 30px;
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.01);
    box-shadow: -3px -3px 4px 0 rgba(255, 255, 255, 0.20) inset, 2px 2px 6px 0 rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.section-contact .btn-list a {
    display: block;
    width: 400px;
    height: 200px;
    padding: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-contact .btn-list li::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #6E0000 0%, #3B0000 100%), linear-gradient(167deg, #525252 -17.77%, #000 92.09%);
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: 0.8s ease-in-out;
    pointer-events: none;
}

.section-contact .btn-list li:hover {
    border-color: transparent;
}

.section-contact .btn-list li:hover::after {
    opacity: 1;
}

.section-contact .btn-list .txt {
    color: #fff;
}

.section-contact .btn-list .txt h5 {
    font-size: 20px;
    font-weight: 300;
    line-height: 140%;
    /* 28px */
    letter-spacing: -0.4px;
    margin-bottom: 2px;
}

.section-contact .btn-list .txt h3 {
    font-size: 28px;
    font-weight: 500;
    line-height: 150%;
    /* 42px */
    letter-spacing: -0.56px;
}

.section-contact .btn-list .icon {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 64px;
}

.section-contact .btn-list .icon img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .section-contact {
        padding: 0;
    }

    .section-contact .bg-wrap {
        padding: 40px 0;
    }

    .section-contact .bg-wrap {
        border-radius: 0;
    }



    .section-contact .tit-wrap {
        margin-bottom: 40px;
        text-align: left;
    }

    .section-contact .tit-wrap h3 {
        font-size: 28px;
    }

    .section-contact .tit-wrap h5 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .section-contact .btn-list {
        flex-direction: column;
        gap: 8px;
        width: 60%;
    }

    .section-contact .btn-list li {
        width: 100%;
        border-radius: 15px;

    }

    .section-contact .btn-list a {
        width: 100%;
        height: 30vw;
        padding: 20px;
    }


    .section-contact .btn-list .txt h5 {
        font-size: 11px;
    }

    .section-contact .btn-list .txt h3 {
        font-size: 15px;
    }

    .section-contact .btn-list .icon {
        width: 50px;
        top: 20px;
        right: 20px;
    }

    .section-contact .btn-list .btn-icon svg {
        width: 11px;
    }
}