/**************************************************************/
/*								                              */
/*  Design ezinc     			                              */
/*  Date : 2025-02-26	                                      */
/*      				         			                  */
/**************************************************************/

@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');



/* ============================ [ common ] ============================ */
h1, h4, h5, p, ul, li {
    padding: 0;
    margin: 0;
}

ul, li {
    list-style: none;
}

.pb-20 {
    padding-bottom: 16px !important;
}

.b-500 {
    font-weight: 500;
}

.b-700 {
    font-weight: 700;
}

.blind {
    display: none;
}

/* ============================ [ page - privacy ] ============================ */
body {
    background: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #111113;
    padding: 0 40px;
    letter-spacing: -0.5px;
}

.inner {
    width: 1280px;
    margin: 0 auto;
}

h1 {
    font-size: 32px;
    padding: 60px 0;
    text-align: center;
}

.div-line {
    background: #f2f7ff;
    border: 1px solid #e9f1ff;
    padding: 32px;
    border-radius: 10px;
}

.div-line p {
    color: #0246ab;
    font-weight: 500;
}

.list-privacy {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 64px 0;
}

h4 {
    position: relative;
    width: fit-content;
    font-size: 20px;
    padding-bottom: 8px;
}

h4::after {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(74, 127, 247, 0.3);
    right: -8px;
    top: -4px;
}

.div-exp {
    color: #4B5563;
    margin-top: 16px;
    padding-left: 24px;
}

li .div-exp:last-child {
    margin-bottom: 16px;
}

.div-exp h5 {
    position: relative;
    font-size: 16px;
    margin-bottom: 8px;
}

.div-exp h5::before {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #555;
    left: -10px;
    top: calc(50% - 2px);
}

.txt-emp {
    font-weight: 700;
    color: #111113;
}

table {
    border-top: 2px solid #363636;
    border-bottom: 1px solid #dae2e6;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 16px 24px;
}

th {
    background: #f9fdff;
    border-bottom: 1px solid #dae2e6;
    padding: 16px 40px;
    text-align: center;
}

td {
    padding: 4px 40px;
}

tr:first-child td {
    padding-top: 16px;
}

tr:last-child td {
    padding-bottom: 16px;
}

tr *:first-child {
    border-right: 1px solid #dae2e6;
}



/* ============================ [ mediaquery ] ============================ */
@media screen and (max-width: 1360px) {
    .inner {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    table {
        width: 100%;
        margin: 16px 0;
        font-size: 13px;
    }
    
    th, td {
        padding-left: 12px;
        padding-right: 12px;
    }
}

