@charset "UTF-8";
/* 작성자 : 디자인글꼴 2023-09 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  vertical-align: baseline;
  border: 0;
  padding: 0;
  margin: 0;
}

html,
body {
  height: 100%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 480px) {
  html,
  body {
    letter-spacing: 0;
  }
}

div, section, article {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

dl, dt, dd {
  margin-bottom: 1.6rem;
}
dl:last-child, dt:last-child, dd:last-child {
  margin-bottom: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

fieldset, img {
  border: 0 none;
}

dl, ul, ol, menu, li {
  list-style: none;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

input, select, button {
  vertical-align: middle;
}

input[type=submit],
label {
  cursor: pointer;
}

button {
  border: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

textarea {
  vertical-align: top;
  overflow: auto;
  padding: 20px;
}
@media (max-width: 480px) {
  textarea {
    padding: 5px;
  }
}

address, em {
  font-style: normal;
}

img {
  border: none;
  max-width: 100%;
}

select::-ms-expand {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}
table th {
  text-align: center;
  vertical-align: middle;
}

caption {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  font-size: 1px;
  line-height: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

/************************************************************************************/
/************************************ 공통 Class ************************************/
/************************************************************************************/
/* 숨기기 */
.none-visible {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  font-size: 1px;
  line-height: 0;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  margin: -1px;
  padding: 0;
  border: 0;
}

/* 한줄말줄임 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

/* 여러줄 말줄임 (3줄기준) */
.multi-ellipsis {
  width: 100%;
  height: 3.5em;
  white-space: normal;
  line-height: 120%;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* float clear */
.clear::after {
  content: "";
  display: block;
  clear: both;
}
