html{
    font-family: 'Pretendard', sans-serif;
    font-size: var(--basic-font-pc);
}
main{
    min-height: 60vh;
}
h1{
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
}
h2{
    font-size: var(fs-h2);
    font-weight: var(--fw-bold);
}
h3{
    font-size: var(fs-h3);
    font-weight: var(--fw-bold);
}
h4{
    font-size: var(fs-h4);
    font-weight: var(--fw-bold);
}
p{
    line-height: 140%;
}
.bd2{
    font-size: var(--fs-bd2);
}
.de{
    font-size: var(--fs-det);
}
.common-frame{
    width: 1440px;
    margin: 0 auto;
}
.mo{
    display: none;
}
.pad{
    display: none;
}
.pc{
    display: block;
}


::-webkit-scrollbar{
    width: 5px;
    height: 3px;
}
::-webkit-scrollbar-thumb{
    background: #fff;
}
::-webkit-scrollbar-track{
    background-color: #333;
}

@media (max-width:1440px){
    html{
        font-size: var(--basic-font-pad);
    }
    .common-frame{
        width: auto;
        margin: 0 2rem;
    }
    .pc{
        display: none;
    }
    .pad{
        display: block;
    }
    .mo{
        display: none;
    }
}

@media (max-width:768px){
    html{
        font-size: var(--basic-font-mobile);
    }
    .common-frame{
        width: auto;
        margin: 0 1rem;
    }
    .pc{
        display: none;
    }
    .pad{
        display: none;
    }
    .mo{
        display: block;
    }
}
