@charset "utf-8";

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  word-wrap: break-word;
  box-sizing: border-box;
  list-style: none;
  line-height: 1.25rem;
  font-family: 'Pretendard-Regular';
}

html{
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--font-color);
  text-decoration: none;
}

input, textarea, button, ::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  color: var(--font-color);
}

img {
  vertical-align: bottom;
}

a, a:link, a:visited, a:active {
  color: var(--font-color);
  text-decoration: none;
}

p {
  margin-top: 8px;
}

::-webkit-scrollbar {
	width: 3px;
  height: 3px;
  background:var(--scroll-bg);
}

::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background:var(--scroll-th);
}

/*Icon WebFont icon*/
.fas{
  font-size:0.85rem;
  line-height: 1.25rem;
}

[class*=" xi-"], [class^=xi-]{
  font-size:0.9rem;
  line-height:1.25rem !important;
}

/*모바일 메뉴 버튼*/
#mobile_btn{
  display: none;
}

/*탑버튼*/
.topbtn{
  position:fixed;
  bottom:10px;
  right:13px;
  display: none;
  background:var(--main-bg);
  border:var(--border);
  border-radius:100%;
  width:24px;
  height:24px;
  padding:5px 0;
  text-align: center;
  z-index: 99999;
}

.topbtn > i{
  line-height: 1rem !important;
}





/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin:120px auto 150px;
  /*크기 변경*/
  width:calc(var(--layout-content) + var(--layout-side) + 20px);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  row-gap: 20px;
}

#side{
  width:var(--layout-side);
  order: 2;
}

#content{
  width:var(--layout-content);
  order: 1;
}





/*=======================================*/
/*=============== sidebar ===============*/
/*=======================================*/

.profile{
  border:var(--border);
  border-radius:var(--radius);
  overflow: hidden;
  margin-bottom:10px;
  background:var(--main-bg);
}

.profile .pimg{
  display: block;
  width:100%;
  height:var(--layout-side);
  border-bottom:var(--border);
}

.profile .ptext{
  padding:10px;
}

.profile .ptext .nick{
  font-weight: bold;
  margin-bottom:3px;
}

.search{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  padding:10px;
  margin-bottom:10px;
}

.search input{
  font-size:1rem;
  color:var(--font-color);
  letter-spacing:0.5px;
  width:calc(100% - 15px);
}

.menu{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content:space-between;
  align-items: center;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  padding:10px 20px;
  margin-bottom:10px;
}

.menu a{
  transition:0.7s;
}

.menu a:hover{
  color:var(--point-color);
  transition: 0.5s;
}

.category{
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  margin-bottom:10px;
}

.category .cate_tt{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding:10px;
}

.category .cate_tt i{
  margin-right:3px;
}

.tt_category{
  padding:10px;
  border-top:var(--border);
}

.link_tit{
  display: block;
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
  margin-bottom:10px;
}

.link_tit,
.category_list li > a{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content:space-between;
  align-items: center;
  transition: 0.5s;
}

.tt_category li > a > .c_cnt{
  order:3;
}

.tt_category .c_cnt{
  color:#aaa;
  font-size: 0.85rem;
}

.tt_category li > a > .left_cname{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
}

.tt_category .selected > a{
  font-weight:bold;
  color: var(--point-color);
}

.tt_category .selected > a > span{
  font-weight: normal;
}

.category_list > li > a{
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
}

.category_list > li:not(:last-child){
  margin-bottom:10px;
}

.sub_category_list{
  display: none;
  margin-top:10px;
  margin-left:15px;
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
}

.link_tit:hover, .category_list li:hover > a{
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.5s;
}

.link{
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  margin-bottom:10px;
}

.link .link_tt{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  padding:10px;
}

.link .link_list{
  padding:10px;
  padding-bottom:0;
  border-top:var(--border);
}

.link .link_list > li{
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
  margin-bottom:10px;
}

.link .link_list > li > a{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  transition: 0.5s;
}

.link .link_list > li:hover > a{
  font-weight: bold;
  letter-spacing: 1px;
  color:var(--point-color);
  transition: 0.5s;
}





/*======================================*/
/*=============== paging ===============*/
/*======================================*/

.paging{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-top:20px;
  padding:0 10px;
}

.paging .numbox > a.num{
  padding:3px;
  margin:0 3px;
}

.paging .numbox > a.num > .selected{
  font-weight: bold;
}



/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm{
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.confirm .c_title{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  padding:10px;
}

.confirm .c_desc{
  padding:10px;
  border-top:var(--border);
}

.confirm .c_desc:empty{
  display: none;
}

.empty_con{
  padding:150px 10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  text-align:center;
}

#list_n1 > :not(.n1), #list_n2 > :not(.n2),
#list_g1 > :not(.g1), #list_g2 > :not(.g2),
#list_wz > :not(.wz){
  display: none;
}

.list_w > div:not(.wz) .sum{
  display: none;
}

.list_w .xi-lock, .xi-new-o{
  color:#999;
}

.n1{
  padding:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.n1 .list_c {
  transition: 0.7s;
}

.n1 .list_c:not(:last-child){
  border-bottom:var(--border);
}

.n1 .list_t{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding:15px;
}

.n1 .list_t .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  transition: 0.7s;
}

.n1 .list_c:hover .list_t .title{
  letter-spacing: 1px;
  color:var(--point-color);
  font-weight: bold;
  transition: 0.7s;
}

.n1 .list_t .date {
  color:#aaa;
}

.n2{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
}

.n2 .list_c{
  width:calc((100% - 10px) / 2);
  height:auto;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.n2 .list_t{
  padding:10px;
  border-bottom:var(--border);
}

.n2 .list_t .title{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  width:100%;
  overflow:hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  margin-bottom:3px;
}

.n2 .catename{
  padding:10px;
  color:#aaa;
  text-align: right;
}


/*----- thumbnail -----*/
.list_w .list_c .thumb_i img {
  width: 100%;
  padding:10px;
}

.list_w .list_c .thumb_i img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
}
/*----- thumbnail -----*/


.g1{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap:10px;
}

.g1 .list_c{
  position:relative;
  width:calc((100% - 20px) / 3);
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
  overflow: hidden;
}

.g1 .list_c .thumb_i {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.g1 .list_c .list_t{
  display: none;
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  padding:10px;
  background:#ffffff77;
}

.g1 .list_c .list_t .title{
  position: absolute;
  left:50%;
  bottom:15px;
  transform: translate(-50%,0);
  max-width: calc(100% - 30px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding:5px 7px;
  background:var(--main-bg);
  border:var(--border);
  border-radius: 20px;
  font-weight:bold;
  text-align: center;
}

.g1 .list_c .list_t .fa-lock{
  display: none;
}

.g1 .xi-new-o{
  display:none;
}



.g2{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
}

.g2 .list_c {
  position:relative;
  width:calc((100% - 10px) / 2);
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}

.g2 .list_c .thumb_i {
  position: relative;
  width: 100%;
  border-bottom:var(--border);
}

.g2 .list_t{
  padding:10px;
  width:100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.g2 .list_t .title{
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap:3px;
  font-weight:bold;
  text-align: center;
}

.g2 .list_c:hover .list_t .title{
  letter-spacing:1px;
  transition:0.7s;
}

.list_w .list_c .title > span{
  max-width:100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}



.wz .list_c > a.thumb_l{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  gap:10px;
  padding:10px;
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.wz .list_c .thumb_i {
  position: relative;
  width: 110px;
  border:var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}

.wz .list_c .thumb_i img{
  padding:0 !important;
}

.wz .list_c .list_t{
  position:relative;
  width:100%;
}

.wz .list_c:has('.thumb_i') .list_t{
  width:calc(100% - 120px);
}

.wz .list_c .list_t .title{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  font-weight:bold;
}

.wz .list_c .list_t .sum{
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin:5px 0;
}

.wz .list_c .list_t .sum:empty{
  margin-top:0;
}

.wz .list_c .list_t .etc{
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.wz .list_c .list_t .etc > *{
  color:#aaa;
}

.wz .list_c .list_t .etc .catename:after{
  content: '·';
  margin:0 3px;
}





/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry .article{
  margin-bottom:10px;
}

.entry .article .title_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap:10px;
  padding:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
}

.entry .article .title_wrap .title {
  font-weight: bold;
}

.entry .article .title_wrap .date {
  color:#aaa;
}

.entry .article .ny {
  padding:10px;
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.entry .tt-box-total{
  display:none;
}

.entry .tt-comment-cont{
  display: none;
}

.article .detail{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap:10px;
  padding:6.5px 10px;
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-top:0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.article .detail .tag_trail,
.article .detail .untagged{
  padding:3.5px 0;
}

.article .detail .admin{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap:5px;
}

.article .detail .admin > a{
  background:var(--sub-bg);
  border:var(--border);
  border-radius: 20px;
  padding:3px 8px;
  font-size: 0.85rem;
}

.article .detail .tag_trail a:before {
  content: '#';
}

.article .action_trail{
  display: inline-block;
  padding:10px;
  padding-bottom:9px;
  margin-right:5px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
  font-weight: bold;
}

.article .postbtn{
  display:inline-block;
  vertical-align: middle;
}





/*=======================================*/
/*=============== postbtn ===============*/
/*=======================================*/

.entry .container_postbtn{
  padding:0 !important;
  align-items: center;
}

.entry .container_postbtn .postbtn_like{
  height:36px;
  padding:10px !important;
  border:var(--border) !important;
  border-radius:var(--radius) !important;
  background:var(--main-bg);
}

.entry .container_postbtn .wrap_btn_share .layer_post{
  /*share icon click*/
  left: -7px !important;
}

.entry .container_postbtn .wrap_btn_etc .layer_post{
  /*etc icon click*/
  left: -4px !important;
}

.entry .container_postbtn .btn_post{
  height:auto !important;
  padding:0 !important;
  margin-right:10px;
}

.entry .container_postbtn .btn_post .txt_like{
  margin:0 !important;
}

.entry .container_postbtn .btn_post span.uoc-count{
  /*like text*/
  font-size:12px !important;
  font-family:"Pretendard-Regular" !important;
  line-height:15px !important;
  color:var(--font-color) !important;
}

.entry .container_postbtn .btn_post .ico_like{
  margin: 0 3px 0 0 !important;
}

.entry .container_postbtn .btn_etc1/*login*/,
.entry .container_postbtn .btn_etc2/*logout*/{
  height:15px !important;
  padding:0 0 0 3px !important;
  margin-right:0 !important;
}

.entry .container_postbtn .btn_post .ico_etc{
  margin:-1px 0 0 0 !important;
  padding:0;
}

.entry .container_postbtn button:focus,
.layer_post button:focus,
.layer_tooltip button:focus{
  /*item click → delete outline*/
  outline:unset !important;
}


.entry .container_postbtn .btn_menu_toolbar{
  height:36px !important;
  border:var(--border) !important;
  border-radius:var(--radius) !important;
  padding:10px !important;
  line-height: 15px !important;
  color:var(--font-color) !important;
  background:var(--main-bg);
}

.entry .container_postbtn .btn_menu_toolbar > em.txt_state{
  font-size: 12px !important;
  margin:0 !important;
}

.entry .container_postbtn .btn_menu_toolbar .ico_check_type1{
  margin:5px 0 5px 5px !important;
}





/*========================================*/
/*=============== namecard ===============*/
/*========================================*/

.tt_box_namecard{
  min-height:unset !important;
  background:var(--main-bg) !important;
  margin-bottom:10px !important;
  margin-top:10px !important;
  padding:20px;
  border:var(--border);
  border-radius:var(--radius);
}

.tt_box_namecard .tt_cont{
  padding:0 10px 0 0 !important;
}

.tt_box_namecard .tt_cont .tt_tit_cont{
  font-size:inherit !important;
  font-weight:bold !important;
  line-height:inherit !important;
  color:var(--font-color) !important;
}

.tt_box_namecard .tt_desc{
  font-size:12px !important;
  line-height: 15px !important;
  letter-spacing: 0.5px !important;
}

.tt_box_namecard .tt_wrap_thumb{
  margin:0 !important;
  border:var(--border);
}

.tt_box_namecard .tt_btn_subscribe{
  margin-top:10px !important;
  margin-bottom:0 !important;
  padding:10px !important;
  background:var(--sub-bg) !important;
  border-radius:var(--radius) !important;
  border:var(--border) !important;
}

.tt_box_namecard .tt_btn_subscribe .tt_txt_g{
  font-size: 12px !important;
  line-height: 15px !important;
  color: var(--font-color) !important;
  padding-top:1px;
  font-family: 'Pretendard-Regular';
}





/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.ny p > a{
  font-weight:bold;
  color:var(--point-color);
}/*hyperlink*/

h2, h2[data-ke-size]{
  line-height:2.02rem;
}

h3, h3[data-ke-size]{
  line-height: 1.8rem;
}

h4, h4[data-ke-size]{
  line-height: 1.56rem;
}

p[data-ke-size='size18']{
  line-height: 1.4rem;
}

p[data-ke-size='size16']{
  line-height: 1.25rem;
}

p[data-ke-size='size14']{
  line-height: 1.08rem;
}





/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter{
  margin: 0 auto !important;
} /*image, 1*/

figure.imagegridblock, #tt-body-page figure.imagegridblock{
  margin: 0 auto !important;
} /*image, more than 1 */

figure.imagegridblock .image-container > span{
  margin-top:0 !important;
}/*image, more than 1, margin zero*/





/*==========================================*/
/*=============== blockquote ===============*/
/*==========================================*/

.ny blockquote{
  font-size: 1rem;
  line-height:1.25rem;
  color:#777;
  letter-spacing: 0.5px;
}

blockquote[data-ke-style='style1']{
  text-align: center;
  margin:10px 0;
}

blockquote[data-ke-style='style1']:before{
  content:'\f10d';
  font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-style: italic;
  display:block;
  margin-bottom:10px;
}

blockquote[data-ke-style='style2']{
  padding:5px 10px;
  padding-right:0;
  border-left:5px solid #777;
  margin:10px 0;
}

blockquote[data-ke-style='style3']{
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
  background: var(--sub-bg);
  margin:10px 0;
}





/*==========================================*/
/*=========== video Optimization ===========*/
/*==========================================*/

.ny iframe{
  max-width: 100%;
}

.youtube{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
}

.youtube iframe{
  position: absolute;
  width:100%;
  height:100%;
}





/*=========================================*/
/*========== article / list-type ==========*/
/*=========================================*/

ul[data-ke-list-type='disc'],
ul[data-ke-list-type='circle'],
ol[data-ke-list-type='decimal']{
  padding-left:15px;
}





/*=========================================*/
/*============ image Slideshow ============*/
/*=========================================*/

figure.imageslideblock.alignCenter{
  margin:0 auto 10px;
}

figure.imageslideblock div.image-container{
  position: relative;
  width:100%;
  padding-bottom: 100%;
  min-width: unset;
  max-width: unset;
  min-height: unset;
  max-height: unset;
  align-items: unset;
}

figure.imageslideblock div.image-container span.image-wrap{
  position:absolute;
  width:100%;
  height:100%;
}

figure.imageslideblock div.image-container img{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

figure.imageslideblock figcaption{
  color:var(--font-color);
  font-size:1rem;
  padding-top:0;
  min-height: unset;
}





/*========================================*/
/*=============== moreless ===============*/
/*========================================*/

div[data-ke-type="moreLess"]{
  margin:10px 0;
}

div[data-ke-type='moreLess'] .btn-toggle-moreless{
  display: inline-block;
  color:var(--font-color);
  font-size: 1rem;
  line-height: 1.25rem;
  padding:5px 10px;
  border:var(--border);
  border-radius:var(--radius);
  background: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open) > .btn-toggle-moreless::before{
  content:'\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right:3px;
}

div[data-ke-type='moreLess'].open > .btn-toggle-moreless::before{
  content:'\f106';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right:3px;
}

div[data-ke-type='moreLess'].open .moreless-content{
  padding:10px;
  margin-top:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}





/*=========================================*/
/*=============== fileblock ===============*/
/*=========================================*/

figure.fileblock{
  margin: 10px 0;
  width:200px;
  height: unset;
  border:var(--border);
  border-radius:var(--radius);
}

figure.fileblock a{
  position:relative;
  height: unset;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
  transition:0.7s;
}


figure.fileblock .image{
  position:relative;
  background: none;
  margin:0;
  width:auto;
  height:auto;
}

figure.fileblock .image:after{
  content:"\f07b";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size:2.5rem;
  padding:15px 10px;
}

figure.fileblock .desc{
  position:relative;
  left:unset;
  right:unset;
  top:unset;
  bottom:unset;
  width:calc(100% - 50.5px);
  padding:15px 10px;
  padding-left:0;
}

figure.fileblock .filename{
  color:var(--font-color);
  font-size: 1rem;
  height:auto;
  margin:0;
}

figure.fileblock .name{
  max-width: 95%;
  height:auto;
  font-weight: bold;
}

figure.fileblock .size{
  font-size: 0.85rem;
  color:#aaa;
  height:auto;
  margin:0;

}

figure.fileblock a::after{
  display: none;
}

figure.fileblock a > .down{
  display: block;
  width:100%;
  border-top:var(--border);
  text-align: center;
  font-weight: bold;
  letter-spacing:1px;
  padding:10px;
  background: var(--sub-bg);
}

figure.fileblock a > .down > span:after{
  content: '\f358';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size:1rem;
  margin-left:3px;
}

figure.fileblock a:hover .down{
  letter-spacing: 2px;
  color:var(--point-color);
  transition:0.7s;
}





/*=========================================*/
/*=============== codeblock ===============*/
/*========================================*/

pre[data-ke-type="codeblock"]{
  padding:10px;
  margin:10px 0;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

pre[data-ke-type="codeblock"] > code{
  font-family: 'Pretendard-Regular';
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--scroll-bg);
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background:var(--scroll-th);
  border:0;
}





/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect .title_wrap {
  padding:10px;
  margin-bottom:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.protect .title_wrap .title {
  font-weight: bold;
}

.article_p{
  padding:150px 10px;
  margin-bottom:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  text-align: center;
}

.article_p .text{
  margin-bottom: 10px;
}

.article_p .form{
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap:5px;
}

.article_p .form input{
  width:120px;
  line-height: 35px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  text-align: center;
}

.article_p .form input::placeholder{
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.article_p .form button{
  width:37px;
  height:37px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.article_p .form button > i{
  color:#aaa;
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .tag_title{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  padding:10px;
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
  font-weight: bold;
}

.taglog .tags{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
  padding:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.taglog .tags a {
  width:calc((100% - 40px) / 5);
  padding: 10px 5px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background:var(--sub-bg);
  border:var(--border);
  border-radius:var(--radius);
  transition:0.7s;
}

.taglog a:before{
  content:'#';
}

.taglog a:hover{
  font-weight: bold;
  letter-spacing: 1.5px;
  color:var(--point-color);
  transition:0.7s;
}





/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.notice_wrap .notice_title{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap:3px;
  padding:10px;
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
  font-weight: bold;
}

.n_entry{
  margin-bottom:10px;
  background:var(--main-bg);
  border:var(--border);
  border-radius:var(--radius);
}

.n_entry .title_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap:10px;
  padding:10px;
  border-bottom:var(--border);
}

.n_entry .title_wrap .title {
  font-weight: bold;
}

.n_entry .title_wrap .date {
  color:#aaa;
}

.n_entry .article {
  padding:10px;
  text-align: justify;
}

.n_entry .postbtn{
  display: none !important;
}





/*======================================*/
/*=============== comment ===============*/
/*======================================*/

/*----- setting -----*/
.tt-comment-cont *{
  font-family:  'Pretendard-Regular';
  font-size: 1rem !important;
  line-height:1.25rem !important;
  color:var(--font-color) !important;
}

.tt-comment-cont{
  display: flex;
  flex-direction: column;
}

.tt_ico_lock, .tt-button-modify, .tt-box-write .tt-xe-label-text{
  font-size:0 !important;
}

.tt-box-total{
  order:1;
  padding:10px;
  margin-bottom:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
}

.tt-box-total .tt_txt_g{
  font-size: 0 !important;
  line-height: 0 !important;
}

.tt-box-total .tt_txt_g:before{
  content: "\ea12";
  font-family: xeicon !important;
  font-size: 0.9rem !important;
  margin-right:2px;
}

.tt-box-total .tt_txt_g:after{
  content:'Message';
  font-family: 'Pretendard-Regular' !important;
  font-size:1rem !important;
  font-weight:bold;
}

.tt-box-total .tt_num_g:before{
  content:'+';
  font-size:1rem !important;
  margin:0 2px;
}

.tt-box-total .tt_num_g{
  padding-left:0 !important;
}

.tt-area-reply{
  order: 3;
  margin-bottom: 0 !important;
}


/*----- write form -----*/
.tt-comment-cont > form{
  order: 2;
}

.tt-list-reply-comment .tt-area-write{
  /*답글 입력폼*/
  padding:10px 10px 0;
}

.tt-btn-cancel{
  height:30px !important;
  width:60px !important;
  border:var(--border) !important;
  border-radius:var(--radius) !important;
  background:var(--main-bg);
}

.tt-area-write {
  display: block !important;
  margin-bottom:10px;
}

.tt-area-write .tt-box-account{
  margin-bottom:10px !important;
}

.tt-area-write .tt-box-account input{
  padding:10px !important;
  border:var(--border) !important;
  border-radius:var(--radius) !important;
  background:var(--main-bg);
}

.tt-area-write .tt-box-thumb{
  display: none;
}

.tt-box-textarea{
  margin-bottom:10px !important;
  padding:10px;
  border: var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
}

.tt-box-textarea .tt_txt_user{
  display: none !important;
}

.tt-box-textarea .tt-inner-g{
  overflow: auto !important;
  min-height: unset !important;
  max-height: 110px !important;
  padding:0 5px 0 0 !important;
  border:unset !important;
  border-radius: unset !important;
  text-align: justify;
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar{
  background:var(--main-bg);
}

.tt-box-textarea .tt-inner-g::-webkit-scrollbar-thumb{
  background: var(--scroll-th);
}

.tt-box-textarea textarea, .tt-box-textarea div{
  height:unset !important;
}

.tt-box-write .tt-xe-input-helper{
  margin-right:10px !important;
}

.tt-btn_register{
  width:60px !important;
  border-radius:var(--radius) !important;
  font-weight: bold;
  background-color:var(--sub-bg) !important;
  border:var(--border) !important;
}

.tt-btn_register:disabled,
.tt-btn_register:hover,
.tt-btn_register:focus{
  background:var(--main-bg) !important;
  border:var(--border) !important;
}


/*----- comment list -----*/
.tt-list-reply{
  display: flex;
  flex-direction: column-reverse;
  border-bottom: 0 !important;
}

.tt-list-reply > .tt-item-reply:not(.rp_general){
  order: 1;
  background:var(--main-bg);
  /*pinned comment bg color*/
}

.tt-item-reply{
  padding:unset !important;
}

.tt-wrap-cmt{
  padding:10px;
}

.tt-wrap-cmt .tt-box-meta{
  margin-bottom:0 !important;
}

.tt-wrap-cmt .tt-link-user{
  font-weight: bold;
}

.tt_ico_lock{
  transform: scale(0.7);
}

.tt-wrap-cmt .tt_desc{
  margin-bottom:10px !important;
}

.tt-wrap-cmt .tt_date{
  padding:unset !important;
  color:#aaa !important;
}

.tt-link-comment span{
  padding:unset !important;
  color:#aaa !important;
}

.tt-link-comment span.tt_txt_g{
  margin-right:2px;
  font-family: 'Pretendard-Regular';
}

.tt-wrap-cmt .tt-box-modify{
  top:6px !important;
  right:3px !important;
}

.tt-wrap-cmt .tt-button-modify{
  transform: scale(0.8);
}

.tt-wrap-cmt .tt-list-modify{
  width:80px !important;
  padding:10px !important;
  box-shadow: none !important;
  border-radius:var(--radius) !important;
  border:var(--border);
}

.tt-wrap-cmt .tt-list-modify a{
  padding:0 !important;
  letter-spacing:1px !important;
  text-align:center !important;
}

.tt-box-thumb{
  margin-right: 10px !important;
}

.tt-thumbnail{
  width:40px !important;
  height:40px !important;
  border-radius:var(--radius) !important;
  border:var(--border);
}

.tt-thumbnail:after{
  border:none !important;
  border-radius: unset !important;
  box-shadow: unset !important;
}

.tt-wrap-cmt .tt-box-content{
  width: calc(100% - 50px) !important;
}

.tt-item-reply .tt-list-reply-comment{
  border-top:unset !important;
  margin:unset !important;
}

.tt-item-reply .tt-list-reply-comment .tt-box-thumb{
  display: none;
}

.tt-item-reply .tt-list-reply-comment .tt-item-reply::before{
  position:unset !important;
  border:unset !important;
}

.rp_general{
  margin-bottom:10px;
  border:var(--border) !important;
  border-radius:var(--radius);
  background:var(--main-bg);
  /*comment item bg color*/
}

.rp_general .tt-list-reply-comment .tt-item-reply{
  border-top:var(--border);
}

.tt-list-reply-comment .tt-box-content{
  width:100% !important;
}


/*----- pinned comment -----*/
.tt-item-reply .tt_cmt_info{
  border-bottom:var(--border);
  margin:unset !important;
  padding:7px 10px;
}

.tt-item-reply:has(.tt_cmt_info){
  border:var(--border) !important;
  border-radius:var(--radius);
  margin-bottom:10px;
}

.tt-item-reply:has(.tt_cmt_info) .tt-wrap-cmt .tt-box-modify{
  top:4px !important;
  right:3px !important;
}

.tt_ico_fixed{
  transform: scale(0.8);
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed{
  margin-bottom:0 !important;
}


/*----- prev more comment -----*/
.tt_btn_prev_more{
  padding:10px !important;
  margin-bottom:10px !important;
  border:var(--border) !important;
  border-radius:var(--radius);
}





/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.cn1, .cg1, .cl, .cwz{
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  margin-bottom:10px;
}

.cg2{
  margin-bottom:10px;
}

.c_item .title_wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding:10px;
  border-bottom:var(--border);
}

.c_item .title_wrap span{
  font-weight: bold;
}

.cn1 .cn_content_wrap{
  padding:10px;
}

.cn1 .cn_content{
  padding:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
}

.cn1 .cn_content:not(:last-child){
  margin-bottom:10px;
}

.cn1 .cn_content .cn_tt{
  margin-bottom:10px;
  font-weight:bold;
}

.cn1 .cn_content .cn_sum{
  text-align: justify;
}

.cn1 .cn_content .cn_img{
  width:100%;
  margin-bottom:10px;
}

.cn1 .cn_content .cn_img img{
  max-width:100%;
}

.cn2 .cn_content .cn_img{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
}

.cn2 .cn_content .cn_img img{
  max-width: 100%;
}

.cn2 .cn_content .cn_text_wrap{
  padding:10px;
  margin-bottom:10px;
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
}

.cn2 .cn_content .cn_text_wrap .cn_tt{
  font-weight: bold;
  margin-bottom:10px;
}

.cn2 .cn_content .cn_sum{
  text-align: justify;
}

.cg1 .cg_content{
  padding:10px;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap:10px;
}

.cg1 .list_c{
  position:relative;
  width:calc((100% - 20px) / 3);
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  overflow: hidden;
}

.c_item .list_c .thumb_i {
  position: relative;
  width: 100%;
}

.c_item .list_c .thumb_i img {
  width: 100%;
}

.c_item .list_c .thumb_i .th {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cg1 .list_c .list_t{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#ffffff77;
}

.cg1 .list_c .list_t span{
  position: absolute;
  left:50%;
  bottom:10px;
  transform: translate(-50%,0);
  max-width: calc(100% - 20px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding:5px 7px;
  background:var(--main-bg);
  border:var(--border);
  border-radius: 20px;
  font-weight:bold;
  text-align: center;
}

.cg2 .cg_content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:10px;
}

.cg2 .list_c{
  width:calc((100% - 10px) / 2);
  border:var(--border);
  border-radius:var(--radius);
  background:var(--main-bg);
  overflow: hidden;
}

.cg2 .list_c .thumb_i{
  padding:10px;
  border-bottom:var(--border);
}

.cg2 .list_c .thumb_i .th{
  padding:10px;
}

.cg2 .list_c .list_t{
  width:100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding:10px;
  text-align: center;
  font-weight: bold;
}

.cl .cl_content{
  padding:10px;
}

.cl .cl_text_wrap a.thumb_l{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding:10px;
}

.cl .cl_text_wrap:not(:last-child){
  border-bottom:var(--border);
}

.cl .cl_text_wrap .cl_tt{
  max-width:calc(100% - 85px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cl .cl_text_wrap .date{
  color:#aaa;
}

.cwz .list_c a.thumb_l{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 10px;
  padding:10px;
}

.cwz .list_c:not(:last-child){
  border-bottom: var(--border);
}

.cwz .list_c .thumb_i{
  width:100px;
  border:var(--border);
  border-radius:var(--radius);
  overflow: hidden;
}

.cwz .cwz_text_wrap{
  width:calc(100% - 110px);
}

.cwz .cwz_text_wrap .cwz_tt{
  font-weight:bold;
}

.cwz .cwz_text_wrap .cwz_sum{
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top:5px;
}





/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 13px;
  bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 0.9em;
  color:var(--font-color);
  letter-spacing: 1px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/





/*=========================================*/
/*================== RWD ==================*/
/*=========================================*/

@media (max-width:767px) {

  #container{
    width:calc(100% - 40px);
    margin:20px auto;
    flex-wrap: wrap;
    row-gap:unset;
  }

  .profile{
    width:100%;
  }

  #side {
    position: fixed;
    top: 0;
    left: -65%;
    width: 65%;
    height: 100%;
    overflow: auto;
    border-right: 1px solid #ddd;
    padding: 20px;
    z-index: 99999;
    transition: 0.7s;
  }

  #mobile_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99999;
    display:flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background: var(--main-bg);
    border: var(--border);
    border-radius: 100%;
  }

  #side::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  #side::-webkit-scrollbar-thumb {
    width: 0;
    height: 0;
  }

  #side{
    display: flex;
    flex-direction: column;
  }

  #side .search{
    order:2;
    border-top:0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  #side .menu{
    order: 1;
    margin-bottom:0;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  #side .category{
    order: 3;
  }

  #side .link{
    order:4;
  }

  .slideToggle{
    left:0 !important;
    transition: 0.7s;
  }

  #content{
    width:100%;
  }

  .g1 .list_c{
    width:calc((100% - 10px) / 2);
  }


}
