@charset "utf-8";

/* 초기화 */
* {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll
}

html::-webkit-scrollbar {
  display: none;
}

html::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 10px
}

html::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 10px
}

html.noscr {
  overflow: hidden;
}

html.fixed {
  overflow-y: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 400;
  font-family: 'Pretendard', 'GmarketSans', sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  color: #000;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

table {
  border-collapse: collapse;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
  max-width: 100%;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: 'Pretendard', sans-serif;
  font-size: 1em
}

input[type="submit"] {
  cursor: pointer
}

button {
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  font-weight: 500;
  background: none;
}

figure {
  overflow: hidden
}

textarea,
select {
  font-family: 'Pretendard', sans-serif;
  font-size: 1em
}

select {
  margin: 0
}

p {
  margin: 0;
  padding: 0;
  word-break: keep-all
}

hr {
  display: none
}

pre {
  overflow-x: scroll;
  font-size: 1.1em
}

a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text],
input[type=password],
textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  -webkit-box-shadow: 0 0 5px #9ed4ff;
  -moz-box-shadow: 0 0 5px #9ed4ff;
  box-shadow: 0 0 5px #9ed4ff;
  border: 1px solid #558ab7 !important;
}

.placeholdersjs {
  color: #aaa !important
}