@charset "utf-8";

/* =========================================================
   WOOD PAGE
   원본 PC / 모바일 마크업 유지
========================================================= */

.wood-page,
.wood-page * {
    box-sizing: border-box;
    font-family: "GmarketSansMedium", sans-serif !important;
}

.wood-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #fff;
    color: #000;
}

.wood-page table {
    border-collapse: collapse;
    border-spacing: 0;
}

.wood-page img {
    vertical-align: top;
}

.wood-pc {
    display: block;
}

.wood-mobile {
    display: none;
}

/* PC 원본은 1000px 고정 */
.wood-pc > div[align="center"] > table {
    width: 1000px;
}

.wood-pc img {
    max-width: none;
}

.wood-pc-banner img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .wood-pc {
        display: none;
    }

    .wood-mobile {
        display: block;
        width: 100%;
    }

    .wood-mobile img {
        max-width: 100%;
        height: auto;
    }

    .wood-mobile table {
        table-layout: fixed;
    }
}