@charset "UTF-8";
/*-------------------------------------------------------------------
	파일정의 : Settings
	작성날짜 : 2022-01-14 장병주
	참고사항 : 이 파일은 설정값만 정의한다.
	분류순서 : 기본정책 > 유틸리티 > 사용자정의(컬러, 폰트, 보더, 간격 등)
	속성순서 : 표시 > 위치 > 넘침/흐름 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
-------------------------------------------------------------------*/

@import url(_grid.css);

/*-------------------------------------------------------------------
    ## Reset
-------------------------------------------------------------------*/
html,
body,
div,
ul,
dl,
ol,
li,
dt,
dd,
p,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
caption,
address,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
menu,
nav,
section,
button,
select,
textarea,
input,
fieldset,
legend,
a,
span,
strong,
em,
address,
dfn,
small,
i,
b,
pre {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  color: inherit;
  font-style: normal;
  font-size: 100%;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  word-break: inherit;
  word-wrap: inherit;
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -o-box-sizing: inherit;
}

:before,
:after {
  box-sizing: inherit;
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -o-box-sizing: inherit;
}

article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
menu,
nav,
section,
main {
  display: block;
}
html {
  font-size: 10px !important;
}
body {
  /*font-size: 14px;*/
  line-height: 1;
  word-break: keep-all;
  word-wrap: word-break;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

html[lang="ja"] body,
html[lang="zh"] body {
  word-break: normal;
}

[hidden],
hr {
  display: none;
}

img {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

b,
strong {
  font-weight: bold;
}

fieldset,
iframe
:not(.adbox iframe, .adbox1 iframe, .ad_wrap iframe, .ad_contents iframe)
{
  width: 100%;
}

img,
a,
frame,
iframe,
fieldset {
  border: 0;
}

a {
  text-decoration: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

caption {
  display: block;
  position: absolute;
  left: -9999px;
}

legend {
  position: absolute;
  left: -9999em;
  top: -9999em;
}

button {
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0px;
  padding: 0px;
}

/*-------------------------------------------------------------------
  ## General
-------------------------------------------------------------------*/
/* IR */
.is_hide {
  display: none;
}

.is_show {
  display: block !important;
}

.is_blind {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 0 !important;
  opacity: 0 !important;
  font-size: 0 !important;
  pointer-events: none !important;
}

.hide_wrap {
  position: relative;
}

.hide_area {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

/* Page Scroll */
.is_scrollFix {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  overflow: hidden;
}

/* Align - Text */
.vaT {
  vertical-align: top !important;
}
.vaM {
  vertical-align: middle !important;
}
.vaB {
  vertical-align: bottom !important;
}
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}
.taJ {
  text-align: justify;
  -moz-text-align-last: justify;
  -webkit-text-align-last: justify;
  text-align-last: justify;
}

/* Align - Layer */
.centered_r {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centered_l {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centered_t {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.centered_b {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.centered_c {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*-------------------------------------------------------------------
	## Form Controls
-------------------------------------------------------------------*/
/* Default */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}

/* IE 10 + */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}

/* Webkit Browser */
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}

/* Mozilla Firefox 4 to 18 */
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}

/* Mozilla Firefox 19+ */
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/* IE 10 + */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

/* Webkit Browser */
input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

/* Mozilla Firefox 4 to 18 */
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

/* Mozilla Firefox 19+ */
input {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 0px;
  vertical-align: middle;
}

textarea {
  width: 100%;
  vertical-align: middle;
  resize: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}

select::-ms-expand {
  display: none;
}

:root select {
  padding: 0px 30px 0px 5px;
}

.ie9 select {
  padding: 5px 35px 4px 5px;
  background: none;
}

.ie9 :root select {
  padding: 0;
  font-size: 0;
}

/*-------------------------------------------------------------------
	## Button
-------------------------------------------------------------------*/

/*-------------------------------------------------------------------
	## Icon, Arrow, Flag
-------------------------------------------------------------------*/
/* Default */
.ic,
.arw,
.flag {
  display: inline-block;
  background: no-repeat 0 0;
  background-size: 100% 100%;
  vertical-align: middle;
  overflow: hidden;
  color: transparent;
  text-indent: -9999px;
  white-space: nowrap;
}

/*-------------------------------------------------------------------
	## Label, Hashtag, Badge
-------------------------------------------------------------------*/
/* Default */
.label {
  display: inline-block;
}

/*-------------------------------------------------------------------
	## Link
-------------------------------------------------------------------*/
/* Default */

/*-------------------------------------------------------------------
	## Thumbnail
-------------------------------------------------------------------*/
/* Default */
.thumb {
  display: block;
  position: relative;
  overflow: hidden;
}

.thumb_img {
  position: relative;
  margin-top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/*-------------------------------------------------------------------
    ## Tabs
-------------------------------------------------------------------*/
/* Default */
.tab_content .tab_pane {
  display: none;
}

.tab_content .tab_pane.active {
  display: block;
}

/* Common */
.tab_tbl {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.tab_tbl ul {
  display: table-row;
}

.tab_tbl ul:after {
  content: none !important;
}

.tab_tbl ul li {
  display: table-cell;
  float: none !important;
}

/*-------------------------------------------------------------------
	## Table
-------------------------------------------------------------------*/
/* Default */
.tbl_wrap {
  overflow: hidden;
}

.tbl {
  overflow: hidden;
  margin: 0 -1px;
}

.tbl table {
  width: 100%;
  margin: -1px 0;
  table-layout: fixed;
  border-collapse: collapse;
  border: 0;
  border-spacing: 0;
}

/*-------------------------------------------------------------------
    ## Pagination
-------------------------------------------------------------------*/
/* Default */
.pagination_wrap {
  position: relative;
  text-align: center;
}

.pagination {
  display: inline-block;
  position: relative;
  z-index: 10;
  vertical-align: top;
}

.pagination:after {
  display: block;
  content: "";
  clear: both;
}

.pagination .btn_page_group,
.pagination .btn_num_group,
.pagination .btn_page,
.pagination .btn_num {
  display: inline-block;
  position: relative;
  z-index: 0;
  float: left;
}

/*-------------------------------------------------------------------
    ## Dimmer
-------------------------------------------------------------------*/
/* Default */
.dim {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 0;
  height: 0;
  background-color: #212121;
  opacity: 0;
}

.dim.is_show {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.clearFix:after {
  display: block;
  content: '';
  clear: both;
}