/* 기본 폰트 */
@font-face {
  font-family: 'Pretendard', sans-serif;
  src: url('/resources/fonts/woff2/Pretendard-Regular.woff2') format('woff2'),
    url('/resources/fonts/woff/Pretendard-Regular.woff') format('woff'),
    url('/resources/fonts/otf/Pretendard-Regular.otf') format('opentype'),
    url('/resources/fonts/ttf/Pretendard-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard', sans-serif;
  src: url('/resources/fonts/woff2/Pretendard-Medium.woff2') format('woff2'),
    url('/resources/fonts/woff/Pretendard-Medium.woff') format('woff'),
    url('/resources/fonts/otf/Pretendard-Medium.otf') format('opentype'),
    url('/resources/fonts/ttf/Pretendard-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard', sans-serif;
  src: url('/resources/fonts/woff2/Pretendard-SemiBold.woff2') format('woff2'),
    url('/resources/fonts/woff/Pretendard-SemiBold.woff') format('woff'),
    url('/resources/fonts/otf/Pretendard-SemiBold.otf') format('opentype'),
    url('/resources/fonts/ttf/Pretendard-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Pretendard', sans-serif;
  src: url('/resources/fonts/woff2/Pretendard-Bold.woff2') format('woff2'),
    url('/resources/fonts/woff/Pretendard-Bold.woff') format('woff'),
    url('/resources/fonts/otf/Pretendard-Bold.otf') format('opentype'),
    url('/resources/fonts/ttf/Pretendard-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* 강조 폰트 */
@font-face {
  font-family: 'SuseongDotum';
  src: url('/resources/fonts/woff2/SuseongDotum.woff2') format('woff2'),
    url('/resources/fonts/woff/SuseongDotum.woff') format('woff'),
    url('/resources/fonts/otf/SuseongDotum.otf') format('opentype'),
    url('/resources/fonts/ttf/SuseongDotum.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Pretendard', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --color-primary: #0066ab;
  --color-secondary: #00c0f3;
  --color-black: #212121;
  --color-white: #ffffff;

  --color-gray800: #515151;
  --color-gray700: #717171;
  --color-gray600: #919191;
  --color-gray500: #c0c0c0;
  --color-gray400: #d2d2d2;
  --color-gray300: #eaeaea;
  --color-gray200: #f0f0f0;
  --color-gray100: #f5f5f5;

  --color-red: #ef402f;
  --color-blue: #2582ec;
}

html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1 !important;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: var(--color-black);
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  line-height: 1 !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html,
body {
  height: 100%;
}

main {
  flex: 1;
}

.no-scroll {
  overflow: hidden !important;
}

a,
abbr,
acronym,
address,
b,
blockquote,
big,
body,
caption,
cite,
code,
dd,
del,
dfn,
dl,
div,
dt,
em,
embed,
fieldset,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
html,
i,
iframe,
img,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
u,
ul,
var {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img,
input,
button,
select,
textarea {
  vertical-align: middle;
}

img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  /* text-align: left; */
  font-weight: normal;
}

caption {
  overflow: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

/* icons */
.material-icons-outlined {
  font-size: 24px;
}

/* swiper */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
  content: none;
}

.swiper-pagination {
  position: relative;
  text-align: inherit;
}
