@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.5/dist/web/static/pretendard-jp.css");

*{
    box-sizing: border-box;
    font-family: "Pretendard JP", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Hiragino Sans", "Apple SD Gothic Neo", Meiryo, "Noto Sans JP", "Noto Sans KR", "Malgun Gothic", Osaka, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-feature-settings: "ss05";
    border-collapse : collapse;
}
::-moz-selection{
    background: black;
    color:  white;
}
::selection{
    background: black;
    color: white;
}
body{
    overflow: hidden;
}
select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
a{
    display: inline-block;
    cursor: alias;
}
a:link{
    color: black;
    text-decoration: none;
}
a:visited{
    color: black;
    text-decoration: none;
}

.titleTxt{
    font-size: 1.1rem;
    line-height: 1.3em;
    white-space: nowrap;
}

.padding{
    padding: 0.8em;
}

.bderRightSolid{
    border-right: 1px solid black;
}

.bderRightDashed{
    border-right: 1px dashed black;
}

.bdBottomSolid{
    border-bottom: 1px solid black;
}

.bderBottomDashed{
    border-bottom: 1px dashed black;
}

.bderTopDashed{
    border-top: 1px dashed black;
}

.clickAble{
    /* cursor: alias; */
    transition: 0.2s;
}
.clickAble:hover{
    /* border-color: white; */
    background-color: black;
    color: white;
}

.colsWx1{
    width: calc(100% / 10);
}
.colsWx2{
    width: calc(100% / 10 * 2);
}
.colsWx6{
    width: calc(100% / 10 * 6);
}

#wrap{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.header{
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
}

.title{
    display: flex;
    align-items: center;
    height: 2.5rem;
    float: left;
    cursor: row-resize;
}

.cols{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    width: calc(100%);
    height: calc(100% - 7.5rem);
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.cols::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.listBlock{
    width: 100%;
    height: 3.5rem;
    transition: 0.5s;
}

.listBlock-expension{
    height: 10rem;
}
.listBlock-expension .listBlockItem p{
    white-space: normal;
}

.listBlockItem{
    display: flex;
    align-items: center;
    height: 100%;
    float: left;
    cursor: alias;
}
.listBlockItem:nth-of-type(3n){
    cursor: pointer;
}
.listBlockItem p, .listBlockItem a{
    line-height: 1.52em;
    word-spacing: -0.05em;
    word-break: keep-all;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 비상용 팝업 */

.popup{
    position: absolute;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
}

.popup[data-popup="on"]{
    display: flex;
}

.popup[data-popup="off"]{
    display: none;
}

.popupArea{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80%;
    height: 80%;
    border: 1px solid black;
    background-color: white;
}

.popupArea a{
    text-decoration: underline;
    text-underline-offset: 5px;
}

.popupArea p{
    font-size: 2rem;
    line-height: 2.8rem;
    word-break: keep-all;
    text-align: center;
}

.popupArea p:last-child{
    font-size: 1rem;
    line-height: 1rem;
    color: dimgray;
}

@media screen and (min-width: 740px){
    .header .titleTxt::after{
        content: "Kaywon University of Art & Design - Visual Communication Design - Web Hub";
    }
}

@media screen and (max-width: 740px) {
    .header{
        height: 4rem;
        background-color: white;
    }
    .header .titleTxt{
        content: "KUAD - Visual Communication Design - Web Hub";
        font-size: 0.8rem;
    }
    .colsWx1{
        width: calc(100% / 5);
    }
    .colsWx2{
        width: calc(100% / 5 * 3);
    }
    .colsWx6{
        width: calc(100%);
        display: none;
    }
    .cols{
        height: calc(100% - 6.5rem);
    }
    .listBlock-expension{
        height: 3.5rem;
    }

    .popupArea p{
        font-size: 1rem;
        line-height: 1.66rem;
    }

    .popupArea p:last-child{
        font-size: 0.7rem;
    }
}