@font-face {
    font-family: 'score4';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'score7';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'score9';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'nanumRound';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --mainColor:#1B2547;
    --subColor:#2A58B4;
    --outlineColor:rgb(224, 224, 224);
}
*{
    font-family: nanumRound;
}
.cmWrap{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width:900px) {
        .cmWrap{
            width: 100%;
        }
    }
.cm_title{
    width:calc(80% - 100px);
    padding:50px;
    margin: 20px auto;
    
    background-color: white;
    border: 1px solid grey;
    border-radius: 40px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.cm_nav_wrap{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
}
.cm_nav_item{
    all: unset;
    padding: 6px 10px;
    color: white;
    background-color: var(--outlineColor);
    border-radius: 15px;
    cursor: pointer;
    transition:0.2s
}
.cm_nav_item:hover{
    background-color: var(--subColor);
    transition:0.2s
}
.cm_title > h2 {
    font-size: 40px;
    text-align: center;
    color:#1B2547;
}

.cm_dateWrap{
    text-align: right;
}
.versionList{
    /* width: 150px; */
    text-align: right;
    justify-self: flex-end;
    align-self: flex-end;
    border: 1px solid grey;
    border-radius: 10px;
    padding: 10px;
    background-color: aliceblue;
}
.cm_single_text{
    all: unset;
}
.cm_content{
    width: calc(80% - 100px);
    padding: 50px;
    background-color: white;
    border: 1px solid grey;
    border-radius: 40px;
}

@media (max-width:900px) {
    .cm_title,
    .cm_content{
        width: calc(95% - 20px);
        padding: 10px;
        border-radius: 10px;
    }
    .cm_title > h2{
        font-size: 24px;
    }
}

.cm_content > h3 {
    font-size: 18px;
    padding-top: 50px;
    color: #1B2547;
}

.cm_content > ol, p {
    padding-left: 20px;
}
li {
    list-style: decimal!important;
    padding: 5px;
}
.privacy_wrap{
    margin: 15px 0;
    width: calc(100% - 50px);
    padding: 10px;
    padding-left: 30px;
    list-style-type: disc;
    background-color: rgb(223, 233, 243);
    border: 1px solid rgb(198, 202, 202);
    border-radius: 10px;
}
.privacy_wrap > li{
    list-style:upper-roman!important;
}


.privacy_table{
    width:100%;
    padding: 0!important;
    display: flex;
    margin: 20px 0;
    flex-direction: column;
    border: 1px solid var(--outlineColor);
}
.privacy_table_tr{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.privacy_table_th{
    all: unset;
    padding: 10px;
    width: 100%;
    text-align: center;
    border: 1px solid white;
    background-color: var(--outlineColor);
}
.privacy_table_td{
    all: unset;
    padding: 10px;
    border: 1px solid var(--outlineColor);
    width: 100%;
    text-align: center;
}