@charset "utf-8"; /* CSS Document */
:root { --whiten: brightness(0) invert(1); --headerH : 5em; --pgPD : 3vw; --siteC : #001689; --siteC2 : #fe3b1f; --siteWaiGray : #949494; --siteBgray : #464C53; --siteLine : #CDD1D5; --siteCerr : #F03; --colorSub: #464C53; --gradC1: #1f4ca0; --gradC2: #00a2e2; --fSerif : Marcellus, serif; --crGrad1: linear-gradient(to right, var(--gradC1), var(--gradC2)); --crGrad2: linear-gradient(to bottom, var(--gradC1), var(--gradC2)); } 
.siteC { color: var(--siteC) !important } 
.siteCerr { font-family:var(--fSerif) } 

.calcW { display:flex; flex-wrap:wrap; gap:var(--calcG) } 
.calcW .calcEl,
.calcW > li { flex:0 0 auto; width:calc( (100% - (var(--calcL) - 1) * var(--calcG)) / var(--calcL) ) } 

.flex { display:flex } 
.flex.wrap { flex-wrap:wrap } 
.flex.col { flex-direction:column } 
.flex.col > * { width:100%; box-sizing:border-box } 
.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 .mgL { margin-left:auto } 
.flex .mgR { margin-right:auto } 
.flex .mgT { margin-top:auto } 
.flex .grow { flex:1 1 0%; min-width:0 } 
.flex .fix { flex:0 0 auto } 
.flex.fc { justify-content:center; align-items:center } 

/**/
.hideT { position: absolute; z-index: -1; display: inline-block; overflow: hidden; height: 1px; width: 1px; border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); word-break: initial; word-wrap: initial; } 

.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; } 
.vBs { vertical-align:baseline !important } 

.pr { position:relative; z-index:inherit } 
.pa { position:absolute; left:0; top:0; width:100%; height:100% } 

.di { display:inline !important; } 
.dib { display:inline-block !important; } 
.db { display:block !important; } 
.dn { display:none !important; } 
.df { display:flex !important; } 

.flex { display:flex } 
.flexC { display:flex; align-items:center; justify-content:center; text-align:center } 

.cp { cursor:pointer; } 
.tCut { text-overflow : ellipsis; overflow : hidden; white-space : nowrap; display:block; width:100% } 

.tRow { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; --tRowLH : 1.375em; line-height:var(--tRowLH); word-break:break-all } 
.tRow.r2 { -webkit-line-clamp: 2 } 
.tRow.r3 { -webkit-line-clamp: 3 } 
.tRow.r4 { -webkit-line-clamp: 4 } 
.tRow.r2.fix { height:calc(var(--tRowLH) * 2) } 
.tRow.r3.fix { height:calc(var(--tRowLH) * 3) } 
.tRow.r4.fix { height:calc(var(--tRowLH) * 4) } 
.tRow.lh1 { --tRowLH : 1.25em } 

.c_point { color:var(--siteC) !important } 
.c_point2 { color:var(--siteC2) !important } 
.c_black { color:#000 !important } 
.c_gray { color:#777 !important } 
.c_white { color:#fff !important } 
.c_dgray { color:#555 !important } 
.c_red { color:#F36 !important } 

.resize { aspect-ratio: 1 / 1 } 
.resize.vod { aspect-ratio: 16 / 9 } 
.resize.photo { aspect-ratio: 3 / 2 } 
.resize.a4 { aspect-ratio: 210 / 297 } 
.resize.logo { aspect-ratio: 5 / 2 } 
.resize:has(img) { display:flex; overflow:hidden } 
.resize img { object-fit:contain; max-width:100%; max-height:100%; margin:auto } 
.resize.cover img { object-fit:cover; width:100%; max-height:none } 
.resize.logo img { max-width:80% } 

.bgfix { background-repeat:no-repeat; background-position:center center; background-size:cover; } 
.bgfix.vt { background-position-y:0% } 
.bgfix.ct { background-size:contain } 
.bgfix.fix { background-attachment:fixed } 

.preW { white-space:pre-wrap; } 
.radius { border-radius:1em; overflow:hidden } 

.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; } 
 }

/**/
.pd0 { padding:0 !important; } 
.pt0 { padding-top:0 !important; } 
.pb0 { padding-bottom:0 !important; } 
.pl0 { padding-left:0 !important; } 
.pr0 { padding-right:0 !important; } 

.mg0 { margin:0 !important; } 
.mt0 { margin-top:0 !important; } 
.mb0 { margin-bottom:0 !important; } 
.ml0 { margin-left:0 !important; } 
.mr0 { margin-right:0 !important; } 

.mt0 { margin-top:0 !important; } 
.mt3 { margin-top:3px !important; } 
.mt5 { margin-top:5px !important; } 
.mt10 { margin-top:10px !important; } 
.mt15 { margin-top:15px !important; } 
.mt20 { margin-top:20px !important; } 
.mt25 { margin-top:25px !important; } 
.mt30 { margin-top:30px !important; } 
.mt40 { margin-top:40px !important; } 
.mt50 { margin-top:50px !important; } 

.mb0 { margin-bottom:0 !important; } 
.mb5 { margin-bottom:5px !important; } 
.mb10 { margin-bottom:10px !important; } 
.mb15 { margin-bottom:15px !important; } 
.mb20 { margin-bottom:20px !important; } 
.mb25 { margin-bottom:25px !important; } 
.mb30 { margin-bottom:30px !important; } 
.mb40 { margin-bottom:40px !important; } 
.mb50 { margin-bottom:50px !important; } 

.ml0 { margin-left:0 !important; } 
.ml5 { margin-left:5px !important; } 
.ml10 { margin-left:10px !important; } 
.ml15 { margin-left:15px !important; } 
.ml20 { margin-left:20px !important; } 
.ml25 { margin-left:25px !important; } 
.ml30 { margin-left:30px !important; } 
.ml40 { margin-left:40px !important; } 
.ml50 { margin-left:50px !important; } 

.mr0 { margin-right:0 !important; } 
.mr5 { margin-right:5px !important; } 
.mr10 { margin-right:10px !important; } 
.mr15 { margin-right:15px !important; } 
.mr20 { margin-right:20px !important; } 
.mr25 { margin-right:25px !important; } 
.mr30 { margin-right:30px !important; } 
.mr40 { margin-right:40px !important; } 
.mr50 { margin-right:50px !important; } 

.pd05 { padding:.5em !important; } 
.pd1 { padding:1em !important; } 
.pd2 { padding:2em !important; } 

.ps1 { margin-top:2vmin !important } 
.ps2 { margin-top:4vmin !important } 
.ps3 { margin-top:6vmin !important } 
.ps4 { margin-top:8vmin !important } 
.ps5 { margin-top:10vmin !important } 
.ps { margin-top:8vmin !important } 

.fwBL { font-weight:900 } 
.fwB { font-weight:700 } 
.fwM { font-weight:500 } 
.fwR { font-weight:400 } 
.fwL { font-weight:300 } 

.fs12 { font-size:.75em !important } 
.fs13 { font-size:.813em !important } 
.fs14 { font-size:.875em !important } 
.fs15 { font-size:.938em !important } 
.fs16 { font-size:1em !important } 
.fs17 { font-size:1.063em !important } 
.fs18 { font-size:1.125em !important } 
.fs19 { font-size:1.188em !important } 
.fs20 { font-size:1.25em !important } 
.fs21 { font-size:1.313em !important } 
.fs22 { font-size:1.375em !important } 
.fs23 { font-size:1.438em !important } 
.fs24 { font-size:1.5em !important } 
.fs25 { font-size:1.563em !important } 
.fs26 { font-size:1.615em !important } 
.fs27 { font-size:1.688em !important } 
.fs28 { font-size:1.75em !important } 
.fs29 { font-size:1.813em !important } 
.fs30 { font-size:1.875em !important } 
.fs31 { font-size:1.938em !important } 
.fs32 { font-size:2em !important } 

.tLW { letter-spacing:-.05em; word-spacing:.2em } 

.w100 { width: 100% !important; } 
.w90 { width: 90% !important; } 
.w80 { width: 80% !important; } 
.w70 { width: 70% !important; } 
.w60 { width: 60% !important; } 
.w50 { width: 50% !important; } 
.w40 { width: 40% !important; } 
.w30 { width: 30% !important; } 
.w20 { width: 20% !important; } 
.w10 { width: 10% !important; } 

.tt_state { font-weight:700; color:#777 } 
.tt_state.c0 { color:#333 } 
.tt_state.c1 { color:var(--siteC) } 
.tt_state.c2 { color:var(--siteCR) } 

.tt_star .icon { position:relative; font-size:1.125em; margin-right:-.25em } 
.tt_star .icon:before { content:"★"; color:#ccc } 
.tt_star .icon.on:before { color:#111 } 
.tt_star .icon.half:after { content:"★"; color:#111; position:absolute; left:0; top:0; width:55%; overflow:hidden } 

.tt_prod { font-size:1.313em } 
.tt_prod.s1 { font-size:.938em; color:#888 } 

.tt_price { line-height:1; display:inline-flex; align-items:center; line-height:1; gap:0 .5em } 
.tt_price .tn { font-size:1.125em; font-weight:800 } 
.tt_price .tw { font-size:.875em } 
.tt_price .tp { font-size:1.063em } 
.tt_price .tp:after { content:"P" } 
.tt_price .plus,
.tt_price .minus { font-family:xeicon; font-size:1em } 
.tt_price .plus:before { content:"\e916" } 
.tt_price .minus:before { content:"\e91d" } 

/*board*/
.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:2.75em; border-bottom:1px solid #ddd; padding:.5em .5em; text-align:center } 
.board_table th { font-weight:700 } 
.board_table .p1 { padding-left:2em } 
.board_table .aTit_wrap { display:flex; align-items:center } 
.board_table .aTit_wrap .aTit { flex:1 1 0%; min-width:0; text-align:left; line-height:1.2; border:none; background:none } 
.board_table .aTit_wrap .tit1 { font-weight:700; font-size:1.063em } 
.board_aTit { text-overflow:ellipsis; white-space:nowrap; overflow:hidden } 
.board_aTit:hover,
.board_aTit:focus { text-decoration:underline } 
.board_table tbody 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.063em; 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.form th,
.board_table.form td { text-align:left; padding:.5em 1em } 

.board_viewM .ytFrame iframe {position: static !important; } 

.board_table .tCate { width:100%; height:2em; gap:.25em; display:flex; align-items:center; justify-content:center; text-align:center; position:relative; border:1px solid var(--siteC); border-radius:2em; box-sizing:border-box; line-height:1.1; padding:0 .5em; color:var(--siteC); } 
.board_table .tCate .tt { font-weight:700; font-size:.938em; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2 } 
.board_table .tCate.ico { padding-left:2em; padding-right:.75em } 
.board_table .tCate.ico:before { font-family:xeicon; position:absolute; left:0; top:50%; width:1.75em; height:1.75em; transform:translate(-1px, -50%); background:var(--siteC); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.125em; font-weight:normal } 
.board_table .tCate.basic:before { content:"\e998" } 
.board_table .tCate.vod { border-color:red; color:crimson } 
.board_table .tCate.vod:before { content:"\ea18"; background:crimson } 
.board_table .tCate.photo { border-color:green; color:green } 
.board_table .tCate.photo:before { content:"\ea50"; background:green } 
.board_table .tState { background:#aaa; color:#fff; width:100%; height:100%; box-sizing:border-box; display:flex; align-items:center; justify-content:center; text-align:center; border-radius:.25em } 
.board_table .tState .tt { font-weight:700; font-size:.938em } 
.board_table .tState.c0 { background:#999 } 
.board_table .tState.c1 { background:#7A818F } 
.board_table .tState.c2 { background:var(--siteCGwai) } 
.board_table .tState.c3 { background:var(--siteCOwai) } 
.board_table .tState.c4 { background:var(--siteC) } 

.boardSearchTT { color:red; text-decoration:underline } 
.boardSearchTT .hideT:before { content:"검색어" } 

.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 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 } 
.boardIco.file { transform:rotate(45deg) } 
.boardIco.file:before { content:"\ea6a"; color:var(--siteC) } 
.boardIco.lock:before { content:"\e966"; color:#777 } 
.boardIco.notice:before { content:"\ea5a" } 
.boardIco.new:before { content:"\e9a9"; color:var(--siteC) } 
.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 } 
.board_table .nocon { border:none } 
.nocon .xi { font-size:5em; color:#ddd; margin-bottom:.125em } 
.nocon .xi:not([class*=xi-]):before { content:"\ea15" } 
.nocon.st1 { border-radius:1em; height:100%; background:#fff } 

.page_btn { display:flex; align-items:center; justify-content:center; gap:.5em } 
.page_btn > * { flex:1 1 0%; min-width:5em } 
.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 } 
.page_btn .max2 { max-width:16em } 
.page_btn .wA { flex:0 0 auto } 
.page_btn.ar { justify-content:flex-end } 

.board_search { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.5em } 
.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 .t1 { font-size:.875em; color:#666 } 
.board_search .total .t2 { font-weight:700; font-size:1.125em; color:var(--siteC); margin:0 .5em } 
.board_search .search { display:flex; align-items:center; justify-content:space-between; gap:0 .25em } 
.board_search .search .grow { flex:1 1 0%; min-width:0 } 
.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_search .etc { margin-left:1em } 
.board_search .etc .in { display:flex; align-items:center; gap:.25em } 
.board_search .etc .in .tit { display:flex; align-items:center; color:#777; margin-right:.5em } 
.board_search .etc .in .tit .ico:before { content:"\e951" } 

.board_search_detail { position:relative } 
.board_search_detail .wrap_tit { position:absolute; left:2em; top:0; padding:0 .75em; background:#fff; transform:translateY(-50%) } 
.board_search_detail .wrap_tit .t1 { font-weight:700; font-size:1.313em; color:var(--siteC) } 
.board_search_detail .wrap_con { border:1px solid var(--siteC); padding:1.25em 2em; border-radius:.5em } 
.board_search_detail .wrap_con .list { display:flex; flex-wrap:wrap; gap:0 4em } 
.board_search_detail .wrap_con .list > li { width:100% } 
.board_search_detail .wrap_con .list > li .in { display:flex; padding:.75em 0; min-height:2em } 
.board_search_detail .wrap_con .list > li .in.vc { align-items:center } 
.board_search_detail .wrap_con .list > li:not(:first-child) { border-top:1px solid #ddd } 
.board_search_detail .wrap_con .list > li.st1 { border-top:none } 
.board_search_detail .wrap_con .list > li.st1 .in { padding-top:0 } 
.board_search_detail .wrap_con .list > li .in .tit { width:9em; position:relative; display:flex; align-items:center; box-sizing:border-box } 
.board_search_detail .wrap_con .list > li .in .tit.st2 { width:11em; } 
.board_search_detail .wrap_con .list > li .in .tit.p1 { padding-left:1em } 
.board_search_detail .wrap_con .list > li .in .tit .t1 { font-weight:500; font-size:1.125em } 
.board_search_detail .wrap_con .list > li .in .tit .t2 { font-weight:500 } 
.board_search_detail .wrap_con .list > li .in .tit .ico { font-size:1em; width:1.5em; text-align:center } 
.board_search_detail .wrap_con .list > li .in .con { flex:1 1 0%; min-width:0; padding:.125em 0 } 
.board_search_detail .wrap_con .list > li .in .con .t1 { font-size:1.063em } 
.board_search_detail .wrap_con .list > li.w1 { width:calc(50% - 2em) } 
.board_search_detail.st1 .wrap_con .list > li { border-bottom:none } 
.board_search_detail.st1 .wrap_con .list > li .in { padding:.375em 0 } 

.page_twrap { display:flex } 
.page_twrap:not(:first-child) { margin-top:4em } 
.page_twrap .wrap_tit { border-top:1px solid #111; padding:1em 0; box-sizing:border-box; width:16em; margin-right:5em } 
.page_twrap .wrap_tit .t1 { font-weight:700; font-size:1.375em } 
.page_twrap .wrap_con { flex:1 1 0%; min-width:0; padding:1.25em 0; box-sizing:border-box } 

.search_list > li .wrap_in { display:flex; flex-direction:column; gap:.5em; padding:1.25em; border-bottom:1px dashed #ddd } 
.search_list > li:first-child .wrap_in { border-top:1px dashed #ddd } 
.search_list > li .wrap_in .t1 { color:var(--siteC) } 
.search_list > li .wrap_in .t2 { font-size:1.125em; font-weight:500 } 
.search_list > li .wrap_in .t3 { color:#666 } 
.search_list > li .wrap_in a:hover,
.search_list > li .wrap_in a:focus,
.search_list > li .wrap_in a:hover *,
.search_list > li .wrap_in a:focus * { text-decoration:underline } 
.search_list > li .wrap_in .point { vertical-align:top; font-weight:500; color:#F00 } 

.board_pg { display:flex; align-items:center; justify-content:center; margin-top:3em; padding:0 1px 1px 0 } 
.board_pg .inc { width:2.5em; height:2.5em; display:flex; align-items:center; justify-content:center; text-align:center; box-sizing:border-box; border:1px solid #ddd; background:#fff; color:#666; margin:0 -1px -1px 0; position:relative } 
.board_pg .inc:hover,
.board_pg .inc:focus { z-index:1 } 
.board_pg .inc.on { background:#111; color:#fff; border-color:transparent; z-index:2; position:relative } 
.board_pg .inc.on:after { content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:.5em; width:1em; height:1px; background:#fff } 
.board_pg .inc.btn.first { border-radius:.5em 0 0 .5em } 
.board_pg .inc.btn.last { border-radius:0 .5em .5em 0 } 
.board_pg .inc.btn .ico { font-size:1em } 
.board_pg .inc.btn.first .ico:before { content:"\ea47" } 
.board_pg .inc.btn.prev .ico:before { content:"\e93c" } 
.board_pg .inc.btn.next .ico:before { content:"\e93f" } 
.board_pg .inc.btn.last .ico:before { content:"\ea48" } 

.board_viewT { border-top:2px solid #CDD1D5; border-bottom:1px solid #CDD1D5; padding:1.5em 2em; } 
.board_viewT .vTit { display: block; font-size: 1.65em; font-weight: 700; letter-spacing: 0.06rem; } 
.board_viewT .date { font-size: 1em; margin-top: 1em; font-weight: 700; } 
.board_viewT .date > i { color: var(--siteBgray); margin-left: .25em; font-weight: 400; } 
.board_viewT .info { display:flex; align-items:center; gap:0 3em; padding:1em; border-bottom:1px solid #CDD1D5; font-size:.875em } 
.board_viewT .info > li { position:relative; color:#666; display:flex; align-items:center; gap:.5em } 
.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 { color:#888 } 
.board_viewT .info > li.cate { font-size:1.125em; font-weight:700; color:var(--siteC) } 
.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_viewT .info2 { display:flex; align-items:center; gap:0 1em; padding:1em; border-bottom:1px solid #ddd } 
.board_viewT .tState { background:#aaa; color:#fff; width:120px; height:30px; box-sizing:border-box; display:flex; align-items:center; justify-content:center; text-align:center; border-radius:.25em } 
.board_viewT .tState.c { background:#FFF; color:#999; border:1px solid #999 } 
.board_viewT .tState.c0 { background:#999 } 
.board_viewT .tState.c1 { background:#7A818F } 
.board_viewT .tState.c2 { background:var(--siteCGwai) } 
.board_viewT .tState.c3 { background:var(--siteCOwai) } 
.board_viewT .tState.c4 { background:var(--siteC) } 

.board_viewM { padding:5em 2em } 
.board_viewM p { line-height: 1.6; } 
.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; 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; display:flex; align-items:center; gap:.25em } 
.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 { position:relative; top: 0px; color:var(--siteC) } 
.board_viewF .wrap_con .list > li > a .ico { position:absolute; left:0; top:-1px } 
.board_viewF .wrap_con .list > li > a .ico:before { content:"\e998" } 
.board_viewF .wrap_con .list > li > a .down:before { content:"\eb7c" } 

.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 } 



/**/
.event_wrap { margin-bottom: 2em; } 
.event_gallery { display:flex; flex-wrap:wrap; gap:1.5em; align-items:stretch; } 
.event_gallery>li { width:calc((100% - 4.5em) / 4); display:flex; } 
.event_gallery>li>.wrap_in { display:flex; flex-direction:column; width:100%; height:100%; } 
.event_gallery>li .wrap_in .img_wrap { margin-bottom:1.5em; overflow:hidden; } 
.event_gallery>li .wrap_in .img_wrap .photo { aspect-ratio:16/9; border:1px solid transparent; transition:.3s ease; } 
.event_gallery>li .wrap_in .info_wrap { display:flex; flex-direction:column; flex:1; } 
.event_gallery>li .wrap_in .tit { margin-bottom:.6em; font-size:1.15em; font-weight:700; line-height:1.5; color:#111; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; } 
.event_gallery>li .wrap_in .type { margin-bottom:.5em; font-size:.967em; color:#666; font-weight:500; } 
.event_gallery>li .wrap_in .date { margin-bottom:1em; font-size:.918em; font-weight:700; color:var(--siteWaiGray); } 
.statusBtn { display:flex; flex-wrap:wrap; gap:.5em; margin-top:auto; } 
.statusBtn>li { } 
.statusBtn .con { display:flex; align-items:center; justify-content:center; height:2em; padding:0 .8em; border-radius:10em; } 
.statusBtn .tt { font-size:.75em; font-weight:600; line-height:1; } 
.statusBtn .ty1 { background:#eef8f2; } 
.statusBtn .ty1 .tt { color:#1c8f52; } 
.statusBtn .ty2 { background:#f4f4f4; } 
.statusBtn .ty2 .tt { color:#666; } 
.statusBtn .ty3 { background:#fff1f1; } 
.statusBtn .ty3 .tt { color:#d63b3b; } 
.statusBtn .ty4 { background:#f1f2ff; } 
.statusBtn .ty4 .tt { color:var(--siteC); } 
.event_gallery>li>.wrap_in:hover .tit { text-decoration:underline; } 
.event_gallery>li>.wrap_in:hover>.img_wrap .photo { border:1px solid var(--siteLine); } 

.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:800; 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_tit .t4 { font-weight:500; font-size:1em } 
.form_wrap .form_con { padding:1.5em 0 } 
.form_wrap.st1 { padding:3% 5%; border-radius:2em; box-sizing:border-box; box-shadow:0 0 1em rgba(0,0,0,.1) } 
.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 1em 0 .5em; gap:.5em 0 } 
.form_lab .lab_tit.w1 { width:12em } 
.form_lab .tit1 { font-weight:700 } 
.form_lab .tit2 { font-weight:700; font-size:.875em; 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:2em } 
.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 .w_auto.p1 { margin-right:1em } 
.form_lab .lab_con .max1 { max-width:20.25em } 
.form_lab .lab_con .max2 { max-width:10em } 
.form_lab .lab_con .max3 { max-width:32em } 
.form_lab .lab_con .max4 { max-width:7em } 
.form_lab .lab_con .max5 { max-width:13em } 
.form_lab .lab_con .min1 { min-width:23.5em } 

.form_st.s1 { font-size:.875em } 

.board_gallery { --boardGallL : 3; --boardGallG : 1.5em; display:flex; flex-wrap:wrap; gap: 3.5em var(--boardGallG); } 
.board_gallery > li { width:calc((100% / var(--boardGallL)) - (var(--boardGallG) * (var(--boardGallL) - 1) / var(--boardGallL))) } 
.board_gallery .wrap_in { display:block; border-radius:.5em; overflow:hidden; background:none; border:none; width:100%; box-sizing:border-box } 
.board_gallery .wrap_in .img_wrap { position:relative; display:block; overflow:hidden; box-shadow:0 0 1em rgba(0,0,0,.1); box-sizing:border-box; border:1px solid #eee; border-radius:.5em; overflow:hidden } 
.board_gallery .wrap_in .img_wrap .resize { } 
.board_gallery .wrap_in .img_wrap .photo { transition: .3s ease; } 
.board_gallery .wrap_in .con_wrap { display:block; padding-top: 1em; display:flex; flex-direction:column; gap:.25em; position:relative } 
.board_gallery .wrap_in .con_wrap .date { font-size: .915em; color: #464C53; font-weight: 400; margin-top: .25em; } 
.board_gallery .wrap_in .con_wrap .tit1 { font-size: 1.063em; font-weight:600 } 
.board_gallery .wrap_in .con_wrap .tit1.s1 { font-size:1em } 
.board_gallery .wrap_in .con_wrap .tit2 { font-weight:700 } 
.board_gallery .wrap_in .con_wrap .tit2.s1 { font-size:1.375em } 
.board_gallery .wrap_in .con_wrap .tit2.s2 { font-size:2em } 
.board_gallery .wrap_in .con_wrap .tt1 { font-size:.938em; color:#666 } 
.board_gallery .wrap_in .con_wrap .tt1.s1 { font-size:1.125em; line-height:1.5 } 
.board_gallery .wrap_in .con_wrap .btnW { display:flex; gap:.5em } 
.board_gallery .wrap_in .con_wrap .btnW .st { flex:1 1 0%; padding:0 2em; min-width:0; height:3em; display:flex; align-items:center; gap:.5em; justify-content:center; border-radius:.5em; border:1px solid var(--siteC); color:var(--siteC); font-weight:700; transition:.3s } 
.board_gallery .wrap_in .con_wrap .btnW .st .arrow { font-size:1em; transition:.3s } 
.board_gallery .wrap_in .con_wrap .btnW .st .arrow:before { content:"\e93e" } 
.board_gallery .wrap_in .con_wrap .btnW .st:hover { background:var(--siteC); color:#fff } 
.board_gallery .wrap_in .con_wrap .btnW .st:hover .arrow { transform:translateX(50%) } 
.board_gallery .wrap_in .con_wrap .btnW .st.c1 { background:#111; color:#fff } 
.board_gallery .wrap_in .con_wrap .btnW .st.c2 { border-color:#aaa; color:#666 } 
.board_gallery .wrap_in .con_wrap .btnW .st.c2:hover { background:#f1f1f1 } 
.board_gallery .wrap_in .con_wrap .btnW .st.wA { flex:0 0 auto; } 
.board_gallery .wrap_in .con_wrap .btnW .st.s1 { height:3.5em; font-size:1.125em } 
.board_gallery .wrap_in .con_wrap .layerBg { position:absolute; left:0; top:0; width:100%; height:100% } 
.board_gallery .wrap_in .con_wrap .layerBg:after { content:""; position:absolute; left:0; top:0; width:100%; height:100%; backdrop-filter:blur(1em); background:rgba(0,0,0,.5) } 
.board_gallery .wrap_in .con_wrap .layerBg ~ * { position:relative } 

.board_gallery .wrap_in:hover .img_wrap .photo { transform: scale(1.05); } 
.board_gallery .wrap_in:hover .con_wrap .tit1 { text-decoration: underline; } 

.board_gallery.d1 { --boardGallL : 6; --boardGallG : 1em; } 
.board_gallery.d2 { --boardGallL : 4 } 
.board_gallery.d3 { --boardGallL : 2 } 
.board_gallery.st1 .wrap_in { display:flex; gap:2em; border-radius:1em; border:1px solid #ddd; padding:1em } 
.board_gallery.st1 .wrap_in .img_wrap { width:45%; border-radius:1em; box-shadow:none } 
.board_gallery.st1 .wrap_in .con_wrap { flex:1 1 0%; min-width:0; padding:0; padding-top:1em; gap:1.5em } 
.board_gallery.st1 .wrap_in .con_wrap .btnW { margin-top:auto } 
.board_gallery.st1.big .wrap_in { padding:0; border:none; gap:4em; border-radius:0; overflow: visible } 
.board_gallery.st1.big .wrap_in .img_wrap { border:none; border-radius:0 } 
.board_gallery.st1.big .wrap_in .img_wrap .resize { border:1px solid #eee; border-radius:1em; overflow:hidden } 
.board_gallery.st1.big .wrap_in .img_wrap .resize .re { border-radius:inherit; overflow:hidden } 
.board_gallery.st1.big .wrap_in .con_wrap { font-size:1.125em } 
.board_gallery .thumbList { display:flex; gap:.25em; box-sizing:border-box } 
.board_gallery .thumbList > li { width:calc(20% - .2em); box-sizing:border-box; padding:2px } 
.board_gallery .thumbList > li .in { display:block; width:100%; background:none; border:none; position:relative } 
.board_gallery .thumbList > li .in:before { border-radius:1em } 
.board_gallery .thumbList > li .in.on:before { content:""; position:absolute; left:50%; top:50%; width:100%; height:100%; border:2px solid var(--siteC); transform:translate(-50%, -50%) } 
.board_gallery .thumbList > li .in .tt { height:4em; border:2px solid transparent; display:flex; align-items:center; justify-content:center; color:#666; border-radius:1em; background:#f5f5f5 } 
.board_gallery .thumbList > li .in .tt .t1 { font-weight:700; font-size:1.125em } 
.board_gallery .thumbList > li .in.on .tt { color:#fff; background: var(--siteC); border-color:#fff } 
.board_gallery .thumbList.c1 { --siteC:#111 } 

.board_gallery.st2 { gap:1em } 
.board_gallery.st2 > * { box-sizing:border-box; width:100% } 
.board_gallery.st2 .wrap_in { display:flex; border-radius:2em; overflow:hidden } 
.board_gallery.st2 .wrap_in .img_wrap { width:70%; border-radius:0; border:none } 
.board_gallery.st2 .wrap_in .con_wrap { flex:1 1 0%; min-width:0; padding:4%; color:#fff; gap:2em } 
.board_gallery.st2 .wrap_in .con_wrap .tt1 { color:inherit; opacity:.8 } 

.board_poster { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } 
.board_poster > li { } 
.board_poster .wrap_in { display: block; text-decoration: none; color: #222; border: 1px solid #e6eaf2; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 6px 14px rgba(28, 39, 58, 0.08); transition: transform .15s ease, box-shadow .15s ease; } 
.board_poster .wrap_in .con_wrap { padding: 14px; } 
.board_poster .wrap_in .con_wrap > .year { font-size: .938em; font-weight:400; color: #888; margin-bottom: .25em; } 
.board_poster .wrap_in .con_wrap > .t1 { font-size: 1.215em; font-weight: 600; } 
.board_poster .wrap_in .con_wrap > ul { list-style: none; padding: 0; margin: 0; margin-top: .35em; display: flex; gap: 12px; color: #6b7487; font-size: .915em; font-weight: 400; } 
.board_poster .wrap_in .con_wrap > ul > li { } 
.board_poster .wrap_in .con_wrap > ul > li > span { letter-spacing: -0.03em; } 
.board_poster .wrap_in:hover { transform: translateY(-4px); box-shadow: 0 12px 22px rgba(28, 39, 58, 0.12); } 

.galleryView { display:flex; gap:6em; padding:3% 5%; border-radius:1em } 
.galleryView.p1 { padding:5%; padding-bottom:0 } 
.galleryView .wrapImg { position:relative; width:26em } 
.galleryView .wrapImg .no { width:40%; max-width:7em; position:absolute; left:0; top:0; z-index:1; transform:translate(-40%, -40%); background:var(--siteGra); color:#fff; border-radius:50%; line-height:1.1; font-family:var(--ffT) } 
.galleryView .wrapImg .no .resize { padding-bottom:100% } 
.galleryView .wrapImg .no .resize .re { display:flex; flex-direction:column; align-items:center; justify-content:center; } 
.galleryView .wrapImg .no .resize .re .point { font-size:2.5em; font-weight:900; letter-spacing:-.1em } 
.galleryView .wrapImg .bg { box-shadow:0 0 2em rgba(0,0,0,.1); border:1px solid #eee; border-radius:1em; overflow:hidden } 
.galleryView .wrapCon { flex:1 1 0%; min-width:0; padding:5% 0; display:flex; flex-direction:column; gap:2em } 
.galleryView .wrapCon .titW { display:flex; flex-direction:column; gap:.5em } 
.galleryView .wrapCon .titW .t1 { font-weight:700; color:var(--siteC); font-size:1.25em } 
.galleryView .wrapCon .titW .t1:after { content:""; width:1px; height:2em; background:var(--siteC); display:block; margin:.5em 0 0 2px } 
.galleryView .wrapCon .titW .t2 { color:#888; font-size:1.25em; font-family:var(--ffT) } 
.galleryView .wrapCon .titW .t2 .point { color:#111; font-weight:700; font-size:2.25em; letter-spacing:-.05em } 
.galleryView .wrapCon .txtW { background:#f5f5f5; padding:5%; height:10em; overflow-y:auto; border-radius:1em; line-height:1.5 } 
.galleryView .wrapCon .btnW { display:flex; gap:.25em } 
.galleryView .wrapCon .btnW > * { flex:1 1 0%; min-width:0 } 


.board_cate { display:flex; flex-wrap:wrap; justify-content:center; margin-bottom:1.5em; border-radius:.5em; box-sizing:border-box; gap:.5em; background:#f5f5f5; border-radius:.5em; padding:1.5em } 
.board_cate > li { } 
.board_cate > li > a { display:flex; position:relative; align-items:center; justify-content:center; height:3em; position:relative; color:#666; border:1px solid #ddd; border-radius:.5em; padding:0 2em } 
.board_cate > li > a .tt { font-weight:700; position:relative; font-size:1.063em } 
.board_cate > li:hover > a,
.board_cate > li:focus-within > a,
.board_cate > li.on > a { background:#fff; border-color:var(--siteC); color:var(--siteC); box-shadow:0 0 .5em rgba(0,0,0,.1) } 
.board_cate > li.on > a:before { content:"\e935"; font-family:xeicon; position:absolute; left:50%; top:100%; transform:translate(-50%, -20%); line-height:1 } 

.board_cate > li.on > a .tt:after { content:""; position:absolute; right:-.75em; top:0; width:.375em; height:.375em; background:#fff; border-radius:50% } 

/**/
.bbs_list { position: relative; } 
.bbs_list .bbs_tab { display: flex; align-items: center; gap: 8px; position: absolute; top: -78px; left: 0; } 
.bbs_list .bbs_tab li { background-color: #fff; border-radius: 30px; border: 1px solid #cdced0; } 
.bbs_list .bbs_tab li a { display: block; padding: 15px 28px; color: #535353; } 
.bbs_list .bbs_tab li.on { background-color: var(--mainColor); border-color: var(--mainColor); } 
.bbs_list .bbs_tab li.on a { font-weight: 500; color: #fff; } 
.bbs_list .board_st.tit { border-top: 1px solid #D6E0EB; table-layout: fixed;} 
.bbs_list .board_st th, 
.bbs_list .board_st td { text-align: center; border: 1px solid #e1e2e6; border-width: 0 1px 1px 0; box-sizing: border-box; } 
.bbs_list .board_st.s2 { font-size: .963em; } 
.bbs_list .board_st th:last-child, 
.bbs_list .board_st td:last-child { border-width: 0 0 1px 0; } 
.bbs_list .board_st.tit th { background-color: #EEF2F7; padding: 27px 10px; letter-spacing: 0; font-weight: 700; } 
.bbs_list .board_st tbody tr { cursor: pointer; transition: .2s ease; } 
.bbs_list .board_st tbody tr:hover { background-color: #f7f7f7; } 
.bbs_list .board_st tbody tr.nti { background: #f7f7f7; } 
.bbs_list .board_st tbody td { color: #747474; padding: 20px 10px; } 
.bbs_list .board_st tbody td.w_tit { padding: 20px; text-align: left; } 
.bbs_list .board_st tbody td.w_tit a { display: block; font-weight: 500; line-height: 1.3em; color: #000; position: relative; text-decoration: none; } 
.bbs_list .board_st tbody td .board_icon { line-height: 0; display: inline-block; vertical-align: middle; } 
.bbs_list .board_st tbody td .board_icon img { width: 30px; display: block; } 
.bbs_list .board_st tbody td .cpT { color: var(--siteC); text-decoration: underline; } 
.bbs_list .board_st td.no_con { padding: 50px 10px; color: #999; border-width: 0 0 1px 0; } 

.bbs_list .board_st.s1 { font-size: .915em; } 

.bbs_list.hN .board_st tbody tr:hover { background: #fff; } 
.bbs_list.hN .board_st tbody tr { cursor: unset; } 

.bbs_list .roundHome { display: flex; align-items: center; justify-content: center; margin: 0 auto; width: 2.25rem; height: 2.25rem; border-radius: var(--radius-pill); background: var(--siteC); transition: .2s ease; } 
.bbs_list .roundHome > .xi { font-size: 1em; color: #fff; } 
.bbs_list .roundHome:hover { background: var(--siteC2); } 

.bbs_list.ty1 .board_st td,
.bbs_list.ty1 .board_st th { border: none; } 
.bbs_list.ty1 .board_st th { padding: 27px 0; background: transparent; } 
.bbs_list.ty1 .board_st td { padding: 20px 0; text-align: left; } 
.bbs_list.ty1 .board_st tbody td.w_tit { padding: 0; } 
.bbs_list.ty1 .board_st tbody tr:hover { background-color: transparent; } 

/**/
.board_faq { border-top:1px solid #111; } 
.board_faq > li { } 
.board_faq > li .wrap_in { position:relative; display:flex; align-items:center; gap:0 1em; border-bottom:1px solid var(--siteLine); line-height:1.8; transition: .2s ease; } 
.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.8150em; color: var(--siteC); line-height: 1; } 
.board_faq > li .wrap_in .tit .tt.c1 { } 
.board_faq > li .wrap_in .sbj { flex:1; } 
.board_faq > li .wrap_in .sbj .tt { display:block; padding:.5em 0; font-size:1.15em; font-weight: 600; line-height:1.5; } 
.board_faq > li .wrap_in .con { flex:1; } 
.board_faq > li .wrap_in .con .tt { font-size: 1.1em; } 
.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:1.600em; opacity: .4; 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:#f0f3fa; } 
.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:2em; padding-bottom:2em; transition:.3s; } 

/**/
.board_table2 { table-layout: fixed; border-collapse: collapse;} 
.board_table2 th,
.board_table2 td { height:2em; padding:.75em 1em; border:1px solid #ddd; line-height:1.4; text-align:left; } 
.board_table2 thead th { text-align:center; } 
.board_table2 th { background:#f7f7f7; font-weight: 600; } 
.board_table2 th.pt { background: #f4f8ff; } 
.board_table2 td { background: #fff; } 
.board_table2 a:hover { text-decoration:underline; } 

.board_table2 .view_con .in_state { display: flex; align-items: center; } 
.board_table2 .view_con .in_state > .tit { display: flex; align-items: center; gap: .35em; font-size: 1em; font-weight: 600; } 
.board_table2 .view_con .in_state > .tit > .xi { position:relative; color: var(--siteC); } 
.board_table2 .view_con .in_state > .bd_txt { font-size: 1em; font-weight: 500; color: var(--siteWaiGray); } 

.board_table2 .in_state > .tit { padding-left:1.8em; padding-right:.8em; } 
.board_table2 .in_state > .tit:first-child { padding-left:0; } 
.board_table2 .in_state > .tit,
.board_table2 .in_state > .tit > * { /*display:inline-block; */ } 
.board_table2 .in_state > .state { padding-left:.5em; padding-right:.5em; } 
.board_table2 .in_state > * { vertical-align:middle; } 

.board_btn_wrap { margin-top: 20px; } 
.board_btn_wrap.ar { text-align: right; } 

/**/
.board_newslatter { display:flex; flex-wrap:wrap; gap:2em } 
.board_newslatter > li { width:calc(25% - 1.5em) } 
.board_newslatter > li .wrap_in { display:block; overflow:hidden; border:1px solid #ddd; border-radius:1em; background:#fff } 
.board_newslatter > li .wrap_in .img_wrap { position:relative; display:block; overflow:hidden; } 
.board_newslatter > li .wrap_in .img_wrap:after { content:""; position:absolute; left:0; bottom:0; width:100%; height:20%; background: linear-gradient(00deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 100%); } 
.board_newslatter > li .wrap_in .con_wrap { padding:1em; display:flex; flex-direction:column; gap:.5em } 
.board_newslatter > li .wrap_in .con_wrap .t1 { font-size:1.063em; font-weight:600; word-break:keep-all } 
.board_newslatter > li .wrap_in .con_wrap .t2 { font-size:1em; font-weight:500; color:#333 } 
.board_newslatter > li .wrap_in:hover { box-shadow:0 0 1em rgba(0,0,0,.2) } 
.board_newslatter > li .wrap_in:hover .img_wrap .resize { transition:.75s; transform:scale(1.05) } 
.board_newslatter.d1 { gap:1.5em } 
.board_newslatter.d1 > li { width:calc(25% - 1.2em) } 
.board_newslatter.d2,
.wD2 .board_newslatter { gap:2em } 
.board_newslatter.d2 > li,
.wD2 .board_newslatter > li { width:calc(33.33% - 1.3333em) } 
.board_newslatter.d3 { gap:1.5em } 
.board_newslatter.d3 > li { width:calc(16.66% - 1.25em) } 


/**/
.flex_table .thead { margin-bottom: 1em } 
.flex_table .tbody { display: flex; flex-direction: column; height: 100% } 
.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.fln { flex: none; } 
.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 .td { display: flex; flex-direction: column; align-items: center; min-height: 2.5em; justify-content: center; text-align: center; flex: 1 1 0%; min-width: 0; box-sizing: border-box; padding: 1em; border-right: 1px solid #ddd } 
.flex_table .td.al { align-items: flex-start } 
.flex_table .td:last-child { border-right: none } 
.flex_table .td.bg1 { background: #f5f5f5 } 
.flex_table .td.w1 { flex: 0 0 10em } 
.flex_table .td.w2 { flex: 0 0 8em } 
.flex_table .td.w3 { flex: 0 0 15em } 
.flex_table .td.wName { flex: 0 0 7em } 
.flex_table .td.wNpo { flex: 0 0 19em; } 
.flex_table .td.wPo { flex: 0 0 4em } 
.flex_table .td.wMail { flex: 0 0 20em } 
.flex_table .td.wTel { flex: 0 0 9em } 
.flex_table .td.w100 { flex: 1 } 
.flex_table .thead .tr { box-shadow: 0 .25em .5em rgba(0, 0, 0, .1); background: #fff; color: var(--siteC); } 
.flex_table .thead .tr:first-child { border-top-left-radius: 0; border-top-right-radius: 0; border-top: 1px solid var(--siteC); } 
.flex_table .flex_table { flex: 1 1 0; min-width: 0 } 
.flex_table .flex_table .thead { margin-bottom: 0 } 
.flex_table .flex_table .tr { border: none; border-bottom: 1px solid #ddd } 
.flex_table .flex_table .tr:last-child { border-bottom: none } 

.flex_table .td .flag { width: 2.5em; } 
.flex_table .td .flag>img { width: 100%; height: 100%; object-fit: contain; } 

/**/
.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:var(--siteC); font-size:.938em } 
.board_icon.sub .xi:before { content:"\e981"; color:#aaa } 
.board_icon.lock .xi:before { content:"\e964"; color:#aaa; font-size:.938em; } 
.board_icon.review .xi:before { content:"\e9d7"; color:#003399 } 

/**/
.boardList { } 
.boardList > li:first-of-type { border-top: 1px solid var(--siteLine); } 
.boardList > li { border-bottom: 1px solid var(--siteLine); } 
.boardList > li > .inner { display: flex; align-items: center; gap: 3em; padding: 2.5em 0; } 
.boardList > li > .inner > .imgCon { width: 18em; min-width: 18em; height: 12.5em; border-radius: .5em; overflow: hidden; } 
.boardList > li > .inner > .imgCon > img { width: 100%; height: 100%; object-fit: cover; transition: .3s ease; } 
.boardList > li > .inner > .info { } 
.boardList > li > .inner > .info > .tit { font-size: 1.615em; font-weight: 700; } 
.boardList > li > .inner > .info > .txt { font-size: 1.063em; /* line-height: 1.5; */ color: var(--colorSub); padding: .75em 0; } 
.boardList > li > .inner > .info > .date { font-size: 1em; font-weight: 400; color: var(--siteBgray); } 

.boardList > li > .inner:hover > .info > .tit,
.boardList > li > .inner:hover > .info > .txt { text-decoration: underline; } 
.boardList > li > .inner:hover > .imgCon > img { transform: scale(1.05); } 

/**/
.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_search_wrap { margin:0 0 1em 0; display:flex; align-items:center } 
.board_search_wrap .left { } 
.board_search_wrap .right { margin-left:auto; display:flex } 
.board_search_wrap .right .input_st[type=text] { flex:1 1 auto; width:14em; margin:0 .125em } 


/*total*/
.pageTotal { display: flex; align-items: center; gap: 2em; } 
.pageTotal.mb0 { margin-bottom: 0; } 
.pageTotal > li { position:relative; } 
.pageTotal > li:before { position: absolute; top: 50%; transform: translateY(-50%); right: -1em; width: 1px; height: 10px; background: #ddd; content: ''; } 
.pageTotal > li:last-of-type:before { display: none; } 
.pageTotal > li > .in { display: flex; gap: .25em; align-items: center; font-size: .938em; font-weight: 400; color: #888; } 
.pageTotal > li > .in > .num > i { color: #111; font-weight:700; vertical-align: baseline; } 

/**/
.table_st .w_5 { width: 5%; } 
.table_st .w_7 { width: 7%; } 
.table_st .w_10 { width: 10%; } 
.table_st .w_15 { width:15%; } 
.table_st .w_20 { width:20%; } 
.table_st .w_25 { width:25%; } 
.table_st .w_30 { width:30%; } 
.table_st .w_35 { width:35%; } 




/**/
.essTit { position:relative; display: inline-block; } 
.essTit .ess:before { position: absolute; right: -.75em; top: -.25em; color: var(--siteC2); content: '*'; } 
.ess_tt { font-size:.938em; color:#666 } 

.label_st { display:inline-flex; align-items:center; min-height:1em; cursor:pointer; line-height:1; box-sizing:border-box; font-weight:500; position:relative } 
.label_st input,
.label_st .xi { width:1.3em; height:1.3em; min-width:20px; min-height:20px; box-sizing:border-box; position:relative } 
.label_st .xi:before { font-size:.8em; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) } 
.label_st input { position:absolute; left:0; top:0; border:none; background:none } 
.label_st input:not(:focus) { opacity:0; z-index:-1; visibility: hidden; } 
.label_st .xi { display:flex; align-items:center; justify-content:center; border:1px solid var(--siteWaiGray); border-radius:4px; position:relative; font-size:1em; line-height:1 } 
.label_st span { padding:0 .5em; word-break:keep-all; flex:1 1 0%; min-width:0; font-weight:600 } 
.label_st input:checked ~ span { color:var(--siteC) } 
.label_st input[type=radio] ~ .xi { border-radius:50% } 
.label_st input:checked ~ .xi { background:var(--siteC); color:#fff; border-color:transparent; } 
.label_st input[type=checkbox]:checked ~ .xi:before { content:"\e928" } 
.label_st input[type=radio]:checked ~ .xi:before { content:"\eb0d" } 
.label_st input .none { :disabled } 

.label_st.st1 { display:inline-flex } 
.label_st.st1 input { width:100%; height:100% } 
.label_st.st1 .lab { width:100%; box-sizing:border-box; height:3em; display:flex; justify-content:center; align-items:center; text-align:center; box-sizing:border-box; border-radius:.25em; padding:0 1em; border:1px solid #aaa; background:#fff; position:relative; color:#333 } 
.label_st.st1:has(input.design) { cursor:default } 
.label_st.st1 input:not(.design):disabled ~ .lab { background:#f5f5f5; color:#888; border-color:#ddd; cursor:default } 
.label_st.st1 .lab .tt { position:relative; font-weight:700 } 
.label_st.st1 .lab .tt.s1 { font-weight:500; font-size:.938em } 
.label_st.st1 .lab .tt:before { content:"\e928"; font-family:xeicon; position:absolute; right:100%; top:0%; transform:translate(-.25em,-50%); opacity:0; font-size:.75em } 
.label_st.st1 input:checked ~ .lab { background:var(--siteGra); color:#fff; padding:0 .75em 0 1.25em; border-color:transparent; transition:.3s } 
.label_st.st1 input:checked ~ .lab .tt:before { top:50%; opacity:1; transition:.3s } 
.label_st.st1.h1 .lab { height:2.5em } 
.label_st.st1.s1 .lab { font-size:.938em; height:2em } 

.label_wrap { display:flex; flex-wrap:wrap; gap:1em 1.5em } 

.input_st { border:1px solid #ddd; color:#111; padding:.5em .75em; box-sizing:border-box; height:3em; border-radius:.25em; font-weight:500; position:relative } 
.input_st.s1 { height:3.5em; padding:.5em 1em; font-size:1.125em; font-weight:500; font-weight:600 } 
.input_st.s2 { height:2.125em; padding:.25em .75em; font-size:.938em } 
.input_st.s2 .xi { font-size:1em } 
.input_st.s3 { padding: .415em; font-size: .8em; height: fit-content; } 

a.input_st,
button.input_st,
input[type=button].input_st,
input[type=submit].input_st { display:inline-flex; align-items:center; justify-content:center; text-align:center; font-weight:600 } 
.input_st[type=file] { background:none; padding:0; width:100% } 
.input_st[readonly] { background:#f5f5f5; color:#666 } 
textarea.input_st { width:100%; height:7em; padding:1em } 
textarea.input_st.h1 { height:16em } 
select.input_st { padding-right:2.5em } 
select.input_st.s1 { padding-right:3.5em } 

.input_st .xi { margin:0 .25em } 
.input_st .xi:first-child { margin-left:0 } 
.input_st .xi:last-child { margin-right:0 } 
.input_st .arrow { font-family:xeicon; position:absolute; right:0; top:50%; transform:translateY(-50%); opacity:0 } 
.input_st .arrow:before { content:"\e907" } 
.input_st:hover .arrow { transition:.3s; right:1em; opacity:1 } 

.input_st.c0 { color:#777; border-color:#ccc } 
.input_st.c1 { background:var(--siteC); border-color:var(--siteC); color:#fff } 
.input_st.c1.re { background:#fff; border-color:var(--siteC); color:var(--siteC) } 
.input_st.c2 { background:#999; border-color:#999; color:#fff } 
.input_st.c2.re { background:#fff; border-color:#ccc; color:#888 } 
.input_st.c3 { background:#333; border-color:#333; color:#fff } 
.input_st.c3.re { background:#fff; border-color:#333; color:#333 } 
.input_st.c4 { background:var(--siteC2); border-color:var(--siteC2); color:#fff } 
.input_st.c4.re { background:#fff; border-color:var(--siteC2); color:var(--siteC2) } 
.input_st.c5 { background:#fff; border-color:#fff; color:#111 } 
.input_st.c5.re { background:#fff; border-color:#111; color:#111 } 

.input_st.w100 { width:100% } 
.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:12em } 

.input_st .xi.arrow { font-size:1em; margin:0 .5em } 
.input_st .xi.arrow:before { content:"\e93f" } 

.input_st.wFix { min-width:8em; text-align:center } 

.input_st.back .xi { font-size:1em } 
.input_st.back .xi:before { content:"\e908" } 
.input_st.back .tt:before { content:"Back" } 

.label_calendar { position:relative } 
.label_calendar input { padding-right:2.5em; background:#fff !important; border:1px solid #ddd !important } 
.label_calendar .icon { position:absolute; right:0; top:0; width:2.5em; height:100%; display:flex; justify-content:center; align-items:center; } 
.label_calendar .icon:before { font-family:xeicon; content:"\e9a0"; color:#aaa } 

.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_st::-webkit-input-placeholder { color:#aaa } 
.input_st::-moz-placeholder { color:#aaa } 
.input_st:-moz-placeholder { color:#aaa } 
.input_st:-ms-input-placeholder { color:#aaa } 

.input_tt { font-size:.938em; color:var(--siteC) } 

.inW { --inWG : .25em; display:flex; flex-wrap:wrap; align-items:center; gap:var(--inWG); width:100%; box-sizing:border-box; width:100% } 
.inW.g0 { --inWG:0 } 
.inW.ar { justify-content:flex-end } 
.inW.ac { justify-content:center } 
.inW > * { flex:0 0 auto; } 
.inW .wG { flex:1 1 0%; min-width:0 } 
.inW .w100 { width:100% } 
.inW.fix > * { width:calc((100% / var(--inWL)) - (var(--inWG) * (var(--inWL) - 1) / var(--inWL))) } 
.inW.fix.f3 { --inWL : 3 } 
.inW.fix.f4 { --inWL : 4 } 

/**/
.w_blank { width:1em } 
.w_no { width:4em } 
.w_cate { width:7.5em } 
.w_tit { width:auto } 
.w_name { width:8em } 
.w_date { width:8em } 
.w_date2 { width:15em } 
.w_hit { width:5em } 
.w_check { width:4em } 
.w_btn { width:6em } 
.w_btn2 { width:10em } 
.w_state { width:6em } 
.w_faq { width:4em } 
.w_price { width:10em } 
.w_type { width:8em } 
.w_area { width:5em } 

.w_form_tit { width:12em } 
.w_form_tit2 { width:6em } 
.w_form_tit3 { width:18em } 
.w_form { width:auto } 
.w_auto { width:auto } 

.w_btnFull2 { width: 14em; } 

.board_spec { display:flex; flex-wrap:wrap; gap:0 2em } 
.board_spec > li { position:relative; font-size:.875em; color:#777 } 
.board_spec > li.point { font-weight:600; color:#333 } 
.board_spec > li:not(:last-child):before { content:""; position:absolute; right:-1em; top:50%; transform:translateY(-50%); width:1px; height:60%; background:#ddd } 

.page_search_wrap { padding:.5em } 
.page_search_wrap .wrap_in { padding:1.5em; background:#fff } 
.page_search_wrap .wrap_in .tit { font-weight:500; font-size:1.063em } 

.board_photo { display:flex; flex-wrap:wrap; gap:3em } 
.board_photo > li { width:calc(50% - 1.5em) } 
.board_photo > li .wrap_in { display:block; overflow:hidden } 
.board_photo > li .wrap_in .img_wrap { position:relative; display:block; overflow:hidden } 
.board_photo > li .wrap_in .img_wrap .ab { position:absolute; left:0; top:0; width:100%; height:100%; box-sizing:border-box } 
.board_photo > li .wrap_in .con_wrap { display:flex; flex-direction:column; gap:.5em 0; padding:1em 0 } 
.board_photo > li .wrap_in .con_wrap .t1 { font-size:1.125em; font-weight:500 } 
.board_photo > li .wrap_in .con_wrap .t2 { font-size:1.063em; font-weight:500 } 
.board_photo > li .wrap_in .con_wrap .t3 { font-size:.938em; color:#777 } 
.board_photo > li .wrap_in .con_wrap.st1 { border:1px solid #ddd; padding:1em } 
.board_photo.s1 { gap:2em } 
.board_photo.s1 > li { width:100% } 

.table_st { border-top:1px solid #111; width:100%; border-collapse:collapse } 
.table_st th,
.table_st td { border:1px solid #ddd; padding:.5em 1em; height:3.5em } 
.table_st th { background:#f5f5f5; font-weight:700 } 

.table_st.s1 { font-size: .915em; } 
.table_st.s1 td,
.table_st.s1 th { height: auto; padding: 1.15em 1.25em; } 
.table_st.s1 .page_dot_list > li { font-size: 1em; } 

/**/
.tableSt { } 
.tableSt,
.tableSt .thead,
.tableSt .tbody { display:flex; flex-direction:column } 
.tableSt .thead { border-radius:1vmin } 
.tableSt .tr { display:flex; padding:0 0 0 1px; border-radius:.5em } 
.tableSt .cell { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; box-sizing:border-box; padding:.5em .75em; border:1px solid #ddd; margin:-1px 0 0 -1px; min-height:3em; } 
.tableSt.p1 .cell { padding:1em } 
.tableSt .cell.al { align-items:flex-start !important; text-align:left } 
.tableSt .cell.ar { align-items:flex-end !important; text-align:right } 
.tableSt .cell.ac { align-items:center !important; text-align:center } 
.tableSt .cell.th { font-weight:700; background:rgba(0,0,0,.05) } 
.tableSt .cell.td { font-weight:500; background:#fff } 
.tableSt .cell.td .t1 { color:#444 } 
.tableSt .cell.pL { padding-left:1.25em } 
.tableSt .tr:first-child .cell:first-child { border-top-left-radius:.5em } 
.tableSt .tr:first-child .cell:last-child { border-top-right-radius:.5em } 
.tableSt .tbody:last-child .tr:last-child .cell:first-child { border-bottom-left-radius:.5em } 
.tableSt .tbody:last-child .tr:last-child .cell:last-child { border-bottom-right-radius:.5em } 
.tableSt .thead .tr:last-child .cell:first-child { border-bottom-left-radius:0 } 
.tableSt .thead .tr:last-child .cell:last-child { border-bottom-right-radius:0 } 
.tableSt .thead ~ .tbody .tr:first-child .cell:first-child { border-top-left-radius:0 } 
.tableSt .thead ~ .tbody .tr:first-child .cell:last-child { border-top-right-radius:0 } 
.tableSt .wCate { width:7em } 
.tableSt .wDate { width:9em } 
.tableSt .wDate2 { width:12em } 
.tableSt .wBtn2 { width:12em } 
.tableSt .wState { width:8em } 
.tableSt .wGrow { flex:1 1 0%; min-width:0; width:auto } 
.tableSt.c1 .cell { border-color:#444 } 
.tableSt.c1 .cell.th { background:#444; color:#fff } 

.tableSt.form .cell { padding:1vmin } 
.tableSt.form .cell.td { align-items:flex-start } 
.tableSt .cell.p1 { padding:2vmin } 

.gallList { display:flex; flex-wrap:wrap; --calcL:4; --calcG:2em } 
.gallList.main { --calcL:3; --calcG:1em } 
.gallSt { display:flex; flex-direction:column; position:relative; overflow:hidden; background:#fff; box-sizing:border-box; height:100%; border-radius:1em; overflow:hidden } 
.gallSt .imgW { display:block } 
.gallSt .imgW .layer { position:absolute; left:0; top:0; width:100%; height:100%; background:linear-gradient(180deg, transparent 70%, rgba(0,0,0,.5) 100%); color:#fff; display:flex; flex-direction:column; justify-content:flex-end; box-sizing:border-box; padding:4% 5% } 
.gallSt .imgW .layer .area { text-align:right; font-size:.938em; font-weight:900; line-height:1.1 } 
.gallSt .conW { display:flex; flex-direction:column; gap:1em; box-sizing:border-box; padding:1.5em } 
.gallSt .conW .tit .t1 { font-weight:700; font-size:1.25em } 
.gallSt .conW .tt .t1 { font-size:.938em } 
.gallSt .conW .date { font-size:.875em; color:#777 } 
.gallSt .more { display:flex; align-items:center; gap:.5em; margin:auto 0 0 auto; color:#999; transition:.3s } 
.gallSt .more:before { content:attr(data-tt); font-size:.75em; font-weight:700 } 
.gallSt .more:after { content:"\e907"; font-family:xeicon; font-weight:900 } 
.gallSt .more.st1 { height:1.75em; padding:0 .75em; border-radius:1.5em; border:1px solid var(--siteC); color:var(--siteC); line-height:1 } 
.gallSt .more.al { margin-left:0; margin-right:auto; } 
.gallSt:hover .more { color:var(--siteC); gap:1em } 
.gallSt.st1 .conW { position:absolute; left:0; top:0; width:100%; height:100%; display:flex; align-items:center; justify-content:center; text-align:center; color:#fff; box-sizing:border-box; padding:2em } 
.gallSt.st1 .conW:before { content:""; position:absolute; left:0; top:0; width:1200%; height:100%; background:var(--siteC); opacity:.8 } 
.gallSt.st1 .conW > * { position:relative } 

.academicSt { display:flex; box-sizing:border-box; height:100%; overflow:hidden; border-radius:2em; background:#27b4c0; color:#fff; padding:2.5em; gap:2em } 
.academicSt .imgW { width:30%; overflow:hidden; border-radius:inherit } 
.academicSt .imgW .resize { background-size:100% auto } 
.academicSt .conW { flex:1 1 0%; min-width:0; display:flex; flex-direction:column; gap:1em } 
.academicSt .conW .titW { padding:.5em; display:flex; flex-direction:column; gap:1em } 
.academicSt .imgW + .conW .titW { padding-top:2em; } 
.academicSt .conW .titW .t1 { font-weight:700; font-size:1.625em; letter-spacing:-.025em; word-spacing:.1em } 
.academicSt .conW .titW .t2 { opacity:.8 } 
.academicSt .conW .info { display:flex; gap:.5em; margin-top:auto; overflow:hidden; border-radius:1em } 
.academicSt .conW .info > li { flex:1 1 0%; min-width:0; max-width:50% } 
.academicSt .conW .info > li .in { background:rgba(0,0,0,.1); display:flex; flex-direction:column; gap:1.5em; box-sizing:border-box; padding:1.5em; height:100% } 
.academicSt .conW .info > li .in .tit .t1 { font-weight:700 } 
.academicSt .conW .info > li .in .tt .t1 { font-size:.938em } 
/* div:nth-child(3n) > .academicSt { background: #676ef3 } */
/* div:nth-child(3n - 1) > .academicSt { background: #5d9eef } */

.newsletterSt { border-radius:2em; background:#f5f5f5; box-sizing:border-box; padding:1.5em; display:flex; align-items:flex-end; position:relative } 
.newsletterSt .label { position:absolute; left:0; top:0; transform:translate(-10%, -10%); width:6em; display:flex; align-items:center; justify-content:center; background:var(--siteC2); color:#fff; border-radius:50%; border-bottom-right-radius:0; flex-direction:column; box-sizing:border-box; padding-top:1em } 
.newsletterSt .label .t1 { font-weight:700; font-size:.813em; text-transform:uppercase } 
.newsletterSt .label .t2 { font-weight:900; font-size:.938em } 
.newsletterSt .imgW { width:50% } 
.newsletterSt .imgW .bg { border-radius:1em; box-shadow:0 0 1em rgba(0,0,0,.1); position:relative; overflow:hidden } 
.newsletterSt .imgW .bg:after { content:""; position:absolute; left:0; top:0; width:100%; height:100%; background:linear-gradient(0deg, rgba(0,0,0,.3), transparent 20%) } 
.newsletterSt .conW { flex:1 1 0%; min-width:0; display:flex; flex-direction:column; gap:2em; box-sizing:border-box; padding:2em 1em } 
.newsletterSt .conW .tit .t1 { font-size:1.75em } 
.newsletterSt .conW .tt { color:#555; display:flex; flex-direction:column; gap:.5em; } 
.newsletterSt .conW .tt .t1 { font-weight:500 } 
.newsletterSt .conW .tt .t2 { font-size:1.25em; font-weight:700; letter-spacing:-.05em; word-spacing:.2em } 

/**/
.ulSt { display:flex; flex-direction:column; gap:.75em } 
.ulSt > li[data-ico] { padding-left:1em; position:relative } 
.ulSt > li[data-ico]:before { content:attr(data-ico); position:absolute; left:0; top:0 } 
.ulSt > li[data-ico='*']:before { transform:translate(25%,20%) } 
.ulSt > li.t1 { font-size:1.125em; font-weight:500 } 
.ulSt > li.c1 { color:#666 } 

.infoSt > li { display:flex; position:relative; padding-left:.75em; gap:.5em } 
.infoSt > li:before { content:""; position:absolute; left:0; top:0; width:.25em; height:.25em; background:#ccc; top:.375em } 
.infoSt > li .tt { flex:1 1 0%; min-width:0 } 

.cssCount { counter-increment: cssCount } 
.cssCount .countEl:before { content:counter(cssCount) } 

.pgLine { height:.75em; background:#f5f5f5; box-shadow:0 .125em .25em rgba(0,0,0,.1) inset; margin:4.5em 0 4em 0 } 
.pgLine.wF { position:relative; left:50%; width:100vw; transform:translateX(-50%) } 
.pgLine2 { height:.5em; margin:3em 0; background: linear-gradient(135deg, #eee 25%, transparent 25%, transparent 50%, #eee 50%, #eee 75%, transparent 75%, transparent); background-size: .5em .5em; } 
[class*="pgLine"]:first-child { margin-top:0 } 

.hoverLine { position:relative; --hoverLineC:var(--siteCB); --hoverLineW:4px } 
.hoverLine:after { content: ""; position: absolute; inset: 0; border-radius: inherit; background:
linear-gradient(var(--hoverLineC), var(--hoverLineC)) left top / 0 var(--hoverLineW) no-repeat,
linear-gradient(var(--hoverLineC), var(--hoverLineC)) right top / var(--hoverLineW) 0 no-repeat,
linear-gradient(var(--hoverLineC), var(--hoverLineC)) right bottom / 0 var(--hoverLineW) no-repeat,
linear-gradient(var(--hoverLineC), var(--hoverLineC)) left bottom / var(--hoverLineW) 0 no-repeat; transition:background-size 0.25s linear; } 
.hoverLine:hover:after { background-size:
100% var(--hoverLineW),
var(--hoverLineW) 100%,
100% var(--hoverLineW),
var(--hoverLineW) 100%; } 

.hoverImg:hover .imgW { overflow:hidden } 
.hoverImg:hover .imgW .resize { transform:scale(1.1); transition:1s } 

/**/
.privacy_policy { margin: 0 auto; padding: 1.5rem 1.5rem; line-height: 1.8; color: #333; word-break: keep-all; } 
.privacy_policy h1 { padding-bottom: 1rem; margin-bottom: 1.5rem; line-height: 1; border-bottom: 2px solid #222; font-size: 1.815em; font-weight: 700; } 
.privacy_policy .policy_index { padding: 1.5rem 2rem; background: #f8f8f8; border: 1px solid #e5e5e5; border-radius: .8em; } 
.privacy_policy .policy_index li { margin-bottom: 8px; } 
.privacy_policy section { margin-top: 60px; } 
.privacy_policy section:first-of-type { margin-top: 0; } 
.privacy_policy h2 { margin-bottom: 1rem; padding-left: .75rem;; border-left: 4px solid var(--siteC); line-height: 1.2; font-size: 1.215em; font-weight: 700; color: #111; } 
.privacy_policy h3 { margin: 1rem 0 .5rem; font-size: 1.15rem; font-weight: 600; color: #222; } 
.privacy_policy h4 { margin: 20px 0 10px; font-size: 1rem; font-weight: 600; } 
.privacy_policy p { margin-bottom: 15px; } 
.privacy_policy ul { margin: 15px 0; padding-left: 20px; } 
.privacy_policy li { position:relative; margin-bottom: 10px; } 
.privacy_policy li:before { position: absolute; top: 10px; left: -12px; width: 5px; min-width: 5px; height: 5px; border-radius: 50%; background: var(--siteC); opacity: .215; content: ''; } 
.privacy_policy strong { font-weight: 600; } 
.privacy_policy section + section { padding-top: 40px; border-top: 1px solid #e5e5e5; } 

.guidePage .privacy_policy { padding: 0; } 

.mem_terms_wrap .all_check { border-bottom:1px dashed #bbb; font-sizE: 1em; padding-bottom: 1rem; } 
.mem_terms_wrap > li:not(:first-child) { padding-top:2.5em; } 
.mem_terms_wrap .tit { margin-bottom:.75em; font-size: 1.515em; font-weight: 700; } 
.mem_terms_wrap .tit * { vertical-align:baseline; } 

.mem_btn_wrap { margin-left:-.375em; text-align:center; } 
.mem_btn_wrap > li { flex:1; } 
.mem_btn_wrap > li .in { margin-left:.375em; } 

.member_agree .agree { padding:2rem; border: 1px solid #ddd; border-top: 1px solid #111; } 
.member_agree .agree.H { padding:.5rem 1rem; border-top-width:1px; height:14rem; background:#fff; overflow-y: scroll; } 
.member_agree .agree * { vertical-align:baseline; } 
.member_agree .check { justify-content: space-between; box-sizing: border-box; width: 100%; padding:1em 2em; border:1px solid #ddd; border-top:none; border-radius:0 0 5px 5px; text-align:right; background:#f9f9f9 } 
.member_agree .check > .chTxt { font-size: 1em; font-weight: 600; color: #272727; } 
.member_agree h1 { color:#111; font-weight:600 } 
.mem_join_box .member_agree .check { background: #fff; } 

.terms_container { margin: 1.5rem auto; padding: 0 1.25rem; } 
.terms_title { font-size: 1.215em; font-weight: 700; color: #222222; margin-bottom: 0.9375rem; } 
.terms_box { background-color: #f4f7fa; border: 1px solid #d0dae5; padding: 1.875rem; border-radius: .8em; } 
.terms_list { margin: 0; padding: 0; list-style: none; counter-reset: terms-counter; } 
.terms_list li { position: relative; font-size: .963em; line-height: 1.6; color: #3b424f; margin-bottom: 1.125rem; padding-left: 1.75rem; word-break: keep-all; } 
.terms_list li:last-child { margin-bottom: 0; } 
.terms_list li::before { counter-increment: terms-counter; content: counter(terms-counter); position: absolute; left: 0; top: 3px; width: 20px; height: 20px; background-color: #111; color: #ffffff; font-size: 11px; font-weight: 700; border-radius: 50%; line-height; 1; display: flex; align-items: center; justify-content: center; } 
.terms_summary { margin-top: 1.5625rem; padding-top: 1.25rem; border-top: 1px dashed #b9c7d6; } 
.terms_summary p { font-size: .963em; line-height: 1.6; font-weight: 600; color: #1e2530; margin: 0; word-break: keep-all; } 

/* ====== partner ====== */
.board_wrap { } 
.board_wrap .board_partner { display: flex; gap: 1.5rem; flex-wrap: wrap; } 
.board_wrap .board_partner > li { width: calc((100% - 3rem) / 3); } 
.board_wrap .board_partner > li > .wrap_in { border: 1px solid #ddd; border-radius: 1rem; display: block; overflow: hidden; } 
.board_wrap .board_partner > li > .wrap_in > .img_wrap { padding: 2rem; box-sizing: border-box; } 
.board_wrap .board_partner > li > .wrap_in > .img_wrap > img { width: 100%; height: 55px; object-fit: contain; } 
.board_wrap .board_partner > li > .wrap_in > .con_wrap { padding: .75rem 1.5rem; box-sizing: border-box; border-top: 1px solid #ddd; display: flex; align-items: center; justify-content: space-between; gap: 1rem; transition: .3s ease; } 
.board_wrap .board_partner > li > .wrap_in > .con_wrap .t1 { font-size: 1.125em; color: #666; font-weight: 400; transition: .3s ease; } 
.board_wrap .board_partner > li > .wrap_in > .con_wrap .smPlus { width: 1.5rem; height: 1.5rem; border-radius: 50%; background: #f1f1f1; display: flex; align-items: center; justify-content: center; } 
.board_wrap .board_partner > li > .wrap_in > .con_wrap .smPlus > .xi { font-size: 1em; color: #666; } 
.board_wrap .board_partner > li > .wrap_in:hover .con_wrap { background: var(--siteC); } 
.board_wrap .board_partner > li > .wrap_in:hover .con_wrap .t1 { color: #fff; } 


/* @media screen and (max-width: 1024px){
 }
@media screen and (max-width: 768px){
 .board_wrap .board_partner > li { width: calc((100% - 1.5rem) / 2); } 
.w_btnFull2 { width: 9rem; } 

.board_gallery { --boardGallL: 2; } 
.board_viewT .vTit { font-size: 1.5em; } 

.tRow { --tRowLH: 2.58em; } 
 }
@media screen and (max-width: 450px){
 .board_wrap .board_partner > li { width: 100%; } 
.board_search_wrap { align-items: flex-start; flex-direction: column; gap: 1em; } 
.board_search_wrap .right .input_st[type=text] { width: 26em; } 
.event_gallery>li { width: 100%; } 
.event_gallery>li .wrap_in .img_wrap .photo { aspect-ratio: 2 / 1; } 


.board_gallery { --boardGallL: 1; } 

.boardList > li > .inner { gap: 1em; flex-direction: column; } 
.boardList > li > .inner > .imgCon { width: 100%; height: 100%; } 
.boardList > li > .inner > .info > .tit { font-size: 1.45em; } 

.form_lab .lab_tit { width: 5em; } 

.page_btn { flex-direction: column; } 
 }
@media screen and (max-width: 360px){
 .board_search_wrap .right .input_st[type=text] { width: 20em; } 
.board_table2 .view_con .in_state >.tit { width: 4rem; } 
.w_btnFull2 { width: 4rem; } 
.member_agree .check { flex-direction: column-reverse; } 
 } */