@charset "utf-8";
@import "font.css";
:root {
    --thinFt : 'Pretendard-Thin', 'Noto Sans KR', sans-serif;
    --lightFt : 'Pretendard-Light', 'Noto Sans KR', sans-serif;
    --mediumFt : 'Pretendard-Medium', 'Noto Sans KR', sans-serif;
    --regularFt : 'Pretendard-Regular', 'Noto Sans KR', sans-serif;
    --semiboldFt : 'Pretendard-SemiBold', 'Noto Sans KR', sans-serif;
    --engFt_md : 'Faustina-Medium', 'Noto serif', serif;
    --engFt_bl : 'Faustina-SemiBold', 'Noto serif', serif;

    --gold : #cbae81;
    --rose : #d8a7a0;
    --point : #7A0204;
    --bgcolor : #F9F6F2;
    --dktext : #333;
    --litext : #666;
}
/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
}
img {
    vertical-align: top;
    display: block;
}

/* common */
html {
    font-size: 1rem;
    /* background-color: var(--bgcolor); */
}
.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.container.full {
    max-width: 1850px;
    width: 100%;
    margin: 0 auto;
}
.section {
    padding: 120px 0;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    border-radius: 50%;
    background-color: #f6f4d2;
    opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: var(--point);
}
.btn {
    display: inline-block;
    padding: 10px 15px;
    border: 1.5px solid #333;
    border-radius: 5px;
    color: var(--dktext);
    font-family: var(--regularFt);
    text-align: center;
    /* background-color: rgba(255, 255, 255, .5); */
    transition: all .3s linear;
}
.btn:hover {
    background-color: #333;
    color: #ddd;
}

/* typography */
h2 {
    font-size: 1.3rem;
    color: var(--dktext);
    letter-spacing: -0.3px;
}
h3 {
    font-size: 1.2rem;
    color: var(--dktext);
    letter-spacing: -0.4px;
}

/* ===========quick menu ============= */
.consult {
    width: 45px;
    height: 45px;
    background-color: var(--bgcolor);
    border-radius: 50%;
    position: fixed;
    right: 25px;
    bottom: 20px;
    z-index: 999;
}
.consult a {
    display: block;
    text-align: center;
    line-height: 45px;
    font-family: var(--lightFt);
    color: var(--dktext);
}
.top {
    width: 45px;
    height: 45px;
    background-color: var(--bgcolor);
    border-radius: 50%;
    position: fixed;
    right: 25px;
    bottom: 75px;
    z-index: 99;
}
.top span {
    display: block;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    color: var(--dktext);
}

/* ============== mobile menu ============== */
.mb-menu {
    position: fixed;
    left: -100%;
    /* left: 0; */
    top: 85px;
    z-index: 999;
    background-color: var(--bgcolor);
    width: 100%;
    height: 100%;
    display: none;
    transition: all .2s linear;
}
.mb-menu.active {
    left: 0;
}
.mb-menu .mb-title {
    display: flex;
}
.mb-menu .mb-title .menuBtn {
    width: 16px;
    height: 16px;
    position: relative;
    margin: 19.5px 10px 19.5px 0;
}
.mb-menu .mb-title .menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
}
.mb-menu .mb-title .menuBtn span:nth-child(2) {
    margin: 5px 0;
}

.mb-menu .mb-title .mb-logo {
    width: 150px;
    height: 55px;
    line-height: 55px;
}
.mb-menu .mb-title .mb-logo a {
    display: block;
    margin: 13.03px 0;
}
.mb-menu .mb-title .mb-logo a img {
    width: 100%;
    object-fit: cover;
}


.mb-menu .mb-main-menu {}
.mb-menu .mb-main-menu > li {}
.mb-menu .mb-main-menu > li .mb-menu-list {
    display: block;
    padding: 10px 0;
    position: relative;
}
.mb-menu .mb-main-menu > li .mb-menu-list h3 {
    font-family: var(--engFt);
    font-weight: 600;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active h3 {
    color: var(--point);
}
.mb-menu .mb-main-menu > li .mb-menu-list span {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: #333;
    transition: all 0.3s linear;
}
.mb-menu .mb-main-menu > li .mb-menu-list.active span {
    transform: translateY(-50%) rotate(180deg);
    color: var(--point);
}
.mb-menu .mb-main-menu > li .mb-submenu {
    display: none;
}
.mb-menu .mb-main-menu > li .mb-submenu li {
    padding: 5px 0;
}
.mb-menu .mb-main-menu > li .mb-submenu li:last-child {
    margin-bottom: 10px;
}
.mb-menu .mb-main-menu > li .mb-submenu li a {
    line-height: 1.2;
    letter-spacing: -0.4px;
    color: var(--litext);
}
.mb-menu .mb-main-menu > li .mb-submenu li:hover a {
    color: var(--point);
}

/* ============header============ */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 102px;
    overflow: hidden;
    background-color: var(--bgcolor);
    z-index: 999;
    transition: all .4s ease-in-out;
}
.header.fixed {
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.header.nofixed {
    top: -35px;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.header.down {
    height: 420px;
    box-shadow: 0 0 20px rgba(0,0,0,.3);
    background-color: var(--bgcolor);
    overflow: visible;
}
.header::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    left: 0;
    top: 102px;
    z-index: 9;
    opacity: 0;
    transition: all .3s;
}
.header.down::before {
    opacity: 1;
}

/* ========= top-banner ========== */
.flow-container {
    white-space: nowrap;
    overflow: hidden;
    transition: 0.5s;
    background-color: #333;
    height: 35px;
    transition: all .3s linear;
}
.flow-container.fixed {
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.flow-container.nofixed {
    top: -35px;
}
.flow-container .flow-wrap {
    display: flex;
    animation: textLoop 30s linear infinite;
}
.flow-container:hover .flow-wrap {
    animation-play-state: paused;
    cursor: pointer;
}
.flow-text {
    padding: 0 100px;
    font-size: 0.8rem;
    color: #ddd;
    letter-spacing: -0.4px;
    line-height: 35px;
}
.flow-container:hover .flow-wrap .flow-text {
    color: #fff;
}
  
  @keyframes textLoop {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
  }

  /* ========= gnb ========= */
  .header .gnb {
    display: flex;
    justify-content: space-between;
    transition: all .3s;
}

/* ========== menuBtn ========== */
.header .menuBtn {
    display: none;
    width: 22px;
    height: 16px;
    position: relative;
    margin: 19.5px 0;
}
.header .menuBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
}
.header .menuBtn span:nth-child(2) {
    margin: 5px 0;
}

/* ========== logo ========= */
.header .logo {
    width: 188px;
    height: 67px;
    line-height: 67px;
}
.header .logo > a {
    display: inline-block;
    width: 100%;
    margin: 15.365px 0;
}
.header .logo a img {
    width: 100%;
    object-fit: cover;
}

/* ===========nav=========== */
.header nav {}
.header nav .depth1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header nav .depth1 > li { 
    padding: 0 15px;
}
.header nav .depth1 > li > a {
    font-family: var(--regularFt);
    display: block;
    font-size: 24px;
    font-size: 1.3rem;
    line-height: 67px;
    padding: 0 10px;
    letter-spacing: -0.4px;
    color: var(--dktext);
    position: relative;
    white-space: nowrap;
}
.header nav .depth1 > li > a::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--point);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
.header nav .depth1 > li:hover >a {
    color: var(--point);
}
.header nav .depth1 > li:hover >a::before {
    opacity: 1;
}
.header nav .depth1 > li .depth2 {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 102px;
    width: 100%;
    height: 300px;
    background-color: var(--bgcolor);
}
.header nav .depth1 > li .depth2 > li {
    border-right: 1px solid #ddd;
    padding: 30px;
    width: 20%;
    height: 100%;
}
.header nav .depth1 > li .depth2 > li:last-child {
    border-right: none;
}
.header nav .depth1 > li .depth2 > li h3 {
    font-family: var(--semiboldFt);
    margin-bottom: 15px;
}
.header nav .depth1 > li .depth2 > li .depth3 {}
.header nav .depth1 > li .depth2 > li .depth3 li {}
.header nav .depth1 > li .depth2 > li .depth3 li a {
    display: block;
    font-size: 1rem;
    letter-spacing: -0.4px;
    line-height: 1.3;
    margin: 10px 0;
}
.header nav .depth1 > li .depth2 > li .depth3 li:hover a {
    color: var(--point);
    text-decoration: underline;
}
.header nav .depth1 > li .depth2 > li .nav-img {
    width: 100%;
    height: 100%;
}
.header nav .depth1 > li .depth2 > li .nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======= icon ========= */
.header .icon {
    display: flex;
    gap: 5px;
    align-items: center;
}
.header .icon a {
    width: 20px;
    height: 20px;
}
.header .icon a span {
    width: 100%;
    height: 100%;
}

/* main */

/* ==========visual-pc============ */
.sw-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 99;
}
.sw-visual .swiper-slide {
    width: 100%;
    height: 100%;
}
.sw-visual .swiper-slide .bg-pc {
    width: 100%;
    height: 100%;
}
.sw-visual .swiper-slide .bg-pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sw-visual .swiper-slide:nth-child(1) .bg-pc img {
    object-position: 70% center;
}
.sw-visual .swiper-slide:nth-child(3) .bg-pc img {
    object-position: 90% center;
}
.sw-visual .swiper-slide .bg-pc .visual-text {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    /* font-family: var(--engFt_md); */
    font-family: var(--mediumFt);
    /* font-weight: 600; */
}
.sw-visual .swiper-slide .bg-pc .visual-text .desc {
    color: #fff;
    font-size: 18px;
}
.sw-visual .swiper-slide .bg-pc .visual-text .name {
    color: #fff;
    font-size: 23px;
    
}

.sw-visual .swiper-slide .bg-pc.flex {
    display: flex;
}
.sw-visual .swiper-slide .bg-pc.flex .img-wrap {
    width: 50%;
    height: 100%;
}
.sw-visual .swiper-slide .bg-pc.flex .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.sw-visual .swiper-slide .bg-pc.flex .video-wrap {
    width: 50%;
    height: 100%;
}
.sw-visual .swiper-slide .bg-pc.flex .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============= visual-mobile=========== */
.sw-visual .swiper-slide .bg-mb {
    display: none;
    width: 100%;
    height: 0;
    padding-top: 160%;
    position: relative;
}
.sw-visual .swiper-slide .bg-mb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* =====scrollbar===== */
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    width: 200px;
    height: 2px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index : 99;
}
.swiper-scrollbar {
    background: var(--swiper-scrollbar-bg-color, rgba(255, 255, 255, .3));
}
.swiper-scrollbar-drag {
    background: var(--swiper-scrollbar-drag-bg-color, rgba(255, 255, 255, 1));
}

/* ===========best-sellers=========== */
.best-sellers {}
.best-sellers>div {
    display: flex;
}
.best-sellers .bs-left {
    flex: 1;
    flex-basis: 50%;
    position: sticky;
    height: 100vh;
    /* top: 85px; */
    top: 0;
}
.best-sellers .bs-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-sellers .bs-right {
    flex: 1;
    flex-basis: 50%;
    position: relative;
    padding: 0 40px 40px 50px;
}

.best-sellers .bs-right::before {
    content: '';
    display: block;
    background-color: #A51E1E;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.best-sellers .bs-right::after {
    content: '';
    display: block;
    background-color: #fff;
    width: 93%;
    height: 93.5%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 50px 50px 0;
    z-index: 2;
    /* padding: 20px; */
    background: url(../images/250411_BEST_BG_PC.webp)no-repeat ;
    background-size: auto 100%;
}

.best-sellers .bs-right > * {
  position: relative;
  z-index: 3;
}

.best-sellers .bs-right .best {
    font-size: 2.2rem;
    padding: 0 30px;
    color: #fff;
    font-family: var(--engFt_bl);
    height: calc((100% - 93.5%) / 2);
    /* line-height: 72.89px; */
    margin-top: 25px;
}
.best-sellers .bs-right p.sort {
    font-family: var(--engFt_md);
    color: var(--dktext);
    font-size: 1.5rem;
    padding: 0 30px;
    margin-top: 50px;
}
.best-sellers .bs-right .skincare {
    /* height: 100vh; */
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}
.best-sellers .bs-right .product-item {
    width: 40%;
    padding: 30px;
    position: relative;
}
.best-sellers .bs-right .product-item:nth-child(1){
    margin-left: 25px;

}
.best-sellers .bs-right .product-item:nth-child(3){
    margin-bottom: 100px;
    margin-left: 25px;
}
.best-sellers .bs-right .product-item:nth-child(4) {
    margin-bottom: 100px;
}
.best-sellers .bs-right .product-item:hover::before {
    content: '';
    display: block;
    width: 100%;
    height: 90%;
    border-radius: 0 0 0 50px;
    background-color: transparent;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, .3);
    position: absolute;
    top: 10%;
    left: 0;
    pointer-events: none;

}
.best-sellers .bs-right .product-item .img-wrap {
    width: 100%;
    padding: 50px 30px 30px 30px;
}
.best-sellers .bs-right .product-item .img-wrap img {
    width: 100%;
    border-radius: 0 0 0 20px;
    overflow: hidden;
}

.best-sellers .bs-right .product-item .product-name {
    font-family: var(--regularFt);
    font-size: 1rem;
    letter-spacing: -0.4px;
    line-height: 1.3;
    text-align: center;
    color: var(--dktext);
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.best-sellers .bs-right .product-item .price {
    font-family: var(--semiboldFt);
    font-size: 0.9rem;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-align: center;
    color: var(--dktext);
    margin: 8px 0;
}

.best-sellers .bs-right .makeup {
    flex: 1;
    flex-basis: 50%;
    /* height: 100vh; */
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
}

/* =========== best sellers mobile =========== */
.best-sellers-mobile {
    position: relative;
    display: none;
}
.bs-title {
    font-family: var(--engFt_bl);
    font-size: 2rem;
    letter-spacing: -0.4px;
    color: var(--point);
    text-align: center;
    margin-bottom: 15px;
}
.bs-tab-btn {
    display: flex;
    justify-content: center;
}
.bs-tab-btn > a {}
.bs-tab-btn > a > h3 {
    padding: 0 10px;
    /* font-family: var(--regularFt); */
    font-family: var(--semiboldFt);
    letter-spacing: -0.4px;
    color: #999;
    cursor: pointer;
}
.bs-tab-btn > a.active > h3 {
    /* font-family: var(--semiboldFt); */
    color: var(--dktext);
}
.bs-tab-btn span {
    content: '';
    display: block;
    width: 2px;
    background-color: #999;
    margin: 0 10px;
}

.bs-tab-content {
    position: relative;
}
.bs-tab-content .sw-tab-content {
    width: 70%;
}
.bs-tab-content .sw-tab-content .swiper-slide {}
.bs-tab-content .sw-tab-content .swiper-slide .img-wrap {
    display: block;
    margin: 30px auto 0;
    /* padding: 30px 30px 0 30px; */
    width: 200px;
    height: 400px;
}
.bs-tab-content .sw-tab-content .swiper-slide .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* margin: 0 auto; */
}
.bs-tab-content .sw-tab-content .swiper-slide .product-name {
    font-family: var(--regularFt);
    font-size: 1.3rem;
    letter-spacing: -0.4px;
    line-height: 1.3;
    text-align: center;
    color: var(--dktext);
    word-break: keep-all;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.bs-tab-content .sw-tab-content .swiper-slide .price {
    font-family: var(--semiboldFt);
    font-size: 1.1rem;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-align: center;
    color: var(--dktext);
    margin: 8px 0;
}

.bs-tab-content .swiper-button-prev {
    color: var(--point);
    left: 5%;
}
.bs-tab-content .swiper-button-next {
    color: var(--point);
    right: 5%;
}
.bs-tab-content .swiper-pagination-horizontal.swiper-pagination-bullets {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
}

/* ============= 신제품 영역 ============== */
.new-arrivals {
    position: relative;
}
.sw-new {
    width: 100%;
    /* height: 450px; */
}
.sw-new .swiper-slide {}
.sw-new .swiper-slide:first-child {
    background-color: var(--gold);
}
.sw-new .swiper-slide:last-child {
    background-color: var(--rose);
}
.sw-new .swiper-slide .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sw-new .swiper-slide .new-pc {}
.sw-new .swiper-slide .new-text {}
.sw-new .swiper-slide .new-text .new {
    font-family: var(--engFt_bl);
    color: var(--point);
    font-size: 1.3rem;
}
.sw-new .swiper-slide .new-text h2 {
    font-family: var(--engFt_bl);
    font-weight: 500;
    font-size: 4.5rem;
    line-height: 1.2;

}
.sw-new .swiper-slide .new-text .desc {
    font-size: 1.3rem;
    word-break: keep-all;
}

.sw-new .swiper-slide .new-text a {
    margin-top: 25px;
}

.sw-new .swiper-slide .new-imgwrap {
    height: 450px;
}
.sw-new .swiper-slide .new-imgwrap img {
    height: 100%;
    object-fit: cover;
}

/* .new-arrivals .sw-nav-position {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
} */
/* .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10%;
    color: var(--point);
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10%;
    color: var(--point);
} */
.new-arrivals .swiper-new-prev {}
.new-arrivals .swiper-new-next {}
.swiper-pagination-new {}
.swiper-pagination-horizontal.swiper-pagination-bullets {
    width: auto;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}
.new-arrivals .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
}

/* new arrivals mobile */
.new-arrivals-mb {
    display: none;
    position: relative;
}
.sw-new-mb {
    width: 100%;
}
.sw-new-mb .swiper-slide {}
.sw-new-mb .swiper-slide .new-mb-imgwrap {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
}
.sw-new-mb .swiper-slide .new-mb-imgwrap img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.new-arrivals-mb .swiper-pagination-new-mb {
    bottom: var(--swiper-pagination-bottom,8px);
}

/* ============ service ============= */
.service .title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--point);
    font-family: var(--semiboldFt);
    font-size: 2.6rem;
    letter-spacing: -0.3px;
}
.service .service-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service .box {
    flex-basis: 30%;
}
.service .box .img-wrap {
    width: 100%;
    padding-top: 110%;
    height: 0;
    /* height: 450px; */
    position: relative;
    overflow: hidden;
}
.service .box .img-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    transition: all .4s linear;
}
.service .box .img-wrap:hover img {
    scale: 1.05;
}
.service .box:last-child .img-wrap img {
    object-position: 48% center;
}

.service .box p {
    margin: 20px auto 0;
    text-align: center;
    font-size: 1.3rem;
}

/* =======service-mobile ========== */
.service-mb {
    display: none;
}
.service-mb .title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--point);
    font-family: var(--semiboldFt);
    font-size: 2rem;
    letter-spacing: -0.3px;
}
.service-mb .sw-serv {
    width: 100%;
    padding: 0 25%;
}
.service-mb .sw-serv .swiper-slide {
    position: relative;
}
.service-mb .sw-serv .swiper-slide .img-wrap {
    width: 300px;
    height: 350px;
    margin: 0 auto;
    box-shadow: 2px 2px 5px 0 rgba(0,0,0,.3);
    overflow: hidden;
}
.service-mb .sw-serv .swiper-slide .img-wrap >a {
    width: 100%;
    height: 100%;
}
.service-mb .sw-serv .swiper-slide .img-wrap >a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-mb .sw-serv .swiper-slide:last-child .img-wrap >a img {
    object-position: 48% center;
}
.service-mb .sw-serv .swiper-slide > a {
    font-family: var(--mediumFt);
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
}


.sw-serv-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.sw-serv-btn .btn-prev {
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.sw-serv-btn .btn-prev span,
.sw-serv-btn .btn-next span {
    font-size: 22px;
    color: #999;
}
.sw-serv-btn .swiper-pagination  {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    bottom: auto;
}

.sw-serv-btn .swiper-pagination-current {
    color: var(--dktext);
    font-weight: 600;
}
.sw-serv-btn .swiper-pagination-total {
    color: var(--litext);
}
.sw-serv-btn .btn-next {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

/* benefit */
.service-mb > .container:last-child {
    margin-top: 70px;
}
.service-mb > .container:last-child > span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #999;
    margin: 8px 0;
}
.service-mb .benefit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.service-mb .benefit .serv-text {
    flex-basis: 70%;
}
.service-mb .benefit .serv-text h3 {
    font-family: var(--semiboldFt);
    color: var(--point);
    font-weight: normal;
    margin-bottom: 5px;
}
.service-mb .benefit .serv-text p {
    
    word-break: keep-all;
}
.service-mb .benefit span {
    color: var(--point);
    font-size: 3rem;
}

/* ============= sns ============== */
.sns {
    background-color: var(--rose);
}
.sns .text {
    text-align: center;
}
.sns .text .title {
    font-family: var(--engFt_bl);
    /* font-family: var(--semiboldFt); */
    font-weight: normal;
    font-size: 3rem;
    color: var(--point);
    letter-spacing: -0.3px;
}
.sns .text span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--point);
    margin: 20px auto;
}
.sns .text .desc {
    /* font-family: var(--regularFt); */
    font-family: var(--engFt_md);
    font-weight: normal;
    font-size: 1.2rem;
    color: var(--point);
    margin-bottom: 50px;
}
.sns .text .desc .mobile {
    font-weight: 500;
}

.sns .img {
    display: flex;
    justify-content: space-between;
}
.sns .img .img-wrap {
    flex-basis: 19%;
    box-shadow: 2px 2px 5px 0 rgba(0,0,0,.3);
    overflow: hidden;
    border-radius: 10px;
}
.sns .img .img-wrap a {}
.sns .img .img-wrap a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    transition: all .3s linear;
}
.sns .img .img-wrap:hover a img{
    transform: scale(1.05);
}

.sns .img-mb {
    display: none;
    /* margin: 0 auto; */
}
.sns .img-mb .sw-sns {
    width: 100%;
    padding: 0 25%;
}
.sns .img-mb .sw-sns .swiper-slide {}
.sns .img-mb .sw-sns .swiper-slide .img-wrap {
    margin: 0 auto;
    width: 300px;
    height: 300px;
    box-shadow: 3px 3px 10px 0 rgba(0,0,0,.2);
}
.sns .img-mb .sw-sns .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sns .img-mb .sw-sns .swiper-slide:nth-child(4) img {
    object-position: center 90%;
}
.sns .img-mb > a {
    display: block;
    width: 120px;
    padding: 5px 10px;
    font-family: var(--lightFt);
    font-size: 1.2rem;
    text-align: center;
    background-color: var(--point);
    border: 1px solid transparent;
    color: #fff;
    margin: 0 auto;
    margin-top: 50px;
    transition: all .3s linear;
}
.sns .img-mb > a:hover {
    color: var(--point);
    background-color: rgba(255, 255, 255, 0.2);
    border: 1.5px solid var(--point);
}

/* ============== footer ============= */
footer {
    position: relative;
}
footer .container.flex {
    display: flex;
    justify-content: space-between;
}
footer .container::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #999;
    position: absolute;
    top: 290px;
    left: 0;
}
footer .box {
    padding: 40px 20px;
    /* flex-basis: 25%; */
    flex: 1;
    height: 290px;
    border-right: 1px solid #999;
}
footer .box:first-child {
    padding-left: 0;
}
footer .box:last-child {
    border-right: none;
}
footer .box h3 {
    margin-bottom: 30px;
}

/* 고객센터 */
footer .box .call {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    word-break: keep-all;
}
footer .box .call span,
footer .box .time span {
    font-size: 20px;
    margin-right: 5px;
}
footer .box .call p,
footer .box .time p {
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.5;
    word-break: keep-all;
}
footer .box .time {
    display: flex;
}
footer .box > a {
    display: block;
    width: fit-content;
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.5;
    margin-bottom: 8px;
    word-break: keep-all;
}
footer .box > a:hover {
    text-decoration: underline;
}

/* 소셜 */
footer .box .footer-sns {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
footer .box .footer-sns .img-wrap {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
footer .box .footer-sns .img-wrap img {
    width: 100%;
    object-fit: cover;
}
footer .box .footer-sns a {
    display: block;
    width: fit-content;
    font-family: var(--lightFt);
    color: var(--dktext);
    /* line-height: 1.5; */
    word-break: keep-all;
}
footer .box .footer-sns a:hover {
    text-decoration: underline;
}
footer .ft-desc {
    padding: 30px 0;
}
footer .ft-desc p {
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: keep-all;
}
footer .ft-desc p:first-child {
    margin-bottom: 15px;
}

/* ========== mobile footer ============= */
.mb-footer {
    display: none;
}
.mb-footer .mb-ft-main {}
.mb-footer .mb-ft-main li {}
.mb-footer .mb-ft-main > li::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #999;
}
.mb-footer .mb-ft-main li .mb-ft-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.mb-footer .mb-ft-main li .mb-ft-list h3 {
    font-family: var(--regularFt);
    font-weight: normal;
    color: var(--point);
}
.mb-footer .mb-ft-main li:first-child {
    margin-top: 15px;
}
.mb-footer .mb-ft-main li .mb-ft-list span {
    color: var(--point);
    transform: rotate(0deg);
    transition: all .3s linear;
}
.mb-footer .mb-ft-main li .mb-ft-list.active span {
    transform: rotate(180deg);
}

.mb-footer .mb-ft-main li .mb-ft-sub {
    margin-bottom: 15px;
    display: none;
}
.mb-footer .mb-ft-main li .mb-ft-sub .call {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.mb-footer .mb-ft-main li .mb-ft-sub .call span,
.mb-footer .mb-ft-main li .mb-ft-sub .time span {
    font-size: 20px;    
    margin-right: 5px;
}
.mb-footer .mb-ft-main li .mb-ft-sub .call p,
.mb-footer .mb-ft-main li .mb-ft-sub .time p {
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.5;
    word-break: keep-all;
}

.mb-footer .mb-ft-main li .mb-ft-sub .time {
    display: flex;
}

.mb-footer .mb-ft-main li .mb-ft-sub li a {
    display: block;
    width: fit-content;
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.8;
    word-break: keep-all;
}
.mb-footer .mb-ft-main li .mb-ft-sub li a:hover {
    text-decoration: underline;
}

/* 소셜 */
.mb-footer .mb-ft-main li .mb-ft-sub .ft-mb-sns {
    display: flex;
    align-items: center;
}
.mb-footer .mb-ft-main li .mb-ft-sub .ft-mb-sns .img-wrap {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}
.mb-footer .mb-ft-main li .mb-ft-sub .ft-mb-sns .img-wrap img {
    width: 100%;
}

.mb-footer .mb-ft-desc {
    padding: 30px 0;
}
.mb-footer .mb-ft-desc p {
    font-family: var(--lightFt);
    color: var(--dktext);
    line-height: 1.5;
    margin-bottom: 8px;
    word-break: keep-all;
}
.mb-footer .mb-ft-desc p:first-child {
    margin-bottom: 15px;
}