/**************************/
/*  Name: SeongNam
/*  PART: LAYOUT
/*  Version: 1.0
/*  Author: sm
/**************************/


/***** layout *****/
#wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
}/***** layout *****/

#wrap2 {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
}

#contents {
    position: relative;
    width: 100%;
    min-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 35px 50px 0 50px;
    box-sizing: border-box; /* overflow-x:hidden; overflow-y:hidden; */
}

/***** 안내 페이지 *****/
.gnb1 {
    position: relative;
    width: 100%;
    height: 45px;
    z-index: 100;
}

.gnb1 > ul > li {
    float: left;
}

.gnb1 > ul > li:nth-child(1) {
    width: 100%;
    height: 45px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: .02em;
    line-height: 44px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    background: #000000;
}

.gnb1 > ul > li:nth-child(1) > span {
    display: inline-block;
    float: left;
    position: absolute;
    left: 0;
    width: 50px;
    height: 45px;
    margin: 0px 0 0 0px;
    text-indent: -9999px;
    background: url(/assets/images/btn_back.png) no-repeat 50% 50%;
    background-size: 13px auto;
    cursor: pointer;
}

/***** GNB *****/
.gnb1 {
    position: relative;
    width: 100%;
    height: 45px;
    z-index: 100;
}

.gnb1 > ul > li {
    float: left;
}

.gnb1 > ul > li:nth-child(1) {
    width: 100%;
    height: 45px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: .02em;
    line-height: 44px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    background: #000000;
}

.gnb1 > ul > li:nth-child(1) > div {
    display: inline-block;
    float: left;
    position: absolute;
    left: 0;
    width: 50px;
    height: 45px;
    margin: 0px 0 0 0px;
    text-indent: -9999px;
    background: url(/assets/images/btn_back.png) no-repeat 50% 50%;
    background-size: 13px auto;
    cursor: pointer;
}

.menual {
    width: 100%;
    height: 100%;
    padding: 0 25px;
    text-align: center;
    overflow-x: hidden;
    overflow-y: scroll;
}

.menual > img {
    width: 100%;
    margin: -14% 0 85px 0;
}


/***** 스크롤바 *****/
/*.scroll { position:relative; width:98%; height:555px; margin:0 auto; overflow:hidden; } */
.scroll {
    width: 98%;
    height: 555px;
    overflow-y: scroll;
    border: 0px solid green;
    position: relative;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 5, 16, 0.3);
    border-radius: 20px;
}








