:root {
  --v-font-sans: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
  --v-font-serif: Gloock, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", serif;
  --v-font-regular: 400;
  --v-font-bold: 700;
  --v-font-black: 900;
}

.v-font-sans {
  font-family: var(--v-font-sans);
}

.v-font-serif {
  font-family: var(--v-font-serif);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--v-font-sans);
  font-size: 13px;
  font-weight: normal;
  color: #333;
  line-height: normal;
  letter-spacing: 0px;
}

dl,
dt,
dd,
pre,
form,
fieldset,
input,
select,
textarea,
p,
blockquote,
th,
td,
legend,
button {
  margin: 0;
  padding: 0;
}

form,
fieldset,
img,
button {
  border: 0 none;
}

table {
  width: 100%;
  min-width: 100%;
  max-width: none;
  table-layout: fixed;
  padding: 0;
  border: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

legend,
caption {
  overflow: hidden;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
}

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

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

img,
input,
select,
textarea {
  vertical-align: middle;
}

pre,
button,
input,
select,
textarea,
optgroup,
option {
  font: inherit;
}

textarea,
input {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
}

textarea::-webkit-scrollbar {
  width: 3px;
}
textarea::-webkit-scrollbar-thumb {
  background: #a5a5a5;
  border-radius: 3px;
}
textarea::-webkit-scrollbar-track {
  background: #fff;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1) !important;
  outline: none;
  color: inherit;
}

a:link,
a:hover,
a:active {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

button {
  overflow: visible;
  margin: 0;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  outline: none;
}

.ir {
  display: block;
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  z-index: -1;
  -moz-opacity: 0 !important;
  -khtml-opacity: 0 !important;
  opacity: 0 !important;
}

.ir.lb {
  width: 1px;
  height: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  outline: none;
}

.android a,
.android button,
.android input,
.android textarea,
.android select,
.ios a,
.ios button,
.ios input,
.ios textarea,
.ios select {
  outline: none;
}

.scroller {
  overflow: hidden !important;
}

label {
  background-color: transparent;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
label:focus, label:active, label:focus-within {
  background-color: transparent;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

input[type=checkbox],
input[type=checkbox] + label,
input[type=radio],
input[type=radio] + label {
  cursor: pointer;
  background-color: transparent;
}

input[type=checkbox],
input[type=radio] {
  outline: 0;
  border: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.noScroll {
  display: block;
  overflow: hidden !important;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.isScroll {
  display: block;
  overflow: hidden !important;
  height: 100%;
}

.noneScroll {
  display: block;
  overflow: hidden !important;
}

.ScrollEl {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}