@charset "utf-8";


/* =========================================================
   INTRO03 BASE
========================================================= */

.intro03-page,
.intro03-page *,
.intro03-page *::before,
.intro03-page *::after {
    box-sizing: border-box;
}

.intro03-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background: #fff;
    color: #000;

    font-family:
        "GmarketSansMedium",
        sans-serif !important;
}

.intro03-page img,
.intro03-page div {
    font-family:
        "GmarketSansMedium",
        sans-serif !important;
}

.intro03-page img {
    vertical-align: top;
}

.intro03-mobile {
    display: none;
}


/* =========================================================
   PC VERSION
========================================================= */

.intro03-pc {
    display: block;
    width: 100%;
}


/* PC 상단 배너 */

.intro03-pc-visual {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.intro03-pc-visual img {
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto;
}


/* 원본 상단 여백 50px */

.intro03-pc-top-space {
    height: 50px;
}


/* PC 제목 */

.intro03-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 */

.intro03-pc-title-space {
    height: 30px;
}


/* PC 시설 이미지 */

.intro03-pc-image {
    width: 100%;
    text-align: center;
}

.intro03-pc-image img {
    display: inline-block;

    width: auto;
    max-width: 100%;
    height: auto;
}


/* 원본 이미지 아래 여백 20px */

.intro03-pc-image-space {
    height: 20px;
}


/* PC 시설명 */

.intro03-pc-caption {
    width: 100%;

    font-size: 20px !important;
    line-height: 28px !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    color: #000 !important;
    text-align: center;
}


/* 원본 시설명 아래 여백 20px */

.intro03-pc-caption-space {
    height: 20px;
}


/* 원본 하단 여백 80px */

.intro03-pc-bottom-space {
    height: 80px;
}


/* =========================================================
   MOBILE VERSION
========================================================= */

@media screen and (max-width: 768px) {

    .intro03-pc {
        display: none;
    }

    .intro03-mobile {
        display: block;
        width: 100%;
    }


    /* 모바일 상단 배너 */

    .intro03-mobile-visual {
        width: 100%;
        overflow: hidden;
        text-align: center;
    }

    .intro03-mobile-visual img {
        display: block;

        width: 100%;
        height: auto;
        margin: 0 auto;
    }


    /* 원본 상단 여백 20px */

    .intro03-mobile-top-space {
        height: 20px;
    }


    /* 모바일 제목 */

    .intro03-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;
    }


    /* 원본 제목 아래 여백 30px */

    .intro03-mobile-title-space {
        height: 30px;
    }


    /* 모바일 시설 이미지 */

    .intro03-mobile-image {
        width: 100%;
        text-align: center;
    }

    .intro03-mobile-image img {
        display: block;

        width: 95%;
        height: auto;
        margin: 0 auto;
    }


    /* 원본 이미지 아래 여백 20px */

    .intro03-mobile-image-space {
        height: 20px;
    }


    /* 모바일 시설명 */

    .intro03-mobile-caption {
        width: 100%;

        font-size: 20px !important;
        line-height: 28px !important;
        font-weight: 600 !important;
        letter-spacing: -0.4px;
        color: #000 !important;
        text-align: center;
    }


    /* 원본 시설명 아래 여백 20px */

    .intro03-mobile-caption-space {
        height: 20px;
    }


}