/*nomalize*/
* {
    box-sizing: border-box;
    /* scroll-behavior: smooth; */
}
html {
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
}
.serif {
    font-family: 'Noto Serif KR', serif;
}
.enfont {
    font-family: 'Roboto', sans-serif;
}
body {
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.center {
    width: 1440px;
    margin: 0 auto;
}
a {
    color: #000;
    text-decoration: none;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    list-style: none;
}
img {
    vertical-align: middle;
    max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
.m_con {
    display: none;
}
/*mobile*/
@media screen and (max-width: 767px) {
    .center {
        width: 360px !important;
    }
    .m_con {
        display: block;
    }
    .pc_con {
        display: none;
    }
}
