@charset "UTF-8";
@import "../font/pretendardvariable.css";
:root {
  --primary50: #f1f7fd;
  --primary100: #EBF4FF;
  --primary200: #CDDDF4;
  --primary300: #ADC7EC;
  --primary400: #83A9DF;
  --primary500: #598ACE;
  --primary600: #2A61B0;
  --primary700: #003594;
  --primary800: #002D6C;
  --primary900: #00254a;

  --blue: #3180F0;

  --gray50: #F8F9FA;
  --gray100: #EFF0F2;
  --gray200: #E3E4E7;
  --gray300: #CCCDD0;
  --gray400: #ACADB3;
  --gray500: #94969B;
  --gray600: #72777E;
  --gray700: #535A65;
  --gray800: #393942;
  --gray900: #1C1D22;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  line-height: 1;
  vertical-align: baseline;
  color: #535A65;
  -webkit-tap-highlight-color: transparent;
  font-family: "Pretendard Variable", "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Malgun Gothic", sans-serif;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

ol,
ul,
li {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  font-size: inherit;
  text-decoration: none;
  background: transparent;
  color: inherit;
  outline: transparent;
  cursor: pointer;
  -webkit-highlight: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  vertical-align: top;
}

button {
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  line-height: inherit;
  cursor: pointer;
  -webkit-highlight: none;
  -webkit-tap-highlight-color: transparent;
}

small {
  font-size: smaller;
}

input,
textarea,
select {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
  font-size: 100%;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

/* ie input스타일 */
input::-ms-check {
  display: none;
}

select::-ms-expand {
  display: none;
}

input[type="checkbox"] {
  display: none;
  cursor: pointer;
}

input[type="radio"] {
  display: none;
  cursor: pointer;
}

hr {
  width: 100%;
  height: 1px;
  background: #e7e7e9;
}