@charset "UTF-8";

  
  * {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  html, body, body div, span, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
  small, strong, var, b, i, dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: inherit;
    color: currentColor;
    line-height: 1.5;
    vertical-align: baseline;
    word-break: keep-all;
    word-wrap: break-word;
    -ms-overflow-style: scrollbar;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  header, footer, section, article, aside, nav, hgroup, details, menu, figure, figcaption {
    display: block;
  }
  
  html {
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
  }
  
  body {
    font-family: 'Pretendard', "Kopub Dotum", "Noto Sans KR", sans-serif;
    color: #222;
    font-size: 1rem;
    font-weight: normal;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  
  video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  img {
    max-width: 100%;
  }
  
  fieldset {
    min-inline-size: 100%;
  }
  
  table {
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  ul, ol {
    list-style: none;
  }
  
  input, textarea, select {
    font-family: inherit;
    color: #222;
    border: 0;
    border-radius: 0;
    outline-style: none;
  }
  
  label.hidden, .invisible, input.hidden {
    position: absolute;
    left: -9999px;
    font-size: 0;
    line-height: 0%;
    overflow: hidden;
  }
  
  /* 20220623 hwh - legend 제외 */
  caption {
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
  }
  
  /* 20220708 kys */
  em, address {
    font-style: normal;
  }
  
  a,
  button {
    display: inline-block;
    font-family: inherit;
    color: #222;
    text-decoration: none;
    /*outline-style:none;*/
    border: none;
    border-radius: 0;
    background: transparent;
    text-transform: none;
  }
  
  button {
    cursor: pointer;
  }
  
  button > span {
    position: relative;
  }
  
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 0 !important;
  }
  
  hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  sup {
    font-size: 0.6em;
    line-height: 1em;
  }
  
  sub {
    font-size: 0.5em;
    line-height: 1em;
  }
  
  /* input type=number 화살표 비노출 */
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
  }
  
  /* input x 버튼 제거 */
  input::-ms-clear,
  input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
  }
  
  input::-webkit-search-decoration,
  input::-webkit-search-cancel-button,
  input::-webkit-search-results-button,
  input::-webkit-search-results-decoration {
    display: none;
  }
  
  input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  input::-webkit-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input::-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input::-ms-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input::placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input::-webkit-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input::-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input:-ms-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  input:-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
    font-weight: 400;
  }
  
  select {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: transparent;
  }
  
  select::-ms-expand {
    display: none;
  }
  
  textarea {
    -webkit-appearance: none;
    resize: none;
  }
  
  textarea::-webkit-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea::-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea::-ms-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea::placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea::-webkit-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea::-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea:-ms-input-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  textarea:-moz-placeholder {
    color: rgba(110, 110, 110, 0.6);
  }
  
  input[type="checkbox"] {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  
  input[type="radio"] {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    background-image: none;
    width: auto;
    height: auto;
    margin-top: 0;
    background-size: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .swiper-button-next {
    right: 0;
  }
  
  .swiper-button-prev {
    left: 0;
  }