@charset "utf-8";
@import url("variables.css");
@import url("https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Reset */
* {
  /* outline:0 !important; outline-color: black;*/
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
blockquote,
pre,
code,
address,
ul,
ol,
li,
menu,
nav,
section,
article,
aside,
dl,
dt,
dd,
table,
thead,
tbody,
tfoot,
label,
caption,
th,
td,
form,
fieldset,
legend,
hr,
input,
button,
textarea,
object,
figure,
figcaption {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
}
html {
  -webkit-touch-callout: none; /* -webkit-user-select:none; */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  width: 100%;
  background: #fff;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  word-wrap: break-word;
  word-break: break-all;
  /* overflow-x: hidden; */
}
body,
input,
select,
textarea,
button {
  border: none;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  font-weight: 400;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 150%;
}
ul,
ol,
li {
  list-style: none;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}
img,
fieldset {
  border: 0;
}
address,
cite,
code,
em {
  font-style: normal;
  font-weight: 400;
}
label,
img,
input,
select,
textarea,
button {
  vertical-align: middle;
}
.hide,
caption,
legend {
  line-height: 0;
  font-size: 0.063rem;
  overflow: hidden;
}
hr {
  display: none;
}
main,
header,
section,
nav,
footer,
aside,
article,
figure {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2em;
}

.clear {
  clear: both;
}
.clear:after {
  content: "";
  display: block;
  clear: both;
}
.noto {
  font-family: var(--font-sub);
}

/* Form */
input::-webkit-input-placeholder {
  color: #999;
  font-size: inherit;
}

input[type="tel"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"] {
  height: 36px;
  padding: 0 10px;
  border: solid 1px #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
}

input[type="tel"][readonly],
input[type="text"][readonly],
input[type="password"][readonly],
input[type="email"][readonly],
input[type="search"][readonly],
input[type="tel"][disabled],
input[type="text"][disabled],
input[type="password"][disabled],
input[type="search"][disabled],
input[type="email"][disabled] {
  background: #f5f5f5;
  border-color: #c0c0c0;
  color: #666;
}
textarea[readonly],
textarea[disabled] {
  color: #666;
}
input[type="submit"] {
  border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 0px 0px 0px;
  -webkit-border-radius: 0px 0px 0px 0px;
}

input[type="checkbox"] {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  border: solid 1px #d4d4d4;
  background: url("../img/common/checkbox.png") no-repeat center center;
  background-size: 16px auto !important;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}
input[type="checkbox"]:checked {
  background: var(--color-form-checked) url("../img/common/checkbox_on.png")
    no-repeat center center;
  background-size: 16px auto !important;
  border-color: var(--color-form-checked);
}
input[type="checkbox"] + label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  cursor: pointer;
}

input[type="radio"] {
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  border: solid 1px #999999;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
input[type="radio"]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #999;
  position: absolute;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
input[type="radio"] + label {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  cursor: pointer;
}

input[type="file"] {
}

select {
  height: 36px;
  padding-left: 8px;
  border: solid 1px #ddd;
  cursor: pointer;
  padding-right: 22px;
  background: url("../img/common/select_arrow.png") no-repeat center right 6px;
  background-size: auto 6px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
}

textarea {
  resize: none;
  display: block;
  width: 100%;
  border: solid 1px #ddd;
  padding: 10px;
}
button {
  cursor: pointer;
}

@media (max-width: 991px) {
  body,
  input,
  select,
  textarea,
  button {
    font-size: 0.833rem;
  }
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
.slick-slide:focus-visible,
*[tabindex]:focus-visible {
  outline: var(--focus) solid 2px;
  outline-offset: 0px;
}