@charset "UTF-8";
/* font */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
* {
  font-family: "Pretendard Variable", 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;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* 전체 페이지를 뷰포트 높이에 맞춰 flex 컨테이너로 만들기 */
html,
body {
  height: 100%;
  margin: 0;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 뷰포트 높이만큼 */
}

/* 콘텐츠가 늘어나면 flex가 푸시하고, 푸터는 밑에 고정 */
.site-content {
  flex: 1; /* 남은 영역 모두 차지 */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #22282d;
}

br {
  font-family: "dotum", sans-serif !important;
}

/* scroll btn */
.scrolled #top_btn {
  opacity: 1;
  pointer-events: auto;
}

#top_btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  color: #333;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 10;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}

button {
  cursor: pointer;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 1em;
}

.fs_55 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.29;
}

.fs_18 {
  font-size: 18px;
  font-weight: 700;
}

.fs_20 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.fs_16 {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.fs_17 {
  font-size: 17px;
  line-height: 1.75;
}

button, .btn {
  position: relative;
  text-align: center;
  border: none;
  outline: none;
  background: transparent;
  transition: 0.3s;
}/*# sourceMappingURL=common.css.map */