@charset "UTF-8";

:root {
  --padding60: 60px 0;
  --padding100: 100px 0;
  --padding120: 120px 0;
  --padding200: 200px 0;
  --paddingT120B100: 120px 0 100px;
  --paddingTop20: 20px 0 0 0;

  --paddingVideoMain: 178px 0 100px;
  --paddingMain: 278px 0 200px;
  --paddingHeader: 0;
  --paddingFooter: 60px 0;

  --white: #fff;
  --black: #333;
  --gray: #ddd;
  --gray-400: #b7b7b7;
  --gray-500: #828282;
  --gray-600: #656565;
  --po: #80cbc4;
  --red: #f02020;
  --green: #06c755;

  --font-48: 48px;
  --font-48-ls: -1.44px;
  --font-36: 36px;
  --font-36-ls: -1.08px;
  --font-34: 34px;
  --font-34-ls: -1.02px;
  --font-28: 28px;
  --font-28-ls: -0.84px;
  --font-26: 26px;
  --font-26-ls: -0.78px;
  --font-24: 24px;
  --font-24-ls: -0.72px;
  --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;
}

@media all and (max-width: 1200px) {
  :root {
    --paddingHeader: 8px 0;

    --font-48: 36px;
    --font-36: 30px;
    --font-34: 29px;
    --font-28: 26px;
    --font-24: 22px;
  }
}
@media all and (max-width: 500px) {
  :root {
    --padding60: 40px 0;
    --padding100: 60px 0;
    --padding120: 60px 0;
    --padding200: 120px 0;
    --paddingT120B100: 60px 0;
    --paddingTop20: 16px 0 0 0;

    --paddingVideoMain: 88px 0 20px;
    --paddingMain: 152px 0 74px;
    --paddingHeader: 16px 0;

    --font-48: 28px;
    --font-48-ls: -0.84px;
    --font-36: 24px;
    --font-36-ls: -0.72px;
    --font-34: 24px;
    --font-34-ls: -0.72px;
    --font-28: 24px;
    --font-28-ls: -0.72px;
    --font-24: 20px;
    --font-24-ls: -0.6px;
    --font-20: 18px;
    --font-20-ls: -0.54px;
  }
}

::selection {
  background: var(--po);
  color: var(--white);
}
::-moz-selection {
  background: var(--po);
  color: var(--white);
}
* {
  box-sizing: border-box !important;
}
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;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
li {
  font-family: "Pretendard JP";
  line-height: 135%;
  color: var(--black);
  font-weight: 500;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: "";
  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 {
  cursor: pointer;
  color: inherit;
  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: "";
}
input::placeholder {
  font-family: "";
  font-weight: 900;
  color: #d4d4d4;
  font-size: 14px;
}
textarea {
  resize: none;
}
input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
  border-style: none;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  font-family: "";
}
input:focus,
textarea:focus {
  outline: none;
}
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;
}
