@charset "utf-8";


/* =========================================================
   INTRO01 BASE
========================================================= */

.intro01-page,
.intro01-page *,
.intro01-page *::before,
.intro01-page *::after {
    box-sizing: border-box;
}

.intro01-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: #fff;
    color: #000;

    font-family:
        "GmarketSansMedium",
        sans-serif !important;
}

.intro01-page table,
.intro01-page td,
.intro01-page p,
.intro01-page span,
.intro01-page strong {
    font-family:
        "GmarketSansMedium",
        sans-serif !important;
}

.intro01-page table {
    border-collapse: collapse;
    border-spacing: 0;
}

.intro01-page img {
    vertical-align: top;
}

.intro01-mobile {
    display: none;
}


/* =========================================================
   PC VERSION
========================================================= */

.intro01-pc {
    display: block;
    width: 100%;
}


/* PC 서브 배너 */

.intro01-pc-visual {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.intro01-pc-visual img {
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto;
}


/* 원본 상단 여백 50px */

.intro01-pc-top-space {
    height: 50px;
}


/* PC 제목 */

.intro01-pc-title {
    width: 100%;

    font-size: 30px !important;
    line-height: 1.5 !important;
    font-weight: normal !important;
    letter-spacing: -0.8px;
    color: #000 !important;
    text-align: center;
}


/* 원본 제목 아래 여백 30px */

.intro01-pc-title-space {
    height: 30px;
}


/* 원본 주석 처리 이미지 */

.intro01-pc-greeting-image {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro01-pc-greeting-image img {
    display: block;

    width: 1200px;
    height: 500px;
    margin: 0 auto;
}


/* 원본 콘텐츠 위 여백 50px */

.intro01-pc-content-space {
    height: 50px;
}


/* PC 콘텐츠 */

.intro01-pc-content {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.intro01-pc-content > table {
    width: 1200px;
    margin: 0 auto;
    table-layout: fixed;
}

.intro01-pc-content td {
    padding: 0;
}

.intro01-pc-description {
    margin: 0;
    padding: 0;

    font-size: 20px !important;
    line-height: 30px !important;
    font-weight: 500 !important;
    letter-spacing: -0.5px;
    color: #000 !important;
    text-align: center;
    word-break: keep-all;
}

.intro01-pc-description img {
    display: inline-block;
    width: auto;
    height: auto;
    vertical-align: middle;
}


/* 원본 하단 여백 80px */

.intro01-pc-bottom-space {
    height: 80px;
}


/* =========================================================
   중간 PC 화면 대응
========================================================= */

@media screen and (min-width: 769px) and (max-width: 1240px) {

    .intro01-pc-content {
        width: calc(100% - 40px);
    }

    .intro01-pc-content > table,
    .intro01-pc-content > table > tbody > tr > td > table {
        width: 100%;
    }

}


/* =========================================================
   MOBILE VERSION
========================================================= */

@media screen and (max-width: 768px) {

    .intro01-pc {
        display: none;
    }

    .intro01-mobile {
        display: block;
        width: 100%;
    }


    /* 모바일 배너 */

    .intro01-mobile-visual {
        width: 100%;
        overflow: hidden;
        text-align: center;
    }

    .intro01-mobile-visual img {
        display: block;

        width: 100%;
        height: auto;
        margin: 0 auto;
    }


    /* 원본 상단 여백 20px */

    .intro01-mobile-top-space {
        height: 20px;
    }


    /* 모바일 제목 */

    .intro01-mobile-title {
        width: 100%;

        font-size: 18px !important;
        line-height: 1.5 !important;
        font-weight: normal !important;
        letter-spacing: -0.4px;
        color: #000 !important;
        text-align: center;
    }


    /* 원본 제목 아래 여백 20px */

    .intro01-mobile-title-space {
        height: 20px;
    }


    /* 모바일 콘텐츠 */

    .intro01-mobile-content {
        width: 100%;
        text-align: center;
    }

    .intro01-mobile-content > table {
        width: 95%;
        margin: 0 auto;
        table-layout: fixed;
    }

    .intro01-mobile-content td {
        padding: 0;
    }

    .intro01-mobile-description {
        font-size: 14px !important;
        line-height: 22px !important;
        font-weight: 300 !important;
        letter-spacing: -0.35px;
        color: #000 !important;
        text-align: left;
        vertical-align: top;
        word-break: keep-all;
    }

    .intro01-mobile-description p {
        margin: 0;
        padding: 0;

        font-size: 14px !important;
        line-height: 22px !important;
        font-weight: 300 !important;
        color: #000 !important;
        text-align: left;
    }

    .intro01-mobile-description img {
        display: inline-block;
        width: auto;
        height: auto;
        vertical-align: middle;
    }


    /* 원본 하단 여백 20px */

    .intro01-mobile-bottom-space {
        height: 20px;
    }

}