@charset "utf-8"; /*** common ***/
#wrap {
    min-width: 1250px;
    overflow: hidden;
}

.after_div {
    *zoom: 1;
}

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

.clear {
    *zoom: 1;
}

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

.fl {
    float: left;
}

.fr {
    float: right;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.block {
    display: block;
}

.blind,
.dn {
    display: none !important;
}

/*** 정렬 ***/
.ta_left {
    text-align: left !important;
}

.ta_center {
    text-align: center !important;
}

.ta_right {
    text-align: right !important;
}

/*───────────────────────────────────────────────────────────

	input, button

───────────────────────────────────────────────────────────*/
/* input */
input[type='text'],
input[type='password'],
input[type='number'],
input[type='date'] {
    height: 26px;
    line-height: 26px;
    border: 1px #d3d3d3 solid;
    color: #555;
    font-size: 12px;
    text-indent: 5px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    vertical-align: middle;
    text-align: left;
    border-radius: 0;
    outline: 0;
}

input[type='text']::-webkit-input-placeholder {
    color: #555;
}

input[type='text']::-moz-placeholder {
    color: #555;
}

input[type='text']:-ms-input-placeholder {
    color: #555;
}

input[type='text']:-moz-placeholder {
    color: #555;
}

input[type='password']::-webkit-input-placeholder {
    color: #555;
}

input[type='password']::-moz-placeholder {
    color: #555;
}

input[type='password']:-ms-input-placeholder {
    color: #555;
}

input[type='password']:-moz-placeholder {
    color: #555;
}

button {
    outline: 0;
    box-sizing: border-box;
}

select {
    outline: 0;
    cursor: pointer;
    height: 27px;
    line-height: 25px;
    font-size: 12px;
    color: #555;
    border: 1px solid #ddd;
    box-sizing: border-box;
    margin: 0;
    padding: 0 0 0 10px;
    vertical-align: middle;
    text-align: left;
    border-radius: 0;
    background-color: #fff;
}

/*화살표 없애기
		select {-webkit-appearance:none;-moz-appearance:none;appearance:none;}
		select::-ms-expand {display:none;}
		select option {line-height:28px;padding:5px 0;}
		select option:checked, select option:hover {line-height:25px;background:#e0e0e0;font-size:12px;color:#555;}
		select option:checked, select option:hover {line-height:25px;box-shadow:0 0 10px 100px #e0e0e0 inset;font-size:12px;color:#555;}
		*/
.select_box_wrap {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.select_box_wrap .select_box_arrow {
    display: none;
    cursor: pointer;
    position: absolute;
    z-index: 5;
    width: 0px;
    height: 0px;
    right: 7px;
    top: 12px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #aaa;
    transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(225deg);
    -o-transform: rotate(315deg);
}

/*right:5px;top:15px;width:8px;height:5px;background:url(../../../../lib/images/icon_select_arrow.png) 0 0 no-repeat;*/
input[type='checkbox'] {
    display: none;
}

input[type='checkbox'] + label {
    cursor: pointer;
    font-size: 14px;
}

input[type='checkbox'] + label:before,
input[type='checkbox'] + label::before {
    display: inline-block;
    content: '';
    width: 18px;
    height: 18px;
    margin: -2px 5px 0 0;
    vertical-align: middle;
    background: url('../images/da_image/icon_chk.png') left top no-repeat;
    cursor: pointer;
}

input[type='checkbox']:checked + label:before,
input[type='checkbox']:checked + label::before {
    background: url('../images/da_image/icon_chk_on.png') left top no-repeat;
}

input[type='radio'] {
    display: none;
}

input[type='radio'] + label {
    cursor: pointer;
}

input[type='radio'] + label:before,
input[type='radio'] + label::before {
    display: inline-block;
    content: '';
    width: 13px;
    height: 13px;
    margin: -2px 5px 0 20px;
    vertical-align: middle;
    background: url('../../../../lib/images/icon_input_radio.png') left top no-repeat;
    cursor: pointer;
}

input[type='radio']:checked + label:before,
input[type='radio']:checked + label::before {
    background: url('../../../../lib/images/icon_input_radio_on.png') left top no-repeat;
}

input[type='radio'] + label:first-of-type:before,
input[type='radio'] + label:first-of-type::before {
    margin-left: 0;
}

textarea {
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
    box-sizing: border-box;
    margin: 0;
    padding: 0 10px;
    vertical-align: middle;
    text-align: left;
    border-radius: 0;
}

.btn_center {
    text-align: center;
    font-size: 0;
}

.btn_center a {
    margin: 0;
}

.btn_center button + button,
.btn_center a + button,
.btn_center button + a,
.btn_center a + a {
    margin-left: 8px;
}

.btn_center input {
    margin-top: -10px;
}

.btn_right a {
    font-size: 15px;
    font-weight: 700;
}

.btn,
.btn_sm,
.btn_bbs_go {
    font-weight: 700;
    border-style: solid;
    border-width: 1px;
    padding: 0;
    margin: 0;
    text-indent: 0;
    vertical-align: top;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: none;
    outline: 0 !important;
}

.btn,
.btn:hover {
    width: 105px;
    height: 40px;
    line-height: 38px;
    font-size: 15px;
    color: #fff;
}

.btn_basic,
.btn_basic:hover {
    border-color: #888 !important;
    background-color: #7e7e7e !important;
}

.btn_point,
.btn_point:hover {
    border-color: #eb3b4b !important;
    background-color: #eb3b4b !important;
}

.btn_sm,
.btn_sm:hover {
    border-color: #ddd !important;
    background-color: #fff !important;
    color: #555 !important;
}

.btn_reset {
    background: #fff url('../images/board/icon_btn_reset.gif') no-repeat 9px 50%;
    padding: 0 10px 0 30px;
    line-height: 28px;
}

.board_search .btn,
.board_search .btn:hover {
    width: 60px;
    height: 34px;
    color: #fff;
    line-height: 32px;
    font-size: 13px;
}

/*───────────────────────────────────────────────────────────

	layout

───────────────────────────────────────────────────────────*/
.skip_nav {
    position: relative;
    z-index: 9999;
}

.skip_nav a {
    display: block;
    height: 1px;
    width: 1px;
    margin-bottom: -1px;
    overflow: hidden;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
}

.skip_nav a:focus,
.skip_nav a:active {
    height: auto;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.w_layout,
.wid_100 {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

/*text-align은 익스7이하에서 맞추기 위해서 명명*/
.w_set,
.w_custom,
.wid_cus {
    width: 1100px;
    text-align: left;
    margin: 0 auto;
    padding: 0;
}

/* header 레이아웃 */
.warpper {
    width: 100%;
}

/* header 와 footer 제외하고 전체를 감싸는 영역 */
.warpper .contents_wrap {
    width: 1100px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    vertical-align: top;
    font-size: 0;
    min-height: 640px;
}

/* warpper 안에 측면과 컨텐츠를 감싸는 영역 */
.warpper .contents_wrap #aside {
    width: 20%;
    float: left;
    vertical-align: top;
}

/* 측면을 감싸는 영역 */
.warpper .contents_wrap #contents_box {
    width: 100%;
    padding: 30px 0 50px 0;
    vertical-align: top;
}

/* 컨텐츠를 감싸는 영역 */
.warpper .contents_wrap #aside + #contents_box {
    font-size: 12px;
    width: 80%;
    padding: 30px 0 50px 40px;
    box-sizing: border-box;
    float: left;
}

/* 측면과 컨텐츠가 함께 나올때 영역 사이즈 재설정 */
.warpper .contents_wrap .nav_wrap {
    margin-top: -7px;
}

/* 네비게이션 감싸는 영역. 레이아웃에 따라 위치가 ".contents_wrap > .nav_wrap" 일수도, ".contents_wrap #contents_box > .nav_wrap" 일수도 있음 */
.warpper .contents_wrap #contents_box #content {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

/* 컨텐츠 */
.warpper .contents_wrap #contents_box #content:after {
    clear: both;
    content: '';
    display: block;
}

/* 네비게이션 영역 */
.nav_wrap {
}

.nav_wrap .nav_box {
    padding: 0 0 24px 0;
    border: 0;
    margin: 0;
    border-bottom: 1px #858585 solid;
    margin-bottom: 30px;
}

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

.nav_wrap .nav_box h2 {
    font-size: 28px;
    color: #333;
    line-height: 46px;
    float: left;
    font-weight: 700;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    position: relative;
    z-index: 1;
    padding: 12px 0 0 0;
}

.nav_wrap .nav_box h2:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    top: 0;
}

.nav_wrap .nav_box ul {
    float: right;
    font-size: 0;
    line-height: 18px;
    padding: 0px 0 0 0;
}

.nav_wrap .nav_box ul li {
    text-align: right;
    line-height: 18px;
    padding: 0;
    color: #aaa;
    font-size: 8px;
    display: inline-block;
}

.nav_wrap .nav_box ul li + li {
    padding-left: 5px;
}

.nav_wrap .nav_box ul li span,
.nav_wrap .nav_box ul li strong,
.nav_wrap .nav_box ul li a {
    padding: 0px 4px;
    font-size: 11px;
    display: inline-block;
    line-height: 17px;
    width: auto;
    color: #888;
    vertical-align: middle;
    margin: 0;
    font-family: 'Nanum Gothic', sans-serif;
}

.nav_wrap .nav_box ul li strong a {
    padding: 0;
}

.nav_wrap .nav_box ul li a.home {
    padding: 0;
    margin-right: 4px;
    background: url('../images/sub/route_home.gif') no-repeat 0 45%;
    width: 9px;
    height: 18px;
    text-indent: 999px;
    overflow: hidden;
}

.nav_wrap .nav_box ul li:last-child a,
.nav_wrap .nav_box ul li:last-child span,
.nav_wrap .nav_box ul li:last-child strong {
    color: #222;
    font-weight: 700;
    padding-right: 0;
}

/*측면영역*/
#aside {
    padding: 0;
    text-align: left;
}

#aside .sub_menu {
    float: left;
    width: 220px;
}

#aside .sub_menu dl {
    padding-bottom: 40px;
}

#aside .sub_menu dl dt {
    position: relative;
    display: block;
    width: 220px;
    height: 40px;
    line-height: 55px;
    text-indent: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    z-index: 100;
    top: -55px;
}

#aside .sub_menu dl dt:after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 55px;
    background-color: #000;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=75)';
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    opacity: 0.75;
    z-index: -1;
}

#aside .sub_menu dl dt + dd a {
    border-top: solid 1px #ddd;
}

#aside .sub_menu dl dt span {
    position: relative;
    display: block;
    width: 220px;
    height: 55px;
    line-height: 55px;
    text-indent: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    z-index: 100;
}

#aside .sub_menu dl dt .sub_tit_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 55px;
    background-color: #000;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=75)';
    /* IE 8 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
    /* IE 7 and olders */
    opacity: 0.75;
    z-index: 10;
}

#aside .sub_menu dl dd a {
    display: inline-block;
    text-indent: 20px;
    font-size: 14px;
    color: #444;
    width: 220px;
    height: 39px;
    line-height: 39px;
    border-bottom: solid 1px #ddd;
}

#aside .sub_menu dl dd:hover a,
#aside .sub_menu dl dd.on a {
    color: #eb3b4b;
    background: url('../images/sub/sub_nav_dot.gif') no-repeat;
    background-position: 195px 50%;
}

/* 측면 공통요소 영역 - left_bnr */
#aside .sub_menu h2 {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 8px 0;
    font-weight: 700;
    font-family: 'Disis', sans-serif;
}

.quick_menu {
    text-align: left;
    font-size: 0;
    padding-top: 11px;
}

.quick_menu li {
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 65px;
    box-sizing: border-box;
    border: 1px #777 solid;
    border-radius: 5px;
}

.quick_menu li + li {
    margin-left: 5px;
}

.quick_menu li a {
    display: block;
    height: 100%;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 20px;
    padding: 37px 0 6px 0;
    box-sizing: border-box;
    text-align: center;
}

.quick_menu li.notice {
    background: url('../images/common/icon_aside_lnb01.gif') no-repeat 50% 11px;
}

.quick_menu li.map {
    background: url('../images/common/icon_aside_lnb02.gif') no-repeat 50% 11px;
}

.quick_menu li.cs {
    background: url('../images/common/icon_aside_lnb03.gif') no-repeat 50% 11px;
}

/* 서브 비주얼*/
.sub_visual {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 1100px;
    height: 400px;
    z-index: 1;
    overflow: hidden;
}

.sub_visual img {
    position: absolute;
    max-width: 2000px;
    width: 2000px;
    height: 400px;
    left: 50%;
    margin-left: -1000px;
}

/*───────────────────────────────────────────────────────────

	 HEADER | outline/header.html, outline/nav.html

───────────────────────────────────────────────────────────*/
.skip_nav {
    position: relative;
    z-index: 9999;
}

.skip_nav a {
    display: block;
    height: 1px;
    width: 1px;
    margin-bottom: -1px;
    overflow: hidden;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
}

.skip_nav a:focus,
.skip_nav a:active {
    height: auto;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
}

#header {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    min-width: 1100px;
}

#header .head_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1250px;
    margin: 42px auto 0;
    height: 22px;
    box-sizing: border-box;
}

#header .head_abg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=80)';
    /* IE 8 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    /* IE 7 and olders */
    opacity: 0.8;
    z-index: -1;
}

#header .m_search {
    position: absolute;
    top: 50px;
    left: 24px;
    width: 162px;
}

#header .sinput_warp {
    width: 151px;
    padding: 0;
    background: none;
    border: 0;
    box-sizing: border-box;
    height: 26px;
    line-height: 25px;
    border-bottom: solid #878787 1px;
    font-size: 0;
    display: inline-block;
}

#header .sinput_warp:after {
    clear: both;
    content: '';
    display: block;
}

#header .sinput_warp input {
    vertical-align: top;
}

#header .sinput_warp input[type='text'] {
    float: left;
    background: none;
    color: #a9aba6;
    border: 0;
    text-indent: 0;
    width: 113px;
    height: 25px;
    line-height: 25px;
}

#header .sinput_warp input[type='submit'] {
    float: right;
    width: 16px;
    height: 15px;
    display: inline-block;
    line-height: 15px;
    text-indent: 99px;
    overflow: hidden;
    margin: 5px 0;
    border: 0;
    cursor: pointer;
    background: url(../images/common/head_sch_btn.png) no-repeat 50% 50%;
}

#header #gnb {
    position: relative;
    height: 110px;
    font-size: 13px;
}

#header #gnb h1 {
    width: 100%;
    margin: 0 auto;
    padding: 27px 0 26px;
    text-align: center;
}

#header #gnb ul.gnb_left {
    float: left;
    height: 40px;
}

#header #gnb ul.gnb_left li {
    float: left;
}

#header #gnb ul.gnb_left li a {
    display: inline-block;
    width: 105px;
    text-align: center;
    font-weight: 600;
}

#header #gnb ul.gnb_left li.top_newproduct {
    background-color: #e8e8e7;
    margin-right: 1px;
}

#header #gnb ul.gnb_left li.top_newproduct a {
    color: #333333;
}

#header #gnb ul.gnb_left li.top_service {
    background-color: #414140;
}

#header #gnb ul.gnb_left li.top_service a {
    color: #cccccc;
}

#header #gnb ul.gnb_right {
    position: absolute;
    top: 55px;
    right: 0;
    height: 40px;
}

#header #gnb ul.gnb_right li {
    float: left;
    padding-left: 23px;
}

#header #gnb ul.gnb_right li a {
    font-size: 13px;
    letter-spacing: -0.03em;
    font-weight: 100;
    color: #a9a7a5;
}

#header #lnb {
    transition: 0.3s;
    position: relative;
    width: 100%;
}

#header #lnb.on {
    position: fixed;
    top: -4px;
    left: 0;
}

#header #lnb .head_abg {
    margin-top: 4px;
}

#header #lnb h1 {
    display: inline-block;
    width: 168px;
}

#header #lnb ul#lnb_nav {
    text-align: center;
    height: 100%;
    display: table;
    width: auto;
    float: left;
    line-height: 22px;
    overflow: hidden;
    background-color: rgba(0,0,0,0.2);
}

#header #lnb ul#lnb_nav > li {
    position: relative;
    display: inline-block;
    zoom: 1;
    width: auto;
    text-align: center;
    padding: 0 20px;
    vertical-align: middle;
    box-sizing: border-box;
}

/* #header #lnb ul#lnb_nav > li:nth-child(1) {
    width: 81px;
}

#header #lnb ul#lnb_nav > li:nth-child(2) {
    width: 98px;
}

#header #lnb ul#lnb_nav > li:nth-child(3) {
    width: 108px;
}

#header #lnb ul#lnb_nav > li:nth-child(4) {
    width: 90px;
    padding-right: 0;
    margin-right: 61px;
} */

#header #lnb ul#lnb_nav > li > div {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 0;
    -mz-transition: all 0.8s ease-in-out;
    -mos-transition: all 0.8s ease-in-out;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

#header #lnb ul#lnb_nav > li > div.on {
    width: 100%;
}

/*#header #lnb ul#lnb_nav > li > div:before {content:'';display:block;position:absolute;width: 300%;height:100%;background: #414851;-mz-transition: all 0.8s ease-in-out;-mos-transition: all 0.8s ease-in-out;-webkit-transition: all 0.8s ease-in-out;transition: all 0.8s ease-in-out;right: 0;/* transform: translateX(-50%); }*/
#header #lnb ul#lnb_nav > li > div.on:before {
    width: 0;
}

#header #lnb ul#lnb_nav > li + li:after {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 13px;
    background: #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

#header #lnb ul#lnb_nav > li a {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    height: auto;
    line-height: 37px;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.01em;
}

/*#header #lnb ul#lnb_nav > li.on,
#header #lnb ul#lnb_nav > li:hover {background:url(../images/common/lnb_dot.gif) no-repeat center top;}
#header #lnb ul#lnb_nav > li.on > a,
#header #lnb ul#lnb_nav > li:hover > a {color:#d01c24;}
#header #lnb ul#lnb_nav > li .depth2 {display:none;position:absolute;top:50px;left:0;width:150px;text-align:center;margin:0 25px;background-color:rgba(255, 255, 255, 0.9);}
#header #lnb ul#lnb_nav > li.on .depth2,
#header #lnb ul#lnb_nav > li:hover .depth2 {display:block;}*/
#header #lnb .depth2 {
    position: relative;
    min-height: 81px;
    padding: 28px 0 38px;
}

#header #lnb .depth2 li {
    padding-top: 17px;
    line-height: 13px;
    text-align: left;
    text-indent: 20px;
}

#header #lnb .depth2 li:first-child {
    padding-top: 0;
}

#header #lnb .depth2 li a {
    color: #555;
    font-size: 13px;
    line-height: 13px;
    font-weight: bold;
}

#header #lnb .depth2 li a:hover {
    text-decoration: underline;
}

#header #lnb .depth2 .depth3 {
    padding: 10px;
}

#header #lnb .depth2 .depth3 li {
}

#header #lnb .depth2 .depth3 li a {
    font-size: 12px;
    line-height: 1;
}

#header #lnb .depth2 .depth3 .depth4 {
    padding: 10px;
}

#header #lnb .depth2 .depth3 .depth4 li {
    padding-top: 0;
}

#header #lnb .depth2 .depth3 .depth4 li a {
}

#header #lnb .depth2 .depth2_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fff;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=85)';
    /* IE 8 */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
    /* IE 7 and olders */
    opacity: 0.85;
    z-index: -1;
}

/*───────────────────────────────────────────────────────────

	 FOOTER | outline/footer.html

───────────────────────────────────────────────────────────*/
#footer {
    position: relative;
    padding: 82px 0 92px;
    background-color: #111;
}

#footer .footer_cont.w_set {
	width:980px;
	padding:0 110px;
}

#footer .footer_cont > img {
	float:left; margin-right:62px;
}

#footer .footer_cont p {
    font-size: 20px;
    line-height: 36px;
    letter-spacing: -0.05em;
    font-weight: 300;
    color: #666;
    text-align: center;
}

#footer .footer_cont p span {
    display: inline-block;
    margin: 0 10px;
}

/*#footer .footer_cont {position:relative;width:1100px;margin:0 auto;font-size:12px;padding:30px 0 20px;}
#footer .footer_cont ul.footer_nav {padding-bottom:15px;}
#footer .footer_cont ul.footer_nav:after {clear:both;content:"";display:block;}
#footer .footer_cont ul.footer_nav li {float:left;padding:0 12px;background:url("../images/common/footer_navline.gif") no-repeat left center;}
#footer .footer_cont ul.footer_nav li.first {background:none;padding-left:0;}
#footer .footer_cont ul.footer_nav li a {color:#ccc;font-weight:600;letter-spacing:-0.040em;}
#footer .footer_cont address {position:relative;color:#888888;font-weight:100;line-height:19px;margin-bottom:20px;letter-spacing:-0.040em;}
#footer .footer_cont p {position:absolute;bottom:0;right:0;color:#888;font-weight:100;letter-spacing:-0.040em;}
#footer .footer_cont .link_m {position:absolute;right:0;top:0;font-size:12px;color:#fff;}
#footer .footer_cont ul.footer_sns {position:absolute;right:0;top:25px;height:30px;}
#footer .footer_cont ul.footer_sns li {float:left;padding-left:7px;}*/
/*───────────────────────────────────────────────────────────

	 SUB 공통

───────────────────────────────────────────────────────────*/
/*───────────────────────────────────────────────────────────

	 INDEX | index.html

───────────────────────────────────────────────────────────*/
#content {
    /*background:url("../images/da_image/main_visual_bg.jpg") no-repeat center top;*/
}

/* 개별 스크립트 사용시 썼던 소스
#content .main_visual {position:relative;width:100%;height:750px;margin:0 auto;overflow:hidden;}
#content .main_visual li {height:750px;overflow:hidden;position:relative;z-index:1;vertical-align:top;font-size:0;}
#content .main_visual li a {vertical-align:top;}
#content .main_visual img {vertical-align:top;position:absolute;left:50%;margin-left:-1000px;width:2000px;max-width:2000px;}
#content .main_visual ul.slick-dots {width:16px;font-size:0;position:absolute;top:418px;left:50%;margin-left:534px;text-align:center;}
#content .main_visual ul.slick-dots:after {clear:both;content:"";display:block;}
#content .main_visual ul.slick-dots li {height:16px;width:16px;margin:0;display:inline-block;padding:0px;margin-bottom:14px;position:relative;vertical-align:top;}
#content .main_visual ul.slick-dots li button {vertical-align:top;margin:0;display:inline-block;text-indent:-9999px;background:url("../images/da_image/visual_off.png") no-repeat;width:16px;height:16px;border-radius:0;outline:0;}
#content .main_visual ul.slick-dots li.slick-active button {background:url("../images/da_image/visual_on.png") no-repeat;border-radius:0px;}
*/
.main_visual {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    background: #d51913 url("../images/202509/main_visual_bg.png") no-repeat 50% 50%;
    height: 669px;
}

.main_visual .w_custom {
    width: 1250px;
    position: relative;
    height: 669px;
}

.main_cont.main_intro {
    position: relative;
}

.main_visual .visual_img {
    position: relative;
    display: inline-block;
    position: absolute;
    left: -335px;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    z-index: 0;
}

.main_visual .visual_img::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.main_visual .visual_img img {
    max-width: fit-content;
}

.main_visual .visual_img.on {
    opacity: 1;
}

.main_visual .visual_txt {
    display: inline-block;
    position: absolute;
    left: 0;
    padding-left: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.main_visual .visual_txt img {
    width: 100%;
}

.main_visual .slick-slide {
    overflow: hidden;
    position: relative;
}

.main_visual .slick-slide a {
    display: block;
    height: 692px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.main_visual .slick-slide img {
    display: block;
    height: 692px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    max-width: 2000px;
}

.main_visual .slick-arrow {
    display: none !important;
    display: inline-block;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    text-indent: -9999px;
    width: 59px;
    height: 59px;
    z-index: 10;
}

.main_visual .slick-arrow.slick-prev {
    left: 0;
    background: url('../images/main/visual_left.png') no-repeat;
}

.main_visual .slick-arrow.slick-next {
    right: 0;
    background: url('../images/main/visual_right.png') no-repeat;
}

.main_visual .slick-arrow.slick-prev.on {
    background: url('../images/main/visual_left_on.png') no-repeat;
}

.main_visual .slick-arrow.slick-next.on {
    background: url('../images/main/visual_right_on.png') no-repeat;
}

.main_visual .auto_control {
    display: none;
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 0px;
}

.main_visual .auto_control a {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 25px;
    font-weight: bold;
    margin-left: 10px;
    text-shadow: #ffffff 0px 0px 5px;
}

.main_visual .auto_control a.on {
    color: #fff;
    text-shadow: #000 0px 0px 5px;
}

.main_visual ul.slick-dots {
    width: 16px;
    font-size: 0;
    position: absolute;
    top: 418px;
    left: 50%;
    margin-left: 534px;
    text-align: center;
}

.main_visual ul.slick-dots:after {
    clear: both;
    content: '';
    display: block;
}

.main_visual ul.slick-dots li {
    height: 16px;
    width: 16px;
    margin: 0;
    display: inline-block;
    padding: 0px;
    margin-bottom: 14px;
    position: relative;
    vertical-align: top;
}

.main_visual ul.slick-dots li button {
    vertical-align: top;
    margin: 0;
    display: inline-block;
    text-indent: -9999px;
    background: url('../images/main/visual_off.png') no-repeat;
    width: 16px;
    height: 16px;
    border-radius: 0;
    outline: 0;
}

.main_visual ul.slick-dots li.slick-active button {
    background: url('../images/main/visual_on.png') no-repeat;
    border-radius: 0px;
}

.main_title_box {
    position: relative;
    text-align: center;
}

.main_title_box h2 {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    color: #c81a12;
    letter-spacing: -0.025em;
}

span.txt_r {
    position: relative;
    display: inline-block;
    line-height: 1;
}

p.txt {
    font-size: 17px;
    color: #414141;
    font-weight: 400;
    text-align: center;
}

p.txt strong {
    font-size: inherit;
}

p.txt .txt_r {
    font-size: 13px;
    top: -5px;
}

.main_cont.main_intro {
    position: relative;
}

.main_cont.main_intro::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 1080px;
    background: no-repeat top / cover url(../images/202509/intro_visual.png);
    z-index: -1;
}

.main_intro .w_custom {
    margin: 0 auto;
    padding-top: 137px;
}

.main_intro .main_title_box {
    margin-bottom: 0;
}

.main_intro .intro_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 677px;
    width: 100%;
    box-sizing: border-box;
}

.main_intro .intro_text .logo_img {
    width: 250px;
}

.main_intro .intro_text .logo_img img {
}

.main_intro .intro_text h3.tit {
    font-size: 27px;
    line-height: 33px;
    font-weight: 400;
    color: #111111;
    padding: 40px 0;
}

.main_intro .intro_text h3.tit p {
    font-size: 26px;
    line-height: 52px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #111111;
}

.main_intro .intro_text h3.tit strong {
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.main_intro .intro_text h3.tit .txt_r {
    font-size: 28px;
    position: relative;
    display: inline-block;
    top: -18px;
}

.main_intro .intro_text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #666666;
}

.main_intro .intro_bnr {
    background: #1d1719;
    width: 100%;
    text-align: center;
    margin: 0 auto;
	/* background: #940204 url('../images/202401/main_visual_bg03.png') no-repeat 50% 50%; */
}

/* .main_intro .intro_bnr:after {content:'';display:block;position: relative;width:0;height:6px;background:#ff0b00;-webkit-transition: all 0.8s ease-in-out; -moz-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; transition: all 0.8s ease-in-out;} */
.main_intro .intro_bnr.scroll_down.on:after {
    width: 100%;
}

.media_bnr {
    background-color: #000000;
}

.media_bnr img {
    display: block;
    margin: 0 auto;
}

.main_benefit {
    padding: 120px 0;
}

.main_benefit .main_title_box .tit strong {
    display: inline-block;
    padding-top: 40px;
    padding-bottom: 73px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.main_benefit .main_title_box .tit strong .txt_r {
    font-size: 28px;
    position: relative;
    display: inline-block;
    top: -18px;
}

.main_benefit .benefit_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_benefit p.txt {
}

.main_benefit p.txt strong.check_tit {
    display: block;
    padding-bottom: 21px;
    margin: 0 auto;
    text-align: center;
    color: #111;
}

.main_benefit p.txt strong.check_tit span {
    font-size: 26px;
    font-weight: 600;
    color: #111;
}

.main_benefit p.txt {
    position: relative;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.05em;
    color: #666;
}

.main_benefit p.txt:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50%;
    right: -70px;
    width: 1px;
    height: 130px;
    transform: translateY(-50%);
    background-color: #111;
    opacity: 0.3;
}

.main_product {
    position: relative;
    padding-top: 120px;
    background-color: #eee;
}

.main_product .main_title_box .tit strong {
    display: inline-block;
    padding-top: 42px;
    padding-bottom: 23px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.main_product .main_title_box .tit strong .txt_r {
    font-size: 28px;
    position: relative;
    display: inline-block;
    top: -18px;
}

.main_product .prd_sld {
    padding-top: 60px;
}

.main_product .prd_sld:after {
    content: '';
    display: block;
    position: relative;
    width: 0;
    /*height:6px;background:#ff0b00;*/
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.main_product .prd_sld .slick-arrow {
    position: absolute;
    top: 50%;
    width: 29px;
    height: 56px;
    transform: translateY(-50%);
    font-size: 0;
    z-index: 1000;
}

.main_product .prd_sld .slick-prev {
    left: calc(353 / 1920 * 100vw);
    background: no-repeat center / contain url('../images/da_image/arrow_l.png');
}

.main_product .prd_sld .slick-next {
    right: calc(353 / 1920 * 100vw);
    background: no-repeat center / contain url('../images/da_image/arrow_r.png');
}

@media screen and (max-width: 1919px) {
    .main_product .prd_sld .slick-prev {
        left: 12%;
    }

    .main_product .prd_sld .slick-next {
        right: 12%;
    }
}

.main_product .prd_sld li img {
    width: 1320px;
    margin: 0 auto;
}

.main_product .slick-dots {
    position: absolute;
    bottom: 62px;
    width: 100%;
    text-align: center;
}

.main_product .slick-dots:after {
    content: '';
    display: block;
    clear: both;
    text-align: center;
}

.main_product .slick-dots li {
    display: inline-block;
    margin: 0 15px;
    /* height: 9px; */
}

.main_product .slick-dots li button {
    width: 8px;
    height: 8px;
    background: #666;
    opacity: 0.4;
    border-radius: 100%;
    font-size: 0;
}

.main_product .slick-dots li.slick-active button {
    background: #444;
    opacity: 1;
    vertical-align: middle;
}

/* 스크롤다운 */
.main_product .scroll_down.on .prd_sld:after {
    width: 100%;
}

.main_media {
    padding-top: 120px;
}

.main_media .main_title_box .tit strong {
    display: inline-block;
    padding-top: 43px;
    padding-bottom: 22px;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
}

.main_media .main_title_box .tit strong .txt_r {
    font-size: 28px;
    position: relative;
    display: inline-block;
    top: -18px;
}

.main_media .w_custom {
    width: 1230px;
    padding-bottom: 120px;
}

.main_media p.txt {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-align: center;
}

.main_media .media_vid {
    width: 897px;
    height: 505px;
    margin: 80px auto 0;
}

.main_media .media_vid video {
    width: 100%;
    height: 100%;
}

.main_media .media_vid img {
    width: 895px;
    height: 503px;
	border: 1px solid #e3e3e3;
}

.main_media .media_sld {
    background-color: #940204;
}

.main_media .slick-slide img {
    margin: 0 auto;
}

.main_media .slick-dots {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 42px;
    width: 86px;
    text-align: center;
    transform: translateX(-50%);
}

@media screen and (max-width: 1919px) {
    .main_media .slick-dots {
        bottom: 4%;
    }
}

.main_media .slick-dots li button {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.4;
    border-radius: 100%;
    font-size: 0;
}

.main_media .slick-dots li.slick-active button {
    background: #fff;
    opacity: 1;
    vertical-align: middle;
}
.main_media .thechaeum_txt {
    text-align: center;
    padding: 100px 0;
}

.main_media .thechaeum_txt .btm_img {
}

.main_media .thechaeum_txt .btm_logo img {
    width: 410px;
    height: 100%;
}

.main_media .thechaeum_txt p {
    font-size: 20px;
    white-space: nowrap;
    line-height: 36px;
    letter-spacing: -0.05em;
    font-weight: 400;
    color: #666;
    padding-top: 70px;
}

/* nav */
#fp-nav {
    width: 170px;
    right: 0;
    top: 50%;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    height: auto;
    width: auto !important;
    text-align: left;
    margin: 62px 0 !important;
}

#fp-nav ul li:nth-of-type(1) {
    display: none;
}

/*#fp-nav ul li:last-of-type,
	.fp-slidesNav ul li:last-of-type{display:none;}*/
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background: transparent !important;
    display: block;
    right: 19px !important;
    font-size: 0 !important;
    border-radius: 100% !important;
    width: 6px !important;
    height: 6px !important;
    box-sizing: border-box;
    margin: 0 !important;
    transform: translateY(-50%);
}

#fp-nav.bg ul li a span,
.fp-slidesNav.bg ul li a span {
    left: 0;
    background: transparent;
}

#fp-nav ul li a.active span {
    background: #c81a12 !important;
    margin: 0 0px 0px 0px !important;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 50;
    width: 100%;
    height: 13px !important;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    position: absolute !important;
}

#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
    /* border:2px solid #fff; */
    border-radius: 100px;
}

#fp-nav ul li .fp-tooltip {
    font-size: 0 !important;
    color: #ccc !important;
    width: auto !important;
    left: 68px !important;
    font-family: 'Lato', sans-serif !important;
    line-height: 34px !important;
    top: 0px !important;
    opacity: 1 !important;
}

#fp-nav ul li .active + .fp-tooltip {
    color: #fff !important;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    opacity: 1;
    color: #fff;
}

#fp-nav.bg ul li .active + .fp-tooltip {
    color: #fff !important;
}

#fp-nav.bg ul li:hover .fp-tooltip,
#fp-nav.bg.fp-show-active a.active + .fp-tooltip {
    color: #fff;
}

#fp-nav ul li a:after {
    content: '';
    display: block;
    font-family: 'Josefin Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700;
    color: #d0d0d0 !important;
    width: 100px !important;
    right: 68px !important;
    line-height: 18px !important;
    top: 0px !important;
    opacity: 0 !important;
    /* position:absolute; */
    /* right:100%; */
    padding-right: 70px;
    transition: all 1.5s;
}

#fp-nav.bg ul li a:after {
    margin-left: 20px;
    transition: all 0.5s;
}

#fp-nav.bg ul li a.active:after {
    color: #c81a12 !important;
}

#fp-nav ul li:nth-of-type(1) a.active:after,
#fp-nav ul li:nth-of-type(1) a:hover:after {
    content: 'Main';
    display: block;
}

#fp-nav ul li:nth-of-type(2) a:after,
#fp-nav ul li:nth-of-type(2) a:hover:after {
    content: 'INTRO';
    opacity: 1 !important;
}

#fp-nav ul li:nth-of-type(3) a:after,
#fp-nav ul li:nth-of-type(3) a:hover:after {
    content: 'BENEFIT';
    display: block;
    opacity: 1 !important;
}

#fp-nav ul li:nth-of-type(4) a:after,
#fp-nav ul li:nth-of-type(4) a:hover:after {
    content: 'PRODUCT';
    display: block;
    opacity: 1 !important;
}

#fp-nav ul li:nth-of-type(5) a:after,
#fp-nav ul li:nth-of-type(5) a:hover:after {
    content: 'FEATURE';
    display: block;
    opacity: 1 !important;
}

#fp-nav ul li:nth-of-type(n + 6) {
    display: none;
}

/*active*/
#section2.active:before {
    left: 0%;
    opacity: 1;
}

#section2.active:after {
    right: 0%;
    opacity: 1;
}

#section2.active .main_service {
    bottom: 0%;
    opacity: 1;
}

.active .main_tit {
    top: 0px;
    opacity: 1;
}

#section2.active .main_notice ul li {
    bottom: 0;
    opacity: 1;
}

#section2.active .main_review {
    bottom: 0px;
    opacity: 1;
}

/*───────────────────────────────────────────────────────────
 
	개별페이지

───────────────────────────────────────────────────────────*/
/*** 인사말 회사소개 | company/index.html ***/
.sub_content.about {
}

.sub_content.about h5 {
}

.sub_content.about h2 {
    color: #222;
    font-size: 22px;
    font-weight: 500;
    padding: 50px 0 30px;
}

.sub_content.about h2 span {
    color: #bf1e2e;
    font-size: 22px;
    font-weight: 500;
}

.sub_content.about p {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 0 0 40px;
    margin: 0 0 30px;
    background: url('../images/da_image/about_line.gif') no-repeat left bottom;
}

.sub_content.about span.sign {
    float: right;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.sub_cont .about_info {
    background: url('../images/da_image/bg_about_01.jpg') no-repeat left top;
    text-align: center;
    height: 320px;
}

.sub_cont .about_tit {
    margin: 0 0 0 33px;
    text-align: left;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: -0.06em;
    background: url('../images/da_image/bg_about_line.gif') no-repeat left bottom;
    padding: 54px 0 27px 0;
}

.sub_cont .about_text {
    margin: 0 0 0 33px;
    padding: 16px 0 0 0;
    text-align: left;
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    letter-spacing: -0.06em;
}

.sub_cont .about_box {
    padding: 58px 0 0 0;
}

.sub_cont .about_box dl {
    width: 276px;
    padding: 164px 0 0 0;
}

.sub_cont .about_box dt {
    text-align: center;
    margin: 0;
    color: #333;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: -0.06em;
    padding: 0 0 10px 0;
}

.sub_cont .about_box dd {
    text-align: center;
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: -0.06em;
}

.sub_cont .about_box .box1 {
    background: url('../images/da_image/icon_about_01.gif') no-repeat center top;
}

.sub_cont .about_box .box2 {
    background: url('../images/da_image/icon_about_02.gif') no-repeat center top;
}

.sub_cont .about_box .box3 {
    background: url('../images/da_image/icon_about_03.gif') no-repeat center top;
}

/*** 회사연혁 | company/history.html ***/
.sub_content.history {
    position: relative;
    height: 569px;
    background: url('../images/da_image/history_bg.png') no-repeat left top;
}

.sub_content.history > div {
    width: 254px;
    height: 129px;
    padding: 8px;
}

.sub_content.history > div .cont {
    background: #fff;
}

.sub_content.history > div .cont ul {
}

.sub_content.history > div .cont ul li {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.5px;
}

.sub_content.history .history_sec01 {
    position: absolute;
    left: 270px;
    top: 142px;
}

.sub_content.history .history_sec01 .cont {
    width: 233px;
    height: 114px;
    padding: 15px 0 0 21px;
}

.sub_content.history .history_sec02 {
    position: absolute;
    left: 0;
    top: 297px;
}

.sub_content.history .history_sec02 .cont {
    width: 233px;
    height: 114px;
    padding: 15px 0 0 21px;
}

.sub_content.history .history_sec03 {
    position: absolute;
    right: 0;
    bottom: 0;
}

.sub_content.history .history_sec03 .cont {
    width: 233px;
    height: 102px;
    padding: 27px 0 0 21px;
}

.sub_content.history .gray {
    background: rgba(86, 86, 86, 0.2);
    border: none;
}

.sub_content.history .pink {
    background: rgba(202, 17, 44, 0.15);
}

.sub_cont .history_info {
    background: url('../images/da_image/bg_history.gif') no-repeat right top;
    position: relative;
}

.sub_cont .history_info dl {
    width: 360px;
    padding: 25px 0 0 0;
}

.sub_cont .history_info dl dt {
    text-align: left;
    line-height: 24px;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.sub_cont .history_info dl dd {
    padding-top: 16px;
}

.sub_cont .history_info dl dd p {
    color: #999;
    font-size: 13px;
    line-height: 20px;
    padding: 0 0 11px 0;
}

.sub_cont .history_info dl dd p strong {
    display: inline-block;
    width: 80px;
    line-height: 20px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    vertical-align: top;
    letter-spacing: -0.06em;
}

.sub_cont .history_info dl dd p span {
    display: inline-block;
    color: #999;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.06em;
    width: 280px;
    vertical-align: top;
}

.sub_cont .history_info .no1 {
    position: absolute;
    left: 612px;
    top: 167px;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-weight: normal;
}

.sub_cont .history_info .no2 {
    position: absolute;
    left: 484px;
    top: 424px;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-weight: normal;
}

.sub_cont .history_info .no3 {
    position: absolute;
    left: 574px;
    top: 568px;
    color: #444;
    font-size: 15px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-weight: normal;
}

.sub_cont .history_info .no1_bg {
    position: absolute;
    left: 162px;
    top: 33px;
    background: #d3d3d3;
    height: 1px;
    width: 450px;
    overflow: hidden;
    display: inline-block;
}

.sub_cont .history_info .no2_bg {
    position: absolute;
    left: 162px;
    top: 275px;
    background: #d3d3d3;
    height: 1px;
    width: 340px;
    overflow: hidden;
    display: inline-block;
}

.sub_cont .history_info .no3_bg {
    position: absolute;
    left: 78px;
    top: 516px;
    background: #d3d3d3;
    height: 1px;
    width: 370px;
    overflow: hidden;
    display: inline-block;
}

/*** 오시는길 | company/location.html ***/
.sub_content.location {
}

.sub_content .locate_info {
    text-align: left;
    margin: 0;
    height: 464px;
    width: 830px;
    border: 1px solid #d3d3d3;
    padding: 5px;
    box-sizing: border-box;
}

.sub_content .locate_info div.map_api {
    background: #fff;
}

.sub_content .locate_box {
    border-top: 2px #333 solid;
    padding: 30px 0;
}

.sub_content .map_info {
    background: #f0f0f0;
    padding: 25px 30px;
    box-sizing: border-box;
    font-size: 0;
}

.sub_content .map_info dl {
    position: relative;
    z-index: 1;
    padding-left: 72px;
    min-height: 54px;
    padding-right: 30px;
    box-sizing: border-box;
}

.sub_content .map_info dt,
.sub_content .map_info dd {
    text-align: left;
}

.sub_content .map_info dt {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    font-family: 'Dosis', sans-serif;
}

.sub_content .map_info dd {
    padding-top: 6px;
    color: #666;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    font-family: 'Noto Sans KR', sans-serif;
}

.sub_content .map_info dl.info01 {
    background: url('../images/sub/icon_sub_map01.png') no-repeat 0 50%;
    width: 246px;
}

.sub_content .map_info dl.info02 {
    background: url('../images/sub/icon_sub_map02.png') no-repeat 0 50%;
    width: 235px;
}

.sub_content .map_info dl.info03 {
    background: url('../images/sub/icon_sub_map03.png') no-repeat 0 50%;
    width: 207px;
    padding-right: 0;
}

.sub_content .map_info dl + dl {
    margin-left: 41px;
}

.sub_content .map_info dl + dl:before {
    position: absolute;
    left: -41px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 68px;
    background: #d3d3d3;
    content: '';
    display: inline-block;
}

/*───────────────────────────────────────────────────────────

	 게시판, 회원 공통 요소

───────────────────────────────────────────────────────────*/
/*** 페이징 ***/
.paging {
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 0;
    margin: 30px 0 0;
}

.paging span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 30px;
}

.paging span + span {
}

.paging .page_num a {
    font-size: 12px;
    color: #777;
}

.paging .page_num a img {
    vertical-align: middle;
}

.paging .page_num.on a,
.paging .page_num a:hover {
    color: #eb3b4b;
    font-weight: 700;
}

.paging .arrow.prev {
    margin-left: -2px;
}

.paging .arrow.last {
    margin-left: -1px;
}

.paging .arrow a {
    width: 30px;
    height: 30px;
    font-size: 0;
    display: block;
}

.paging .arrow.first a {
    background: url('../images/sub/paging_first.gif') no-repeat center;
}

.paging .arrow.prev a {
    background: url('../images/sub/paging_prev.gif') no-repeat center;
}

.paging .arrow.next a {
    background: url('../images/sub/paging_next.gif') no-repeat center;
}

.paging .arrow.last a {
    background: url('../images/sub/paging_last.gif') no-repeat center;
}

/*───────────────────────────────────────────────────────────

	 BOARD   |   게시판서브타입 type

───────────────────────────────────────────────────────────*/
/*** 게시판 리스트 공통 | board/board_list.html ***/
.sub_board {
    position: relative;
    margin: 0;
    padding: 0 0 60px 0;
}

/* 검색 */
.sub_board .board_num {
    padding: 4px 0 0 0;
    display: inline-block;
    line-height: 19px;
    text-align: left;
    font-size: 13px;
    color: #666;
    display: none;
}

.sub_board .board_num strong {
    color: #eb3b4b;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
}

.sub_board .board_search {
    text-align: center;
    padding: 17px 0;
    margin-bottom: 25px;
    border: 1px solid #d3d3d3;
    width: 100%;
    box-sizing: border-box;
}

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

.sub_board .board_search span {
    display: inline-block;
    color: #888;
    font-size: 12px;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    line-height: 18px;
    padding: 6px 0 6px 0;
    text-align: left;
}

.sub_board .board_search span strong {
    color: #eb3b4b;
}

.sub_board .board_search select {
    border: 1px solid #d3d3d3;
    height: 24px;
    line-height: 24px;
    min-width: 73px;
    margin-right: 0px;
    color: #333;
    font-size: 12px;
    padding: 0 0 0 3px;
    font-weight: 600;
}

.sub_board .board_search input.input_text {
    border: 1px solid #d3d3d3;
    height: 24px;
    min-width: 160px;
    text-indent: 10px;
    margin-right: 1px;
    color: #333;
    font-size: 12px;
    vertical-align: top;
}

.gallery_board .board_search {
    margin: 0;
    text-align: left;
    padding: 0 0 20px 0;
}

/* 하단 버튼 */
.sub_board .paging_wrap {
    height: 30px;
    position: relative;
}

.sub_board .paging_wrap2 {
    margin-top: 35px;
    margin-bottom: 39px;
    height: 40px;
    position: relative;
}

.sub_board h2.btn_writing {
    position: absolute;
    right: 0;
    top: -5px;
}

.sub_board .view_btn {
    padding-top: 30px;
    margin-top: 0px;
}

.sub_board .view_btn h2 {
    float: right;
}

.sub_board .view_btn p {
    text-align: center;
}

.sub_board .view_btn p a {
}

.board_btm {
    margin: 30px 0 0 0;
    position: relative;
}

.board_btm .paging {
}

.board_btm .btn_right {
    position: absolute;
    right: 0px;
    top: 0px;
}

/*** 게시판 리스트 (리스트형) | layout/board/kist_default.html ***/
/* 리스트 고정글 */
.sub_board table.board_list tr.board_notice td {
    background: #f4f4f4;
}

.sub_board table.board_list tr.board_notice td:nth-of-type(1) {
    font-size: 13px;
    color: #eb3949;
    font-weight: 600;
}

/* 리스트 */
.sub_board table.board_list {
    text-align: center;
    background: #fff;
}

.sub_board table.board_list tr {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}

.sub_board table.board_list th {
    font-size: 13px;
    text-align: center;
    line-height: 48px;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    color: #333;
    background: #fafafa;
}

.sub_board table.board_list td {
    font-size: 12px;
    color: #888;
    height: 43px;
    padding: 0 10px;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    vertical-align: middle;
}

.sub_board table.board_list td a {
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 500px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 400;
}

.sub_board table.board_list td.left {
    text-align: left;
    padding-left: 20px;
    padding-right: 10px;
}

.sub_board table.board_list td a.board_tit {
    display: inline-block;
    /* width:290px;*/
    line-height: 21px;
    height: 21px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.sub_board table.board_list td .board_tit {
}

.sub_board table.board_list td .board_tit h3 {
    font-size: 13px;
    color: #333333;
    font-weight: 600;
}

.sub_board table.board_list td .board_tit .board_ico,
.sub_board table.board_list td .board_tit img,
.sub_board table.board_list td .board_tit h3,
.sub_board table.board_list td .board_tit span {
    display: inline-block;
    vertical-align: middle;
}

.sub_board table.board_list td .board_tit h3 .board_ico {
}

.sub_board table.board_list td .board_tit img {
    vertical-align: middle;
    margin-right: 5px;
}

.sub_board table.board_list td .board_tit h3 {
    font-weight: 400;
    line-height: 1.2;
    font-size: 12px;
    color: #444;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
}

.sub_board table.board_list td .board_tit h3 strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    max-width: 320px;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/*** 게시판 리스트 (갤러리형) | layout/board/list_gallery01.html ***/
/* 갤러리 고정글 */
.sub_board table.board_list.board_notice {
    margin-bottom: 30px;
}

/* 갤러리 고정글 */
.sub_board .gallery_notice {
    border-top: 1px solid #333;
    margin: 0 0 30px;
}

.sub_board .gallery_notice li {
    padding: 15px 30px;
    box-sizing: border-box;
    background: #f5f5f5;
    border-bottom: 1px solid #d3d3d3;
    font-size: 0;
    position: relative;
}

.sub_board .gallery_notice li + li {
}

.sub_board .gallery_notice li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.sub_board .gallery_notice li .thumb,
.sub_board .gallery_notice li .txt_info {
    display: inline-block;
    vertical-align: middle;
}

.sub_board .gallery_notice li .thumb {
    width: 145px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.sub_board .gallery_notice li .thumb img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sub_board .gallery_notice li .txt_info {
    width: calc(100% - 145px);
    padding-left: 25px;
    box-sizing: border-box;
}

.sub_board .gallery_notice li .txt_info b {
    font-size: 15px;
    color: #eb3949;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.sub_board .gallery_notice li .txt_info .board_tit {
    padding: 5px 0 3px;
    line-height: 20px;
    font-size: 0;
}

.sub_board .gallery_notice li .txt_info .board_tit h3 {
    font-size: 13px;
    color: #333333;
    font-weight: 600;
}

.sub_board .gallery_notice li .txt_info .board_tit .board_ico,
.sub_board .gallery_notice li .txt_info .board_tit img,
.sub_board .gallery_notice li .txt_info .board_tit h3 {
    display: inline;
    vertical-align: top;
}

.sub_board .gallery_notice li .txt_info .board_tit h3 .board_ico {
}

.sub_board .gallery_notice li .txt_info .board_tit img {
    vertical-align: middle;
    margin-right: 5px;
}

.sub_board .gallery_notice li .txt_info .board_tit h3 {
    max-width: calc(100% - 80px);
    width: auto;
}

.sub_board .gallery_notice li .txt_info .board_tit h3 strong {
    display: inline;
    vertical-align: top;
    max-width: 100%;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.sub_board .gallery_notice li p {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 100;
    line-height: 19px;
    text-align: left;
    margin: 10px 0 0;
}

.sub_board .gallery_notice li p span {
    display: inline-block;
    width: 1px;
    height: 9px;
    background: #d3d3d3;
    margin: 6px 8px 0 8px;
    vertical-align: top;
}

/* 리스트 */
.sub_board ul.gallery_list {
    margin-left: 0px;
    padding: 17px 0 0 0;
}

.sub_board ul.gallery_list:after {
    clear: both;
    content: '';
    display: block;
}

.sub_board ul.gallery_list li {
    float: left;
    width: calc(33.3% - 16px);
    margin-right: 24px;
    margin-bottom: 25px;
    position: relative;
}

.sub_board ul.gallery_list li:nth-of-type(3n) {
    margin-right: 0px;
}

.sub_board ul.gallery_list li:nth-of-type(3n + 1) {
    clear: both;
}

.sub_board ul.gallery_list li a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.sub_board ul.gallery_list_top {
    padding: 0 0 0 0;
}

.sub_board ul.gallery_list li .thumb {
    text-align: center;
    width: 100%;
    min-height: 200px;
    height: 200px;
    position: relative;
    border: 1px solid #d3d3d3;
    box-sizing: border-box;
    overflow: hidden;
    vertical-align: top;
    font-size: 0;
    padding: 0;
    margin: 0;
}

.sub_board ul.gallery_list li .thumb a {
    vertical-align: top;
}

.sub_board ul.gallery_list li .thumb img {
    width: 100%;
    height: auto;
    vertical-align: top;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.sub_board ul.gallery_list li .txt_info {
    padding: 5px 0 0;
}

.sub_board ul.gallery_list li .txt_info .board_tit {
    padding: 5px 0 3px;
    line-height: 20px;
    font-size: 0;
}

.sub_board ul.gallery_list li .txt_info .board_tit h3 {
    font-size: 13px;
    color: #333333;
    font-weight: 600;
}

.sub_board ul.gallery_list li .txt_info .board_tit .board_ico,
.sub_board ul.gallery_list li .txt_info .board_tit img,
.sub_board ul.gallery_list li .txt_info .board_tit h3 {
    display: inline-block;
    vertical-align: middle;
}

.sub_board ul.gallery_list li .txt_info .board_tit h3 .board_ico {
}

.sub_board ul.gallery_list li .txt_info .board_tit img {
    vertical-align: middle;
    margin-right: 5px;
}

.sub_board ul.gallery_list li .txt_info .board_tit h3 {
    width: 100%;
}

.sub_board ul.gallery_list li .txt_info .board_tit h3 strong {
    vertical-align: top;
    max-width: 90%;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    word-break: break-all;
}

.sub_board ul.gallery_list li p {
    display: block;
    font-size: 12px;
    color: #888;
    font-weight: 100;
    line-height: 19px;
    text-align: left;
    margin: 0;
}

.sub_board ul.gallery_list li p span {
    display: inline-block;
    width: 1px;
    height: 9px;
    background: #d3d3d3;
    margin: 6px 8px 0 8px;
    vertical-align: top;
}

.sub_board ul.gallery_list li.no_data {
    line-height: 20px;
    padding: 122px 0;
}

/*** 게시판 쓰기 | board/_form_board_write.html ***/
table.board_write {
    border-top: 1px solid #333;
    border-bottom: 1px solid #bbbbbb;
    font-size: 13px;
    text-align: left;
    margin-bottom: 20px;
}

table.board_write tr + tr th,
table.board_write tr + tr td {
    border-top: 1px solid #ddd;
}

table.board_write th,
table.board_write td {
    font-size: 12px;
    font-weight: 300;
    color: #888;
    text-align: left;
    vertical-align: middle;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 30px;
}

table.board_write th {
    color: #444;
    font-weight: 600;
    font-size: 14px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #fafafa;
}

table.board_write td {
}

table.board_write td p {
    padding: 5px 0 0;
}

table.board_write td div.view_cont {
    padding: 8px 10px 50px 10px;
    line-height: 26px;
    min-height: 150px;
}

table.board_write td label {
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

table.board_write td select,
table.board_write td input[type='text'],
table.board_write td input[type='password'],
table.board_write td input[type='number'],
table.board_write td input[type='date'] {
    min-width: 25%;
    margin-right: 10px;
}

table.board_write td input[name='title'] {
    width: 100%;
}

table.board_write td input.tel {
    min-width: 50px;
}

table.board_write td textarea {
    min-width: 100%;
    height: 200px;
}

/*** 게시판 상세 | board/board_view.html ***/
.sub_board .board_view {
    margin-bottom: 0px;
    text-align: left;
}

.sub_board .board_view div.view_tit {
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    border: 1px solid #d3d3d3;
    font-size: 0;
    background: #fafafa;
}

.sub_board .board_view div.view_tit h2 {
    float: left;
    width: 85%;
    font-size: 17px;
    color: #222222;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 20px;
    padding: 10px 0;
}

.sub_board .board_view div.view_tit p {
    display: inline-block;
    vertical-align: middle;
    width: 141px;
    padding-left: 30px;
    font-size: 12px;
    color: #333;
    font-weight: bold;
}

.sub_board .board_view div.view_tit h3 {
    display: inline-block;
    vertical-align: middle;
    color: #888;
    padding: 10px 15px;
    line-height: 20px;
    font-size: 12px;
    width: calc(100% - 171px);
    box-sizing: border-box;
    background: #fff;
}

.sub_board .board_view div.view_cont {
    color: #888;
    width: 100%;
    box-sizing: border-box;
    font-size: 12px;
    padding: 16px 20px 80px 20px;
    line-height: 26px;
    min-height: 255px;
    border: 1px solid #d3d3d3;
    border-top: none;
}

.sub_board .board_view div.view_cont .thumb_img_wrap {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 0;
    vertical-align: top;
}

.sub_board .board_view div.view_cont .thumb_img_wrap img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 0 10px 0;
    padding: 0;
    vertical-align: top;
}

.sub_board .board_view div.view_cont .thumb_img_wrap img + img {
}

.sub_board .board_view h4 {
    border-bottom: 1px solid #d3d3d3;
    border-top: none;
    padding: 17px 30px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.sub_board .board_view h4.thumb_wrap {
    padding-bottom: 7px;
}

.sub_board .board_view h4 span {
    display: inline-block;
    color: inherit;
    font-weight: inherit;
    padding-right: 0;
    margin-right: 0;
}

.sub_board .board_view h4 span:after {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #d3d3d3;
    vertical-align: middle;
    margin: 0 15px;
    padding: 0;
    content: '';
}

.sub_board .board_view h4 a {
    display: inline-block;
}

.sub_board .board_view h4 a + a {
    margin-left: 20px;
}

.sub_board .board_view .thumb_img_wrap {
    padding-top: 10px;
    font-size: 0;
    vertical-align: top;
}

.sub_board .board_view .thumb_img_wrap img {
    vertical-align: top;
    display: inline-block;
    margin-bottom: 10px;
}

.sub_board .board_view .thumb_img_wrap img + img {
    margin-left: 20px;
}

.sub_board .board_view .extra_editor_wrap {
    display: table;
    width: 100%;
    margin: 0;
    table-layout: fixed;
    border-collapse: collapse;
    margin-top: -1px;
}

.sub_board .board_view .extra_editor_wrap > h4,
.sub_board .board_view .extra_editor_wrap > div.extra_cont {
    padding: 10px;
    display: table-cell;
    box-sizing: border-box;
    border-collapse: collapse;
    vertical-align: middle;
    border: 1px #d3d3d3 solid;
    text-align: left;
}

.sub_board .board_view .extra_editor_wrap > h4 {
    background: #fafafa;
    width: 141px;
}

.sub_board .board_view .extra_editor_wrap div.view_cont.extra_cont {
    width: calc(100% - 141px);
}

.sub_board .board_view .extra_editor_wrap div.img_cont {
}

.sub_board .board_view .extra_editor_wrap div.extra_cont > span {
    font-size: 12px;
    color: #888;
    vertical-align: middle;
    display: block;
}

.sub_board .board_view .extra_editor_wrap div.extra_cont > span + span {
    margin-top: 10px;
}

.sub_board .board_view .extra_editor_wrap div.extra_cont a.icon_down {
    font-size: 0;
    background: url('../images/board/icon_download.png') no-repeat 0 0;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: 100% auto;
    margin: 0 0 0 5px;
    padding: 0;
    vertical-align: middle;
}

.sub_board .board_view .extra_editor_wrap div.extra_cont img {
    width: auto;
    height: auto;
    vertical-align: middle;
    max-width: 100%;
}

.view_video_wrap {
    position: relative !important;
    height: 0 !important;
    padding-bottom: 56.28% !important;
    margin: 0 auto !important;
    text-align: center !important;
    max-width: 100% !important;
}

.view_video_wrap > iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.sub_board .view_btn {
    position: relative;
}

.sub_board .view_btn .btn_center {
    text-align: left;
    float: left;
}

.sub_board .view_btn h2 {
    float: right;
}

.sub_board .view_btn p {
    position: absolute;
    right: 0px;
    top: 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.sub_board .view_btn p a {
}

/* 댓글 */
.sub_board .comment {
    margin: 0 0 0px 0;
    padding: 0;
}

.sub_board .comment .comment_box {
    position: relative;
    padding: 30px 20px 30px 20px;
    border-top: 1px #d3d3d3 solid;
    background: #fdfdfd;
}

.sub_board .comment .comment_box .comment_name {
    width: 650px;
    margin-bottom: 10px;
}

.sub_board .comment .comment_box .comment_name span {
    width: 233px;
    line-height: 25px;
    display: inline-block;
}

.sub_board .comment .comment_box .comment_name span.no_line {
    background: none;
}

.sub_board .comment .comment_box .comment_name span label {
    font-size: 13px;
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    line-height: 25px;
    padding: 0;
    width: auto;
    margin-right: 20px;
    display: inline-block;
}

.sub_board .comment .comment_box .comment_name span input {
    border: 1px solid #d3d3d3;
    line-height: 23px;
    height: 23px;
    padding: 0;
    text-indent: 5px;
    width: 158px;
    min-width: 158px;
    margin: 0;
}

.sub_board .comment .comment_box .comment_memo {
    width: 680px;
}

.sub_board .comment .comment_box .comment_memo label {
    font-size: 13px;
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    line-height: 80px;
    padding: 0;
    width: 43px;
    display: block;
    min-height: 80px;
}

.sub_board .comment .comment_box textarea {
    border: 1px solid #d3d3d3;
    width: 620px;
    min-width: 610px;
    padding: 5px 0 5px 5px;
    min-height: 68px;
    height: 68px;
    float: left;
}

.sub_board .comment .comment_box h3 {
    position: absolute;
    right: 20px;
    top: 30px;
    height: 78px;
    text-align: center;
    width: 108px;
    background-color: #333;
    border: 1px #333 solid;
    line-height: 78px;
    padding: 0;
}

.sub_board .comment .comment_box h3 a {
    font-size: 14px;
    color: #fff;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    display: block;
    line-height: 78px;
}

.sub_board .comment .comment_cont {
    position: relative;
    border-top: 1px #d3d3d3 solid;
}

.sub_board .comment .comment_cont h2 {
    color: #888;
    padding: 12px 0 12px 20px;
    line-height: 25px;
    font-size: 12px;
}

.sub_board .comment .comment_cont div {
    position: relative;
    border-top: 1px #d3d3d3 solid;
    padding: 12px 20px 14px 20px;
    z-index: 1;
}

.sub_board .comment .comment_cont div h3 {
    color: #888;
    padding-bottom: 2px;
}

.sub_board .comment .comment_cont div h3 strong {
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
}

.sub_board .comment .comment_cont div h4 {
    color: #888;
    font-size: 12px;
    line-height: 19px;
}

.sub_board .comment .comment_cont div .comment_btn {
    position: absolute;
    right: 20px;
    top: 12px;
    color: #888;
    font-size: 12px;
    border: 0;
    margin: 0;
    padding: 0;
}

.sub_board .comment .comment_cont div .comment_btn a {
    color: #888;
    font-size: 12px;
    display: inline-block;
}

.sub_board .comment .comment_cont div .comment_btn span.bar {
    color: #9b9b9b;
    display: inline-block;
    width: 6px;
    text-align: center;
    margin: 0;
    background: none;
}

.sub_board .comment .comment_cont div.com_reple {
    border-bottom: 1px solid #d3d3d3;
    background: #fff url('../images/da_image/bg_dot_line.png') repeat-x left top;
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 12px 20px 14px 20px;
}

.sub_board .comment .comment_cont div.comment_reply {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 12px 20px 14px 20px;
}

.sub_board .comment .comment_cont div.comment_box2 {
    position: relative;
    padding: 10px 0;
    border: 0;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_name {
    width: 650px;
    margin-bottom: 10px;
    padding: 0px;
    border: 0;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_name span {
    width: 233px;
    line-height: 25px;
    display: inline-block;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_name span.no_line {
    background: none;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_name span label {
    font-size: 13px;
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    line-height: 25px;
    padding: 0;
    width: auto;
    margin-right: 20px;
    display: inline-block;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_name span input {
    border: 1px solid #d3d3d3;
    line-height: 23px;
    height: 23px;
    padding: 0;
    text-indent: 5px;
    width: 158px;
    min-width: 158px;
    margin: 0;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_memo {
    width: 680px;
    padding: 0px;
    border: 0;
}

.sub_board .comment .comment_cont div.comment_box2 .comment_memo label {
    font-size: 13px;
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    line-height: 80px;
    padding: 0;
    width: 43px;
    display: block;
    min-height: 80px;
}

.sub_board .comment .comment_cont div.comment_box2 textarea {
    border: 1px solid #d3d3d3;
    width: 620px;
    min-width: 618px;
    padding: 5px 0 5px 5px;
    min-height: 68px;
    height: 68px;
}

.sub_board .comment .comment_cont div.comment_box2 h3 {
    position: absolute;
    right: 0px;
    top: 47px;
    height: 78px;
    text-align: center;
    width: 108px;
    background-color: #333;
    border: 1px #333 solid;
    line-height: 78px;
    padding: 0;
}

.sub_board .comment .comment_cont div.comment_box2 h3 a {
    font-size: 14px;
    color: #fff;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    display: block;
    line-height: 78px;
}

.sub_board .comment .comment_cont div.com_reserve {
    border: 0;
    background: #fff url('../images/da_image/bg_dot_line.png') repeat-x left 10px;
    position: relative;
    z-index: 3;
    margin-top: -1px;
    padding: 30px 0px 0px 20px;
    margin: 0;
    margin-left: -20px;
    margin-right: -20px;
    width: 790px;
}

.sub_board .comment .comment_cont div.com_reserve textarea.com_reserve {
    border: 1px solid #d3d3d3;
    width: 653px;
    min-width: 653px;
    padding: 5px 0 5px 5px;
    min-height: 68px;
    height: 68px;
    margin-right: 20px;
}

.sub_board .comment .comment_cont div.com_reserve a {
    position: absolute;
    right: 0px;
    top: 30px;
    height: 78px;
    text-align: center;
    width: 108px;
    background-color: #333;
    border: 1px #333 solid;
    font-size: 14px;
    color: #fff;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    display: block;
    line-height: 78px;
    padding: 0;
}

.sub_board .board_comment {
    position: relative;
    box-sizing: border-box;
    border: 1px solid #d3d3d3;
    padding: 20px;
    margin-top: 20px;
}

.sub_board .board_comment .comment_name {
    color: #555;
    padding: 0 0 10px 0;
    text-align: left;
}

.sub_board .board_comment .comment_name span,
.sub_board .board_comment .comment_memo span {
    display: inline-block;
    font-size: 12px;
    color: #555;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    line-height: 25px;
    padding: 0;
}

.sub_board .board_comment .comment_name span input {
    vertical-align: top;
    border: 1px solid #d3d3d3;
    padding: 5px;
}

.sub_board .board_comment .comment_name span + span {
    margin-left: 20px;
}

.sub_board .board_comment .comment_memo {
}

.sub_board .board_comment .comment_memo span {
    margin-right: 20px;
}

.sub_board .board_comment,
.sub_board .board_comment textarea,
.sub_board .board_comment .comment_btn {
    vertical-align: top;
}

.sub_board .board_comment textarea {
    border: 1px solid #d3d3d3;
    width: 698px;
    min-width: 610px;
    padding: 5px 0 5px 5px;
    min-height: 72px;
    height: 72px;
    box-sizing: border-box;
}

.sub_board .board_comment .comment_btn {
    width: 80px;
    height: 72px;
    background: #eb3b4b;
    text-align: center;
    color: #fff;
    line-height: 72px;
    font-size: 14px;
    font-weight: bold;
    display: block;
}

.sub_board .board_comment_list {
    position: relative;
    margin: 0 0 20px;
}

.sub_board .board_comment_list .comment_title {
    border-bottom: 1px solid #d3d3d3;
    color: #888;
    padding: 15px 0 7px 0;
    text-align: left;
}

.sub_board .board_comment_list .comment_title span {
    color: #eb3b4b;
}

.sub_board .board_comment_list .comment {
    position: relative;
    border-bottom: 1px solid #d3d3d3;
    padding: 8px 0;
}

.sub_board .board_comment_list .comment .comment_writer {
    color: #333;
    padding-bottom: 3px;
    text-align: left;
}

.sub_board .board_comment_list .comment span.board_line {
    display: inline-block;
    width: 1px;
    height: 9px;
    background: #999;
    margin: 0 8px;
}

.sub_board .board_comment_list .comment .com_btn {
    position: absolute;
    right: 0;
    top: 9px;
}

.sub_board .board_comment_list .comment .com_btn a {
    color: #999;
}

.sub_board .board_comment_list .comment .com_txt {
    color: #888;
    text-align: left;
    word-break: break-all;
}

.sub_board .board_comment_list .comment .com_txt_reply {
    color: #888;
    text-align: left;
    border-top: 1px solid #d3d3d3;
    padding: 16px 0 10px 40px;
    margin: 10px 0 0;
    background: url('../images/sub/comment_reply.png') no-repeat 20px 18px;
}

.sub_board .board_comment_list .comment .com_modify {
    position: relative;
    margin: 5px 0 0;
}

.sub_board .board_comment_list .comment .com_modify:after {
    clear: both;
    content: '';
    display: block;
}

.sub_board .board_comment_list .comment .com_modify textarea {
    float: left;
    width: 90%;
    height: 50px;
    border: 1px solid #d3d3d3;
}

.sub_board .board_comment_list .comment .com_modify .btn_modify {
    float: right;
    width: 9.2%;
    height: 52px;
    display: inline-block;
    line-height: 52px;
    background: #aaa;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.sub_board .board_comment_list .comment .comment_password {
    position: absolute;
    right: 25px;
    top: 0;
    width: 300px;
    border: 2px solid #757575;
    padding: 7px;
    background: #fff;
    z-index: 100;
    text-align: left;
}

.sub_board .board_comment_list .comment .comment_password.modify {
    right: 72px;
}

.sub_board .board_comment_list .comment .comment_password span {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.sub_board .board_comment_list .comment .comment_password input {
    width: 195px;
    height: 19px;
}

.sub_board .board_comment_list .comment .comment_password h5 {
    display: inline-block;
    width: 39px;
    height: 20px;
    line-height: 20px;
    border: 1px solid #ccc;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    vertical-align: middle;
}

.sub_board .board_comment_list .comment .comment_password a.close {
    position: absolute;
    right: 6px;
    top: 50%;
    margin-top: -4px;
}

.sub_board .board_comment_list .comment .com_btn a.on + .comment_password {
    display: block !important;
}

/* 게시판 개인정보취급 */
.sub_board .policy_cont {
}

.sub_board .policy_cont > div {
    text-align: left;
    margin: 15px 0;
}

.sub_board .policy_cont > div input[type='checkbox'] {
}

.sub_board .policy_cont > div label {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.sub_board .policy_cont > div a {
    display: inline-block;
    line-height: 20px;
    border: 1px #ccc solid;
    padding: 0 8px;
    height: 22px;
    box-sizing: border-box;
    color: #666;
    font-size: 12px;
    text-decoration: none;
    background: #fff;
    margin: 0 0 0 10px;
}

.sub_board .policy_cont > div textarea {
    display: block !important;
    width: 100% !important;
    margin: 10px 0 0 !important;
    text-align: left !important;
    color: #666 !important;
    font-size: 12px !important;
    line-height: 18px !important;
    box-sizing: border-box;
}

.sub_board .policy_cont > div textarea.write {
    min-width: 80% !important;
    width: 100% !important;
    padding: 10px !important;
    height: 100px !important;
}

/*** 게시판(비밀번호) | layout/board/board_secret.html ***/
.sub_pw_input {
    max-width: 1058px;
    margin: 0 auto;
    border: 20px solid #eee;
    outline: 1px solid #ddd;
}

.sub_pw_input .ok_box {
    width: 100%;
    margin: 0 auto;
    padding: 70px 0;
    font-family: 'Nanum Gothic', sans-serif;
    text-align: center;
}

.sub_pw_input .ok_box h2 {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.sub_pw_input .ok_box div.input_box {
    padding-bottom: 40px;
}

.sub_pw_input .ok_box div.input_box input {
    width: 200px;
    height: 30px;
    padding: 5px 10px;
    border: 1px solid #aaa;
}

.sub_pw_input .ok_box a.ok_bt {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    width: 120px;
    height: 40px;
    background: #eb3b4b;
    border: 1px solid #eb3b4b;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

.sub_board .board_css tr {
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
}

.sub_board .board_css tr th {
    line-height: 30px;
    padding: 11px 0;
    padding-left: 35px;
    vertical-align: middle;
    width: 176px;
}

.sub_board .board_css tr td {
    line-height: 30px;
    padding: 11px 30px;
}

.sub_board .board_css tr td.td_textarea {
    padding-right: 16px;
}

.sub_board table.board_css td input[type='text'],
table.board_css td input[type='password'] {
    border: 1px solid #d9d9d9;
}

.sub_board table.board_css td input[name='title'] {
    width: 80%;
}

/*───────────────────────────────────────────────────────────

	 GOODS(상품)

───────────────────────────────────────────────────────────*/
/*** 상품리스트, 상품검색 | goods/goods_list.html, goods/goods_search.html ***/
.sub_list {
}

/* 서브 카테고리 */
.sub_cate_wrap {
    margin-bottom: 2.4%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #d3d3d3;
}

.sub_cate_wrap ul.sub_cate {
    margin: 1.2% 17px;
    line-height: 26px;
    vertical-align: top;
}

.sub_cate_wrap ul.sub_cate:after {
    clear: both;
    content: '';
    display: block;
}

.sub_cate_wrap ul.sub_cate li {
    padding: 0 12px 0 0;
    line-height: 26px;
    font-size: 0;
    float: left;
    text-align: left;
    box-sizing: border-box;
    vertical-align: top;
}

.sub_cate_wrap ul.sub_cate li a {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    display: inline-block;
    line-height: inherit;
    vertical-align: top;
}

.sub_cate_wrap ul.sub_cate li:hover a {
    color: #333;
}

.sub_cate_wrap ul.sub_cate li + li {
    padding-left: 0;
}

.sub_cate_wrap ul.sub_cate li + li:before {
    margin: 0;
    margin-right: 10px;
    width: 1px;
    height: 10px;
    background: #d3d3d3;
    display: inline-block;
    content: '';
    vertical-align: middle;
}

/* 디스플레이 유형 */
.sub_list .list_array {
    margin: 0;
    margin-bottom: 2.4%;
}

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

.sub_list .list_array .list_count,
.sub_list .list_array .list_count span {
    font-size: 15px;
    line-height: 30px;
    height: 30px;
    font-weight: 400;
    vertical-align: top;
    display: inline-block;
    text-align: left;
}

.sub_list .list_array .list_count {
    color: #555;
    float: left;
}

.sub_list .list_array .list_count span {
    color: #eb3b4b;
    font-weight: 700;
}

.sub_list .list_array ul {
    float: right;
}

.sub_list .list_array ul:after {
    clear: both;
    content: '';
    display: block;
}

.sub_list .list_array ul li {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    float: left;
    box-sizing: border-box;
    background: #fff;
    text-indent: -9999px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.sub_list .list_array ul li:before,
.sub_list .list_array ul li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
}

.sub_list .list_array ul li.typeA:before {
    background: url('../images/sub/icon_list_typeA.png') no-repeat left top;
}

.sub_list .list_array ul li.typeA.on:before {
    background: #eb3b4b url('../images/sub/icon_list_typeA_on.png') no-repeat left top;
}

.sub_list .list_array ul li.typeB:before {
    background: url('../images/sub/icon_list_typeB.png') no-repeat left top;
}

.sub_list .list_array ul li.typeB.on:before {
    background: #eb3b4b url('../images/sub/icon_list_typeB_on.png') no-repeat left top;
}

.sub_list .list_array ul li.on {
    border: 1px solid #eb3b4b;
    background: #eb3b4b;
}

/* 상품 진열 */
.sub_list .list {
}

/* 검색결과없음 */
.sub_list .list .list_no {
    color: #555;
    padding: 1.2%;
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
    width: 100%;
    background: #fafafa;
    border: 1px #ccc solid;
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
}

.sub_list .list .list_no .no_data {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.sub_list .list .list_no .no_data:before {
    color: #fff;
    width: 21px;
    height: 21px;
    border-radius: 100%;
    margin: 1px 8px 0 0;
    background: #777;
    font-size: inherit;
    line-height: 21px;
    font-weight: 700;
    content: '!';
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}

/*** 상품 리스트 (갤러리형) | layout/goods/gallery.html ***/
.sub_list .list .list_Galleryform {
}

.sub_list .list .list_Galleryform > ul {
}

.sub_list .list .list_Galleryform > ul:after {
    clear: both;
    content: '';
    display: block;
}

.sub_list .list .list_Galleryform > ul li {
    float: left;
    width: 23.5%;
    margin: 0 2% 30px 0;
}

.sub_list .list .list_Galleryform > ul li:nth-child(4n) {
    margin-right: 0;
}

.sub_list .list .list_Galleryform > ul li:nth-child(4n + 1) {
    clear: both;
    content: '';
    float: left;
}

.sub_list .list .list_Galleryform > ul li dl {
}

.sub_list .list .list_Galleryform > ul li dl dt {
    border: 1px solid #ccc;
    margin: 0 0 18px;
    height: auto;
    min-height: 179px;
    position: relative;
    overflow: hidden;
}

.sub_list .list .list_Galleryform > ul li dl dt img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sub_list .list .list_Galleryform > ul li dl dd {
    text-align: left;
}

.sub_list .list .list_Galleryform > ul li dl dd > em {
    display: block;
    box-sizing: border-box;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub_list .list .list_Galleryform > ul li dl dd p {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

/*** 상품 리스트 (리스트형) | layout/goods/list.html ***/
.sub_list .list .list_Listform {
}

.sub_list .list .list_Listform > ul {
    margin: 0;
    padding: 0;
}

.sub_list .list .list_Listform > ul:after {
    clear: both;
    content: '';
    display: block;
}

.sub_list .list .list_Listform > ul li {
    float: left;
    width: calc(50% - 6px);
    border: 1px solid #ccc;
    margin: 0 12px 12px 0;
    box-sizing: border-box;
}

.sub_list .list .list_Listform > ul li:nth-child(2n) {
    margin-right: 0;
}

.sub_list .list .list_Listform > ul li:nth-child(2n + 1) {
    clear: both;
    content: '';
    float: left;
}

.sub_list .list .list_Listform > ul li dl {
    display: table;
    height: 100%;
}

.sub_list .list .list_Listform > ul li dl:after {
    clear: both;
    display: block;
}

.sub_list .list .list_Listform > ul li dl dt,
.sub_list .list .list_Listform > ul li dl dd {
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.sub_list .list .list_Listform > ul li dl dt {
    width: 45%;
    border-right: 1px solid #ccc;
}

.sub_list .list .list_Listform > ul li dl dt img {
    width: 100%;
    height: auto;
}

.sub_list .list .list_Listform > ul li dl dd {
    width: 55%;
    max-width: 200px;
    padding: 12px;
}

.sub_list .list .list_Listform > ul li dl dd > em,
.sub_list .list .list_Listform > ul li dl dd > .add_info p {
    width: 100%;
    margin: 0;
    padding: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.sub_list .list .list_Listform > ul li dl dd > em {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    height: 24px;
    white-space: nowrap;
    box-sizing: border-box;
}

.sub_list .list .list_Listform > ul li dl dd > .add_info {
    padding-top: 26px;
    position: relative;
    z-index: 1;
    display: inline-block;
    box-sizing: border-box;
}

.sub_list .list .list_Listform > ul li dl dd > .add_info:before {
    position: absolute;
    left: 0;
    top: 12px;
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #222222;
}

.sub_list .list .list_Listform > ul li dl dd > .add_info p {
    color: #777;
    font-size: 14px;
    line-height: 20px;
    max-height: 40px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

/* 검색 페이지 - 검색창 */
.sub_list .list_search {
    width: 100%;
    height: 74px;
    background: #f4f4f2;
    margin: 50px 0 30px;
}

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

.sub_list .list_search > div {
    float: right;
    padding-right: 20px;
}

.sub_list .list_search > div:after {
    clear: both;
    content: '';
    display: block;
}

.sub_list .list_search > div > span {
    float: left;
    display: inline-block;
    height: 74px;
    line-height: 74px;
    margin-right: 15px;
}

.sub_list .list_search > div > span label {
    color: #777;
    font-size: 12px;
    font-weight: 500;
    padding-left: 5px;
}

.sub_list .list_search .search_form {
    float: left;
}

.sub_list .list_search .search_form .search {
    margin: 20px 0 0;
}

.sub_list .list_search .search_form .search select {
    width: 100px;
    height: 32px;
    line-height: 30px;
}

.sub_list .list_search .search_form .search input {
    width: 218px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    text-indent: 12px;
}

.sub_list .list_search .search_form .search a {
    display: inline-block;
    width: 60px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #666;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-left: 3px;
    vertical-align: middle;
}

/*** 상세페이지 | goods/goods_view.html  ***/
.sub_view {
}

.sub_view .info {
}

.sub_view .info dl {
}

.sub_view .info dl:after {
    clear: both;
    content: '';
    display: block;
}

.sub_view .info dl dt,
.sub_view .info dl dd {
    float: left;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sub_view .info dl dt {
    width: 43%;
    border: 1px solid #ccc;
    padding: 18px;
    margin-right: 3%;
}

.sub_view .info dl dd.goods_tit {
    width: 54%;
}

.sub_view .info dl dd.goods_tit {
    padding: 2.4% 30px;
    border-top: 2px solid #222;
    border-bottom: 1px solid #ccc;
    background: #f2f2f2;
    text-align: left;
    box-sizing: border-box;
}

.sub_view .info dl dd.goods_tit,
.sub_view .info dl dd.goods_tit p {
    font-family: 'Nanum Gothic', 'Malgun Gothic', '맑은 고딕', dotum, sans-serif;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sub_view .info dl dd.goods_tit {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: #222;
    white-space: nowrap;
}

.sub_view .info dl dd.goods_tit p {
    margin-top: 8px;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #777;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.sub_view .info_wrap {
    margin: 3.6% 0 0;
    text-align: left;
}

.sub_view .info_wrap .info_li {
    margin: 0 0 6.8%;
}

.sub_view .info_wrap .info_li dt.info_tit {
    color: #222;
    font-size: 25px;
    font-weight: 700;
    padding: 0 0 1.2%;
    margin: 0 0 3.6%;
    border-bottom: 1px solid #222;
    text-align: left;
}

.sub_view .info_wrap .info_li img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}

.sub_view .info_wrap .info_li p {
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.5px;
}

/*───────────────────────────────────────────────────────────

	MEMBER(회원)   |   회원서브타입 type

───────────────────────────────────────────────────────────*/
/*** 로그인 | member/login.html ***/
.sub_login {
    position: relative;
    z-index: 1;
}

.sub_login .login_box {
    position: relative;
    padding: 63px 0 71px;
    border: 1px solid #d3d3d3;
    overflow: hidden;
    background: url('../images/sub/login_bg_symbol.gif') no-repeat bottom right #eee;
    vertical-align: top;
}

.sub_login .login_box h2 {
    text-align: center;
    padding-bottom: 30px;
}

.sub_login .login_box > div {
    min-height: 136px;
    font-size: 0;
    vertical-align: top;
    position: relative;
    width: 315px;
    margin-left: 50px;
    padding: 0 50px 0px 0;
    float: left;
    background: url(../images/sub/login_line.gif) repeat-y right;
}

.sub_login .login_box div input.login_input {
    width: 315px;
    height: 24px;
    border: 0;
    border-bottom: 1px solid #dddddd;
    font-size: 14px;
    /*color:#888888;*/
    font-weight: 600;
}

.sub_login .login_box div input {
    font-size: 15px;
    color: #222;
    letter-spacing: -0.015em;
    background: none;
    background-repeat: no-repeat;
    background-position: left center;
}

.sub_login .login_box div input.mb10 {
    margin-bottom: 19px;
}

.sub_login .login_box div input.login_id,
.sub_login .login_box div input.login_pw,
.sub_login .login_box div input.login_name,
.sub_login .login_box div input.login_email {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #eee inset;
    -webkit-text-fill-color: #222;
}

.sub_login .login_box div input:-webkit-autofill,
.sub_login .login_box div input:-webkit-autofill:hover,
.sub_login .login_box div input:-webkit-autofill:focus,
.sub_login .login_box div input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

.sub_login .login_box div input[type='text']::-webkit-input-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='text']::-moz-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='text']:-ms-input-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='text']:-moz-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='password']::-webkit-input-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='password']::-moz-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='password']:-ms-input-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div input[type='password']:-moz-placeholder {
    color: #222;
    font-size: 15px;
    font-weight: 600;
}

.sub_login .login_box div h3 {
    width: 315px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    text-align: center;
    font-size: 13px;
    margin-top: 6px;
}

.sub_login .login_box div h3.bg_eb3b4b {
    margin-top: 34px;
}

.sub_login .login_box div h3 input,
.sub_login .login_btn div a {
    vertical-align: top;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    text-align: center;
    font-size: 13px;
    background: none;
    border: 0;
    height: 35px;
    line-height: 35px;
    width: 100%;
    outline: 0;
}

.sub_login .login_box p {
    width: 350px;
    margin: 0 auto;
    color: #555;
    letter-spacing: -0.05em;
    line-height: 19px;
    padding: 0;
    font-size: 13px;
}

.sub_login .login_box p input {
    border: 1px solid #dddddd;
}

.sub_login .login_box p.save_btn {
    height: 35px;
    line-height: 35px;
}

.sub_login .login_box p.save_btn input {
    vertical-align: middle;
    margin-bottom: 0;
}

.sub_login .login_btn {
    position: absolute !important;
    top: 50%;
    right: 0;
    height: 136px;
    margin-top: -66px;
    background: none !important;
}

.sub_login .login_btn div a {
    background-color: #898989;
    display: inline-block;
}

.sub_login.pw_box {
}

.sub_login.pw_box .login_box > div {
    min-height: 173px;
}

.sub_login.pw_box .login_box div h3.bg_eb3b4b {
    margin-top: 28px;
}

.sub_login.pw_box {
}

.sub_login .login_btn div.btn_idfind {
    overflow: hidden;
}

.sub_login .login_btn div.btn_idfind a {
    width: 153px;
    margin-left: 9px;
    float: left;
}

.sub_login .login_btn div.btn_idfind a:first-child {
    margin: 0;
}

.sub_login .login_btn div.btn_join a {
    margin: 18px 0 10px;
}

.sub_login .login_btn div p {
    font-size: 12px;
    color: #999999;
    padding-top: 0px;
}

.sub_login .login_btn div h2 {
    font-size: 14px;
    color: #555555;
    font-weight: 600;
    padding-top: 5px;
}

.sub_login .login_box div h3,
.sub_login .login_box div h3 input,
.sub_login .login_btn div a,
.sub_login .login_box p {
    font-family: 'Noto Sans KR', 'Nanum Gothic', dotum, sans-serif;
}

/*** 회원가입 | member/join.html ***/
h3.join_tit {
    font-size: 18px;
    color: #222222;
    font-weight: 600;
    text-align: left;
    padding-bottom: 12px;
}

h3.join_tit.pt20 {
    padding-top: 20px;
}

span.join_btn {
    display: inline-block;
    margin-left: 5px;
    width: 110px;
    height: 28px;
    text-align: center;
    line-height: 26px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    background-color: #aaaaaa;
    border: 1px solid #999999;
}

.sub_join table.board_write td input[name='zip'] {
    width: 80px;
    min-width: 70px;
}

.sub_join table.board_write td input[name='address'],
.sub_join table.board_write td input[name='address2'] {
    width: 55%;
    min-width: 450px;
}

table.board_write {
    border: 1px solid #ddd;
    font-size: 12px;
    text-align: left;
    margin-bottom: 20px;
}

table.board_write th {
    border-right: 1px solid #ddd;
    background: #fafafa;
    color: #333;
    font-size: 12px !important;
    font-weight: 600;
    width: 110px;
}

table.board_write th .require_dot {
    position: absolute;
    left: 14px;
    top: 50%;
    margin-top: -15px;
    line-height: 30px;
    height: 30px;
}

table.board_write th .require_dot:before {
    content: '*';
    font-size: 14px;
    color: #eb3b4b;
    line-height: 14px;
    display: inline-block;
    width: auto;
    height: 14px;
}

table.board_write td {
    border-right: 1px solid #ddd;
    color: #888;
    font-weight: 100;
    padding: 10px 20px;
}

table.board_write tr td .btn_reset {
    background: #fff url('../images/board/icon_btn_reset.gif') no-repeat 9px 50% !important;
    padding: 0 10px 0 30px !important;
    cursor: pointer;
}

table.board_write .btn_sm {
    font-size: 11px;
    color: #000;
    border-radius: 2px;
    padding: 0 9px !important;
    display: inline-block;
    background: #f3f3f3 !important;
    border: 1px solid #d3d3d3;
    text-align: center;
    font-weight: normal;
    height: 28px;
    line-height: 26px;
}

table.board_write #captcha_box {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

table.board_css {
    font-size: 11px;
    text-align: left;
    margin-bottom: 30px;
}

table.board_css tr {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
}

table.board_css th,
table.board_css td {
    color: #888;
    font-size: 11px;
    box-sizing: border-box;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    line-height: 28px;
    padding: 13px 0;
    vertical-align: top;
    text-align: left;
}

table.board_css th {
    color: #333;
    font-weight: 700;
    font-size: 12px;
    padding-left: 30px;
    background: #fafafa;
    width: 180px;
}

table.board_css th.view_tit {
    background: #fbfbfb;
}

table.board_css th .require_dot {
    margin-left: 5px;
    line-height: 30px;
    height: 30px;
}

table.board_css th .require_dot:before {
    content: '*';
    font-size: 14px;
    color: #eb3b4b;
    line-height: 14px;
    display: inline-block;
    width: auto;
    height: 14px;
}

table.board_css td {
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
}

table.board_css td .guide {
    display: inline-block;
    margin-left: 3px;
}

table.board_css td div.view_cont {
    padding: 9px 2px;
    line-height: 25px;
    min-height: 150px;
}

table.board_css td input[type='text'],
table.board_css td input[type='password'] {
    min-width: 198px;
    padding: 0 10px;
    height: 30px;
    border: 1px solid #d3d3d3;
    margin-right: 4px;
}

table.board_css td input.from_phone,
table.board_css td input.form_tel {
    min-width: 42px;
}

table.board_css td.field {
    padding-right: 18px !important;
}

table.board_css td.field label {
    display: inline-block;
    width: 62px;
}

table.board_css td textarea {
    min-width: 98%;
    padding: 8px 0 2% 8px;
    height: 200px;
    border: 1px solid #d3d3d3;
}

table.board_css td textarea.from_textarea {
    min-width: 98%;
    padding: 8px 0 2% 8px;
    height: 200px;
    border: 1px solid #d3d3d3;
}

table.board_css tr:last-child th,
table.board_css tr:last-child td {
    background-image: none;
    border-bottom: 1px #d3d3d3 solid;
}

table.board_css tr:last-child td .btn_reset {
    background: #fff url('../images/board/icon_btn_reset.gif') no-repeat 9px 50% !important;
    padding: 0 10px 0 30px !important;
    cursor: pointer;
}

table.board_css .btn_sm {
    font-size: 11px;
    color: #000;
    border-radius: 2px;
    padding: 0 9px !important;
    display: inline-block;
    background: #f3f3f3 !important;
    border: 1px solid #d3d3d3;
    text-align: center;
    font-weight: normal;
    height: 28px;
    line-height: 26px;
}

.sub_join table.board_css {
    border-right: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
}

.sub_join table.board_css th {
    font-size: 12px;
}

.sub_join table.board_css td {
}

.sub_join table.board_css td input[type='text'],
.sub_join table.board_css td input[type='password'] {
    min-width: 220px;
    padding: 0px !important;
    height: 28px;
    border: 1px solid #d3d3d3;
}

.sub_join table.board_css tr.mail input {
    min-width: 120px !important;
}

.sub_join table.board_css td input[name='email_id'],
.sub_join table.board_css td input[name='email_domain'] {
    min-width: 180px;
}

.sub_join table.board_css td input[name='email_domain'] {
    margin-left: 4px;
}

.sub_join table.board_css td input[name='address'],
.sub_join table.board_css td input[name='address2'] {
    width: 80%;
}

.sub_join table.board_css td input,
.sub_join table.board_css td a,
.sub_join table.board_css td span,
.sub_join table.board_css td strong,
.sub_join table.board_css td select {
    vertical-align: top;
}

.sub_join table.captcha {
}

.sub_join table.captcha th,
.sub_join table.captcha td {
    vertical-align: middle;
}

.sub_join table.captcha th {
    padding: 10px 25px;
}

.sub_join table.captcha .sign {
}

.sub_join span.join_tit {
    font-size: 16px;
    color: #333333;
    display: block;
    font-weight: 600;
    text-align: left;
    padding-bottom: 10px;
}

.sub_memberout p {
    font-size: 13px;
    color: #666;
    line-height: 20px;
    padding-bottom: 20px;
}

.sub_join table.board_css td select {
    height: 28px;
    line-height: 28px;
    border: 1px solid #d3d3d3;
    min-width: 220px;
    padding: 0 10px;
    box-sizing: border-box;
}

.sub_join table.board_css td select.mail_select {
    min-width: inherit;
}

.change_pw table.board_css tr {
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
}

.change_pw table.board_css table.board_css td input[type='text'],
.change_pw table.board_css td input[type='password'] {
    min-width: 272px;
    padding: 0 10px;
    height: 26px;
    background-color: #f6f6f6;
    border: 1px solid #d3d3d3;
}

/*** 회원가입 완료 | member/join_ok.html ***/
.sub_ok {
    max-width: 1058px;
    margin: 0 auto;
    border: 20px solid #eee;
    outline: 1px solid #ddd;
}

.sub_ok .ok_box {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 70px 0;
    font-family: 'Nanum Gothic', sans-serif;
}

.sub_ok .ok_box h3 {
    padding-bottom: 20px;
    font-size: 29px;
    font-weight: 700;
    color: #333;
}

.sub_ok .ok_box h4 {
    font-size: 16px;
    color: #777;
    line-height: 26px;
    font-weight: 500;
}

.sub_ok .ok_box h4 span {
    color: #eb3b4b;
    font-weight: 600;
}

.sub_ok .ok_box .home_bt a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    width: 120px;
    height: 40px;
    background: #eb3b4b;
    border: 1px solid #eb3b4b;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

.sub_ok .ok_box .login_bt a {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    width: 120px;
    height: 40px;
    background: #eb3b4b;
    border: 1px solid #eb3b4b;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
}

/*** 회원탈퇴 | member/withdrawal.html ***/
.memberout {
    font-size: 13px;
    color: #666;
    line-height: 20px;
    padding-bottom: 20px;
}

.withdrawal table.board_css {
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
}

.withdrawal table.board_css tr th {
    line-height: 1;
    padding: 10px 0 10px 30px;
    vertical-align: middle;
    width: 170px;
}

.withdrawal table.board_css tr td {
    line-height: 1;
    padding: 10px 0 10px 20px;
}

/*** 비밀번호 변경 안내 | member/periodic_change_pw.html ***/
.sub_login.add {
    max-width: 1135px;
}

.sub_login.add .login_box {
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
}

.sub_login.add .login_box h2 {
    color: #282828;
    font-size: 23px;
    font-weight: 600;
    line-height: 32px;
}

.sub_login.add .login_box h2 span {
    color: #eb3b4b;
    font-size: 23px;
    font-weight: 600;
}

.sub_login.add .login_box table.board_write {
    width: 662px;
    margin: 58px auto 40px;
}

.sub_login.add .login_box table.board_write caption {
    overflow: auto;
    text-indent: 0;
    height: 20px;
    line-height: 20px;
    color: #777;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    padding-bottom: 14px;
}

.sub_login.add .login_box table.board_write caption span {
    color: #444;
    font-size: 14px;
    font-weight: 600;
}

.sub_login.add .login_box table.board_write input {
    width: 396px;
}

.sub_login.add .login_box .btn_center {
}

.sub_login.add .login_box .btn_center button {
    width: 160px;
}

.sub_login.add .login_box .btn_center button.gray {
    margin-left: 16px;
    background: #999;
    border: 1px solid #999;
}

/*───────────────────────────────────────────────────────────

	 SERVICE

───────────────────────────────────────────────────────────*/
/*** 이용약관 | service/agreement.html ***/
/*** 개인정보취급방침 | service/usepolicy.html ***/
/*** 회원가입동의 | member/join_agreement.html ***/
.member_agree {
    font-size: 13px;
    line-height: 23px;
    padding: 0;
    text-align: left;
}

.sub_agree {
    text-align: center;
    margin: 0;
    padding: 0 0 20px 0;
}

.sub_agree h2 {
    font-size: 17px;
    line-height: 23px;
    text-align: left;
    color: #333;
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
    padding: 0 0 16px 0;
}

.sub_agree .agree_box {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #d3d3d3;
}

.sub_agree .agree_box textarea {
    box-sizing: border-box;
    line-height: 14px;
    font-size: 12px;
    width: 790px;
    color: #888;
    height: 192px;
    line-height: 20px;
    font-weight: 100;
    padding: 20px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
}

.sub_agree .agree_box div {
    font-size: 12px;
    color: #444;
    line-height: 20px;
    font-weight: 100;
    padding: 20px 0;
    background-color: #fff;
    text-align: left;
}

.sub_agree .agree_box .agree_box_con {
    font-size: 12px;
    overflow-y: scroll;
    width: 746px;
    color: #888888;
    height: 500px;
    font-weight: 100;
    padding: 20px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
}

.sub_agree .agree_box p.agree_txt {
    display: block;
    padding: 13px 0 0px 20px;
    line-height: 20px;
    font-size: 12px;
    color: #333;
    text-align: left;
}

.sub_agree .agree_box p.agree_txt label strong {
    font-family: 'Lato', 'Nanum Gothic', sans-serif;
    font-weight: 700;
}

.sub_agree .btn_center {
    padding: 22px 0 0 0;
}

.sub_agree .agree_bg {
    background: #fff;
    border: 1px #d3d3d3 solid;
    border-top: 2px #373737 solid;
    padding: 20px 0;
}

.sub_agree .agree_bg p {
    margin: 0 20px;
    text-align: left;
}

.sub_agree .privacy_bg {
    background: #fff;
}

.sub_agree #module_policy {
    border: 1px #d3d3d3 solid;
    line-height: 18px;
    font-weight: 100;
    padding: 12px 0 12px 12px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    text-align: left;
    overflow: auto;
    height: auto;
}

.join_agree h2 {
    font-size: 16px;
    padding-bottom: 16px;
}

.join_agree .agree_box {
    background: #fbfafa;
    padding: 19px;
    border: 1px solid #d3d3d3;
    width: 830px;
    box-sizing: border-box;
}

.join_agree .agree_box p.agree_txt {
    padding: 13px 0 0 0;
}

/*───────────────────────────────────────────────────────────

	ETC

───────────────────────────────────────────────────────────*/
/*** 에러페이지 | errors/index.html ***/
.error_cont {
    position: relative;
    min-height: 900px;
    background: url('../images/sub/error_bg.gif') repeat-x left top;
}

.error_cont .error_form {
    position: absolute;
    left: 50%;
    top: 123px;
    margin-left: -450px;
    width: 910px;
    height: 610px;
    background: url('../images/sub/error_form_bg.png') no-repeat left top;
    text-align: center;
}

.error_cont .error_form h2 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif !important;
    padding: 296px 0 10px;
}

.error_cont .error_form p {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif !important;
}

.error_cont .error_form h5 {
    width: 156px;
    height: 44px;
    border: 2px solid #333;
    background: url('../images/sub/error_icon_arrow.png') no-repeat 118px center;
    margin: 38px auto 0;
}

.error_cont .error_form h5 a {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif !important;
    text-align: left;
    text-indent: 38px;
}

/* 정확한 용도파악 불가 */
/**********팝업***********/
.password_popup {
    text-align: center;
}

.password_popup p {
    color: #888;
    padding: 40px 0 10px 0;
}

.password_popup h2 {
}

.password_popup h2 input {
    border: 1px solid #d3d3d3;
    padding: 3px 5px;
    width: 150px;
}

.password_popup h3 {
    padding-top: 15px;
}

/* layer-popup */
.layer-popup {
    font-size: 12px;
    background: #fff;
    border: 1px #000 solid;
    position: absolute;
    transform: none;
}

.layer-popup.layer_pc {
}

.layer-popup.layer_t {
}

.layer-popup.layer_m {
    left: 50%;
    min-height: auto;
    transform: translate(-50%, 0);
}

.layer-popup h4 {
    font-size: 12px;
    font-weight: 700 !important;
    line-height: 18px;
    padding: 3px 12px;
    box-sizing: border-box;
    text-align: left;
}

.pop_content {
    margin: 0;
    padding: 0;
}

.pop_content img,
.pop_content table,
.pop_content div {
    max-width: 100%;
    max-height: 100%;
}

.layer-popup .pop_closed {
    text-align: right;
    padding: 4px 12px;
    box-sizing: border-box;
    line-height: 20px;
    font-size: 12px;
    vertical-align: middle;
}

.layer-popup .pop_closed input[type='checkbox'] {
}

.layer-popup .pop_closed input[type='checkbox'] + label {
    font-size: 12px;
}

.layer-popup .pop_closed a {
    vertical-align: top;
    display: inline-block;
    line-height: 20px;
    margin-left: 12px;
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    font-size: 0;
}

.layer-popup .pop_closed a:before,
.layer-popup .pop_closed a:after {
    display: inline-block;
    content: '';
    width: 24px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
}

.layer-popup .pop_closed a:before {
    transform: rotate(45deg);
}

.layer-popup .pop_closed a:after {
    transform: rotate(-45deg);
}
