@charset "utf-8";

@font-face {
    font-family: 'Noto Sans KR';
    font-display: auto;
    font-style: normal;
    font-weight: 300;
    src:  url('../font/NotoSansKR-Light.woff2') format('woff2'),
          url('../font/NotoSansKR-Light.woff') format('woff'),
          url('../font/NotoSansKR-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    src:  url('../font/NotoSansKR-Regular.woff2') format('woff2'),
          url('../font/NotoSansKR-Regular.woff') format('woff'),
          url('../font/NotoSansKR-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    src:  url('../font/NotoSansKR-Medium.woff2') format('woff2'),
          url('../font/NotoSansKR-Medium.woff') format('woff'),
          url('../font/NotoSansKR-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-display: auto;
    font-style: bold;
    font-weight: 700;
    src:  url('../font/NotoSansKR-Bold.woff2') format('woff2'),
          url('../font/NotoSansKR-Bold.woff') format('woff'),
          url('../font/NotoSansKR-Bold.otf') format('opentype');
}

* {
    font-family: 'Noto Sans KR', 'sans-serif';
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
  
body, html {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-overflow-scrolling: auto;
}

a, blockquote, p, span {
    font-weight: 400;
}
  
dl, dt, dd {
    margin: 0;
}
    
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0;
    color: #000;
    line-height: 1.3;
}
  
button, div, p, ul, ol {
    margin: 0;
    padding: 0;
    color: #000;
    outline: none;
}

span {
    position:relative;
}
  
article, aside, figure, footer, header, main, nav, section {
    display: block;
}
  
dl, dt, dd {
    margin: 0;
    padding: 0;
}
  
li {
    list-style-type: none;
}
  
a, img {
    outline: none;
}
  
button {
    background: none;
    border: 0;
    cursor: pointer;
}
  
a:link, a:visited, a:focus, a:hover, a:active {
    text-decoration: none;
    color: #333;
}
  
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
  
textarea {
    padding: 0;
    border: 0;
    background: none;
    width: 100%;
}
  
input, textarea {
    appearance: none;
    resize: none;
    outline: none;
}
  
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"] {
    display: block;
    box-sizing: border-box;
    background-color: transparent;
}
  
img, input[type="image"] {
    border-width: 0;
    height: auto;
    max-width: 100%;
}
  
input[type="text"]::-ms-clear {
    display: none;
}
  
input[type="number"] {
    -moz-appearance:textfield;
}
  
input::placeholder,
textarea::placeholder {
    text-align: left;
    color: #bbb;
}
  
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

select::-ms-expand {display:none}
  
.clearfix::after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
    width: 0;
    height: 0;
    font-size: 0;
}
  
.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis_any {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.4;
    height: auto;
    word-wrap: break-word; 
    display: -webkit-box; 
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
 
.hide {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    visibility: hidden
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type='number'] {
  -moz-appearance: textfield;
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* Disable tap highlight */
}

input,
textarea,
select,
button {
    outline: none;
    /* Remove default outline */
    -webkit-tap-highlight-color: transparent;
    /* Make tap highlight transparent */
    -webkit-touch-callout: none;
    /* Disable callout */
    -webkit-user-select: none;
    /* Disable text selection */
    -webkit-box-shadow: none;
    /* Remove box shadow */
    box-shadow: none;
    /* Remove box shadow */
}