.pc_product_sec{
    width:100%;
    min-width:1200px;
    height:835px;
    background:#fff;
    font-family:'Pretendard',sans-serif;
}

.pc_product_inner{
    width:100%;
    height:100%;
    margin:0 auto;
    padding-top:150px;
    text-align:center;
}

.pc_product_inner h2{
    font-size:45px;
    line-height:1;
    font-weight:800;
    color:#000;
    letter-spacing:-1.5px;
}

.pc_product_line{
    display:block;
    width:90px;
    height:1px;
    background:#000;
    margin:60px auto 0;
}

.pc_product_slide_wrap{
    position:relative;
    width:1752px;
    margin:108px auto 0;
}

.pc_product_view{
    width:1593px;
    margin:0 auto;
    overflow:hidden;
}

.pc_product_track{
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
    list-style:none;
    transition:transform .5s ease;
}

.pc_product_item{
    flex:0 0 511px;
    width:511px;
    height:350px;
    overflow:hidden;
    background:#d9d9d9;
}

.pc_product_item a{
    display:block;
    width:100%;
    height:100%;
}

.pc_product_item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.pc_product_item:hover img{
    transform:scale(1.05);
}

.pc_product_btn{
    position:absolute;
    top:150px;
    width:50px;
    height:50px;
    padding:0;
    border:1px solid #C3C3C3;
    background:#fff;
    cursor:pointer;
    z-index:10;
}

.pc_product_prev{
    left:0;
}

.pc_product_next{
    right:0;
}

.pc_product_btn:before{
    content:"";
    position:absolute;
    top:15px;
    width:18px;
    height:18px;
    border-top:1px solid #606060;
    border-right:1px solid #606060;
}

.pc_product_prev:before{
    left:18px;
    transform:rotate(-135deg);
}

.pc_product_next:before{
    right:18px;
    transform:rotate(45deg);
}

.pc_product_btn:hover{
    border-color:#999;
}

.pc_product_btn:hover:before{
    border-color:#666;
}