/* 기본 초기화 */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    color: inherit;
    text-decoration: inherit;
  }
  
  html {
    overflow-y: scroll;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #000;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  p {
    word-break: keep-all;
  }
  
  ul, ol, li, dl, dt, dd {
    list-style: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  img, fieldset, form {
    border: 0;
  }
  
  input, select, textarea, button {
    box-sizing: border-box;
    font-size: 1em;
  }
  
  input,
  button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
  }
  
  input:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  pre {
    overflow-x: scroll;
    font-size: 1.1em;
  }
  
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  
.mo_br {display:none;}

@media screen and (max-width:767px) {
.mo_br {display:block;}
.pc_br {display:none;}
}