 @charset "UTF-8";
/*-------------------------------------------------------------------
	파일정의 : Settings
	작성날짜 : 2019-10-22 장병주
	참고사항 : 이 파일은 설정값만 정의한다.
	분류순서 : 기본정책 > 유틸리티 > 사용자정의(컬러, 폰트, 보더, 간격 등)
	속성순서 : 표시 > 위치 > 넘침/흐름 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
-------------------------------------------------------------------*/
/*-------------------------------------------------------------------
	Variables
-------------------------------------------------------------------*/
/* 여백,간격 */
/* 컬러 */
/* 명암 */
/* 그라데이션 */
/* 유틸리티 */
/*-------------------------------------------------------------------
	파일정의 : 초기화 스타일
	작성날짜 : 2019-10-22 장병주
	분류순서 : Base > Fonts
	속성순서 : 표시 > 위치 > 넘침/흐름 > 크기/간격 > 박스모양 > 폰트/정렬 > 기타
-------------------------------------------------------------------*/

@import url(_grid.css);
@import url(_fonts.css);
/* @import url(_ui.css); */

/*-------------------------------------------------------------------
    ## Reset
-------------------------------------------------------------------*/
*{box-sizing:border-box;}

html,
body,
div,
ul,
ol,
dl,
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,
form {
  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;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

: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 {
  display: block;
}

html {
  font-size: 16px;
  color: #a5a5b2;
/*  letter-spacing: -.05em;*/
    width: 100%;
    overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
body {
  width: 100%;
  min-height: 100%;
  word-wrap: word-break;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

[hidden],
hr {
  display: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
  font-weight:500;
}

b,
strong {
  font-weight: bold;
}

fieldset,
iframe {
  width: 100%;
}

img,
a,
frame,
iframe,
fieldset {
  border: 0;
}

a {
  text-decoration: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
table td{color:rgb(72, 72, 72)!important;}

caption {
  display: block;
  position: absolute;
  left: -9999px;
}

legend {
  position: absolute;
  left: -9999em;
  top: -9999em;
}
figure{text-indent: -10000px;}
/*
button {
  overflow: hidden;
  background-color: transparent;
  cursor: pointer;
}
*/
button::-moz-focus-inner {
  border: 0px;
  padding: 0px;
}

.dv_android [tabindex='0']:focus,
.dv_android a:focus,
.dv_android button:focus,
.dv_android input:focus,
.dv_android textarea:focus,
.dv_android select:focus {
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.dv_ios [tabindex='0'],
.dv_ios a,
.dv_ios button,
.dv_ios input,
.dv_ios textarea,
.dv_ios select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

:focus {
  outline: 0;
}

a,
button,
p,
li,
span,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
label,
em {
  -webkit-user-select: none;
  -user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*-------------------------------------------------------------------
    ## General
-------------------------------------------------------------------*/
/* IR */
.is_hide {
  display: none !important;
}
.is_show {
  display: block !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_t {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.centered_r {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centered_b {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.centered_l {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.centered_c,
.btn_ico > .ico {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.view_pc {display: block;}
.view_mob {display: none;}

/*-------------------------------------------------------------------
	## Form Controls
-------------------------------------------------------------------*/
/* Default */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b1b1b1;
}

/* IE 10 + */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #b1b1b1;
}

/* Webkit Browser */
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #b1b1b1;
}

/* Mozilla Firefox 4 to 18 */
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #b1b1b1;
}

/* 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;
  color: #111;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
input[type='radio'] {
  appearance: radio;
  -webkit-appearance: radio;
  -moz-appearance: radio;
  -o-appearance: radio;
}
input[type='checkbox'] {
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  -o-appearance: checkbox;
}
textarea {
  width: 100%;
  vertical-align: middle;
  resize: none;
  color: #111;
  word-break: break-all !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: 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
-------------------------------------------------------------------*/
/* Default */
.btn {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
}
.btn_ic {
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
  padding: 0;
  z-index: 2;
}

/*-------------------------------------------------------------------
	## Icon, Arrow, Flag
-------------------------------------------------------------------*/
/* Default */
.ic,
.arw,
.flag {
  display: inline-block;
  vertical-align: middle;
  color: transparent;
  white-space: nowrap;
}

/*-------------------------------------------------------------------
	## Label, Hashtag, Badge
-------------------------------------------------------------------*/
/* Default */
.label {
  display: inline-block;
}

/*-------------------------------------------------------------------
	## Link
-------------------------------------------------------------------*/
/* Default */

/*-------------------------------------------------------------------
	## Thumbnail
-------------------------------------------------------------------*/
/* Default */
.thum {
  display: block;
  position: relative;
}
.thum_img {
  width: 100%;
}

/*-------------------------------------------------------------------
    ## Tabs
-------------------------------------------------------------------*/
/* Default */
.tab_content {
  display: none;
}
.tab_content.is_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;
}

.tbl table {
  width: 100%;
  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_num_group,
.pagination .btn_num {
  display: inline-block;
  position: relative;
  z-index: 0;
}

/*-------------------------------------------------------------------
    ## Dimmer
-------------------------------------------------------------------*/
/* Default */
.dim {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.3s ease;
  -o-transition: opacity 0.3s 0.3s ease;
  transition: opacity 0.3s 0.3s ease;
}
.dim.is_show {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/*-------------------------------------------------------------------
    ## Space
-------------------------------------------------------------------*/
.topP10 {
  padding-top: 10px !important;
}
.topP20 {
  padding-top: 20px !important;
}
.topP30 {
  padding-top: 30px !important;
}
.topP50 {
  padding-top: 50px !important;
}
.leftP30 {
  padding-left: 30px !important;
}
.bottomP80 {
  padding-bottom: 80px !important;
}
.noP {
  padding: 0 !important;
}
.noTopP {
  padding-top: 0 !important;
}
.noRihgtP {
  padding-right: 0 !important;
}
.noBottomP {
  padding-bottom: 0 !important;
}
.noLeftP {
  padding-left: 0 !important;
}
.noSideP {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.topM10 {
  margin-top: 10px !important;
}
.topM20 {
  margin-top: 20px !important;
}
.topM30 {
  margin-top: 30px !important;
}
.topM50 {
  margin-top: 50px !important;
}

.n_margin {
  margin: 0 !important;
}
.noTopM {
  margin-top: 0 !important;
}
.noRihgtM {
  margin-right: 0 !important;
}
.noBottomM {
  margin-bottom: 0 !important;
}
.noLeftM {
  margin-left: 0 !important;
}

.bg_space {
  border-top: 1px solid #ebebeb;
  background: #f3f3f3;
  height: 10px;
  box-sizing: border-box;
}

.clear {clear: both;}
.clearFix::after {
  display: block;
  content: '';
  clear: both;
}

.flL {
  float: left !important;
}
.flR {
  float: right !important;
}
.flN {
  float: none !important;
}

@media screen and (max-width: 767px) {
  .view_pc {display: none;}
  .view_mob {display: block;}
}