@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: var(--line-height);
  letter-spacing: 0;
  font-family: 'Pretendard-Regular';
}

html {
  font-size: var(--font-size);
  color: var(--font-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

body.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.fade.loaded {
  opacity: 1;
}

input,
textarea,
button,
::placeholder {
  border-radius: 0;
  border: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  font-size: 1rem;
  color: var(--font-color);
  letter-spacing: 0;
}

a,
a:link,
a:visited,
a:active {
  color: var(--font-color);
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background: var(--scroll-bg);
}

::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background: var(--scroll-th);
}

[class*=" xi-"],
[class^=xi-] {
  font-size: 1rem;
  line-height: var(--line-height) !important;
}





/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin: 120px auto;
  width: var(--container-width);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

#header {
  position: relative;
  width: 100%;
  border-bottom: var(--border);
}

#content .wrapper {
  width: 100%;
  height: var(--content-height);
  padding: 10px;
  overflow: auto;
}

#content::-webkit-scrollbar,
#content .wrapper::-webkit-scrollbar {
  width: 0;
}

#content::-webkit-scrollbar-thumb,
#content .wrapper::-webkit-scrollbar-thumb {
  width: 0;
}





/*======================================*/
/*=============== header ===============*/
/*======================================*/

#header .h-img {
  width: 100%;
  height: 170px;
  border-bottom: var(--border);
}

#header .h-img a {
  display: block;
  width: 100%;
  height: 100%;
}

#header .personal {
  padding: 10px;
  border-bottom: var(--border);
}

#header .personal .p-title {
  font-weight: bold;
  margin-bottom: 2.5px;
}

#header .personal .p-desc {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

#header .personal .hash {
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--point-color);
}

#header .four {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

#header .four>div {
  position: relative;
  width: calc(100% / 4);
}

#header .four .home a {
  transition: 0.7s;
}

#header .four>div:not(:last-child) {
  border-right: var(--border);
}

#header .four>div>.ftt {
  padding: 10px;
  width: 100%;
  text-align: center;
  transition: 0.7s;
}

#header .four .home:hover a,
#header .four>div>.ftt:hover {
  letter-spacing: 1px;
  font-weight: bold;
  color: var(--point-color);
  transition: 0.7s;
}

.tt_category,
.menu_list,
.link_list {
  display: none;
  position: absolute;
  left: -1px;
  z-index: 999;
  width: calc(100% + 2px);
  border: var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--main-bg);
}





/*========================================*/
/*=============== category ===============*/
/*========================================*/

.link_tit {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: 100%;
  padding: 10px;
  border-top: var(--border);
  border-bottom: var(--border);
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.category_list>li>a,
.category_list>li>.has-sub>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 10px;
}

.category_list>li>.has-sub>a {
  width: calc(100% - 35px);
}

.category_list>li>.has-sub {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
  border-left: var(--border);
}

.sub_category_list {
  border-top: var(--border);
}

.sub_category_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.sub_category_list>li>a {
  display: block;
  padding: 10px;
  color: var(--sub-color);
  font-size: 0.9rem;
}

.sub_category_list>li>a>.cname {
  display: inline-block;
}

.sub_category_list>li>a>.c_cnt {
  display: inline-block;
  margin-left: 3px;
}

.menu_list>li:first-child {
  border-top: var(--border);
}

.menu_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.menu_list>li>a,
.menu_list>li>div.search,
.link_list>li>a {
  display: block;
  padding: 10px;
}

.link_list>li:first-child {
  border-top: var(--border);
}

.link_list>li:not(:last-child) {
  border-bottom: var(--border);
}

.tt_category i {
  color: var(--sub-color);
}

.link_tit,
.link_tit .cname,
.category_list .has-sub,
.category_list .has-sub a,
.category_list .has-sub .icn,
.category_list .has-sub .cname,
.category_list>li>a,
.category_list>li>a>.cname,
.sub_category_list>li>a,
.menu_list>li>a,
.link_list>li>a {
  transition: 0.7s;
}

.link_tit:hover,
.category_list>li>a:hover,
.category_list .has-sub:hover,
.category_list .has-sub:hover .icn {
  transition: 0.7s;
  background-color: var(--sub-bg);
}

.link_tit:hover .cname,
.category_list>li>a:hover .cname {
  transition: 0.7s;
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 1px;
}

.category_list .has-sub:hover .cname,
.sub_category_list>li>a:hover,
.menu_list>li>a:hover,
.link_list>li>a:hover {
  transition: 0.7s;
  font-weight: bold;
  color: var(--point-color);
  letter-spacing: 1px;
  background-color: var(--sub-bg);
}





/*======================================*/
/*=============== paging ===============*/
/*======================================*/
.paging {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px 5px;
}






/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm {
  padding: 10px 5px 20px;
}

.confirm .c_title span {
  color: var(--sub-color);
}

.confirm .c_desc {
  margin-top: 3px;
}

.confirm .c_desc:empty {
  display: none;
}

.empty_con {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(var(--content-height) - 65px);
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.empty_con i {
  margin-right: 1.5px;
}

#list_n1> :not(.n1),
#list_g1> :not(.g1),
#list_g2> :not(.g2),
#list_wz> :not(.wz),
#list_wz2> :not(.wz2) {
  display: none;
}

.list_w>div:not(.wz, .wz2) .sum {
  display: none;
}

.list_w .xi-lock,
.list_w .xi-new-o {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.list_w .list_t .title .t-icon {
  display: flex;
  gap: 2px;
}

.thumb_i {
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.n1 .list_c {
  background: var(--main-bg);
  border-bottom: var(--border);
  transition: 0.7s;
}

.n1 .list_c:first-child {
  border-top: var(--border);
}

.n1 .list_t {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 5px;
}

.n1 .list_t .title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: calc(100% - 55px);
  font-weight: bold;
}

.n1 .list_t .title>span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}

.n1 .list_c:hover .list_t .title span {
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.7s;
}

.n1 .list_c .list_t .date {
  text-align: center;
  color: var(--sub-color);
}

.n1 .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}





.g1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;

}

.g1 .list_c {
  position: relative;
  width: calc((100% - 20px) / 3);
  overflow: hidden;
  transition: 0.7s;
}

.g1 .list_c .thumb_i {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
}

.g1 .list_c .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff99;
}

.g1 .list_c .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}

.g1 .list_c .list_t .fa-lock {
  display: none;
}

.g1 .xi-new-o {
  display: none;
}

.g1 .list_c:hover img {
  filter: grayscale(10);
  transition: 0.7s;
}





.g2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.g2 .list_c {
  position: relative;
  width: calc((100% - 10px) / 2);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.g2 .list_t {
  padding: 10px;
  border-top: var(--border);
}

.g2 .list_t .title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  font-weight: bold;
  margin-bottom: 5px;
}

.g2 .list_t .title .text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.g2 .list_t .item-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.g2 .list_t .item-flex>div {
  padding: 2px 5px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--sub-color);
}

.g2 .list_c:hover .thumb_i img {
  transform: scale(1.1);
  transition: 0.7s;
}





.wz {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.wz .list_c {
  width: calc((100% - 10px) / 2);
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  overflow: hidden;
}

.wz .list_t {
  padding: 10px;
}

.wz .list_t .title {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  margin-bottom: 5px;
}

.wz .list_t .title span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}

.wz .list_t:hover .title span {
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.7s;
}

.wz .list_t .item-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.wz .list_t .item-flex>div {
  padding: 2px 5px;
  background-color: var(--sub-bg);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--sub-color);
}

.wz .list_t .sum {
  color: var(--sub-color);
  margin-bottom: 10px;
}

.wz .list_t .sum .text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}





.wz2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

.wz2 .list_c {
  position: relative;
  width: 100%;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.wz2 .list_t .td-flex .date {
  color: var(--sub-color);
}

.wz2 .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.wz2 .thumb_l .thumb_i {
  width: 30%;
}

.wz2 .thumb_l .list_t {
  width: 70%;
  padding: 10px;
  border-left: var(--border);
}

.wz2 .list_t .td-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wz2 .list_t .td-flex .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  width: calc(100% - 50px);
}

.wz2 .list_t .td-flex .title span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wz2 .thumb_l .sum .text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}





/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry .title-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.entry .title-wrap .title {
  font-weight: bold;
  width: calc(100% - 50px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.entry .title-wrap .date {
  color: var(--sub-color);
}

.entry .atc-data {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}

.entry .atc-data>div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.entry .atc-data .data-tt {
  font-weight: bold;
}

.entry .atc-data .data-con::before {
  content: '|';
}

.entry .atc-data .data-con {
  display: flex;
  gap: 5px;
}

.entry .atc-data .tag_trail a:before {
  content: '#';
}

.entry .article .ny {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}

.entry .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.entry .detail .detail-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.entry .detail .detail-top .action_trail {
  display: flex;
  align-items: center;
  gap: 5px;
}

.entry .detail .detail-top .action_trail .more {
  color: var(--sub-color);
}


.entry .detail .detail-top .admin {
  display: flex;
  align-items: center;
  gap: 5px;
}

.entry .detail .detail-top .admin>a {
  display: inline-block;
}

.entry .tt-box-total {
  display: none;
}

.entry .tt-comment-cont {
  display: none;
}

.entry .tt-comment-cont.dp_flex {
  display: flex;
}

.entry .tt-comment-cont>form {
  padding: 10px 0 0 !important;
}






/*==========================================*/
/*========== article / font style ==========*/
/*==========================================*/

.ny p>a {
  font-weight: bold;
  color: var(--point-color);
}

/*hyperlink*/

h2,
h2[data-ke-size] {
  line-height: calc(var(--line-height) * 1.62);
}

h3,
h3[data-ke-size] {
  line-height: calc(var(--line-height) * 1.44);
}

h4,
h4[data-ke-size] {
  line-height: calc(var(--line-height) * 1.25);
}

p[data-ke-size='size18'] {
  line-height: calc(var(--line-height) * 1.12);
}

p[data-ke-size='size16'] {
  line-height: var(--line-height);
}

p[data-ke-size='size14'] {
  line-height: calc(var(--line-height) * 0.87);
}





/*==========================================*/
/*=============== imageblock ===============*/
/*==========================================*/

figure.imageblock.alignCenter {
  margin: 0 auto 5px !important;
}

figure.imagegridblock,
#tt-body-page figure.imagegridblock {
  margin: 0 auto !important;
}

figure.imagegridblock .image-container>span {
  margin-top: 0 !important;
}

figure.imageblock.alignCenter>figcaption,
figure.imagegridblock>figcaption {
  font-size: 1rem !important;
  padding-bottom:10px;
}





/*==========================================*/
/*=============== blockquote ===============*/
/*==========================================*/

.ny blockquote {
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--font-color);
  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.4rem;
  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: var(--border);
  border-left-width: 5px;
  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% !important;
  height: unset !important;
  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%);
  width: auto !important;
}

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: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  width: fit-content;
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 5px 8px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--sub-bg);
}

div[data-ke-type='moreLess']:not(.open)>.btn-toggle-moreless::before {
  content: "\e942";
  font-family: 'xeicon' !important;
}

div[data-ke-type='moreLess'].open>.btn-toggle-moreless::before {
  content: "\e945";
  font-family: 'xeicon' !important;
}

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);
  overflow: hidden;
}

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: "\eaa7";
  font-family: 'xeicon' !important;
  font-size: 28px;
  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: var(--sub-color);
  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: "\eb7c";
  font-family: 'xeicon' !important;
  font-size: 1rem;
}

figure.fileblock a>.down>span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 5px 20px;
}

.protect .title-wrap .title {
  width: calc(100% - 50px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
}

.protect .date {
  color: var(--sub-color);
}

.protect .p-article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(var(--content-height) - 65px);
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.protect .p-info {
  display: flex;
  flex-direction: column;
}

.protect .p-info i {
  font-size: 1.7rem;
}

.protect .p-info span {
  margin: 10px 0 20px;
}

.protect .p-input {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.protect .p-input input {
  width: 100px;
  line-height: 35px;
  padding: 0 10px;
  border-right: var(--border);
}

.protect .p-input button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  aspect-ratio: 1;
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .tag_title {
  padding: 10px 5px 20px;
  font-weight: bold;
}

.taglog .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.taglog .tags a {
  width: calc((100% - 40px) / 5);
  padding: 5px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: var(--main-bg);
  border: var(--border);
  border-radius: var(--radius);
  transition: 0.7s;
}

.taglog a:before {
  content: '#';
}

.taglog a:hover {
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--point-color);
  transition: 0.7s;
}





/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.notice_wrap .notice_title {
  padding: 10px 5px 20px;
  font-weight: bold;
}

.n_entry {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.n_entry:not(:last-child) {
  margin-bottom: 10px;
}

.n_entry .title-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.n_entry .title-wrap .title {
  width: calc(100% - 50px);
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.n_entry .title-wrap .date {
  color: var(--sub-color);
}

.n_entry .container_postbtn {
  display: none !important;
}





/*======================================*/
/*=============== comment ===============*/
/*======================================*/

/*----- setting -----*/
.tt-comment-cont * {
  font-family: 'Pretendard-Regular' !important;
  font-size: var(--font-size) !important;
  line-height: var(--line-height) !important;
  color: var(--font-color) !important;
}

.tt-comment-cont {
  display: flex;
  flex-direction: column;
}

.entry .tt-comment-cont {
  padding: 0;
}

.tt_ico_lock,
.tt-button-modify,
.tt-box-write .tt-xe-label-text {
  font-size: 0 !important;
}

.tt_ico_lock {
  width: 15px;
  height: 15px;
  background-position: -28px -42px !important;
}

.tt-box-total {
  display: flex;
  align-items: center;
  order: 1;
  gap: 2px;
  padding: 10px 5px 20px !important;
  margin: 0 !important;
  border: 0 !important;
}

.tt-box-total .tt_txt_g {
  font-weight: bold;
}

.tt-box-total .tt_num_g:before {
  content: '+';
  font-size: 1rem !important;
  margin-right: 1.5px;
}

.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: 20px;
}

.tt-area-write .tt-box-account {
  border: var(--border);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0 !important;
}

.tt-area-write .tt-box-account input {
  width: 50%;
  padding: 10px !important;
  border: 0 !important;
}

.tt-area-write .tt-box-account input::placeholder {
  color: var(--font-color) !important;
}

.tt-area-write .tt-box-account input:first-child {
  border-right: var(--border) !important;
}

.tt-area-write .tt-box-thumb {
  display: none;
}

.tt-box-textarea {
  margin-bottom: 10px !important;
  padding: 10px;
  border: var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
}

/* no input */
.tt_wrap_write>.tt-box-textarea:first-child {
  border-radius: var(--radius);
}


.tt-box-textarea .tt_txt_user {
  display: none !important;
}

.tt-box-textarea .tt-inner-g {
  overflow: auto !important;
  min-height: unset !important;
  max-height: 100px !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-textarea .tt-cmt[contenteditable=true]:empty:before {
  color: var(--font-color) !important;
}

.tt-box-write .tt-xe-label {
  height: 30px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  margin-top: 0 !important;
  margin-right: 10px !important;
  justify-content: center;
}

.tt-box-write .tt-xe-input-helper {
  margin: 0 !important;
  transform: scale(0.75);
}

.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 -----*/

ul.tt-list-reply {
  border-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

ul.tt-list-reply>li.tt-item-reply {
  padding: 0 !important;
  border: var(--border) !important;
  border-radius: var(--radius);
  background: var(--main-bg);
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt {
  padding: 10px;
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb {
  display: none !important;
}

ul.tt-list-reply>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  width: 100% !important;
}

ul.tt-list-reply-comment {
  margin: 0 !important;
  border: 0 !important;
}

ul.tt-list-reply-comment>li.tt-item-reply {
  padding: 0 !important;
  border-top: var(--border) !important;
}

ul.tt-list-reply-comment>li.tt-item-reply:before {
  display: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt {
  width: 100% !important;
  justify-content: space-between !important;
  align-items: stretch;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  width: calc(100% - 20px) !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb {
  margin: 0 !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb span.tt-thumbnail {
  width: 20px !important;
  height: 0 !important;
  background-image: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-thumb span.tt-thumbnail:after {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

ul.tt-list-reply-comment>li.tt-item-reply>.tt-wrap-cmt>.tt-box-content {
  padding: 10px;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta {
  gap: 3px;
  margin-bottom: 5px !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta>a {
  font-weight: bold;
}

.tt-wrap-cmt>.tt-box-content>.tt-box-meta>span.tt_img_area_reply {
  transform: scale(0.8);
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt_date {
  padding-top: 0 !important;
  color: var(--sub-color) !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt-wrap-link-comment {
  padding-left: 0 !important;
}

.tt-wrap-cmt>.tt-box-content>.tt-wrap-info>.tt-wrap-link-comment>a>span {
  padding-top: 0 !important;
  font-weight: bold;
  color: var(--sub-color) !important;
}

.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
  display: none !important;
}

.tt-wrap-cmt .tt-box-modify {
  top: 7.5px !important;
  right: 5px !important;
}

.tt-wrap-cmt .tt-box-modify button {
  margin-top: -1px;
  transform: scale(0.8);
}

ul.tt-list-modify {
  top: 28px !important;
  display: flex;
  flex-direction: column;
  width: 70px !important;
  padding: 0 !important;
  border: var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  overflow: hidden;
}

ul.tt-list-modify>li>a {
  padding: 7px !important;
  font-size: 0.9rem !important;
  line-height: var(--line-height) !important;
  font-family: "Pretendard-Regular" !important;
  color: var(--font-color) !important;
  letter-spacing: 0 !important;
  border-bottom: var(--border);
}

ul.tt-list-modify>li:last-child a {
  border-bottom: 0 !important;
}



/*----- pinned comment -----*/
.tt-item-reply .tt_cmt_info {
  border-bottom: var(--border);
  margin: unset !important;
  padding: 10px;
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
  margin-right: 0 !important;
}

.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: 7.5px !important;
  right: 5px !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 ===============*/
/*==========================================*/

.c_item:not(:last-child) {
  margin-bottom: 20px;
}

.c_item .title-wrap {
  padding: 0 5px 10px;
}

.c_item .title-wrap span {
  font-weight: bold;
}



.cn1 {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.cn1 .cn_content {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
}

.cn1 .cn_content:not(:last-child) {
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_tt {
  font-weight: bold;
  margin-bottom: 10px;
}

.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%;
  margin-bottom: 10px;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.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);
}

.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 {
  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;
}

.cg1 .list_c .list_t {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff99;
}

.cg1 .list_c .list_t .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}



.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 .list_t {
  border-top: var(--border);
  padding: 10px;
}

.cg2 .list_c .list_t span {
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cg2 .list_c:hover .thumb_i img {
  transform: scale(1.1);
  transition: 0.7s;
}



.cl .cl_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  border: var(--border);
  border-radius: var(--radius);
  padding: 10px;
}

.cl .cl_text_wrap {
  width: calc((100% - 10px) / 2);
  padding: 15px 5px;
  border-bottom: var(--border);
}

.cl .cl_text_wrap:nth-child(-n+2) {
  border-top: var(--border);
}

.cl .cl_text_wrap:hover .cl_tt {
  color: var(--point-color);
  letter-spacing: 1px;
  transition: 0.7s;
}

.cl .cl_text_wrap .cl_tt {
  width: 100%;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}



.cwz .cwz_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cwz .list_c {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cwz .list_c .thumb_l {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.cwz .list_c .thumb_i {
  width: 30%;
}

.cwz .list_c .thumb_l .list_t {
  width: 70%;
  padding: 10px;
  border-left: var(--border);
}

.cwz .list_t .td-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cwz .list_t .td-flex .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  width: calc(100% - 50px);
}

.cwz .list_t .td-flex .title span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cwz .list_t .td-flex .date {
  color: var(--sub-color);
}

.cwz .thumb_l .sum .text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}





/*=========================================*/
/*================== RWD ==================*/
/*=========================================*/

@media (max-width:767px) {

  #container {
    width: calc(100% - 40px);
    margin: 20px auto;
    flex-wrap: wrap;
    row-gap: unset;
  }

  #content {
    width: 100%;
    height: auto;
  }

  #content .wrapper {
    height: auto;
  }

  #header .four>div>.ftt {
    padding: 10px 5px;
  }

  #header .four .home:hover a,
  #header .four>div>.ftt:hover {
    letter-spacing: 0;
  }

  .tt_category {
    width: calc(200% + 3px);
  }

  .menu_list {
    width: calc(200% + 4px);
  }

  .link_list {
    left: unset;
    right: -1px;
    width: calc(200% + 2px);
  }

  .taglog .tags a {
    width: calc((100% - 20px) / 3);
  }

  .wz2 .list_t .td-flex .title,
  .cwz .list_t .td-flex .cwz_tt {
    width: calc(100% - 35px);
  }

  .cl .cl_content {
    column-gap: 0;
  }

  .cl .cl_text_wrap:nth-child(2) {
    border-top: 0;
  }

  .cl .cl_text_wrap {
    width: 100%;
  }
}


/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 13px;
  bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 12px;
  color: var(--font-color);
  letter-spacing: 1px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/