﻿body {
    margin: 0;
    padding: 0;
}



.landing_wrap {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}



    .landing_wrap .intro {
        background-color: #fff;
        width: 100%;
        display: flex;
        justify-content: center;
        position:relative;
    }

        .landing_wrap .intro a {
            position: absolute;
            display: block;
            width: 300px;
            height: 300px;
            top: 48%;
        }
            .landing_wrap .intro a.clickbox1 {
                left: 31.5%;
            }
            .landing_wrap .intro a.clickbox2 {
                 
            }
            .landing_wrap .intro a.clickbox3 {
                left: 57%;
            }



            .landing_wrap .intro img {
                width: 100%;
                max-width: 1920px;
            }

        .landing_wrap .intro .mo_view {
            display:none;
        }

    .landing_wrap .ctn {
        position: relative;
        background: #92774a;
        width: 100%;
        max-width: 1920px;
    }

.ctn .tap_box {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    padding: 7px;
    border-radius: 50px;
    gap: 20px;
    position: sticky;
    top: 10vh;
    background: #ffffffeb;
    box-shadow: 0 5px 10px 0px #00000012;
    margin: 30px auto 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
    .ctn .tap_box .tap_tit {
        display: block;
        width: 26%;
        padding: 7px 0;
        font-size: 22px;
        color: #a6a6a6;
        text-align: center;
        cursor: pointer;
    }
        .ctn .tap_box .tap_tit.active {
            color: #f2dc5d;
            background: #3b2a16;
            font-weight: 900;
            border-radius: 40px;
        }

.ctn_img {
    width: 100%;
}




/*미디어쿼리 시작*/
@media (min-width: 768px) and (max-width: 1024px) {
    .landing_wrap .bottom_ban {
        margin-bottom: 12vh;
    }
    .ctn_img img {
        width:100%;
    }

}

@media (max-width: 767px) {


    .landing_wrap .intro .pc_view {
        display: none;
    }
    .landing_wrap .intro .mo_view {
        display: block;
    }

    .landing_wrap .intro a {
        position: absolute;
        display: block;
        width: 25%;
        height: 11%;
        top: 48%;
    }

        .landing_wrap .intro a.clickbox1 {
            left: 10%;
        }

        .landing_wrap .intro a.clickbox2 {
        }

        .landing_wrap .intro a.clickbox3 {
            left: 65%;
        }


    .landing_wrap {
        margin-top: 0;
        background-color: #d9fdff;
    }

    .ctn .tap_box {
        padding: 5px;
        top: 9.8vh;
        width: 95%;
    }
        .ctn .tap_box .tap_tit {
            width: 30%;
            padding: 8px 0;
            font-size: 13px;
        }
    .ctn .ctn_img img {
        padding: 0;
        width: 100%;
    }

}
