@charset "UTF-8";

/* =========================
   기본 변수 설정
========================= */
:root {
  /* font-size */
  --fs-h1: 55px;
  --fs-h2: 45px;
  --fs-h2-2: 35px;
  --fs-h3: 30px;
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-sub: 18px;
  --fs-body: 16px;
  --fs-small: 15px;
  --fs-xsmall: 14px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  /* color */
  --black: #010101;
  --white: #ffffff;
  --mint: #30b7ba;
  --skyblue: #f4f9fc;
  --darkskyblue: #e0ecf4;
  --ccc: #ccc;
  --ddd: #ddd;
  --eee: #eeeeee;
  --c999: #999999;
  --c666: #666;

  /* etc */
  --fm-kn: "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;
  --transition: all 0.4s;
  --gutter: calc((100vw - min(1620px, 90vw)) / 2);
  --border30: 30px;
  --padding160: 160px 0;
}

/* =========================
   반응형 폰트
========================= */
@media (max-width:1440px) {
  :root {
    --fs-h1: 50px;
    --fs-h2: 40px;
    --fs-h3: 28px;
    --fs-h4: 22px;
    --fs-h5: 19px;
    --fs-sub: 17px;
  }
}
@media (max-width:1024px) {
  :root {
    --fs-h1: 40px;
    --fs-h2: 30px;
    --fs-h2-2: 28px;
    --fs-h3: 26px;
    --fs-h4: 20px;
    --fs-h5: 17px;
    --fs-body: 15px;
    --fs-small: 14px;
    --fs-xsmall: 13px;
    --border30: 25px;
    --padding160: 120px 0;
  }
}
@media (max-width:768px) {
  :root {
    --fs-h1: 35px;
    --fs-h2: 26px;
    --fs-h2-2: 24px;
    --fs-h3: 20px;
    --fs-h4: 19px;
    --fs-h5: 16px;
    --fs-sub: 15px;
    --fs-body: 14px;
    --fs-small: 13px;
    --fs-xsmall: 12px;
    --border30: 20px;
    --padding160: 100px 0;
  }
}
@media (max-width:480px) {
  :root {
    --fs-h1: 26px;
    --fs-h2: 22px;
    --fs-h2-2: 19px;
    --fs-h3: 18px;
    --fs-h4: 17px;
    --fs-h5: 15px;
    --fs-sub: 14px;
    --fs-body: 13px;
    --fs-small: 12px;
    --fs-xsmall: 11px;
    --border30: 15px;
    --padding160: 80px 0;
  }
}

/* =========================
   Reset
========================= */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  word-break: keep-all;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 공통 폰트 스타일 */
html {
  scroll-behavior: smooth;
  min-width: 280px;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-o-text-size-adjust: none;
  color: var(--black);
  font-size: var(--fs-body);
  letter-spacing: -0.02rem;
  font-family: var(--fm-kn);
}

body {
  position: relative;
  overflow-y: hidden;
  background-color: var(--white);
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a, a:active, a:hover, a:visited {
  text-decoration: none;
}

a, button {
  outline: none;
  transition: var(--transition);
  color: inherit;
  font-size: inherit;
  background: transparent;
  cursor: pointer;
	padding: 0;
}

ol, ul, li { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; width: 100%; }
img, iframe { display: block; width: 100%; height: auto; border: 0; }

pre {
  white-space: pre-line;
  word-wrap: break-word;
  line-height: 1.5;
}

/* 입력 요소 */
input, textarea, select, button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
textarea { resize: vertical; }
button { cursor: pointer; }

/* 인용, 강조, 코드 */
address, em, optgroup { font-style: normal; }
strong, b { font-weight: var(--fw-700); }

/* 스크롤바 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background-color: var(--ccc); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background-color: var(--c999); }
::-webkit-scrollbar-track { background-color: var(--eee); }

/* selection */
::selection { background-color: var(--mint); color: var(--white); }

/* 숨김요소 / 접근성 */
[hidden] { display: none !important; }
.blind, .sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  white-space: nowrap;
}
/* admin btn 초기화 */
.btn_fixed_top .btn {
  display: inline-block !important;
  margin-top: 0px !important;
}


/* =========================
  새창 팝업 레이어
========================= */
#hd_pop {
  position:relative;
  width:100%;
  z-index:9999
  display: flex;
  flex-direction: column;
}
#hd_pop h2 {
  display: none;
}
.hd_pops {
    position:absolute;
    z-index:10000;
}
.hd_pops img {
    display:block;
}
.hd_pops_con {
    padding:0;
    height: auto !important;
}
.hd_pops_con p {
  display: flex;
}
.hd_pops_con .close {
  margin-top:10px;
  text-align:right;
}
.hd_pops_con .close button,
.hd_pops_con .close a {
  background:#333;
  color:#fff;
  padding:5px 10px;
  display:inline-block;
  font-size:12px;
  border-radius:3px;
  margin-left:3px;
}
.hd_pops_footer {
  text-align:right;
  padding:8px 10px;
  background:#333;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color:#fff;
}
.hd_pops_footer label {
  font-size:12px;
  cursor:pointer;
}
.hd_pops_footer input {
    vertical-align:middle;
}
.hd_pops_footer strong {
  font-weight: unset;
}
.hd_pops_footer .hd_pops_close {
  margin-left:10px;
  color:#fff;
  padding:3px 8px;
  border-radius:3px;
  font-size:12px;
  text-decoration:none;
}
@media (max-width: 1024px) {
	.hd_pops {
		width: calc(100% - 20px) !important;
	}
	.hd_pops_con {
		width: 100% !important;
	}
}