@charset "utf-8";

.main-wrap header#header .top-menu {
    background: rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.top-menu h1.logo a img {
    filter: brightness(0) invert(1);
}

.top-menu .area_right button.btn-share > img,
.top-menu button.menu-open > img {
    filter: brightness(0) invert(1);
}

.main-wrap #container {
    padding-top: 0;
}

.main-wrap .main-visual {
    display: block;
    width: 100%;
    height: 100%;
    /* height: calc(var(--vh, 1vh) * 100); */
    overflow: visible;
    vertical-align: top;
}

.main-wrap .main-visual .swiper {
    width: 100%;
    /*height: calc(100% - 56px);*/
    height: 100%;
}

/*mobile*/
/*메인슬라이드 height 조정*/
/*iphone 브라우저*/
@media screen and (max-height: 713px) {
    .main-wrap .main-visual .swiper {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }
}

/*galaxy 브라우저*/
@media (min-height: 714px) {
    .main-wrap .main-visual .swiper {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        max-height: 713px;
    }
}

/*그외*/
@media (min-height: 844px) {
    .main-wrap .main-visual .swiper {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        /*max-height: 779px;*/
        max-height: 713px;
    }
}

.main-wrap .swiper-fraction {
    position: absolute;
    top: 90px;
    right: 20px;
    z-index: 10;
    padding: 0 15px;
    height: 25px;
    border-radius: 30px;
    background: rgba(0, 0, 0, .8);
    line-height: 1;
}

.main-wrap .swiper-fraction span {
    font-size: var(--font-size-7);
    font-family: var(--font-eng);
    vertical-align: middle;
    line-height: 25px;
}

.main-wrap .swiper-fraction span.current {
    color: var(--white);
    font-weight: 900;
}

.main-wrap .swiper-fraction span.current:after {
    content: '/';
    margin: 0 3px 0 5px;
}

.main-wrap .swiper-fraction span.total {
    color: var(--grey-4);
    font-weight: var(--font-normal);
}

/*스크롤 다운 버튼*/
.main-wrap .main-visual .scroll {
    background: var(--white);
    height: 56px;

    /*display: none;*/
}

.main-wrap .main-visual .scroll button {
    background: var(--white);
    display: block;
    text-align: center;
    width: 100%;
    line-height: 56px;
    font-size: var(--font-size-1);
    color: var(--black);
    font-family: var(--font-eng);
    font-weight: var(--font-bold);
}

.main-wrap .main-visual .scroll button img {
    height: 6px;
    width: auto;
    margin-left: 8px;
}

.main-wrap .main-visual .swiper-pagination {
    display: none;
}

/*2022-05추가*/
.main-wrap .main-visual .swiper-button-next,
.main-wrap .main-visual .swiper-button-prev {
    width: 30px;
    height: 30px;
}

.main-wrap .main-visual .swiper-button-next:after {
    background-image: url(../images/icon/arrow-right.png);
}

.main-wrap .main-visual .swiper-button-prev:after {
    background-image: url(../images/icon/arrow-left.png);
}

.main-wrap .main-visual .swiper-button-next:after,
.main-wrap .main-visual .swiper-button-prev:after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: 30px auto;
    background-position: center;
    background-repeat: no-repeat;
}

/*브랜드 배너*/
.sect {
    display: block;
    width: 100%;
    height: 100vh;
    /*height: var(--vh);*/
    /*height: calc(var(--vh, 1vh) * 100);*/
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;

    position: relative;
}

.sect .banner-wrapper {
    display: inline-block;
    width: calc(100% - 30px);
    padding: 30px 0 30px 30px;
    background: rgba(0, 0, 0, .5);
    border-top-left-radius: 40px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.sect .banner-wrapper h2.logo {
    display: block;
    line-height: 1;
}

.sect .banner-wrapper h2.logo img {
    height: inherit;
    width: auto;
    filter: brightness(0) invert(1);
}

.sect1 .banner-wrapper h2.logo img {
    height: 16px;
}

.sect2 .banner-wrapper h2.logo img {
    height: 13px;
}

.sect3 .banner-wrapper h2.logo img {
    height: 13px;
}

.sect4 .banner-wrapper h2.logo img {
    height: 15px;
}

.sect5 .banner-wrapper h2.logo img {
    height: 24px;
}

.sect6 .banner-wrapper h2.logo img {
    height: 15px;
}

.sect7 .banner-wrapper h2.logo img {
    height: 17px;
}

/*2022-070-27 추가*/
.sect .banner-wrapper .com-logo,
.sect .banner-wrapper .trugen-logo,
.sect .banner-wrapper .joinus-logo {
    margin-right: 20px;
    position: relative;
}

.sect .banner-wrapper .com-logo h2.logo,
.sect .banner-wrapper .trugen-logo h2.logo,
.sect .banner-wrapper .joinus-logo h2.logo {
    display: inline-block;
}

.com-logo .event-text,
.trugen-logo .event-text,
.joinus-logo .event-text {
    display: inline-block;
    padding: 5px 7px 5px;
    font-size: var(--font-size-1);
    font-weight: var(--font-bold);
    color: var(--white);
    background: var(--red);
    line-height: 1;
    vertical-align: middle;
    position: absolute;
    right: -5px;
    top: -4px;
    border-radius: 5px;
}

.trugen-logo .event-text {
    background: #2379b4;
}

.com-logo .event-text {
    background: #da9376;
}

.event-text p:first-child {
    text-align: right;
    font-size: var(--font-size-1);
    font-weight: var(--font-bold);
}

.event-text p:first-child span {
    display: block;
    margin-top: 5px;
}

.event-text p.small {
    margin-top: 5px;
    font-size: var(--font-size-6);
    font-weight: var(--font-light);
    text-align: right;
}

.event-text p.small > span{
   margin-left: 5px;
}

@media screen and (min-width: 841px) {
    .event-text p:first-child {
        text-align: left;
        font-size: var(--font-size-1);
        font-weight: var(--font-bold);
    }

    .event-text p:first-child span {
        display: inline-block;
        margin: 0 0 0 5px;
    }
    
    .event-text p.small{
        text-align: right;
        font-size: var(--font-size-7);
    }
}

.sect .banner-wrapper .title {
    margin-top: 50px;
}

.sect .banner-wrapper .title h3 {
    font-family: var(--font-eng);
    font-size: 33px;
    color: var(--white);
    line-height: 1.2;
    font-weight: var(--font-bold);
    letter-spacing: -0.05rem;

}

.sect .banner-wrapper .title h3 + p {
    margin-top: 20px;
    font-size: var(--font-size-7);
    color: var(--white);
    line-height: 1.5;
    font-weight: var(--font-normal);
}

.sect .banner-wrapper div.banner {
    margin-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    height: 220px;
    overflow-y: auto;
}

.sect .banner-wrapper div.banner::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 20px;
}

.sect .banner-wrapper div.banner::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.2);
}

.sect .banner-wrapper div.banner::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 20px;
}

.sect .banner-wrapper div.banner ul {
    font-size: 0;
    display: block;
    /*width: 580px;*/
    width: 870px;
}

.sect .banner-wrapper div.banner li {
    float: left;
}

.sect .banner-wrapper div.banner li + li {
    margin-left: 15px;
}

.sect .banner-wrapper div.banner li a {
    display: block;
    /*cursor: default;*/
}

.sect .banner-wrapper div.banner li .b_img {
    width: 130px;
    height: 130px;
    overflow: hidden;
}

.sect .banner-wrapper div.banner li .b_img span.modal-target {
    display: none;
}

.sect .banner-wrapper div.banner li .b_img img {
    width: 100%;
    height: auto;
}

.sect .banner-wrapper div.banner li .text {
    margin-top: 20px;
}

.sect .banner-wrapper div.banner li .text .name,
.sect .banner-wrapper div.banner li .text .num {
    font-size: var(--font-size-7);
    color: var(--white);
    line-height: 1;
    font-weight: var(--font-normal);
}

.sect .banner-wrapper div.banner li .text .num {
    margin-top: 10px;
    font-family: var(--font-eng);
}

/*PC*/
@media screen and (min-width: 841px) {
    .main-wrap header#header .top-menu {
        border-bottom: 1px solid var(--grey-6);
        background: var(--white);
    }

    .top-menu h1.logo a img {
        filter: none;
    }

    .top-menu .area_right button.btn-share > img,
    .top-menu button.menu-open > img {
        filter: none;
    }

    .main-wrap #container {
        /* border-left: 1px solid var(--grey-6); */
        /* border-right: 1px solid var(--grey-6); */
        padding-top: 151px;
        width: 720px;
    }

    .main-wrap .main-visual {
        height: 100%;
        overflow: visible;
        margin: 50px auto 0;
    }

    .main-wrap .main-visual .swiper {
        /*height: calc(100vh - 151px);*/
        height: 100%;
        max-height: 700px;
    }

    .main-wrap .swiper-fraction {
        top: 20px;
    }

    .sect {
        /*height: calc(100vh - 150px);*/
    }

    .sect .banner-wrapper {
        width: calc(100% - 60px)
    }

    .sect .banner-wrapper div.banner {
        padding-bottom: 20px;
        height: 210px
    }

    .sect.sect6 .banner-wrapper div.banner {
        height: auto;
    }
}

/*iphone SE*/
@media screen and (max-width: 375px) {
    .main-wrap .main-visual {
        overflow: visible;
        height: 100%;
    }

    .main-wrap .main-visual .swiper {
        height: 100%;
        height: 650px;
    }

    .sect {
        min-height: 650px;
    }
}

/*Galaxy Fold*/
@media screen and (max-width: 280px) {
    .main-wrap .main-visual {
        /*height: 100vh;
        height: calc(var(--vh, 1vh) * 100);*/
        overflow: visible;
        height: 100%;
    }

    .main-wrap .main-visual .swiper {
        /*height: 100vh;
        height: calc(var(--vh, 1vh) * 100);*/
        height: 100%;
        height: 527px;
    }

    .sect {
        min-height: auto;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    .sect .banner-wrapper .title h3 {
        font-size: 24px;
    }

    .sect .banner-wrapper .title {
        padding-right: 10px;
        margin-top: 30px;
    }

    .sect .banner-wrapper .title h3 + p > br {
        display: none;
        word-break: keep-all;
    }
}


/*상품 클릭 POP*/
/* Popup Styling */
.img-pop {
    width: 100%;
    z-index: 100;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

.img-pop .img-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 105;
    overflow: hidden;
    width: 90%;
    max-width: 400px;
    height: auto;
}

.img-pop .img-box img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.img-pop .img-box .pop-close {
    display: inline-block;
    width: 18px;
    height: 18px;
    padding: 20px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/icon/pop-close.png) center no-repeat rgba(255,255,255,.1);
    background-size: 18px auto;
}

.img-pop.open {
    display: block;
}

.img-pop.open:after {
    content: '';
    background-color: var(--black);
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.5;
    z-index: 100;
}

/*PC*/
@media screen and (min-width: 841px) {
    .img-pop .img-box {
        width: 400px;
        height: auto;
        max-height: 600px;
    }

    .img-pop .img-box img {
        opacity: 0;
        transform: translateY(-100px);
        -webkit-transform: translateY(-100px);
        -moz-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
        -o-transform: translateY(-100px);
    }

    .img-pop.open .img-box img {
        animation: animatepopup 1s ease-in-out .8s;
        -webkit-animation: animatepopup .3s ease-in-out forwards;
    }

    @keyframes animatepopup {
        to {
            opacity: 1;
            transform: translateY(0);
            -webkit-transform: translateY(0);
            -moz-transform: translateY(0);
            -ms-transform: translateY(0);
            -o-transform: translateY(0);
        }
    }
}

/*메인 배너 custom*/
.swiper-slide div.bg.event2204 {
    background-image: url(../uploads/main/banner/2022-04/event_m_banner_03.png);
}

.event2204 .event-btn-wrap {
    padding: 0 20px;
    overflow: hidden;

    position: absolute;
    top: calc(660/768*100vw);
    /*top: calc(660/768*100vw);*/
    /*bottom: calc(450/768*100vw);*/
}

.event2204 .event-btn-wrap a {
    display: inline-block;
    width: 50%;
}

.event2204 .event-btn-wrap a.left-btn {
    float: left;
}

.event2204 .event-btn-wrap a.right-btn {
    float: right;
}

.event2204 .event-btn-wrap a img {
    width: 100%;
    height: auto;
}

/*2022-04-20 추가*/
.event2204 .event-btn-wrap2 {
    padding: 0 20px;
    overflow: hidden;

    position: absolute;
    top: calc(530/768*100vw);
}

.event2204 .event-btn-wrap2 ul {
    font-size: 0;
}

.event2204 .event-btn-wrap2 li + li {
    margin-top: -15px;
}

.event2204 .event-btn-wrap2 li a {
    display: block;
    font-size: 0;
}

.event2204 .event-btn-wrap2 li a img {
    width: 100%;
    height: auto;
}

.event2204 .event-btn-wrap2 li.logo {
    margin-top: 15px;
}

.event2204 .event-btn-wrap2 li.logo a {
    width: 80%;
    margin: 0 auto;
}

/*Phone Height 대응*/
@media screen and (min-height: 844px) {
    .event2204 .event-btn-wrap2 {
        top: 34%
    }
}

/*Galaxy Fold*/
@media screen and (max-width: 280px) {
    .event2204 .event-btn-wrap {
        top: calc(753/768*100vw)
    }

    .event2204 .event-btn-wrap2 {
        top: calc(630/768*100vw);
    }

    .event2204 .event-btn-wrap2 li + li {
        margin-top: 0;
    }
}

/*Tablet*/
@media only screen and (min-device-width: 601px) and (max-device-width: 841px) {
    .swiper-slide div.bg.event2204 {
        background-position: center 10%;
    }

    .event2204 .event-btn-wrap2 {
        width: 75%;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: calc(475/768*100vw);

    }

    .event2204 .event-btn-wrap2 li.logo {
        width: 90%;
        margin: 0 auto;
    }
}

/*PC*/
@media screen and (min-width: 841px) {
    .swiper-slide div.bg.event2204 {
        background-image: url(../uploads/main/banner/2022-04/event_pc_banner.png);
        background-position: center 0;
        background-size: 100% auto;
        background-color: #fe9591;
        width: 100%;
        height: 700px;
        display: block
    }

    .event2204 .event-btn-wrap {
        width: 80%;
        margin: 0 auto;
        top: auto;
        left: 0;
        right: 0;
        bottom: 25px;
    }

    .event2204 .event-btn-wrap a {
        display: block;
    }

    .event2204 .event-btn-wrap a img {
        height: 300px;
        width: auto;
    }

    .event2204 .event-btn-wrap2 {
        width: 100%;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 270px;
        padding: 0;
    }

    .event2204 .event-btn-wrap2 li {
        width: 220px;
        display: inline-block;
    }

    .event2204 .event-btn-wrap2 li + li {
        margin-left: -20px;
    }
}

/*20220525*/
/*메인 동영상배너*/
.swiper-slide div.bg.video-banner {
    background-image: url(../uploads/main/banner/2022-06/banner_bg_01.png);
    background-position: center -15px;
}

.swiper-slide div.bg.video-banner .video-container {
    display: block;
    width: 100%;
    padding-right: 40px;
    padding-left: 40px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    /*margin-top: calc(370/768*100vw);*/
    margin-top: calc(430/768*100vw);
}

.video-container .video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container .video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 10px;
}

.video-container .video-title {
    text-align: center;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
}

.video-container .video-title a {
    font-size: var(--font-size-1);
    color: var(--black);
    line-height: 1;
    font-weight: var(--font-normal);
    vertical-align: middle;
}

.media-wrap {
    display: block;
    overflow: hidden;
    -ms-overflow-style: none;
    margin: 35px 10px 0;
}

.media-wrap > ul {
    font-size: 0;
    /*display: inline-flex;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.media-wrap li.media {
    position: relative;
    width: 50%;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.media-wrap li.media a {
    display: block;
    width: 100%;
    height: 100%;
}

.media-wrap li.media a .img-wrap {
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
}

.media-wrap li.media a .img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

.swiper-slide div.bg.video-banner .btn-end {
    padding: 0 20px;
    margin: 10px auto 0;
    text-align: center;
}

.swiper-slide div.bg.video-banner .btn-end a {
    display: block;
    width: 100%;
    height: 50px;
    border: 2px solid rgba(51, 51, 51, 0.4);
    border-radius: 10px;
    background: url(../images/link-btn-black.png) center no-repeat;
    background-size: 100px auto;
}

/*Phone Height 대응*/
@media screen and (min-height: 844px) {
    .swiper-slide div.bg.video-banner {
        background-position: center 0;
    }

    .swiper-slide div.bg.video-banner .video-container {
        position: relative;
        padding-right: 20px;
        padding-left: 20px;
        margin-top: calc(470/768*100vw);
    }

    .media-wrap {
        margin: 40px 0 0;
    }

    .swiper-slide div.bg.video-banner .btn-end {
        margin: 10px auto;
    }

    .swiper-slide div.bg.video-banner .btn-end a {
        height: 80px;
    }

}

/*iphone SE*/
@media screen and (max-width: 375px) {
    .media-wrap li.media {
        width: 50%;
    }

    /*.media-wrap li.media:last-child {
        display: none;
    }*/
}

/*Galaxy Fold*/
@media screen and (max-width: 280px) {
    .swiper-slide div.bg.video-banner {
        background-position: center 0;
    }

    .swiper-slide div.bg.video-banner .video-container {
        padding-right: 20px;
        padding-left: 20px;
        margin-top: calc(550/768*100vw);
    }

    .video-container .video-title a {
        font-size: var(--font-size-6);
    }

    .media-wrap {
        margin: 50px 10px 0;
    }

    .media-wrap li.media:last-child {
        display: block;
    }

    .media-wrap li.media {
        width: 50%;
    }

    .swiper-slide div.bg.video-banner .btn-end {
        margin: 20px auto;        
    }

    .swiper-slide div.bg.video-banner .btn-end a {
        background-size: 100px auto;
    }

}

/*Tablet*/
@media only screen and (min-device-width: 601px) and (max-device-width: 841px) {
    .swiper-slide div.bg.video-banner {
        background-position: center -80px;
    }

    .swiper-slide div.bg.video-banner .video-container {
        padding-right: 50px;
        padding-left: 50px;
        margin-top: calc(380/768*100vw);
    }

    .video-container .video-title {
        margin-top: 10px;
    }

    .video-container .video-title a {
        font-size: var(--font-size-4);
    }

    .media-wrap {
        margin: 70px 0 0;
    }

    .media-wrap li.media {
        width: 25%;
    }

    .swiper-slide div.bg.video-banner .btn-end {
        margin: 30px auto 0;
        padding: 0 50px;
    }
}


/*PC*/
@media screen and (min-width: 841px) {
    .swiper-slide div.bg.video-banner {
        background-image: url(../uploads/main/banner/2022-06/banner_bg_01.png);
        background-position: center -165px;
        background-size: 100% auto;
        height: 700px;
    }

    .swiper-slide div.bg.video-banner .video-container {
        width: 100%;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: 210px;
        padding: 0;
    }

    .video-container .video-wrap {
        padding-bottom: 0;
        width: 500px;
        height: 281px;
        margin: 0 auto;
    }

    .video-container .video-wrap iframe {
        position: relative;
        top: auto;
        left: auto;
    }

    .video-container .video-title {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .video-container .video-title a {
        font-size: var(--font-size-2);
    }

    .media-wrap {
        margin: 50px 50px 0;
    }

    .media-wrap li.media {
        width: 25%;
    }

    .swiper-slide div.bg.video-banner .btn-end {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        margin: 0 90px;
    }

    .swiper-slide div.bg.video-banner .btn-end a {
        height: 30px;
        border: 2px solid rgba(51, 51, 51, 0.4);
    }
}


/*22-06-20*/
/*6월이벤트*/
/*메인 배너 custom*/
.swiper-slide div.bg.event2206 {
    background-image: url(../uploads/main/banner/2022-06/2206_event_04C.png);
    background-position: center top;
    position: relative;
}

.event2206 .event-btn-wrap {
    display: block;
    width: 100%;
    height: auto;
}

.event2206 .event-btn-wrap ul {
    font-size: 0;
    width: 100%;
}

.event2206 .event-btn-wrap li.mo-view {
    margin-bottom: calc(30/768*100vw);
    position: absolute;
    top: calc(85/768*100vw);
    left: 0;
}

.event2206 .event-btn-wrap li.mo-view img {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.event2206 .event-btn-wrap li.b-jo {
    position: absolute;
    /*top: calc(700/768*100vw);*/
    bottom: calc(620/768*100vw);
    right: calc(200/768*100vw);
}

.event2206 .event-btn-wrap li.b-com {
    position: absolute;
    left: calc(120/768*100vw);
    bottom: calc(70/768*100vw);
}

.event2206 .event-btn-wrap li.b-jo a,
.event2206 .event-btn-wrap li.b-com a {
    display: block;
    font-size: 0;
    width: 100%;
    height: auto;
}

.event2206 .event-btn-wrap li.b-jo a img,
.event2206 .event-btn-wrap li.b-com a img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 58px;
}

/*Phone Height 대응*/
@media screen and (min-height: 844px) {
    .event2206 .event-btn-wrap li.mo-view {
        top: calc(180/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-jo {
        /*top: calc(800/768*100vw);*/
        bottom: calc(750/768*100vw);
        right: calc(185/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-com {
        bottom: calc(80/768*100vw);
        left: calc(80/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-jo a img,
    .event2206 .event-btn-wrap li.b-com a img {
        max-height: 62px;
    }
}

/*iphone SE*/
@media screen and (max-width: 375px) {
    .event2206 .event-btn-wrap li.mo-view {
        top: calc(120/768*100vw);
    }
}

/*Galaxy Fold*/
@media screen and (max-width: 280px) {
    .event2206 .event-btn-wrap li.mo-view {
        top: calc(180/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-jo {
        bottom: calc(820/768*100vw);
        right: calc(160/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-com {
        left: calc(80/768*100vw);
        bottom: calc(70/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-jo a img,
    .event2206 .event-btn-wrap li.b-com a img {
        max-height: 50px;
    }
}

/*Tablet*/
@media only screen and (min-device-width: 601px) and (max-device-width: 841px) {
    .swiper-slide div.bg.event2206 {
        background-position: center center;
    }

    .event2206 .event-btn-wrap {
        top: calc(100/768*100vw);
        width: 100%;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .event2206 .event-btn-wrap li.mo-view {
        margin-bottom: 0;
        top: calc(80/768*100vw);
        left: 50%;
        transform: translateX(-50%);
    }

    .event2206 .event-btn-wrap li.mo-view img {
        width: 100%;
    }

    .event2206 .event-btn-wrap li.b-jo {
        position: absolute;
        bottom: calc(450/768*100vw);
        right: calc(200/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-com {
        left: calc(250/768*100vw);
        bottom: calc(20/768*100vw);
    }

    .event2206 .event-btn-wrap li.b-jo a img,
    .event2206 .event-btn-wrap li.b-com a img {
        height: 80px;
        max-height: 100%;
        width: auto;
    }
}

/*PC*/
@media screen and (min-width: 841px) {
    .swiper-slide div.bg.event2206 {
        background-image: url(../uploads/main/banner/2022-06/2206_event_pc2.png);
        background-position: center top;
        background-size: 100% auto;
        width: 100%;
        height: 700px;
        display: block
    }


    .event2206 .event-btn-wrap li.b-jo {
        position: absolute;
        top: auto;
        right: auto;
        left: 200px;
        bottom: 170px;
    }

    .event2206 .event-btn-wrap li.b-com {
        position: absolute;
        left: auto;
        right: 150px;
        bottom: 42px;
    }

    .event2206 .event-btn-wrap li.b-jo a img,
    .event2206 .event-btn-wrap li.b-com a img {
        height: 80px;
        max-height: 100%;
        width: auto;
    }

}

/*22-07-06*/
/*8월 summer event*/
/*mobile*/
.swiper-slide div.bg.event2207 {
    background-image: url(../uploads/main/banner/2022-07/22summer_event_01.png);
    background-size: 100% auto;
}

.event2207 .event-btn-wrap {
    padding: 0 calc(80/750*100vw);
    overflow: hidden;

    position: absolute;
    top: calc(780/750*100vw);
}

.event2207 .event-btn-wrap ul {
    font-size: 0;
}

.event2207 .event-btn-wrap li + li {
    margin-top: 15px;
}

.event2207 .event-btn-wrap li a {
    display: block;
    font-size: 0;
}

.event2207 .event-btn-wrap li a img {
    width: 100%;
    height: auto;
}

.event2207:after {
    content: '';
    display: inline-block;
    background: url(../uploads/main/banner/2022-07/event_btn_03D.png) 0 0 no-repeat;
    background-size: 100% auto;
    width: 45px;
    height: 45px;
    position: absolute;
    top: calc(1130/750*100vw);
    right: calc(45/750*100vw);
}

/*PC*/
@media screen and (min-width: 841px) {
    .swiper-slide div.bg.event2207 {
        background-image: url(../uploads/main/banner/2022-07/22summer_event_01_pc.png);
        background-position: center 0;
        background-size: 100% auto;
        background-color: #7dc3ce;
        width: 100%;
        height: 700px;
        display: block
    }

    .event2207 .event-btn-wrap {
        width: 100%;
        margin: 0 auto;
        left: 0;
        right: 0;
        top: auto;
        bottom: 20px;
        padding: 0;
    }

    .event2207 .event-btn-wrap li {
        display: inline-block;
        width: 217px;
    }

    .event2207 .event-btn-wrap li:first-child {
        width: 184px;
    }

    .event2207 .event-btn-wrap li:last-child {
        width: 175px;
    }

    .event2207 .event-btn-wrap li + li {
        margin: 0;
    }
}

/*2022-08-22*/
/*꼼빠니아 20% 세일*/
a.event2208 {
    vertical-align: middle;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

a.event2208 > img {
    object-position: center;
    vertical-align: middle;

}

@media screen and (min-width: 841px) {
    a.event2208 {
        vertical-align: middle;
        position: none;
        transform: none;
    }
}
