@charset "UTF-8";
/* reset css */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Pretendard Variable", "Pretendard", "Gmarket Sans", "돋움", Dotum, Helvetica, "Apple SD Gothic Neo", Sans-serif;
    color: var(--text-color-primary, #1A1F27);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.875rem;
    scroll-behavior: smooth;
}

div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, legend, button {
    margin: 0;
    padding: 0;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

form, fieldset {
    display: block;
}

form, fieldset, img {
    border: none;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

/*
hr {
  position: absolute;
  z-index: -1;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  font: 0/0 Arial;
  font-size: 1px !important;
  text-indent: -9999px !important;
  clip: rect(0 0 0 0);
}
*/
img {
    max-width: 100%;
}

p, span, a, button {
    font: inherit;
    color: inherit;
}

a, button {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

a {
    text-decoration: none;
}

a:active {
    color: inherit;
    text-decoration: none;
}

p {
    color: inherit;
    font-size: 1rem;
}

span, strong {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

textarea {
    overflow: auto;
    resize: vertical;
}

/* opera 9 & below fix */
option {
    padding-right: 6px;
}

/* firefox fix */
legend {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
}

pre {
    word-wrap: break-word;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    word-break: keep-all;
    text-underline-offset: 0.22em;
}

input:where([type=text], [type=password], [type=email], [type=tel], [type=number], [type=date]),
select, button, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font-family: inherit;
    font-weight: normal;
    vertical-align: middle;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input:where([type=text], [type=password], [type=email], [type=tel], [type=number], [type=date]),
select, textarea {
    border: 1px solid #DCDCDC;
}

select {
    padding-right: 1.75rem !important;
    /* background-image: url(../images/ic_down_arrow_blue_select.svg); */
    background-position: calc(100% - 0.5rem) 50%;
    background-repeat: no-repeat;
    background-size: auto;
}

select::-ms-expand {
    display: none;
}

::-webkit-input-placeholder {
    font-family: inherit;
    color: #B1B1B1;
    font-weight: 300;
}

::-moz-placeholder {
    font-family: inherit;
    color: #B1B1B1;
    font-weight: 300;
}

:-ms-input-placeholder {
    font-family: inherit;
    color: #B1B1B1;
    font-weight: 300;
}

::-ms-input-placeholder {
    font-family: inherit;
    color: #B1B1B1;
    font-weight: 300;
}

::placeholder {
    font-family: inherit;
    color: #B1B1B1;
    font-weight: 300;
}