@charset "utf-8";

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 100;
    src: url("../font/Pretendard-Thin.otf") format('opentype'),
         url("../font/Pretendard-Thin.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 300;
    src: url("../font/Pretendard-Light.otf") format('opentype'),
         url("../font/Pretendard-Light.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    src: url("../font/Pretendard-Regular.otf") format('opentype'),
         url("../font/Pretendard-Regular.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 500;
    src: url("../font/Pretendard-Medium.otf") format('opentype'),
         url("../font/Pretendard-Medium.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 600;
    src: url("../font/Pretendard-SemiBold.otf") format('opentype'),
         url("../font/Pretendard-SemiBold.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: bold;
    src: url("../font/Pretendard-Bold.otf") format('opentype'),
         url("../font/Pretendard-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 800;
    src: url("../font/Pretendard-ExtraBold.otf") format('opentype'),
         url("../font/Pretendard-ExtraBold.ttf") format('truetype');
}

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 900;
    src: url("../font/Pretendard-Black.otf") format('opentype'),
         url("../font/Pretendard-Black.ttf") format('truetype');
}

* {
    font-family: 'Pretendard', 'sans-serif';
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
  
body, html {
    width: 100%;
    height: 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"] {
    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
}