@charset "utf-8"; /* CSS Document */
html.layerOn { overflow-y:hidden; } 

/*loader ani*/
.loader_wrap { position:fixed; left:0; top:0; width:100vw; height:100vh; z-index:10000; background:rgba(255,255,255,.5); display:flex; justify-content:center; align-items:center } 
.load .loader_wrap { display:none } 
.loader { animation:rotate 1s infinite; height:50px; width:50px; } 
.loader:before,
.loader:after { border-radius:50%; content: ''; display:block; height:20px; width:20px; } 
.loader:before { animation:ball1 1s infinite; background-color:#cb2025; box-shadow:30px 0 0 #f8b334; margin-bottom:10px; } 
.loader:after { animation:ball2 1s infinite; background-color:#00a096; box-shadow:30px 0 0 #97bf0d; } 

@keyframes rotate { 
 0% { transform:rotate(0deg) scale(0.8); } 
50% { transform:rotate(360deg) scale(1.2); } 
100% { transform:rotate(720deg) scale(0.8); } 
 }
@keyframes ball1 { 
 0% { box-shadow:30px 0 0 #f8b334; } 
50% { box-shadow:0 0 0 #f8b334; margin-bottom:0; transform:translate(15px,15px); } 
100% { box-shadow:30px 0 0 #f8b334; margin-bottom:10px; } 
 }
@keyframes ball2 { 
 0% { box-shadow:30px 0 0 #97bf0d; } 
50% { box-shadow:0 0 0 #97bf0d; margin-top:-20px; transform:translate(15px,15px); } 
100% { box-shadow:30px 0 0 #97bf0d; margin-top:0; } 
 }

.va_wrap { display:block; text-align:center; white-space:nowrap; } 
.va_wrap:before { content:""; display:inline-block; vertical-align:middle; width:0; height:100%; } 
.va_wrap img { display:inline-block; vertical-align:middle; max-width:100%; max-height:100%; } 
.va { display:inline-block; vertical-align:middle; max-width:100%; height:auto; white-space:normal; box-sizing:border-box; } 

.al { text-align: left !important; } 
.ac { text-align: center !important; } 
.ar { text-align: right !important; } 

.vt { vertical-align:top !important; } 
.vm { vertical-align:middle !important; } 
.vb { vertical-align:bottom !important; } 
.vs { vertical-align:baseline !important; } 

.fl { float:left !important; } 
.fr { float:right !important; } 
.cl { clear:both !important; display:block; } 
.oh { overflow:hidden !important; } 

.pr { position:relative; z-index:inherit; } 
.pa { position:absolute; left:0; top:0; width:100%; height:100%; } 
.pf { position:fixed; z-index:inherit; } 

.di { display:inline; } 
.db { display:block !important; } 
.dn { display:none !important; } 

.flex { display:flex; box-sizing:border-box; min-width:0; } 
.flex > * { box-sizing:border-box; min-width:0; } 
.flex.di { display:inline-flex; } 
.flex.wrap { flex-wrap:wrap; } 
.flex.col { flex-direction:column; } 
.flex.col > * { width:100%; } 
.flex.space { justify-content:space-between; } 
.flex.vspace { align-content:space-between; } 
.flex.hc { justify-content:center; } 
.flex.hr { justify-content:flex-end; } 
.flex.vt { align-content:flex-start; align-items:flex-start; } 
.flex.vc { align-content:center; align-items:center; } 
.flex.vb { align-content:flex-end; align-items:flex-end; } 
.flex.ac { align-content:center; align-items:center; justify-content:center; text-align:center; } 
.flex .mgL { margin-left:auto; } 
.flex .mgR { margin-right:auto; } 
.flex .mgT { margin-top:auto; } 
.flex > .grow { flex:1 1 0%; } 
.flex > .fix { flex:0 0 auto; } 
.flex > .fx1 { flex: 1; } 
.flex.gap05 { gap:.5em; } 
.flex.gap1 { gap:1em; } 
.flex.gap15 { gap:1.5em; } 
.flex.gap2 { gap:2em; } 
.flex.gap3 { gap:3em; } 
.flex.gap4 { gap:4em; } 
.flex.gap5 { gap:5em; } 

.resize { position:relative; display:block; height:0; padding-bottom:100%; box-sizing:border-box; } 
.resize .re { position:absolute; left:0; top:0; width:100%; height:100%; box-sizing:border-box; } 
.resize.s1 { padding-bottom:66.66%; } 
.resize.s2 { padding-bottom:56.25%; } 
.resize.s3 { padding-bottom:75%; } 

.bgfix { background-repeat:no-repeat; background-position:50% 50%; background-size:cover; } 
.bgfix.fix { background-attachment:fixed; } 
.bgfix.ctn { background-size:contain; } 

.imgfix { width:100%; height:100%; overflow:hidden; } 
.imgfix > img { display:block; width:100%; height:100%; object-fit:cover; } 
.imgfix.ctn > img { object-fit:contain; } 

.vodfix { position:relative; } 
.vodfix > .vod { position:absolute; left:0; top:0; width:100%; height:100%; object-fit:cover; } 

.maskfix { -webkit-mask-repeat:no-repeat; -webkit-mask-size:cover; -webkit-mask-position:center center; } 
.maskfix.mCtn { -webkit-mask-size:contain; } 

.txtfix { background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent; color:transparent; } 

.ttCp { cursor:pointer; } 
.ttCut { display:block; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; } 
.ttCutNo { white-space:normal !important; overflow:visible; } 

.rowCut { white-space:normal; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; } 
.rowCut.r1 { -webkit-line-clamp:1; } 
.rowCut.r2 { -webkit-line-clamp:2; } 
.rowCut.r3 { -webkit-line-clamp:3; } 
.rowCut.r4 { -webkit-line-clamp:4; } 
.rowCut.r5 { -webkit-line-clamp:5; } 
.rowCut.r6 { -webkit-line-clamp:6; } 

.baseT { font-family: var(--fontBase) !important; } 

/**/
.pd0 { padding:0 !important; } 
.pt0 { padding-top:0 !important; } 
.pb0 { padding-bottom:0 !important; } 

.pt1 { padding-top:1em !important; } 
.pt2 { padding-top:2em !important; } 
.pt3 { padding-top:3em !important; } 

.pd05 { padding:.5em !important; } 
.pd1 { padding:1em !important; } 
.pd2 { padding:2em !important; } 

.mg0 { margin:0 !important; } 
.mtA { margin-top:auto !important; } 
.mt0 { margin-top:0 !important; } 
.mt5 { margin-top:5px !important; } 
.mt10 { margin-top:10px !important; } 
.mt20 { margin-top:20px !important; } 
.mt30 { margin-top:30px !important; } 
.mt40 { margin-top:40px !important; } 
.mt50 { margin-top:50px !important; } 
.mt60 { margin-top:60px !important; } 
.mt70 { margin-top:70px !important; } 
.mt80 { margin-top:80px !important; } 

.mtem { margin-top: 5em !important; } 

.mbA { margin-bottom:auto !important; } 
.mb0 { margin-bottom:0 !important; } 
.mb5 { margin-bottom:5px !important; } 
.mb10 { margin-bottom:10px !important; } 
.mb20 { margin-bottom:20px !important; } 
.mb30 { margin-bottom:30px !important; } 
.mb40 { margin-bottom:40px !important; } 
.mb50 { margin-bottom:50px !important; } 

.mlA { margin-left:auto !important; } 
.ml0 { margin-left:0 !important; } 
.ml5 { margin-left:5px !important; } 
.ml10 { margin-left:10px !important; } 
.ml20 { margin-left:20px !important; } 
.ml30 { margin-left:30px !important; } 
.ml40 { margin-left:40px !important; } 
.ml50 { margin-left:50px !important; } 

.mrA { margin-right:auto !important; } 
.mr0 { margin-right:0 !important; } 
.mr5 { margin-right:5px !important; } 
.mr10 { margin-right:10px !important; } 
.mr20 { margin-right:20px !important; } 
.mr30 { margin-right:30px !important; } 
.mr40 { margin-right:40px !important; } 
.mr50 { margin-right:50px !important; } 

/**/
.fs10 { font-size:0.625em !important; } 
.fs11 { font-size:0.688em !important; } 
.fs12 { font-size:0.750em !important; } 
.fs13 { font-size:0.813em !important; } 
.fs14 { font-size:0.875em !important; } 
.fs15 { font-size:0.938em !important; } 
.fs16 { font-size:1.000em !important; } 
.fs17 { font-size:1.063em !important; } 
.fs18 { font-size:1.125em !important; } 
.fs19 { font-size:1.188em !important; } 
.fs20 { font-size:1.250em !important; } 
.fs21 { font-size:1.313em !important; } 
.fs22 { font-size:1.375em !important; } 
.fs23 { font-size:1.438em !important; } 
.fs24 { font-size:1.500em !important; } 
.fs25 { font-size:1.563em !important; } 
.fs26 { font-size:1.615em !important; } 
.fs27 { font-size:1.688em !important; } 
.fs28 { font-size:1.750em !important; } 
.fs29 { font-size:1.813em !important; } 
.fs30 { font-size:1.875em !important; } 
.fs31 { font-size:1.938em !important; } 
.fs32 { font-size:2.000em !important; } 
.fs40 { font-size:2.500em !important; } 
.fs48 { font-size:3.000em !important; } 
.fs52 { font-size:3.250em !important; } 
.fs56 { font-size:3.500em !important; } 

.c_white { color:#fff !important; } 
.c_black { color:#333 !important; } 
.c_gray { color:#777 !important; } 
.c_dgray { color:#555 !important; } 
.c_blue { color:#2b9cbb !important; } 
.c_red { color:var(--crRed) !important; } 
.c_orange { color:#f55110 !important; } 
.c_green { color:#3dab1d !important; } 
.c_point { color:var(--siteC) !important; } 
.c_point2 { color:var(--siteC2) !important; } 
.c_point3 { color:var(--siteC3) !important; } 
.c_grad1 { background-image:var(--crGrad1); } 
.c_grad2 { background-image:var(--crGrad2); } 

.ffEN { font-family:var(--fontBase); } 
.ffPoint { font-family:var(--fontPoint); } 
.ffPre { font-family:var(--fontPre); } 

.fwT { font-weight:100; } 
.fwEL { font-weight:200; } 
.fwL { font-weight:300; } 
.fwR { font-weight:400; } 
.fwM { font-weight:500; } 
.fwML { font-weight:600; } 
.fwB { font-weight:700; } 
.fwBL { font-weight:800; } 
.fwEB { font-weight:900; } 

.fstL { text-decoration:underline; } 
.fstLV { text-decoration:line-through; } 
.fstUC { text-transform:uppercase; } 
.fstCP { text-transform:capitalize; } 
.fstIT { font-style:italic; } 
.fstS0 { letter-spacing:0 !important; } 
.fstS1 { letter-spacing:-.063em !important; } 
.fstS2 { letter-spacing:-.125em !important; } 

.fStroke { -webkit-text-stroke-width:1px; -webkit-text-stroke-color:inherit; -webkit-text-fill-color:transparent; } 
.fSt1 { /*텍스트 세로*/
writing-mode: vertical-rl; text-orientation: mixed; -webkit-transform: scale(-1); -moz-transform: scale(-1); -ms-transform: scale(-1); -o-transform: scale(-1); transform: scale(-1); } 

/* .dataLink:before { content:attr(data-link) } 
a[href].dataLink:hover:before,
a[href].dataLink:focus:before { text-decoration:underline } */

.linkHover:hover { text-decoration:underline; } 

.page_tt { font-size:1em; word-break:keep-all; line-height:1.4; } 
.page_tt > .tt + .tt { margin-top:1.25em; } 
.page_tt.o1 { opacity:.7; } 
.page_tt.o2 { opacity:.1; } 
.page_tt.s1 { font-size:0.938em } 
.page_tt.s2 { font-size:1.063em } 
.page_tt.s3 { font-size:1.125em } 
.page_tt.s4 { font-size:1.250em } 
.page_tt.s5 { font-size:1.313em } 
.page_tt.s6 { font-size:1.500em } 
.page_tt.s7 { font-size:1.875em } 
.page_tt.s8 { font-size:2.250em } 
.page_tt.s9 { font-size:2.500em } 
.page_tt.s10 { font-size:3.000em } 
.page_tt.s11 { font-size:3.500em } 
.page_tt.s12 { font-size:4.000em; } 
.page_tt.s13 { font-size:4.500em; } 
.page_tt.s14 { font-size:5.000em; } 

.lhM { line-height:85%; } 
.lh0 { line-height:1; } 
.lh1 { line-height:1.2; } 
.lh2 { line-height:1.6; } 
.lh3 { line-height:1.8; } 
.wb { word-break:keep-all; } 
.wb2,
.wb2 * { word-break:break-all; word-wrap:break-word; } 

.psM1 { margin-top:-1px !important } 
.ps0 { margin-top:0 !important } 
.ps05 { margin-top:.5em !important } 
.ps1 { margin-top:1em !important } 
.ps15 { margin-top:1.5em !important } 
.ps2 { margin-top:2em !important } 
.ps3 { margin-top:3em !important } 
.ps4 { margin-top:4em !important } 
.ps5 { margin-top:5em !important } 
.ps6 { margin-top:6em !important } 
.ps { margin-top:4em !important } 

.page_btn { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.313em; } 
.page_btn > * { flex:1 1 0%; min-width:0; } 
.page_btn .in { display:flex; align-items:center; flex:0 0 auto; gap:.5em; } 
.page_btn .in.right { margin-left:auto; } 
.page_btn .max0 { flex:0 0 auto; } 
.page_btn .max1 { max-width:10em; min-width:10em; } 
.page_btn .max2 { flex:1 1 100%; } 
.page_btn.al { justify-content:flex-start; } 
.page_btn.ar { justify-content:flex-end; } 
.page_btn.space { justify-content:space-between; } 
.page_btn.space > * { flex:0 0 auto; } 

/*제품 테이블*/
.table_Layauto { table-layout: auto; } 
.prod_table { margin-top: 1.5em; } 
.prod_table_st { border-top: 1px solid #ddd; letter-spacing: -0.03em; } 
.prod_table_st th,
.prod_table_st td { padding: .35em .5em; border-bottom: 1px solid #e5e5e5; /* border-right: 1px solid #e5e5e5; */ background: #fff; } 
.prod_table_st .tt.s1 { font-size: 1.05em; font-weight: 700; } 
.prod_table_st td:last-of-type,
.prod_table_st th:last-of-type { border-right: none; } 
.prod_table_st th { color: #111; background: #f4f8ff; font-weight: 600; font-size: 1.063em; } 
.prod_table_st.tH1 th { height: 3em; } 
.prod_table_st td { color: #333; font-weight: 500; padding: .75em 2em; } 
.prod_table_st th.br,
.prod_table_st td.br { border-right: 1px solid #e5e5e5; } 
.prod_table_st tr:nth-child(2n) td { background: #f7f7f7; } 
.prod_table_st~div.no_con { border-top: none; } 
.prod_table_st td.Bcp { /* background: #1a1e2a; color: #fff; */ font-weight: 600; } 
.prod_table_st th.tdG,
.prod_table_st td.tdG { background: #2c2f36 !important; color: #fff; padding: .75em 2em; font-weight: 600; font-size: 1em; } 
.prod_table_st .tableList { text-align: left; } 
.prod_table_st .tableList > li { color: #333; margin-bottom: .5em; } 
.prod_table_st .tableList > li:last-of-type { margin-bottom: 0em; } 

.prod_table_st .m_tbody { display: none; } 

/*BOARD*/
.board_st2{ border-top: 1px solid #ddd; font-size: .95em; letter-spacing: -0.03em;}
.board_st2 th,
.board_st2 td { height: 4em; text-align: center; padding: .35em .5em; border-bottom: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; background: #fff; } 
.board_st2 .tt.s1{ font-size: 1.05em; font-weight: 700;}
.board_st2 td:last-of-type,
.board_st2 th:last-of-type { border-right: none; } 
.board_st2 th { color: #111; background: #f9f9f9; font-weight: 600; font-size: 1.1em; height: 4em;} 
.board_st2 td { color: #333; font-weight: 500; padding: .35em 1.5em;} 
.board_st2 th.br,
.board_st2 td.br{ border-right: 1px solid #e5e5e5;}
.board_st2~div.no_con { border-top: none; } 
.board_st2 td.Bcp{ background: var(--siteC2); font-weight: 600; }

.aTit_wrap { display:flex; align-items:center } 
.aTit_wrap .aTit { flex:1 1 0%; min-width:0 } 
.board_aTit { text-overflow:ellipsis; white-space:nowrap; overflow:hidden; font-weight:500; } 
.board_aTit:hover,
.board_aTit:focus { text-decoration:underline } 

.board_table { table-layout:fixed; border-collapse:collapse; border-spacing:0; width:100%; border-top:1px solid #111 } 
.board_table th,
.board_table td { height:3em; border-bottom:1px solid #ddd; padding:.5em .5em; text-align:center } 
.board_table th { font-size:1.063em; font-weight:500 } 
.board_table .aTit_wrap { display:flex; align-items:center } 
.board_table .aTit_wrap .aTit { flex:1 1 0%; min-width:0 } 
.board_aTit { text-overflow:ellipsis; white-space:nowrap; overflow:hidden } 
.board_aTit:hover,
.board_aTit:focus { text-decoration:underline } 
.board_table tr:not(.hoverN):hover { background:#f9fbfc } 
.board_table .rNotice { background:#f9fbfc } 
.board_table .rFaq .faqMark { width:2em; line-height:2em; border-radius:.5em; background:#333; color:#fff; font-weight:700; display:inline-block; font-size:1.125em } 
.board_table .rFaq .faqBtn { width:2em; line-height:2em; border-radius:50%; background:#fff; color:#999; box-shadow:0 0 .5em rgba(0,0,0,.1); display:inline-block; transition:.3s } 
.board_table .rFaq .faqBtn .xi { font-size:1em } 
.board_table .rFaq .faqBtn .xi:before { content:"\e941" } 
.board_table .rFaq.cellQ td.w_tit { padding:.75em 0; font-size:1.125em; font-weight:500 } 
.board_table .rFaq.cellA { display:none } 
.board_table .rFaq.cellA td { padding-top:1.5em; padding-bottom:1.5em } 
.board_table .on { position:relative } 
.board_table .on:before { content:""; position:absolute; left:0; top:-1px; width:100%; height:calc(100% + 1px); box-sizing:border-box; border:1px solid var(--siteC) } 
.board_table .on .rFaq { background:none; position:relative } 
.board_table .on .rFaq .faqMark { background:var(--siteC) } 
.board_table .on .rFaq .faqBtn { transform:rotate(180deg) } 
.board_table .on .rFaq.cellQ .w_tit { font-weight:500 } 
.board_table .on .rFaq.cellA { display: table-row } 
.board_table .on .rFaq:hover,
.board_table .on .rFaq:hover td { background:none } 

.board_table.st1 { border-radius:1em; border:none; box-shadow:0 0 1em rgba(0,0,0,.1); overflow:hidden } 
.board_table.st1 td { border:none; padding:1em .5em } 
.board_table.st1 th { background:var(--siteC); color:#fff; height:2em } 

.board_table.st2 td { } 
.board_table.st2 th { background:#f5f5f5; color:#111; height:2em } 

.board_tit { margin-bottom:.5em } 
.board_tit:not(:first-child) { margin-top:3em } 
.board_tit .t1 { font-weight:700; font-size:1.375em } 
.board_tit .t2 { font-weight:700; font-size:1.25em } 

.boardIco { font-family:xeicon; font-size:1.375em; width:1.5em; text-align:center; display:inline-block; } 
.boardIco.file { transform:rotate(45deg) } 
.boardIco.file:before { content:"\ea6a"; color:var(--siteC); } 
.boardIco.lock:before { content:"\e966"; color:#000; } 
.boardIco.notice:before { content:"\ea5b"; color:#000; } 
.boardIco.new:before { content:"\e9a8"; color:var(--crRed); font-size:1.063em; } 
.boardIco.reply:before { content:"\e981"; color:#777; } 
.boardIco.prev:before { content:"\e945"; } 
.boardIco.next:before { content:"\e942"; } 

.nocon { display:flex; justify-content:center; align-items:center; flex-direction:column; border:1px solid #ddd; height:24em; color:#666; margin-top:-1px } 
.nocon .xi { font-size:5em; color:#ddd; margin-bottom:.125em } 
.nocon .xi:not([class*=xi-]):before { content:"\ea15" } 

.page_btn { display:flex; align-items:center; justify-content:center; gap:.5em } 
.page_btn > * { flex:1 1 0%; min-width:0 } 
.page_btn .in { display:flex; align-items:center; flex:0 0 auto; gap:.5em } 
.page_btn .in.right { margin-left:auto } 
.page_btn .max1 { max-width:10em } 

.board_search { display:flex; align-items:center; justify-content:space-between; margin-bottom:1em } 
.board_search .total { display:flex; align-items:center; justify-content:space-between } 
.board_search .total .ico { font-size:1em; width:2em; height:2em; border:1px solid #ddd; display:flex; align-items:center; justify-content:center; border-radius:50%; margin-right:.5em } 
.board_search .total .ico:before { content:"\e91c" } 
.board_search .total .t2 { font-weight:700; font-size:1.125em; color:var(--siteC); margin-left:.25em } 
.board_search .search { display:flex; align-items:center; justify-content:space-between; gap:0 .25em } 
.board_search .search .btn { padding:0 1.5em } 
.board_search .search .btn .ico { font-size:1em } 
.board_search .search .btn .ico:before { content:"\e97a" } 

.board_pg { display:flex; align-items:center; justify-content:center; margin-top:4em; padding:0 1px 1px 0 } 
.board_pg button { min-width:3em; height:3em; border: none; margin:0 -1px -1px 0; padding:0 .5em; background:#fff; color:#666; box-sizing:border-box; position:relative; } 
.board_pg button:hover,
.board_pg button:focus { z-index:1 } 
.board_pg button.on { background: var(--siteC); color:var(--crWhite); z-index:2; position:relative; border-radius: 50%; } 
.board_pg button:hover { color: var(--siteC); } 
.board_pg button.btn.first { border-radius:.5em 0 0 .5em } 
.board_pg button.btn.last { border-radius:0 .5em .5em 0 } 
.board_pg button.btn .ico { font-size:1.125em; color:#000; } 
.board_pg button.btn.first .ico:before { content:"\ea43" } 
.board_pg button.btn.prev .ico:before { content:"\e93c" } 
.board_pg button.btn.next .ico:before { content:"\e93f" } 
.board_pg button.btn.last .ico:before { content:"\ea44" } 

.board_cate { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5em } 
.board_cate * { box-sizing:border-box; } 
.board_cate > * { min-width:0; } 
.board_cate .cate { display:flex; align-items:center; gap:.5em; } 
.board_cate .cate > li { min-width:0; } 
.board_cate .cate > li > a { position:relative; display:flex; align-items:center; justify-content:center; text-align:center; height:2.625em; padding:0 1.5em; background:#fff; border:1px solid #ddd; border-radius:.5em; color:#666; transition:.2s; } 
.board_cate .cate > li > a .tt { font-size:1.063em; font-weight:500; } 
.board_cate .cate > li > a:hover,
.board_cate .cate > li > a.on { background:var(--crBlack); border-color:var(--crBlack); color:#fff; } 

.board_info { display:flex; flex-wrap:wrap; align-content:center; align-items:center; min-width:0; color:#777; } 
.board_info > li { display:flex; align-content:center; align-items:center; min-width:0; box-sizing:border-box; } 
.board_info > li + li:before { content:""; display:inline-block; margin:0 1.125em; width:1px; height:1em; background:#ddd; } 
.board_info > li .tt { } 
.board_info > li .ico { margin-right:.313em; font-size:1.250em; } 
.board_info > li.name .ico:before { content:"\e9f2" } 
.board_info > li.date .ico:before { content:"\e9a0" } 
.board_info > li.hit .ico:before { content:"\e950" } 
.board_info > li.mail .ico:before { content:"\ea07" } 
.board_info > li.tel .ico:before { content:"\eaed" } 
.board_info > li.mgL { margin-left:auto } 
.board_info > li.mgL:before { display:none; } 

.board_file > li:not(:first-child) { margin-top:.5em } 
.board_file > li > a { display:inline-block; padding-left:1.25em; position:relative; color:#333; } 
.board_file > li > a[href]:hover .tt,
.board_file > li > a[href]:focus .tt { text-decoration:underline } 
.board_file > li > a .tt { margin-right:.5em; vertical-align:middle; } 
.board_file > li > a .xi { font-size:1.125em; vertical-align:middle; } 
.board_file > li > a .down { display:inline; color:var(--siteC); } 
.board_file > li > a .ico { position:absolute; left:0; top:.063em; } 
.board_file > li > a .ico:before { content:"\e998" } 
.board_file > li > a .down:before { content:"\eb7c" } 
.board_file > li.flex { gap:1em; } 
.board_file > li.flex > a { flex:1; } 


.board_viewT { border-top:1px solid #111 } 
.board_viewT .vTit { padding:1em 0; font-weight:700; font-size:1.5em; border-bottom:1px solid #ddd; text-align:center } 
.board_viewT .info { display:flex; align-items:center; gap:0 3em; padding:1em 0; border-bottom:1px solid #ddd } 
.board_viewT .info > li { position:relative; color:#666 } 
.board_viewT .info > li:not(:last-child):before { content:""; position:absolute; right:-1.5em; top:50%; width:1px; height:60%; transform:translateY(-50%); background:#ccc } 
.board_viewT .info > li .ico { font-size:1em; margin-right:.25em } 
.board_viewT .info > li.name .ico:before { content:"\e9f2" } 
.board_viewT .info > li.date .ico:before { content:"\e9a0" } 
.board_viewT .info > li.hit .ico:before { content:"\e950" } 
.board_viewM { padding:5em 2em; border-bottom:1px solid #ddd } 
.board_viewM .ytFrame { width:100%; margin:0 auto } 
.board_viewM .ytFrame iframe { position:absolute; left:0; top:0; width:100%; height:100% } 
.board_viewF { display:flex; border-bottom:1px solid #ddd; background:#f5f5f5; padding:1.5em 2.5em } 
.board_viewF .wrap_tit { width:6em; margin-right:2.5em; box-sizing:border-box; border-right:1px solid #ddd } 
.board_viewF .wrap_tit .t1 { font-weight:500; font-size:1.063em } 
.board_viewF .wrap_con { flex:1 1 0%; min-width:0 } 
.board_viewF .wrap_con .list > li:not(:first-child) { margin-top:.5em } 
.board_viewF .wrap_con .list > li > a { padding-left:1.25em; position:relative } 
.board_viewF .wrap_con .list > li > a:hover .tt,
.board_viewF .wrap_con .list > li > a:focus .tt { text-decoration:underline } 
.board_viewF .wrap_con .list > li > a .xi { font-size:1.125em } 
.board_viewF .wrap_con .list > li > a .down { margin-left:.5em; color:var(--siteC) } 
.board_viewF .wrap_con .list > li > a .ico { position:absolute; left:0; top:0 } 
.board_viewF .wrap_con .list > li > a .ico:before { content:"\e998" } 
.board_viewF .wrap_con .list > li > a .down:before { content:"\eb7c" } 

.board_view_top .tit{ padding:1.5em 1em; border-top:2px solid #333; font-size:1.375em; font-weight:500; text-align: center;}
.board_view_top .board_info{ padding:0 1em 1.5em 1em; gap: 1em 0;}
.board_view_top .board_file{ font-size:.938em; padding:.75em 1.25em; background:var(--siteBg2); border:dashed #ddd; border-width:1px 0;}
.board_view_middle{ padding:3em 1em; font-size:1em;}
.board_view_middle *{ box-sizing:border-box; max-width:100% !important;}
.board_view_middle img{ width:auto !important; height:auto !important;}
.board_view_middle .videoCon{ margin-bottom:2em;}
.board_view_middle #viewIframe{ width:100%; height:100%;}
.board_view_bottom{ border-top:1px solid #666;}
.board_view_bottom .board_st a{ display:block; text-overflow:ellipsis; white-space:nowrap; overflow:hidden;}

.board_file > li:not(:first-child) { margin-top:.5em } 
.board_file > li > a { display:inline-block; padding-left:1.25em; position:relative; color:#333; } 
.board_file > li > a[href]:hover .tt,
.board_file > li > a[href]:focus .tt { text-decoration:underline } 
.board_file > li > a .tt { margin-right:.5em; vertical-align:middle; } 
.board_file > li > a .xi { font-size:1.125em; vertical-align:middle; } 
.board_file > li > a .down { display:inline; color:var(--siteC); } 
.board_file > li > a .ico { position:absolute; left:0; top:.063em; } 
.board_file > li > a .ico:before { content:"\e998" } 
.board_file > li > a .down:before { content:"\eb7c" } 
.board_file > li.flex { gap:1em; } 
.board_file > li.flex > a { flex:1; } 

.board_st.list a:hover,
.board_st.view a:hover{ text-decoration:underline;}
.board_st.view tr .arrowUp,
.board_st.view tr .arrowDown{ position: relative; top: 3px;}

.board_view_comment { background:#fff; border-radius:.5em; margin:2em 0 } 
.board_view_comment .wrap_tit { font-size:1.125em } 
.board_view_comment .wrap_inp { margin:1em 0 2em 0 } 
.board_view_comment .wrap_inp .btn { margin-left:1em; height:auto !important; width:5em } 
.board_view_comment .wrap_list > li { margin-bottom:1em; padding-bottom:1em; border-bottom:1px solid #eee } 
.board_view_comment .wrap_list .info { display:flex; align-items:flex-start; gap:0 1em; justify-content:space-between } 
.board_view_comment .wrap_list .con { font-size:.938em; font-weight:500; margin:1em 0 .5em 0 } 
.board_view_comment .wrap_list .date { font-size:.875em; color:#888 } 
.board_view_comment .board_pg { margin-top:2em } 

.board_faq { border-top:1px solid #111; } 
.board_faq > li { } 
.board_faq > li .wrap_in { position:relative; display:flex; align-items:center; gap:0 2em; border-bottom:1px solid #666; line-height:1.8; } 
.board_faq > li .wrap_in > * { min-width:0; } 
.board_faq > li .wrap_in .tit { width:5em; text-align:center; } 
.board_faq > li .wrap_in .tit .tt { font-size:2.000em; } 
.board_faq > li .wrap_in .tit .tt.c1 { } 
.board_faq > li .wrap_in .tit .tt.c2 { color:var(--siteC); } 
.board_faq > li .wrap_in .sbj { flex:1; } 
.board_faq > li .wrap_in .sbj .tt { display:block; padding:1em 0; font-size:1.063em; line-height:1.5; } 
.board_faq > li .wrap_in .con { flex:1; padding:.75em 1em .75em 0; } 
.board_faq > li .wrap_in .con .tt { color:#333; } 
.board_faq > li .wrap_in .ico { position:absolute; right:0; top:50%; width:5em; text-align:center; transform:translateY(-50%); opacity: 1; } 
.board_faq > li .wrap_in .ico .arrow { font-size:2.000em; transition:.3s; } 
.board_faq > li .wrap_in .ico .arrow:before { content:"\e943"; } 
.board_faq > li .faqTit .wrap_in { padding:1em 5em 1em 0; } 
.board_faq > li .faqCon { height:0; overflow:hidden; opacity:0; visibility:hidden; transition:.3s; } 
.board_faq > li .faqCon .wrap_in { align-items:flex-start; } 
.board_faq > li.on .faqTit .wrap_in { background:#f3fbff; } 
.board_faq > li.on .faqTit .wrap_in .ico .arrow { transform:rotate(-180deg); } 
.board_faq > li.on .faqCon { height:auto; overflow:visible; opacity:1; visibility:visible; } 
.board_faq > li.on .faqCon .wrap_in { padding-top:3em; padding-bottom:3em; transition:.3s; } 

.board_viewB { } 

.table_form_wrap { } 
.table_form_wrap .form_tit { padding:1em 0 } 
.table_form_wrap .form_tit .t1 { font-weight:700; font-size:1.375em } 
.table_form_wrap .form_tit .t2 { font-weight:700; font-size:1.625em } 
.table_form_wrap .form_tit .t3 { font-weight:500; font-size:1.125em } 
.table_form > li { border-bottom:1px solid #ddd; padding:.75em 0 } 
.table_form > li:first-child { border-top:1px solid #111 } 
.table_form > li.bd0 { border-bottom:none } 
.table_form > li.bd1 { border-top:none } 
.table_form > li.p1 { padding:1.5em 0; } 
.table_form .wrap_in { display:flex; align-items:center } 
.table_form .wrap_in .tit_wrap,
.table_form .wrap_in .con_wrap { min-height:3em; box-sizing:border-box; display:flex; flex-wrap:wrap; align-items:center; } 
.table_form .wrap_in .tit_wrap { width:12em; gap:.5em 0; padding:0 1.25em; } 
.table_form .wrap_in .tit1 { font-size:1.125em; font-weight:600; } 
.table_form .wrap_in .tit2 { font-size:1.063em; font-weight:600; } 
.table_form .wrap_in .tit3 { font-size:1.000em; font-weight:500; line-height:1.2; } 
.table_form .wrap_in .con_wrap { flex:1 1 0%; min-width:0; gap:.25em; font-size:1.063em; } 
.table_form .wrap_in .con_wrap > * { flex:1 1 0%; min-width:0 } 
.table_form .wrap_in .con_wrap .inp_tt { flex:0 0 auto; font-size:.938em; color:#666; } 
.table_form .wrap_in .con_wrap .input_st { width:100% } 
.table_form .wrap_in .con_wrap .line { padding-top:.75em; margin-top:.75em; border-top:1px solid #ddd } 
.table_form .wrap_in .con_wrap .w1 { flex:0 0 auto; width:3em } 
.table_form .wrap_in .con_wrap .w2 { flex:0 0 auto; width:9em } 
.table_form .wrap_in .con_wrap .w50 { flex:0 0 auto; width:50% } 
.table_form .wrap_in .con_wrap .w100 { flex:0 0 auto; width:100% } 
.table_form .wrap_in .con_wrap .w_auto { flex:0 0 auto } 
.table_form .wrap_in .con_wrap .max1 { max-width:27em } 
.table_form .wrap_in .con_wrap .max2 { max-width:8.375em } 
.table_form .wrap_in .con_wrap .max3 { max-width:23.5em } 
.table_form .wrap_in .con_wrap .min1 { min-width:23.5em } 

.table_form .wrap_in.col { flex-direction:column } 
.table_form .wrap_in.col > * { flex:0 0 auto; width:100% } 
.table_form .wrap_in.col .tit_wrap { padding:0 0; } 

.board_faq { border-top:1px solid #111; } 
.board_faq > li { } 
.board_faq > li .wrap_in { position:relative; display:flex; align-items:center; gap:0 2em; border-bottom:1px solid #ddd; line-height:1.8; } 
.board_faq > li .wrap_in > * { min-width:0; } 
.board_faq > li .wrap_in .tit { width:5em; text-align:center; } 
.board_faq > li .wrap_in .tit .tt { font-size:1.750em; font-weight:600; } 
.board_faq > li .wrap_in .tit .tt.c1 { } 
.board_faq > li .wrap_in .tit .tt.c2 { color:var(--siteC); } 
.board_faq > li .wrap_in .sbj { flex:1; } 
.board_faq > li .wrap_in .sbj .tt { display:block; padding:1em 0; font-size:1.188em; font-weight:600; line-height:1.5; } 
.board_faq > li .wrap_in .con { flex:1; padding:.75em 1em .75em 0; } 
.board_faq > li .wrap_in .con .tt { font-size:1.125em; font-weight:500; color:#333; } 
.board_faq > li .wrap_in .ico { position:absolute; right:0; top:50%; width:5em; text-align:center; transform:translateY(-50%); opacity:.4; } 
.board_faq > li .wrap_in .ico .arrow { font-size:2.000em; transition:.3s; } 
.board_faq > li .wrap_in .ico .arrow:before { content:"\e943"; } 
.board_faq > li .faqTit .wrap_in { padding:1em 5em 1em 0; } 
.board_faq > li .faqCon { height:0; overflow:hidden; opacity:0; visibility:hidden; transition:.3s; } 
.board_faq > li .faqCon .wrap_in { align-items:flex-start; } 
.board_faq > li.on .faqTit .wrap_in { background:var(--crGray); } 
.board_faq > li.on .faqTit .wrap_in .ico .arrow { transform:rotate(-180deg); } 
.board_faq > li.on .faqCon { height:auto; overflow:visible; opacity:1; visibility:visible; } 
.board_faq > li.on .faqCon .wrap_in { padding-top:3em; padding-bottom:3em; transition:.3s; } 

.board_wrap { border-top:2px solid var(--crBlack); padding-top:3em; } 
.board_gallery { display:flex; flex-wrap:wrap; gap:2em } 
.board_gallery > li { width: calc((100% - 4em) / 3); } 
.board_gallery > li .wrap_in { display:block; border-radius:.5em; overflow:hidden } 
.board_gallery > li .wrap_in .img_wrap { position:relative; display:block; border-radius:.5em; overflow:hidden } 
.board_gallery > li .wrap_in .img_wrap .ab { position:absolute; left:0; top:0; width:100%; height:100%; box-sizing:border-box } 
.board_gallery > li .wrap_in .con_wrap { display:block; padding-bottom: 2em; margin-top: 2.5em; display:flex; flex-direction:column; gap:.5em } 
.board_gallery > li .wrap_in .con_wrap .ten{ text-transform: uppercase; font-size: 1.063em;}
.board_gallery > li .wrap_in .con_wrap .t1 { font-size:1.25em; font-weight:500 } 
.board_gallery > li .wrap_in .con_wrap .t2 { font-weight:500 } 
.board_gallery > li .wrap_in .con_wrap .date{ margin-top: 1em; font-weight: 500; font-size: .85em; color: #888;}
.board_gallery > li .wrap_in:hover .con_wrap .t1{ text-decoration: underline;}
.board_gallery > li .wrap_in:focus .con_wrap,
.board_gallery > li .wrap_in:hover .con_wrap { } 
.board_gallery.s1 { gap:2em } 
.board_gallery.s1 > li { width:calc(20% - 1.6em) } 

.board_gallery.w2 > li { flex: 1 23%; max-width: 22%; } 
.board_gallery.w2 > li .wrap_in .con_wrap { padding: 1.5em .5em; } 
.board_gallery.w2 > li .wrap_in .con_wrap .t1 { font-size:1.05em; text-align: center; } 

.hover_st.zoom .img_wrap { overflow:hidden; } 
.hover_st.zoom .img_wrap .resize { transition:.3s; } 
.hover_st.zoom:focus .img_wrap .resize,
.hover_st.zoom:hover .img_wrap .resize { transform:scale(1.05); } 

.hover_st.vod .img_wrap { overflow:hidden; } 
.hover_st.vod .img_wrap:after { content:"\ea40"; font-family:xeicon; font-size:2.500em; color:#fff; display:flex; align-items:center; justify-content:center; text-align:center; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.4); opacity:0; transition:.3s; } 
.hover_st.vod:hover .img_wrap:after { opacity:1; } 


.board_st { table-layout:fixed } 
.prod_view_con .board_st { font-size:.875em } 
.pop .board_st { border-top-width:1px } 
.board_st th,
.board_st td { padding:1em; border-bottom:1px solid #ddd } 
.board_st th { color:#111 } 
.board_st td { color:#777 } 
.board_st a { color:#111 } 

.board_st.list th { border-top:1px solid #111; font-weight:500 } 
.board_st.list td { text-align:center; padding:1em 1em } 
.board_st.list td.w_tit { text-align:left; } 
.board_st.list td.w_tit > a { display:block; text-overflow:ellipsis; white-space:nowrap; overflow:hidden } 

.board_st.list.notice td { background: #f5f5f5; color:#111 } 
.board_st.list.reply td { background:#f9f9f9; } 

.board_st.write { border-top:1px solid #333 } 
.board_st.write th,
.board_st.write td { height:2.5em; padding:.75em 1.5em } 
.board_st.write th { text-align:left; font-weight:500 } 
.board_st.write.hAuto th,
.board_st.write.hAuto td { height:auto } 

.board_st .bg1 { background:#f5f5f5; border-right:1px solid #ddd } 


.no_con { padding:5em 0 !important; color:#999 !important; border:1px solid #eee; text-align:center; width: 100%; } 
.no_con:before { content:"\e9d8"; font-family:xeicon!important; display:block; margin:0 auto .2em auto; font-size:5rem; color:#ddd; } 
.no_con.cart:before { content:"\e9fb" } 
td .no_con { border:none } 

.ess { color:#c82e27; display:inline-block; width:1em; font-size:1em !important } 
.ess:not(:first-child) { margin-left:.5em } 
.xi.ess:before { content:"*" } 

.board_st.faq { border-top:2px solid var(--siteC); } 
.board_st.faq .faq_tit { font-family: Arial, Helvetica, sans-serif; font-weight: lighter; font-size:2em; color:#ccc } 
.board_st.faq .faq_tit:after { content:"." } 
.board_st.faq .BStit { cursor:pointer } 
.board_st.faq .BStit .w_tit { white-space: normal; overflow: visible; color:#333; font-weight:500; font-size:1em } 
.board_st.faq .BScon { display:none } 
.board_st.faq .BScon .w_faq { vertical-align:top } 
.board_st.faq .BStit.on td { border-bottom-color:transparent } 
.board_st.faq .BStit.on .faq_tit,
.board_st.faq .BStit.on .w_tit { color:var(--siteC2); } 
.board_st.faq .BScon td { padding-top:2em; padding-bottom:2em } 
.board_st.faq .board_more { display:inline-block; color:#111; width:2.25em; line-height:2.25em !important; border:1px solid #ddd; border-radius:100%; text-align:center } 
.board_st.faq .board_more .xi { transition:.2s } 
.board_st.faq .board_more .xi:before { content:"\e943" } 
.board_st.faq .on .board_more { background:var(--siteC2); color:#fff; border-color:transparent; color:#fff } 
.board_st.faq .on .board_more .xi { transform:rotate(180deg); } 

/**/
.board_icon.xi { } 
.board_icon.xi:before { } 
.board_icon.new .xi:before { content:"\e9a9"; color:#c82e27 } 
.board_icon.notice .xi:before { content:"\ea5b"; color:#111 } 
.board_icon.reply .xi:before { content:"\e981"; color:#aaa } 
.board_icon.file .xi:before { content:"\ea7f"; color:#999; font-size:.813em } 
.board_icon.sub .xi:before { content:"\e981"; color:#aaa } 
.board_icon.lock:before { content:"\e964"; color:#aaa; font-size:.938em; padding-left:.25em } 
.board_icon.review .xi:before { content:"\e9d7"; color:#003399 } 

/**/

.board_search_wrap { font-size:.938em; margin:0 0 2em 0; display:flex; align-items:center; gap: 1em; } 
.board_search_wrap .left { } 
.board_search_wrap .right { margin-left:auto; display:flex } 
.board_search_wrap .search_inner { display: flex; align-items: center; max-width: 500px; height: 45px; margin: 0px auto; box-sizing: border-box; border: 1px solid #ddd; background-color: #fff; border-radius: 25px; transition: all 0.3s; } 
.board_search_wrap .search_inner .label_select { display: flex
; align-items: center; text-indent: 1.2em; width: 100% !important; height: 100%; text-align: left; vertical-align: middle; border: 0; font-size: 14px; letter-spacing: -0.14px; font-weight: 500; color: #000; background-color: #fff; box-sizing: border-box; cursor: pointer; border-radius: 25px; } 
.board_search_wrap .search_inner .label_select .selectTit{ width: 7em; margin-left: 1.5em; border: none;}
.board_search_wrap .search_inner .input_search{ display: flex; align-items: center;}
.board_search_wrap .search_inner .input_search input,
.board_search_wrap .search_inner .input_search button{ border: none; background: none;}
.board_search_wrap .search_inner .input_search input{ height: 45px; font-weight: 500; padding: 0 1em; box-sizing: border-box;}
.board_search_wrap .search_inner .input_search .search{ position:relative; right: 5px; margin: 0; border: 0; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--siteC); border-radius: 50%;}
.board_search_wrap .search_inner .input_search .search .xi{ font-size: 1.2em;}

.board_search_wrap .total .icon { width:2em; line-height:2em; height:2em; vertical-align:middle; text-align:center; border-radius:50%; box-shadow:0 0 3px 1px rgba(0,0,0,.2); margin-right:.75em; color:#333 } 
.board_search_wrap .total .icon:before { font-size:1.125em } 
.board_search_wrap .total .icon:not(.icoR):before { content:"\e9cf" } 
.board_search_wrap .total .icon ~ i { transform:translateY(.125em) } 
.board_search_wrap .total .t1 { color:#666; font-size:.875em } 
.board_search_wrap .total .t2 { color:#333; font-weight:700; font-size:1.25em; margin-left:.5em } 
.board_search_wrap .total .t3 { font-weight:700; font-size:1.25em; margin-right:.5em } 


/**/
.board_paging { text-align:center; margin-top:6em; font-size:.813em } 
.board_paging button { vertical-align:top; width:3em; height:3em; line-height:3em; border:1px solid #ddd; background:#fff; border-radius:.5em } 
.board_paging button.on { background:#444; color:#fff; border-color:transparent } 
.board_paging button.icon { background:#f1f1f1; color:#666 } 
.board_paging .xi { font-size:1em } 
.board_paging .xi.first:before { content:"\ea47" } 
.board_paging .xi.last:before { content:"\ea48" } 
.board_paging .xi.prev:before { content:"\e93c" } 
.board_paging .xi.next:before { content:"\e93f" } 

/**/
.board_btn_wrap { margin-top:4em; text-align:center } 
.board_btn_wrap .list { margin:-1em 0 0 -1em } 
.board_btn_wrap .list > li button { margin:1em 0 0 1em } 
.pop .board_btn_wrap { margin-top:2em; font-size:.938em } 

/**/
.board_cate { color:#fff; font-size:.875em; font-weight:500; padding:.25em 1em; border-radius:2em; min-width:6em; box-sizing:border-box } 
.board_cate.notice { background:#333 } 
.board_cate.reply { background:#999 } 
.board_cate.c1 { background: #c82e27 } 

.board_category { display:flex; flex-wrap:wrap; margin:-.5em 0 2.5em -.5em } 
.board_category > li { flex:1 1 1% } 
.board_category > li > a { display:block; padding:1em 1em; text-align:center; border:1px solid #ddd; color:#666; border-radius:.5em; font-size:.938em; margin:.5em 0 0 .5em; position:relative } 
.board_category > li.on > a { background:#ebc900; color:#fff; border-color:transparent } 
.board_category > li.on > a:after { content:""; position:absolute; left:50%; bottom:0; margin-left:-.5em; width:1em; height:1em; background:#ebc900; transform:rotate(-45deg); transform-origin:right center } 


.form_wrap .form_tit { border-bottom:1px solid #111; padding:.75em 0 } 
.form_wrap .form_tit.bd0 { border-bottom:none } 
.form_wrap .form_tit .t1 { font-weight:700; font-size:1.313em } 
.form_wrap .form_tit .t2 { font-weight:700; font-size:1.625em } 
.form_wrap .form_tit .t3 { font-weight:500; font-size:1.125em } 
.form_wrap .form_con { padding:1.5em 0 } 
.form_st > li { border-bottom:1px solid #ddd; padding:.75em 0 } 
.form_st > li:first-child { border-top:1px solid #111 } 
.form_wrap .form_tit + .form_st > li:first-child { border-top:none } 
.form_st.noline > li { border-bottom:none; border-top:none } 
.form_st.noline > li:first-child { padding-top:0 } 
.form_st > li.bd0 { border-bottom:none } 
.form_lab { display:flex; align-items:center } 
.form_lab .lab_tit,
.form_lab .lab_con { min-height:3em; box-sizing:border-box; display:flex; flex-wrap:wrap; align-items:center; } 
.form_st.h1 .lab_tit,
.form_st.h1 .lab_con { min-height:2em } 
.form_lab .lab_tit { width:9em; margin:0 2em 0 .5em; gap:.5em 0 } 
.form_lab .tit1 { font-weight:600; font-size:1.063em } 
.form_lab .tit2 { font-weight:600; font-size:.938em; line-height:1.2 } 
.form_lab .lab_con { flex:1 1 0%; min-width:0; gap:.25em; font-weight:500 } 
.form_lab .lab_con.gap1 { gap:.5em 1em } 
.form_lab .lab_con.not(.flex) > * { flex:1 1 0%; min-width:0 } 
.form_lab .lab_con .inp_tt { flex:0 0 auto; font-size:.938em; color:#666; font-weight:400 } 
.form_lab .lab_con .input_st { width:100% } 
.form_lab .lab_con .input_st.grow { flex:1 1 0%; min-width:0; width:auto } 
.form_lab .lab_con .line { padding-top:.75em; margin-top:.75em; border-top:1px solid #ddd } 
.form_lab .lab_con .w1 { flex:0 0 auto; width:3em } 
.form_lab .lab_con .w2 { flex:0 0 auto; width:9em } 
.form_lab .lab_con .w50 { flex:0 0 auto; width:50% } 
.form_lab .lab_con .w100 { flex:0 0 auto; width:100% } 
.form_lab .lab_con .w_auto { flex:0 0 auto; width:auto } 
.form_lab .lab_con .max1 { max-width:23em } 
.form_lab .lab_con .max2 { max-width:10em } 
.form_lab .lab_con .max3 { max-width:10em } 
.form_lab .lab_con .min1 { min-width:23.5em } 

.form_wrap.st1 { } 
.form_wrap.st1 .form_st { border:1px solid #ddd; padding:1em 2em } 
.form_wrap.st1 .form_st > li { border-bottom:none; border-top:none; padding:.375em 0 } 
.font_wrap.st1 .form_lab .lab_con { min-height:auto } 

.form_wrap.st2 { border-radius:1em; padding:1em 2em; box-shadow:0 0 1em rgba(0,0,0,.1) } 
.form_wrap.st2 .form_st > li:last-child { border-bottom:none } 

/**/
.member_agree{}
.agree_box { border-radius:.5em; border:1px solid #ddd; padding:1.5em 2em; color:#555; line-height:1.6; } 
.agree_box.h1 { height:12em; overflow-y:auto; } 
.agree_box p { padding:.5em 0; } 
.agree_box strong { font-size:1.125em; color:#000; } 

.hover_st.vod .img_wrap { overflow:hidden; } 
.hover_st.vod .img_wrap:after { content:"\ea40"; font-family:xeicon; font-size:2.500em; color:#fff; display:flex; align-items:center; justify-content:center; text-align:center; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.4); opacity:0; transition:.3s; } 
.hover_st.vod:hover .img_wrap:after { opacity:1; } 

.board_cate { display:flex; flex-wrap:wrap; margin-bottom:1.25em; border-radius:.5em; box-sizing:border-box; position:relative; padding:1px 0 0 1px } 
.board_cate:before { content:""; position:absolute; left:0; top:0; width:100%; height:100%; top:0; bottom:0; border:1px solid #ddd; box-sizing:border-box; background:#f5f5f5; z-index:-1 } 
.board_cate > li { width:20% } 
.board_cate > li > a { display:flex; align-items:center; justify-content:center; height:3.5em; position:relative; color:#777; background:#fff } 
.board_cate > li > a:before { content:""; position:absolute; left:0; top:0; width:100%; height:100%; right:0; bottom:0; border:1px solid #ddd; box-sizing:border-box; border-left:none; border-top:none } 
.board_cate > li > a .tt { font-weight:600; position:relative; font-size:1.063em } 
.board_cate > li > a:hover,
.board_cate > li > a:focus { background:#f9fbfc; color:#111; z-index:1 } 
.board_cate > li.on > a { background:var(--siteC); color:#fff; border-color:transparent } 
.board_cate > li.on > a .tt:after { content:""; position:absolute; right:-.75em; top:0; width:.375em; height:.375em; background:#fff; border-radius:50% } 


/**/
.ess { display:inline-block; vertical-align:middle; margin:0 .25em; height:1em; font-size:1.25em !important; color:var(--crRed); font-weight:500; } 
.ess_tt { color:#444; } 
.ess_tt > * { vertical-align:middle; } 
.ess_tt > .tt { display:inline-block; } 
.ess_wrap { display:flex; align-items:center; } 

.label_st { display:inline-flex; align-items:center; min-height:1em; gap:0 .25em; cursor:pointer; line-height:1; box-sizing:border-box; } 
.label_st input { zoom:1.5; margin-bottom:auto; cursor:pointer; } 
.label_st input ~ .tt { flex:1; font-weight:500; } 
.label_st input:checked { accent-color:var(--siteC); } 
.label_st input:checked ~ .tt { color:var(--siteC); } 

.label_st.s1 { font-size:1.25em; font-weight:500; } 
.label_st.s1 input { zoom:2; } 

.label_st.st1 { position:relative; padding:1.5em 1em; text-align:center; } 
.label_st.st1.p1 { padding:1em } 
.label_st.st1 .bg { position:absolute; left:0; top:0; width:100%; height:100%; box-sizing:border-box; border:1px solid #ddd; border-radius:.5em; z-index:-1; } 
.label_st.st1 .tt.s1 { font-size:.938em; opacity:.8; } 
.label_st.st1 input:checked { accent-color:#fff; } 
.label_st.st1 input:checked ~ .bg { background:var(--siteC); border-color:var(--siteC); } 
.label_st.st1 input:checked ~ .tt { color:#fff; } 

.label_wrap { display:flex; flex-wrap:wrap; align-items:flex-start; gap:1em 3em } 
.label_wrap.fix0 { gap:.5em } 
.label_wrap.fix0 > * { flex:1 1 1% } 
.label_wrap.fix1 { gap:1em 0 } 
.label_wrap.fix1 > * { width:25%; max-width:8em } 
.label_wrap.fix2 { gap:1em 0 } 
.label_wrap.fix2 > * { width:25%; max-width:10em } 

.label_date { position:relative; display:inline-block; box-sizing:border-box; } 
.label_date > * { cursor:pointer; } 
.label_date .input_st { padding-right:2.25em; } 
.label_date .xi { position:absolute; right:.5em; top:50%; transform:translateY(-50%); color:#888; } 

.input_st { box-sizing:border-box; display:inline-block; vertical-align:middle; border:1px solid #ddd; max-width:100%; height:3em; padding:.5em 1em; } 
a.input_st,
button.input_st { display:inline-flex; align-items:center; justify-content:center; text-align:center; gap:0 .5em; } 
a.input_st.al { justify-content:flex-start; text-align:left; } 
.input_st[type=file] { background:none; border:1px solid #ddd; padding:0; width:100%; } 
textarea.input_st { padding:1em; width:100%; height:10em } 
textarea.input_st.h1 { height:15em } 
textarea.input_st.h2 { height:20em } 
select.input_st { padding-right:2.5em } 

input[type=text].input_st:focus,
input[type=password].input_st:focus,
input[type=tel].input_st:focus { border-color:#111; color:#000; } 

input[type=text].input_st:focus::placeholder,
textarea:focus::placeholder { color:#ccc; } 

button.input_st:disabled,
.input_st[type=button]:disabled,
.input_st[type=submit]:disabled { cursor:default; filter:grayscale(1); } 

.input_st > .tt { } 
.input_st > .xi { font-size:1em; } 
.input_st > .xi:before { font-size:1.063em; } 

.input_st.s1 { height:3.5em; padding:.5em 1.5em; font-size:1.125em; font-weight:500; } 
.input_st.s2 { height:2.5em; font-size:.938em; } 
.input_st.s3 { height:auto; font-size:.875em; } 

.input_st.round { border-radius:10em; } 

.input_st.c1 { background:var(--siteC); border-color:var(--siteC); color:var(--crWhite); } /*포인트색1*/
.input_st.c1.re { background:var(--crWhite); border-color:var(--siteC); color:var(--siteC); } 
.input_st.c2 { background:var(--siteC2); border-color:var(--siteC2); color:var(--siteC3); } /*포인트색2*/
.input_st.c2.re { background:var(--crWhite); border-color:var(--siteC2); color:var(--siteC3); } 
.input_st.c3 { background:#999999; border-color:#999999; color:#ffffff; } /*흐린회색*/
.input_st.c3.re { background:#f5f5f5; border-color:#cccccc; color:#444444; } 
.input_st.c4 { background:#333333; border-color:#333333; color:#ffffff; } /*진한회색*/
.input_st.c4.re { background:#ffffff; border-color:#333333; color:#333333; } 
.input_st.c5 { background:#000000; border-color:#000000; color:#ffffff; } /*블랙*/
.input_st.c5.re { background:#ffffff; border-color:#000000; color:#000000; } 
.input_st.c6 { background:var(--crGrad1); border:none; color:#ffffff; } /*그라데이션*/

.input_st.w1 { width:14em; max-width:100% } 
.input_st.w2 { width:6.25em } 
.input_st.w3 { width:40em; max-width:100% } 
.input_st.w4 { width:25em; max-width:100% } 
.input_st.wFix { min-width:8em; text-align:center } 

.w10 { width:10% !important; } 
.w20 { width:20% !important; } 
.w25 { width:25% !important; } 
.w30 { width:30% !important; } 
.w40 { width:40% !important; } 
.w50 { width:50% !important; } 
.w60 { width:60% !important; } 
.w70 { width:70% !important; } 
.w80 { width:80% !important; } 
.w85 { width:85% !important; } 
.w90 { width:90% !important; } 
.w100 { width:100% !important; } 

.input_sec { width:2em; text-align:center } 
.input_sec.w1 { width:.5em } 
.input_sec.w2 { width:4em } 
.input_sec.w3 { width:1em } 
.input_row { height:.25em; width:100% } 

input::-webkit-input-placeholder { color:#888; } 
input::-moz-placeholder { color:#888; } 
input:-moz-placeholder { color:#888; } 
input:-ms-input-placeholder { color:#888; } 

.input_wrap { display:flex; flex-wrap:wrap; align-items:center; gap:.25em } 

/**/
.w_no { width:6em } 
.w_cate { width:8em } 
.w_tit { width:auto } 
.w_name { width:7em } 
.w_date { width:9em } 
.w_hit { width:7em } 
.w_check { width:4em } 
.w_btn { width:6em } 
.w_state { width:7em } 
.w_sec_tit { width:16em } 

.w_form_tit { width:12em } 
.w_form { width:auto } 
.w_auto { width:auto } 

.tt_state { display:inline-block; box-sizing:border-box; border:1px solid transparent; min-width:6em; padding:.625em .75em; border-radius:3em; text-align:center; font-size:.875em; font-weight:500; } 
.tt_state.c1 { background:#999; color:#fff } 
.tt_state.c1.re { background:#fff; border-color:#ccc; color:#111; } 
.tt_state.c2 { background:#434853; color:#fff } 
.tt_state.c2.re { background:#fff; border-color:#434853; color:#111; } 
.tt_state.c3 { background:var(--siteC); color:var(--crWhite) } 
.tt_state.c3.re { background:var(--crWhite); border-color:var(--siteC); color:var(--siteC); } 
.tt_state.c4 { background:var(--siteC3); color:var(--crWhite) } 
.tt_state.c4.re { background:var(--crWhite); border-color:var(--siteC3); color:var(--siteC3); } 

/*table*/
.flex_table { box-sizing:border-box; } 
.flex_table .thead { position:relative; z-index:2; margin-bottom:-1px; } 
.flex_table .tbody { display:flex; flex-direction:column; height:100% } 
.flex_table .thead .tr { background:#fff; border-color:#333; } 
.flex_table .tbody .tr { background:#fff; } 
.flex_table .tr { flex:1 1 0%; min-height:0; display:flex; border:1px solid #ddd; box-sizing:border-box; overflow:hidden; } 
.flex_table .tr:not(:last-child) { border-bottom:none } 
.flex_table .tr:first-child { border-top-left-radius:.5em; border-top-right-radius:.5em } 
.flex_table .tr:last-child { border-bottom-left-radius:.5em; border-bottom-right-radius:.5em } 
.flex_table .thead + .tbody .tr:first-child { border-top-left-radius:0; border-top-right-radius:0 } 
.flex_table .thead .tr:last-child { border-bottom-left-radius:0; border-bottom-right-radius:0 } 
.flex_table .thead .td { font-weight:600; } 
.flex_table .td { display:flex; flex-direction:column; align-items:center; min-height:3.75em; justify-content:center; text-align:center; flex:1 1 0%; min-width:0; box-sizing:border-box; padding:1em 1em; border-right:1px solid #ddd } 
.flex_table .td.al { align-items:flex-start; } 
.flex_table .td.ar { align-items:flex-end !important; } 
.flex_table .td:last-child { border-right:none } 
.flex_table .td.bg1 { background:var(--crGray); } 
.flex_table .td.bg2 { background:var(--crGray2); } 
.flex_table .td.w1 { flex:0 0 11em } 
.flex_table .td.w2 { flex:0 0 8em } 
.flex_table .td.wTit { flex:0 0 12em; } 
.flex_table .td.wName { flex:0 0 7.5em } 
.flex_table .td.wDate { flex:0 0 9em } 
.flex_table .td.wBtn { flex:0 0 7em } 
.flex_table .td.wState { flex:0 0 8em } 
.flex_table .td.wMail { flex:0 0 12em } 
.flex_table .td.wTel { flex:0 0 9em } 

.flex_table .flex_table { flex:1 1 0; min-width:0; height:100%; } 
.flex_table .flex_table .thead { margin-bottom:0 } 
.flex_table .flex_table .tr { border:none; border-bottom:1px solid #ddd; border-radius:0 0; } 
.flex_table .flex_table .tr:last-child { border-bottom:none } 

.flex_table .td .inp_con { display:flex; flex-wrap:wrap; align-items:center; width:100%; gap:.313em .313em; } 
.flex_table .td .inp_con + .inp_con { margin-top:.25em; } 
.flex_table .td .inp_con .grow { flex:1; } 
.flex_table .td .inp_con .label_wrap { flex:1; } 

.flex_table.form { } 

.flex_table.start .td:not(.ac) { align-items:flex-start; text-align:left; } 

/**/
.nocon { display:flex; justify-content:center; align-items:center; flex-direction:column; border:1px solid #ddd; width:100% !important; height:20em; color:#666; font-weight:500; margin-top:-1px; box-sizing:border-box; } 
.nocon .xi { font-size:2em; color:#ddd; font-weight:normal; margin-bottom:.5em } 
.nocon .xi:not([class*=xi-]):before { content:"\ea15" } 
.nocon.st1 { border:none; height:10em } 

label.error { display:inline-block; font-size:.875em; color:#fb2217; } 

/* 테이블 스크롤 */
.scr_i{ display: none;}



/* New Board List */
.board-box-wrap { } 
.board-box-wrap .list { border-top: 1px solid var(--crGray4); } 
.board-box-wrap .list > li { padding: 2em 1em; border-bottom: 1px solid var(--crGray4); } 
.board-box-wrap .list > li > a { text-decoration: none; } 
.board-box-wrap .contents { flex: 1; } 
.board-box-wrap .contents .subject { font-size: 1.25rem; font-weight: 700; color: var(--crBlack); transition: 0.3s; } 
.board-box-wrap .contents .date { display: inline-block; font-size: 1rem; font-weight: 500; color: var(--crGray5); margin-top: 1rem; } 
.board-box-wrap .arrow { flex: 0 0 15em; text-align: right; } 
.board-box-wrap .arrow .xi { width: 2.5em; height: 2.5em; border-radius: 50%; border: 1px solid var(--crBlack); transition: 0.3s; } 
.board-box-wrap .list > li > a:hover .subject { color: var(--siteC); } 
.board-box-wrap .list > li > a:hover .xi { color: var(--crWhite); background: var(--siteC); } 
/**/

@media screen and (max-width: 1024px) {

/* 테이블 스크롤 */
.scr_i{display: inline-flex; align-items: center; gap:.2em; margin-bottom: 5px; color:var(--siteC); left: 0; top: 0; }
.scr_i .xi{ transform: rotate(90deg);}
.scroll_wrap{width: 100%; overflow-x: auto;}
.scroll_wrap table{width: 1000px;}
}

@media screen and (max-width: 768px) {
colgroup col.w_no,
colgroup col.w_name,
colgroup col.w_hit,
.board_st.list th.w_no,
.board_st.list td.w_no,
.board_st.list th.w_name,
.board_st.list td.w_name,
.board_st.list td.w_hit,
.board_st.list th.w_hit{display: none;}

.board_search_wrap .search_inner .label_select .selectTit{width: 5em; margin-left: 1em;}

.board_gallery{gap: 1em;}
.board_gallery > li{width: calc((100% - 1em) / 2);}
.board_search_wrap .total .icon{display: none;}

.w_no{ width:2em}
.w_cate{ width:6em}
.w_name{ width:4em}
.w_hit{ display:none}
.w_form_tit{ width:8em}
.w_date2{ width:8em}
.w_state{ width:6em}
.w_btn2{ width:5em}
.w_btn2 input:not(:first-child){ margin-top:.5em}
}

@media screen and (max-width: 500px) {
.scroll_wrap table{width: 700px;}
.board_search_wrap .search_inner .label_select{width: auto !important;}
.board_search_wrap .search_inner .input_search input{width: 100%;}
.board_search_wrap .search_inner .input_search .search{flex: 0 0 35px;}
}