@charset "UTF-8";

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    overflow-x: hidden;
    font-feature-settings: 'case' on, 'ss01' on;

}

html::-webkit-scrollbar {
    display:;
}

html {
  scrollbar-gutter: stable;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
}

header .top-txt-banner {
    position: relative;
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

header .top-txt-banner p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

header .top-txt-banner .close-btn {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url(../img/header_close_btn.svg) no-repeat center center/contain;
}

header .top-txt-banner.hide {
    margin-top: -36px;
}

header .gnb-area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    height: 56px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

header.transparent .gnb-area {
    background: transparent !important;
}

header .gnb-area .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header .gnb-area .logo-img {
    width: 154px;
    height: 22px;
    background: url(../images/ps-new/ico_h1_logo_bk.svg) no-repeat center center/contain;
}

header .gnb-area .menus {
    display: flex;
    gap: 20px;
}

header .gnb-area .menus>li>a {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    padding-bottom: 14px;
}

header .gnb-area .menus>li>a::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1d1d1d;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    display: none;
}

header .gnb-area .menus>li>a:hover::before {
    opacity: 1;
}

header .gnb-area .menus>li .sub-menus {
    margin-top: 32px;
    display: flex;
    flex-flow: column;
    gap: 30px;
    display: none;
    opacity: 0;
}

header .gnb-area .menus>li .sub-menus>li {
    color: #555;
    font-size: 15px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.15px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
}

header .gnb-area .menus>li .sub-menus>li:hover {
    color: #1d1d1d;
}

header .gnb-area .gnb-center-area {
    width: 100%;
    padding-left: 40px;
}

header .gnb-area .search-area {
    position: relative;
    border-bottom: 2px solid #000;
    max-width: 340px;
    width: 0;
    float: right;
    margin-right: 5px;
    padding-bottom: 3px;
    transition: width 0.2s ease-in-out;
}

header .gnb-area .search-area.active {
    width: 200px;
}

header .gnb-area .search-area input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.16px;
}

header .gnb-area .search-area .search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: url(../img/header_search_btn.svg);
    filter: invert(1);
}

header .gnb-area .category-menus {
    margin-left: 80px;
}

header .gnb-area .category-menus li {
    margin-right: 55px;
}

header .gnb-area .right-menus {
    margin-left: 40px;
    gap: 40px;
}

header .gnb-area .right-menus>li {
    min-width: auto;
}

header .gnb-area .right-menus li a {
    position: relative;
}

header .gnb-area .right-menus li a::before {
    background-color: white;
}

header .gnb-area .right-menus .has-cart {
    position: absolute;
    top: -1px;
    right: -9px;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #bf1238;
}

@media screen and (max-width: 1300px) {
    header .gnb-area .category-menus {
        margin-left: 40px;
    }

    header .gnb-area .menus li {
        min-width: auto;
    }

    header .gnb-area .right-menus {
        gap: 20px;
    }
}

header.fixed {
    position: fixed;
}

header.hide {
    transform: translateY(-100%);
}

header.transparent {
    background-color: transparent;
}

header.transparent .gnb-area .logo-img {
    background: url(../images/ps-new/ico_h1_logo_wh.svg) no-repeat center center/contain;
}

header.transparent .gnb-area .menus>li>a {
    color: white;
}

header.transparent .gnb-area .search-area {
    border-bottom: 2px solid #fff;
    position: absolute;
    right: 26px;
}

header.transparent .gnb-area .search-area .search-btn {
    filter: invert(0);
}

header.transparent .gnb-area .search-area input {
    color: white;
}

header.show-sub-menus .gnb-area {
    background-color: white;
    padding-bottom: 60px;
}

header.show-sub-menus .gnb-area .menus>li>a {
    color: #1d1d1d;
}

header.show-sub-menus .gnb-area .menus>li>a::before {
    display: block;
}

header.show-sub-menus .gnb-area .sub-menus {
    display: flex !important;
    opacity: 1 !important;
}

header.show-sub-menus .gnb-area .search-area {
    border-bottom: 2px solid #000;
}

header.show-sub-menus .gnb-area .search-area .search-btn {
    filter: invert(1);
}

header.show-sub-menus .gnb-area .logo-img {
    width: 87px;
    height: 33px;
    background: url(../img/logo_bk.svg) no-repeat center center/contain;
}

.main-page .inner-container {
    width: 100%;
    min-width: 1200px;
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 80px;
}

.main-page #main-banner-swiper {
    position: relative;
    height: 41.25vw;
    min-height: 600px;
    max-height: 792px;
}

.main-page #main-banner-swiper .swiper-slide a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.main-page #main-banner-swiper .swiper-slide img {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    transform: translate(-50%, -50%);
}

.main-page #main-banner-swiper .swiper-nav-area {
    position: absolute;
    left: 50%;
    bottom: 6%;
    width: 100%;
    max-width: 1480px;
    padding: 0 40px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    box-sizing: border-box;
}

.main-page #main-banner-swiper .swiper-pagination {
    position: relative;
    width: auto;
    display: flex;
    width: 100%;
    height: 2px;
    z-index: 10;
    margin-right: 20px;
}

.main-page #main-banner-swiper .swiper-pagination .swiper-pagination-bullet {
    margin: 0;
    border-radius: 0;
    background-color: white;
    width: 100%;
    height: 2px;
    opacity: 0.7;
}

.main-page #main-banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.main-page #main-banner-swiper .swiper-button-prev,
.main-page #main-banner-swiper .swiper-button-next {
    position: relative;
    left: auto;
    right: auto;
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: none;
    transform: translateY(2px);
}

.main-page #main-banner-swiper .swiper-button-prev::after,
.main-page #main-banner-swiper .swiper-button-next::after {
    transform: scale(0.4);
    color: white;
    font-weight: bold;
}

.main-page #main-txt-banner-swiper {
    margin-top: 34px;
    height: -moz-fit-content;
    height: fit-content;
}

.main-page #main-txt-banner-swiper .title {
    color: #1d1d1d;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.46px;
    text-transform: uppercase;
}

.main-page #main-txt-banner-swiper .subtitle {
    margin-top: 20px;
    color: #555;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.main-page .sec1 {
    position: relative;
    padding: 160px 0 80px;
}

.main-page .sec1 .banners {
    display: flex;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.main-page .sec1 .banners li {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 36.59%;
    overflow: hidden;
    background-color: red;
}

.main-page .sec1 .banners li a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-page .sec1 .banners li a span {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f9f9f9;
    text-align: center;
    font-family: Pretendard;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

.main-page .sec1 .banners li a span::after {
    position: absolute;
    display: block;
    content: " ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.main-page .sec1 .banners li:hover span::after {
    opacity: 1;
}

.main-page .sec2 {
    padding: 80px 0;
}

.main-page .sec2 h3 {
    color: #1d1d1d;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-page .sec2 .sec2-swiper {
    width: 110%;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper {
    transition-property: height;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide {
    width: 360px;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-img-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 100%;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .prd-name {
    margin: 24px 0 14px;
    color: #2d2d2d;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .sale-percent {
    color: #bf1238;
    font-size: 18px;
    font-weight: 600;
}

.main-page .sec2 .sec2-swiper .swiper-wrapper .swiper-slide .sale-price {
    color: #2d2d2d;
    font-size: 18px;
    font-weight: 500;
}

.main-page .sec2 .tabs {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 56px;
}

.main-page .sec2 .tabs>li {
    color: #8e8e8e;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.prd-detail-page .detail-img-sec ul li {
  flex: 1 1 0;
  min-width: 0;
}


.main-page .sec2 .tabs>li.active,
.main-page .sec2 .tabs>li:hover {
    color: #1d1d1d;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    border-bottom: #1d1d1d;
    text-decoration: underline;
}

.main-page .sec2 .tab-content {
    margin-top: 42px;
    min-height: 440px;
}

.main-page .sec2 .tab-content>div {
    display: none;
}

.main-page .sec2 .tab-content>div.active {
    display: block;
}

.main-page .sec3 {
    padding: 80px 0;
}

.main-page .sec3 .inner-container {
    width: 1440px;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.main-page .sec3 .inner-container .text-btn-area {
    flex-grow: 1;
    display: flex;
    gap: 34px;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

.main-page .sec3 .inner-container .text-btn-area button {
    position: relative;
    color: #c6c6c6;
    font-size: 46px;
    line-height: 55px;
    font-weight: 600;
    letter-spacing: -0.46px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
}

.main-page .sec3 .inner-container .text-btn-area button::after {
    position: absolute;
    display: block;
    content: " ";
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #000;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.main-page .sec3 .inner-container .text-btn-area button:hover {
    color: #000;
}

.main-page .sec3 .inner-container .text-btn-area button.active {
    color: #000;
}

.main-page .sec3 .inner-container .text-btn-area button.active::after {
    opacity: 1;
    width: 100%;
}

.main-page .sec3 .inner-container .thumb-btn-area {
    width: 49px;
    min-width: 49px;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    gap: 10px;
}

.main-page .sec3 .inner-container .thumb-btn-area button {
    position: relative;
}

.main-page .sec3 .inner-container .thumb-btn-area button::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

.main-page .sec3 .inner-container .thumb-btn-area button.active::after {
    opacity: 0;
}

.main-page .sec3 .inner-container .swiper-area {
    overflow: hidden;
    width: 658px;
    height: 823px;
}

.main-page .sec3 .inner-container .swiper-area #sec3-swiper {
    width: 100%;
    height: 100%;
}

.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 10px;
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.main-page .sec3 .inner-container .swiper-area #sec3-swiper .swiper-slide a span::before {
    margin-right: 10px;
    display: inline-block;
    content: "+";
    font-weight: 100;
    line-height: 19px;
    font-size: 22px;
    color: white;
}

.main-page .sec4 {
    padding: 80px 0;
}

.main-page .sec4 h3 {
    color: #1d1d1d;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.46px;
    text-transform: uppercase;
}

.main-page .sec4 #sec4-swiper {
    margin-top: 52px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
}

.main-page .sec4 #sec4-swiper .swiper-slide {
    width: 529px;
}

.main-page .sec4 #sec4-swiper .swiper-slide .img-wrap {
    width: 100%;
    height: 662px;
}

.main-page .sec4 #sec4-swiper .swiper-slide .img-wrap img {
    width: 100%;
    height: 100%;
}

.main-page .sec4 #sec4-swiper .swiper-slide .category {
    margin-top: 16px;
    color: var(--Identity-Color-Text---body, #555);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.14px;
    text-transform: uppercase;
}

.main-page .sec4 #sec4-swiper .swiper-slide .title {
    margin-top: 12px;
    color: var(--Identity-Color-Text---title, #1d1d1d);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.26px;
    text-transform: uppercase;
}

.main-page .main-popup {
    position: fixed;
    bottom: 10%;
    left: 80px;
    background-color: white;
    overflow: hidden;
    z-index: 999;
    opacity: 1;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.main-page .main-popup.hide {
    display: none;
    opacity: 0;
}

.main-page .main-popup .main-popup-swiper {
    position: relative;
    width: 480px;
    height: 309px;
}

.main-page .main-popup .main-popup-swiper .swiper-pagination {
    position: absolute;
    top: 16.5px;
    right: 22px;
    left: auto;
    bottom: auto;
    text-align: right;
    background-color: rgba(0, 0, 0, 0.28);
    padding: 8px 10px;
    color: white;
    width: auto;
    font-size: 12px;
    border-radius: 28px;
    line-height: 1;
}

.main-page .main-popup .main-popup-swiper .swiper-pagination .swiper-pagination-total {
    opacity: 0.7;
}

.main-page .main-popup .main-popup-swiper .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.main-page .main-popup .main-popup-swiper .swiper-slide .text-area {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.main-page .main-popup .main-popup-swiper .swiper-slide .text-area .title {
    margin: 12px 0;
    font-size: 30px;
    height: 30px;
    line-height: 1;
    font-weight: 700;
    text-overflow: clip;
    word-break: break-all;
    overflow: hidden;
}

.main-page .main-popup .main-popup-swiper .swiper-slide .text-area .subtitle {
    height: 14px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.main-page .main-popup .main-popup-swiper .swiper-slide .text-area .subtitle2 {
    height: 12px;
    font-size: 12px;
    letter-spacing: 0.4px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
}

.main-page .main-popup .main-popup-footer {
    padding: 0 22px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-page .main-popup button {
    font-size: 14px;
    background: transparent;
    outline: none;
    border: none;
}

.main-page .main-popup button:first-of-type {
    color: #8e8e8e;
}

.main-page .main-popup button:last-of-type {
    color: #1d1d1d;
    font-weight: 500;
}

footer {
    margin-top: 60px;
    border-top: 1px solid #c6c6c6;
    background-color: white;
    padding: 80px;
    display: flex;
    justify-content: space-between;
}

footer .contact {
    color: #1d1d1d;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
}

footer .contact span {
    font-weight: 700;
}

footer .operation-time {
    margin-top: 14px;
    color: #8e8e8e;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
}

footer .info {
    margin-top: 40px;
    color: #575757;
    /* 16px → 12px */
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

footer .info a {
    text-decoration: underline;
}

footer .insuration-title {
    margin-top: 60px;
    color: #1d1d1d;
    /* 16px → 12px */
    font-size: 12px;
    font-weight: 600;
    line-height: 150%;
}

footer .insurance {
    /* 16px → 6px */
    margin-top: 6px;
    color: #575757;
    /* 16px → 12px */
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
}

footer .copyright {
    /* 16px → 18px */
    margin-top: 18px;
    color: #bebebe;
    /* 16px → 12px */
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
}

footer .links {
    display: flex;
    gap: 100px;
}

footer .links p {
    color: #1d1d1d;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    white-space: nowrap;
}

footer .links nav {
    margin-top: 20px;
    display: flex;
    flex-flow: column;
    gap: 20px;
}

footer .links nav a {
    color: #575757;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    text-transform: uppercase;
    white-space: nowrap;
}

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

/* 2026 header renewal */
header .gnb-area .gnb-left-area {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
    width: 266px;
    justify-content: flex-start;
}

header .gnb-area .gnb-left-area .gnb-left-area-btn {
    font-family: "General Sans";
    font-size: 16px;
    font-weight: 600;
    color: #1e1e1e;
    height: 100%;
    position: relative;
}

header.transparent .gnb-area .gnb-left-area .gnb-left-area-btn {
    color: #fff;
}

header .gnb-area .gnb-left-area .gnb-left-area-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    height: 1px;
    background-color: #1E1E1E;
    transition: all 0.2s ease-in-out;
}

header.transparent .gnb-area .gnb-left-area .gnb-left-area-btn::after {
    background-color: #fff;
}

header .gnb-area .gnb-left-area .gnb-left-area-btn:hover::after,
header .gnb-area .gnb-left-area .gnb-left-area-btn.active::after {
    opacity: 1;
}

header .gnb-area .gnb-right-area {
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    right: 80px;
    width: 262px;
    justify-content: flex-end;
}

header .gnb-area .gnb-right-area .gnb-right-ico span {
    display: inline-block;
    width: 24px;
    height: 24px;
}

header .gnb-area .gnb-right-area .gnb-right-area-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .gnb-area .gnb-right-area .input-toggle-btn span {
    background: url(../images/ps-new/ico_header_search_bk.svg) no-repeat center center/contain;
    text-indent: -9999px;
}

header.transparent .gnb-area .gnb-right-area .input-toggle-btn span {
    background: url(../images/ps-new/ico_header_search_wh.svg) no-repeat center center/contain;
}

header .gnb-area .gnb-right-area .mypage-btn span {
    background: url(../images/ps-new/ico_header_mypage_bk.svg) no-repeat center center/contain;
    text-indent: -9999px;
}

header.transparent .gnb-area .gnb-right-area .mypage-btn span {
    background: url(../images/ps-new/ico_header_mypage_wh.svg) no-repeat center center/contain;
}

header .gnb-area .gnb-right-area .cart-btn span {
    border-radius: 50%;
    box-shadow: inset 0 0 0 1.3px #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #1e1e1e;
    width: 22px;
    height: 22px;
}

header.transparent .gnb-area .gnb-right-area .cart-btn span {
    box-shadow: inset 0 0 0 1.5px #fff;
    color: #fff;
}

header .sub-menus-area {
    width: 100%;
    z-index: 999;
    position: relative;
}

header .sub-menus-area .sub-menus-blurDim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.2);
}

header .sub-menus-area .sub-menus {
    width: 480px;
    height: 100%;
    flex-direction: column;
    display: none;
    gap: 40px;
    background-color: white;
    padding: 32px 80px 48px 80px;
    position: relative;
    z-index: 1000;
    border-top: 1px solid #D9D9D9;
}

header .sub-menus-area .sub-menus-category {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

header .sub-menus-area .sub-menus-category a {
    font-size: 15px;
    font-weight: 400;
    color: #1E1E1E;
    line-height: 150%;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

header .sub-menus-area .sub-menus-category a span {
    position: relative;
}

header .sub-menus-area .sub-menus-category a span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0;
    background-color: #1e1e1e;
    transition: all 0.2s ease-in-out;
}

header .sub-menus-area .sub-menus-category a:hover span:after {
    opacity: 1;
}

header .sub-menus-area .sub-menus-category.head-text a {
    font-size: 16px;
    font-weight: 700;
}

header .sub-menus-area .sub-menus-category.info a {
    font-size: 14px;
    color: #555555;
}

header .sub-menus-area .one-spec-menus .sub-menus-category,
header .sub-menus-area .about-menus .sub-menus-category {
    flex: 1;
}

header .sub-menus-area .sub-menus-banner {
    height: 428px;
    position: relative;
}

header .sub-menus-area .sub-menus-banner .banner-mask {
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

header .sub-menus-area .sub-menus-banner:hover .banner-mask {
    opacity: 1;
}

header .sub-menus-area .sub-menus-banner .banner-mask a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .sub-menus-area .sub-menus-banner .banner-mask a span {
    font-family: "Pretendard Variable";
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
