/* BASIC css start */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}










    .swiper-pagination-bullet-active{
        background-color: #000 !important;
    }

    .header{
        position: relative;
        top: 0;
        left: 50%; transform: translateX(-50%);
        width: 700px;
        height: 80px;
        background-color: #000;
        padding: 0 50px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header > a{
        max-width: 130px;
        width: 100%;
    }

    .header > a img{
        width: 100%;
    }

    .header ul{
        display: flex;
    }

    .header ul a{
        padding: 0 25px;
        color: #fff;
    }

    .header ul li:not(:last-child) a{
        border-right: 1px solid #D9D9D9;
    }

    .sec02 .swiper-slide{
        position: relative;
    }

    .twoScreenWrap .swiper-slide img:nth-child(n+2){
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition-duration: 0.3s;
    }

    .twoScreenWrap .swiper-slide img.act{
        opacity: 1;
    }

    /* 스크롤 스냅 시작 */
    .scroll-container {
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    /* 자식 스크롤 스냅 영역 */
    .scroll-area {
        width: 100%;
    }

    .scroll-area:last-child {
        height: auto !important;
    }
    /* 스크롤 스냅 끝 */

/* 첫번째 페이지 시작 */

.firstPage {
    position: relative;
}

.scroll-container .firstPage{
    position: relative;
}

.firstPage .scrollBox {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 20%;
    overflow: hidden;
}

.firstPage .scrollBox span {
    margin: 0 auto;
    display: block;
    width: 1px;
    height: 30px;
    background-color: #D9D9D9;
    animation: 2.3s linear 0s infinite normal none running scrollBar;
}

.firstPage .scrollBox img {
    animation: 2.3s linear 0s infinite normal none running scrollImg;
}

@keyframes scrollBar {
    0% {
    transform: translateY(-10px);
    }
    50% {
    transform: translateY(-20px);
    }
    100% {
    transform: translateY(-10px);
    }
}

@keyframes scrollImg {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.scroll-container .firstPage > img{
    position: absolute;
    width: 58.59375%;
    bottom: 47.55859375vh;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
    z-index: 10;
    transition: 0.7s;
}

.scroll-container .firstPage.act > img{
    transform: translateX(-50%) scale(0.7);
}

.scroll-container .firstPage .imgBox01{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    transition: .7s;
    opacity: 1;
    z-index: 9;
}

.scroll-container .firstPage.act .imgBox01{
    opacity: 0;
}

.scroll-container .firstPage .imgBox01 > img:nth-child(2){
    position: absolute;
    bottom: 36.0625vh;
    left: 50%;
    transform: translateX(-50%);
    width: 78.4375%;
}

.scroll-container .firstPage .imgBox02 > img:nth-child(2){
    position: absolute;
    bottom: 36.0625vh;
    left: 50%;
    transform: translateX(-50%);
    width: 78.4375%;
}

.scroll-container .firstPage .imgBox01 > img:nth-child(1){
    height: calc(100vh - 80px);
    width: 100%;
    object-fit: cover;
}

.scroll-container .firstPage .imgBox02 > img:nth-child(1){
    height: calc(100vh - 80px);
    width: 100%;
    object-fit: cover;
}



/* 첫번째 페이지 끝 */

/* 두번째 페이지 시작 */

.scroll-area2 .rollingWrap{
    display: flex;
    align-items: center;
    overflow: hidden;
    position: absolute;
    bottom: 0%;
    left: 0;
    height: 60%;
    width: 100%;
}

.scroll-area2 .rollingWrap img{
    width: auto;
    height: 100%;
}

.scroll-area2 .rollingWrap .original {
    animation: 34s linear 0s infinite normal forwards running rollingleft1;
}

.scroll-area2 .rollingWrap .clone {
    animation: 34s linear 0s infinite normal none running rollingleft2;
}

@keyframes rollingleft1 {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100%);
    }

    50.01% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes rollingleft2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

.scroll-area2{
    box-sizing: border-box;
}
.scroll-area2 .rightWrap{
    display: flex;
    align-items: center;
    position: relative;
}

.scroll-area2 .textBox a{
    width: 55%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 63%;
}

.scroll-area2 .textBox a{
    color: #fff;
}

.scroll-area2 .textBox > *{
    display: block;
    text-align: center;
}

    .linkBox001 a {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background-color: #000;
        font-size: 22px;
    }

    /* 두번째 페이지 끝 */

    /* 상품 영역 */
    .product_wrap h2 {
        padding: 40px 0 30px;
        font-size: 20px;
        font-family: "NanumGothic";
        font-weight: 700;
    }

    .sec001 {
        width: 100%;
        margin: 0;
        position: relative;
        box-sizing: border-box;
    }

    .sec001 h3 {
        color: #1B1B1B;
        letter-spacing: -0.02em;
        font-weight: 600;
        font-size: 27px;
        line-height: 27px;
        margin: 70px 0 35px;
    }

    .sec001 .normal_item:nth-child(4n) {
        margin-right: 20px !important;
    }

    .sec001 .swiper-button-next,
    .sec001 .swiper-button-prev {
        width: 80px;
        height: 78px;
    }

    .sec001 .swiper-button-next::after,
    .sec001 .swiper-button-prev::after {
        display: none;
    }

    .sec001 .swiper-button-next {
        background: url('/design/jstyle07/wib/img_pc/main/pnext.svg') no-repeat;
        background-position: center;
        right: -92px;
        transform: translateY(-50%);
    }

    .sec001 .swiper-button-prev {
        background: url('/design/jstyle07/wib/img_pc/main/pprev.svg') no-repeat;
        background-position: center;
        left: -92px;
        transform: translateY(-50%);
    }

    .sec001 .list {
        font-size: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .sec001 .list>div {
        width: calc(33.33% - 15px);
        margin-right: 20px;
    }

    .sec001 .list>div:nth-child(3n) {
        margin-right: 0 !important;
    }

    /* 공통 상품 기본폼 */
    .normal_prod_wrap {
        font-size: 0;
        letter-spacing: 0
    }

    .normal_item .prod_thumb {
        margin-bottom: 20px;
        position: relative
    }

    .normal_item .prod_thumb .thumb_img {
        width: 100%
    }

    .normal_item .prod_thumb .thumb_ov {
        background: rgba(255, 255, 255, .75);
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: all .35s;
        -webkit-transition: all .35s;
        -ms-transition: all .35s
    }

    .normal_item:hover .prod_thumb .thumb_ov {
        opacity: 1;
        visibility: visible
    }

    .normal_item .prod_thumb .thumb_ov>* {
        height: 12px;
        display: inline-block;
        vertical-align: top;
        padding: 0 17px;
        margin: 15px 0
    }

    .normal_item .prod_thumb .thumb_ov a:last-child {
        border-right: none
    }

    .normal_item .prod_thumb .thumb_ov a img {
        margin-top: -2px
    }

    .normal_item .prod_thumb .prod_icon {
        position: absolute;
        bottom: 0;
        left: 0;
        display: block
    }

    .normal_item .prod_color span,
    .normal_item .prod_thumb .prod_icon img {
        display: inline-block;
        vertical-align: top;
    }

    .normal_item .normal_price {
        font-size: 15px;
        font-weight: 600;
        padding-right: 8px;
        color: #1B1B1B !important;
        letter-spacing: 0.02em;
    }

    .normal_item .consumer_price strike {
        color: #9C9C9C;
    }

    .normal_item .consumer_price1 strike {
        color: #9C9C9C;
        padding-right: 8px;
    }

    .normal_item .consumer_price2 {
        padding-left: 5px;
    }

    .normal_item .prod_name,
    .normal_item .prod_price {
        margin-bottom: 10px;
        position: relative;
    }

    .normal_item .prod_price .sold_out b {
        color: red;
        display: inline-block;
        margin-left: 5px;
        font-size: 13px;
        line-height: 13px;
        margin-top: -2px
    }

    .normal_item .prod_subname {
        width: 320px;
        color: #9C9C9C;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .normal_item .prod_color span {
        width: 20px;
        height: 3px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .normal_item .prod_color span.border {
        border: 1px solid #e2e2e2 !important;
        ;
        width: 20px;
        height: 3px;
        box-sizing: border-box
    }

    .normal_item .prod_thumb a.link_wrap {
        vertical-align: top;
    }

    .normal_item {
        width: 31.9%;
        vertical-align: top;
        font-size: 13px;
        margin-bottom: 72px;
    }

    /* 상품 영역 끝 */
    .twoScreenWrap .product_wrap>div {
        margin: 0 auto;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .twoScreenWrap .product_wrap>div h1 {
        margin-top: 30px;
    }

    .twoScreenWrap .product_wrap>div h1 img {
        width: 160px;
        filter: invert(100%);
    }

    html body img {
        max-width: none;
    }

    .styleLog_wrap {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        /* overflow-x: hidden; */
    }

    .styleLog_wrap img {
        display: block;
        width: 100%;
    }

    .styleLog_wrap > div {
        position: relative;
    }

    .styleLog_wrap [class^="sec"],
    .styleLog_wrap [class^="sec"] .imgBox{
        position: relative;
    }

    .styleLog_wrap [class^="sec"] .imgBox > img:nth-child(2){
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        width: 100%;
        transition-duration: .3s;
    }

    .styleLog_wrap [class^="sec"] .imgBox > img.act:nth-child(2){
        opacity: 1;
    }

    .styleLog_wrap .sec02 .imgBox > img:nth-child(3),
    .styleLog_wrap .sec04 .imgBox > img:nth-child(3),
    .styleLog_wrap .sec06 .imgBox > img:nth-child(3){
        position: absolute;
        width: 51.875%;
        left: 7.8125%;
        top: 76.25418060201%;
        transform: translateY(50px);
        opacity: 0;
        transition-duration: .7s;
    }

    .styleLog_wrap .sec03 .imgBox > img:nth-child(3),
    .styleLog_wrap .sec05 .imgBox > img:nth-child(3){
        position: absolute;
        width: 51.875%;
        right: 7.8125%;
        top: 76.25418060201%;
        transform: translateY(50px);
        opacity: 0;
        transition-duration: .7s;
    }

    .styleLog_wrap [class^="sec"] .imgBox > img.act1:nth-child(3){
        opacity: 1;
        transform: translateY(0);
    }

    .sec01 {
        position:relative;
        height:0;
        padding-bottom:177.77777777777777%;
    }

    .sec01 iframe {
        position:absolute;
        top:0;
        left:0;
        width:100%;
        height:100%;
    }

    .swiper-slide > a{
        position: absolute;
        width: 9.375%;
    }

    .sec02_box1 a {
        top: 38%;
        left: 56%;
    }

    .sec02_box2 a {
        top: 40%;
        left: 58%;
    }

    .sec03_box1 a{
        top: 44%;
        left: 35%;
    }

    .sec03_box2 a{
        top: 62%;
        left: 36%;
    }

    .sec03_box3 a{
        top: 26%;
        left: 57%;
    }

    .sec04_box1 a{
        top: 27%;
        left: 62%;
    }

    .sec04_box2 a{
        top: 30%;
        left: 66%;
    }

    .sec05_box1 a{
        top: 30%;
        left: 32%;
    }

    .sec05_box2 a{
        top: 49%;
        left: 35%;
    }

    .sec06_box1 a{
        top: 46%;
        left: 59%;
    }

    .sec06_box2 a{
        top: 50%;
        left: 61%;
    }

    /* 분리 작업 */
    .twoScreenWrap {
        container-name: main-container;
        container-type: inline-size;

        display: flex; flex-direction: column;
    }

    .twoScreenWrap::after {
        content: '';
        display: block;
        clear: both;
    }

    @container main-container (min-width: 1100px) {
        .twoScreenWrap .styleLog_wrap {
            float: left;
            /* width: 33.33333333%; */
            max-width: 700px;
            height: 100%;
            /* overflow-y: scroll; */
        }

        .twoScreenWrap .product_wrap {
            float: right;
            width: 66.66666667%;
            height: calc(100vh - 80px);
            overflow-y: scroll;

            display: none;
        }

        .styleLog_wrap::-webkit-scrollbar,
        .product_wrap::-webkit-scrollbar {
            width: 6px;
        }

        .styleLog_wrap::-webkit-scrollbar-thumb,
        .product_wrap::-webkit-scrollbar-thumb {
            height: 10%;
            background: #000;
            border-radius: 10px;
        }

        .styleLog_wrap::-webkit-scrollbar-track,
        .product_wrap::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }
    }
/* BASIC css end */

