@charset "UTF-8";

/*초기화*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea,
select {
  border: 0;
  font-size: 100%;

  /* 폰트 */
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  color: #262626;

  /* 폰트 */
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: #222;
}
select,
input:focus {
  outline: 0;
}
button {
  border: 0;
  outline: 0;
  cursor: pointer;
}
input[type="radio"] {
  cursor: pointer;
}
/*기본폰트
 pretendard */
@font-face {
	font-family:'pretendard';
	font-style: normal;
	font-weight: 100;
	src: url(/sppartners/fonts/Pretendard-Light.woff) format('woff');
}
@font-face {
	font-family:'pretendard';
	font-style: normal;
	font-weight: 400;
	src: url(/sppartners/fonts/Pretendard-Regular.woff) format('woff');
}
@font-face {
	font-family:'pretendard';
	font-style: normal;
	font-weight: 500;
	src: url(/sppartners/fonts/Pretendard-Medium.woff) format('woff');
}
@font-face {
	font-family:'pretendard';
	font-style: normal;
	font-weight: 600;
	src: url(/sppartners/fonts/Pretendard-Bold.woff) format('woff');
}

/*스크롤바디자인*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background-color: #f5f5f5;
  border-radius: 10px;
}
