/* --------------------

1¹øÂ°·Î È£Ãâ

ÀÌ ÆÄÀÏÀº °¢ ÇÁ·ÎÁ§Æ®¸¶´Ù º¯°æ¾øÀÌ °íÁ¤ÀûÀ¸·Î ¾µ °øÅë css ÀÔ´Ï´Ù.
º¯°æ¾øÀÌ °øÅëÀûÀ¸·Î ¾µ °ªµéÀº ÀÌ°÷¿¡ ÀÛ¼ºÇØÁÖ¼¼¿ä.

±âº»°ªÀ¸·Î ¼³Á¤µÈ°ÍÀº

font-family: 'Noto Sans KR', sans-serif;
color: #333;
line-height: 100%;
font-weight: normal;
font-size: 16px;
line-height: 100%;
letter-spacing: -0.5px;

ÀÔ´Ï´Ù.

°øÅëÀûÀÎ º¯°æ»çÇ× ¹× ¿À·ù¼öÁ¤ÀÌ ÀÖÀ»¶§´Â
ÇöÀç ÆÄÀÏÀÎ reset.css¿¡ ÀÛ¼ºÇØÁÖ¼¼¿ä.

ÃÖÁ¾ ¼öÁ¤ÀÏÀÚ : 21.03.04, 13:05
-------------------- */

body, html{
    box-sizing: border-box;
}
body{
    font-weight: normal;
    text-decoration: none;
    font-style: normal;
    font-size: 16px;
    color: #1c1c1c;
}
*{
    margin: 0;
    padding: 0;
    border: 0;
    word-break: keep-all;
    vertical-align: baseline;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 100%;
    outline: none;
    letter-spacing: -0.5px;
}
span{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
h1, h2, h3, h4, h5, h6{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* ------------------------------
small, em, i, b, strong, u µî ¿¡µðÅÍ »ç¿ë½Ã ±ÛÀÚ °ü·Ã
½ºÅ¸ÀÏ ¹ÌÀû¿ë ¹æÁö¸¦ À§ÇÏ¿© body, *¿¡¼­ ²¨³»°í µû·Î ÀÛ¼ºÇÔ.
º»¹®¿¡ À§ ÅÂ±×µéÀ» »ç¿ë ÇÒ °æ¿ì ctm ¼Ó¼º Ãß°¡ÇØ¼­ »ç¿ë

²À! ¿¡µðÅÍ·Î ÀÛ¼ºµÈ ³»¿ëÀÌ ¾Èµé¾î°¡´Â °´Ã¼¿¡¸¸ »ç¿ëÇÏ¼¼¿ä
------------------------------ */
.ctm{
    font-weight: inherit;
    font-family: inherit;
    color: inherit;
    font-style: inherit;
    text-decoration: none;
    font-size: inherit;
}

ol, ul, dl {
    list-style: none;
    outline: none;
}
li{
    list-style: none;
}
table{
    border-spacing: 0;
    border-collapse: collapse;
    outline: none;
}
input, select, textarea, button{
    box-sizing: border-box;
}
input[type=button],
input[type=submit]{
    border: none;
    background: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    outline: none;
    cursor: pointer;
}
::placeholder{
    font-weight: inherit;
    color: #DDD;
    font-size: inherit;
}
button, a{
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px;
    background: url(/html/asset/img/select_arrow.png) no-repeat 98.5% 50%;
    /* background: url(/html/img/select_arrow2.png) no-repeat 98.5% 50%; */
    padding-left:15px;
}
select::-ms-expand {display:none}
.hidden{
    position: fixed;
    left: -100000px;
}
.clearfix::after{
    content: "";
    clear: both;
    display: block;
}
.clear{
    clear: both;
}
blockquote, q {
    quotes: none;
    outline: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
    outline: none;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
    outline: none;
}
a{
    text-decoration: none;
    outline: none;
}
input {
    /*-webkit-appearance: none;*/
    -webkit-border-radius: 0;
    font-size: inherit;
}
input:focus{
    outline: none;
}
textarea{
    resize: none;
    outline: none;
}
input[type=submit], input[type=button]{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
button[type=submit], button[type=button]{
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}