@charset "UTF-8";

:root {
  --padding: 100px 0 40px 0;

  --white: #fff;
  --white-op-7: rgba(255, 255, 255, 0.7);
  --white-op-5: rgba(255, 255, 255, 0.5);
  --black: #3a3a45;
  --black-op-8: rgba(58, 58, 69, 0.8);
  --black-op-3: rgba(58, 58, 69, 0.3);
  --black-op-1: rgba(58, 58, 69, 0.1);
  --black-op-08: rgba(58, 58, 69, 0.08);
  --black-ph: #aaa;
  --gray: #888;
  --po-black: #565d6f;
  --po-black-op-5: rgba(86, 93, 111, 0.5);
  --po-black-op-3: rgba(86, 93, 111, 0.3);
  --po-black-op-15: rgba(86, 93, 111, 0.15);
  --po-black-op-08: rgba(86, 93, 111, 0.08);

  --green: #41c990;
  --red: #f96753;
  --red-op-08: rgba(249, 103, 83, 0.08);
  --blue: #378ff6;
  --blue-op-08: rgba(55, 143, 246, 0.08);

  --font-36: 36px;
  --font-36-ls: -1.08px;
  --font-32: 32px;
  --font-32-ls: -0.96px;
  --font-20: 20px;
  --font-20-ls: -0.6px;
  --font-18: 18px;
  --font-18-ls: -0.54px;
  --font-16: 16px;
  --font-16-ls: -0.48px;
  --font-14: 14px;
  --font-14-ls: -0.42px;
  --font-13: 13px;
  --font-13-ls: -0.39px;
}

@media all and (max-width: 1100px) {
  :root {
    --font-36: 32px;
    --font-32: 28px;
    --font-28: 23px;
    --font-24: 20px;
  }
}
@media all and (max-width: 500px) {
  :root {
    --padding: 80px 0 40px 0;

    --font-36: 28px;
    --font-36-ls: -0.84px;
    --font-32: 24px;
    --font-32-ls: -0.72px;
    --font-20: 18px;
    --font-20-ls: -0.54px;
    --font-18: 16px;
    --font-18-ls: -0.48px;
    --font-16: 13px;
    --font-16-ls: -0.39px;
  }
}

::selection {
  background: #000;
  color: #fff;
}
::-moz-selection {
  background: #000;
  color: #fff;
}
html,
body {
  -webkit-font-smoothing: antialiased;
}
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  letter-spacing: "";
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  pointer-events: none;
  vertical-align: middle;
}
a,
button {
  all: unset;
  cursor: pointer;
  color: #424242;
  font-size: 16px;
  display: block;
  text-decoration: none;
  background: transparent;
  border: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "";
}
select:focus,
select:active {
  outline: 0;
}
select::-ms-expand {
  display: none;
}
input {
  font-family: "SUIT";
}
input::placeholder {
  font-family: "SUIT";
  font-weight: 400;
  color: var(--black-ph);
  font-size: 14px;
  letter-spacing: -0.42px;
}
textarea {
  resize: none;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
  border-style: none;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  font-family: "SUIT";
}
input:focus,
textarea:focus {
  outline: none;
}
input[type="checkbox"] {
  margin: 0;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*데스크탑에서 스크롤바 가리기
-------------------------------------------------------------------------------------
::-webkit-scrollbar-thumb:vertical{height:0px;}
::-webkit-scrollbar-thumb:horizontal{width:0px;}
::-webkit-scrollbar{width:0; height:0;}*/
