@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 {
  background-color: var(--skin-bg);
  font-size: var(--font-size);
  color: var(--font-color);
  text-decoration: none;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-bg);
}

::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-th);
}



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;
}

[class*=" xi-"],
[class^=xi-] {
  font-size: 1rem;
  line-height: var(--line-height) !important;
}

.topbtn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  z-index: 99999;
  pointer-events: none;
}

.topbtn.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.topbtn>i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  color: var(--font-color);
}

.mbtn {
  position: fixed;
  top: 25px;
  right: 25px;
  display: none;
  width: 35px;
  height: 35px;
  border: var(--border);
  background-color: var(--main-bg);
  border-radius: var(--radius);
}

.mbtn i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}



/*======================================*/
/*=============== layout ===============*/
/*======================================*/

#container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 100px;
  width: var(--content-width);
  background-color: #FFF;
}

#header {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

#top {
  padding: 0 20px 10px;
}

#wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  padding: 0 20px;
}

#side {
  width: 25%;
}

#content {
  width: calc(75% - 20px);
}





/*======================================*/
/*=============== header ===============*/
/*======================================*/

#header .himg {
  width: 100%;
  height: 300px;
}

#header .htitle {
  display: inline-block;
  padding: 0 20px;
}

#header .hicon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  aspect-ratio: 1;
  margin-top: -40px;
  margin-bottom: 10px;
}

#header .hicon img {
  width: 100%;
}

#header .htext {
  font-size: calc(1rem + 10px);
  font-weight: bold;
}

#top .desc {
  padding: 20px;
  margin-bottom: 10px;
  width: 100%;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  border: var(--border);
}

.lgray {
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  border-bottom: var(--border);
}





/*=======================================*/
/*=============== sidebar ===============*/
/*=======================================*/

#side .pimg {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 20px;
  border-radius: var(--radius);
  border: var(--border);
}

#side .info {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

#side .info .nick {
  font-weight: bold;
  margin-bottom: 5px;
}

#side .info .d-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
}

#side .info .d-flex .line {
  width: 3px;
  background-color: var(--point-color);
}

.category,
.menu {
  padding: 10px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

.category .catett,
.menu .menutt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  font-weight: bold;
}

.menu_list {
  margin-top: 10px;
  margin-left: 15px;
  border-top: var(--border);
}

.menu_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 10px;
  border-bottom: var(--border);
  transition: 0.7s;
}

.menu_list>li>a>span {
  transition: 0.7s;
}

.menu_list>li:hover>a {
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.menu_list>li:hover>a>span {
  letter-spacing: 0.5px;
  font-weight: bold;
  transition: 0.7s;
}

.search {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
  margin-bottom: 20px;
}

.search input {
  width: calc(100% - 35px);
  padding: 0 10px;
  line-height: 35px;
  border-radius: var(--radius);
}

.search .xi-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-left: var(--border);
}

.link .link-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.link .link-list>li {
  width: calc((100% - 10px) / 2);
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  text-align: center;
  transition: 0.7s;
}

.link .link-list>li>a {
  transition: 0.7s;
}

.link .link-list>li:hover {
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.link .link-list>li:hover>a {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}





/*========================================*/
/*=============== category ===============*/
/*========================================*/

.tt_category {
  margin-top: 10px;
  margin-left: 15px;
}

.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);
  transition: 0.7s;
}

.link_tit:hover {
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.link_tit:hover .cname {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.link_tit .cname,
.category_list .cname {
  transition: 0.7s;
}

.link_tit>.c_cnt,
.category_list .c_cnt {
  color: var(--sub-color);
  font-size: 0.9rem;
}

.category_list {
  border-top: var(--border);
}

.category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  padding: 10px;
  border-bottom: var(--border);
  transition: 0.7s;
}

.category_list>li>a:hover {
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.category_list>li>a:hover>.cname {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.category_list>li>.has-sub {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: var(--border);
  transition: 0.7s;
}

.category_list>li>.has-sub:hover {
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.category_list>li>.has-sub:hover>a>.cname {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.category_list>li>.has-sub>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  width: calc(100% - 35px);
  padding: 10px;
}

.category_list>li>.has-sub>.icn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
}

.sub_category_list {
  border-bottom: var(--border);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 0;
}

.sub_category_list>li {
  margin-left: 15px;
}

.sub_category_list>li>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  color: var(--sub-color);
  font-size: 0.9rem;
  transition: 0.7s;
}

.sub_category_list>li>a::before {
  content: '-';
  margin-right: 3px;
}

.sub_category_list>li>a:hover .cname {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.tt_category .xi-link-insert {
  transform: rotate(45deg);
  font-size: 0.9rem;
}





/*==========================================*/
/*=============== list-style ===============*/
/*==========================================*/

.confirm .c_title b {
  font-size: calc(1rem + 2px);
}

.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;
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
}

.empty_con i {
  margin-right: 1.5px;
}



#list_n> :not(.n1),
#list_g> :not(.g1) {
  display: none;
}

.list_w .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 {
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.n1 .confirm {
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 15px;
}

.n1 .ctitle {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  border-bottom: var(--border);
}

.n1 .ctitle>div {
  display: flex;
  align-items: center;
  gap: 3px;
}

.n1 .ctitle .cd {
  justify-content: center;
  width: 100px;
  padding: 15px;
  text-align: center;
  border-right: var(--border);
}

.n1 .ctitle .ct {
  justify-content: flex-start;
  width: calc(100% - 240px);
  padding: 15px;
  border-right: var(--border);
}

.n1 .ctitle .cc {
  justify-content: center;
  width: 140px;
  padding: 15px;
}

.n1 .list_c {
  border-bottom: var(--border);
}

.n1 .list_t {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: 100%;
}

.n1 .list_t .date {
  width: 100px;
  padding: 15px;
  text-align: center;
  border-right: var(--border);
}

.n1 .list_t .title {
  width: calc(100% - 240px);
  padding: 15px;
  border-right: var(--border);
}

.n1 .list_t .title span {
  display: flex;
  gap: 3px;
  transition: 0.7s;
}

.n1 .list_c:hover .list_t .title span {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.n1 .list_t .catelink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
}

.n1 .list_t .catelink span {
  padding: 3px 5px;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

.g1 {
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.g1 .confirm {
  padding: 10px;
  margin-bottom: 20px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.g1 .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.g1 .list_c {
  width: calc((100% - 40px) / 3);
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  overflow: hidden;
}

.g1 .thumb_i {
  border-bottom: var(--border);
  transition: 0.7s;
}

.g1 .list_c:hover .thumb_i {
  filter: grayscale(80%);
  transition: 0.7s;
}

.g1 .list_t {
  padding: 10px;
}

.g1 .list_t .title {
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}

.g1 .list_c:hover .list_t>.title>span {
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.g1 .list_t .date {
  font-size: 0.9rem;
}

.g1 .list_t .catelink {
  display: inline-block;
  padding: 3px 5px;
  margin-top: 5px;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  font-size: 0.9rem;
}

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

.paging a {
  padding: 10px;
}





/*=======================================*/
/*=============== article ===============*/
/*=======================================*/

.entry {
  background-color: var(--main-bg);
}

.entry .article .title_wrap {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}

.entry .article .title_wrap .title {
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 10px;
}

.entry .article .title_wrap .option {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry .article .title_wrap .option>div {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 5px;
}

.entry .article .title_wrap .option .optitle {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 110px;
}

.entry .article .title_wrap .option .cate a {
  padding: 3px 5px;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

.entry .article .title_wrap .option .tag_trail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.entry .article .title_wrap .option .tag_trail a {
  padding: 3px 5px;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

.entry .article .title_wrap .option .tag_trail a:before {
  content: '#';
}

.entry .article .action_trail {
  display: flex;
  align-items: center;
  gap: 3px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}

.entry .comment_o {
  margin-bottom: 20px;
  border-bottom: var(--border);
}




/*==========================================*/
/*========== 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.3);
}

h3,
h3[data-ke-size] {
  line-height: calc(var(--line-height) * 1.25);
}

h4,
h4[data-ke-size] {
  line-height: calc(var(--line-height) * 1.2);
}

p[data-ke-size='size18'] {
  line-height: calc(var(--line-height) * 1.1);
}

p[data-ke-size='size16'] {
  line-height: var(--line-height);
}

p[data-ke-size='size14'] {
  line-height: calc(var(--line-height) * 0.9);
}




/*==========================================*/
/*=============== 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) !important;
}

blockquote,
blockquote p {
  font-size: 1rem !important;
}

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='style1']>span {
  font-family: 'Pretendard-Regular' !important;
}

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-color: 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-color: 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-color: 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-color: 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-color: 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-color: var(--scroll-bg);
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
  width: 3px;
  height: 3px;
  background-color: var(--scroll-th);
  border: 0;
}





/*=========================================*/
/*=========== protected article ===========*/
/*=========================================*/

.protect {
  background-color: var(--main-bg);
}

.protect .title_wrap {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: var(--border);
}

.protect .title_wrap .title {
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 10px;
}

.protect .title_wrap .option {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.protect .title_wrap .option>div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.protect .title_wrap .option .optitle {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 110px;
}

.protect .title_wrap .option .cate a {
  padding: 3px 5px;
  border-radius: var(--radius);
  background-color: var(--sub-bg);
}

.article_p {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.article_p .text {
  text-align: center;
}

.article_p .text i {
  font-size: 2.5rem;
}

.article_p .text .ptext {
  font-weight: bold;
  margin-top: 10px;
}

.article_p .sinput input {
  width: 180px;
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
  text-align: center;
}





/*======================================*/
/*=============== taglog ===============*/
/*======================================*/

.taglog .title_wrap {
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
  margin-bottom: 10px;
}

.taglog .tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.taglog .tag a {
  width: calc((100% - 50px) / 6);
  padding: 10px 13px;
  text-align: center;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--sub-bg);
  transition: 0.7s;
}

.taglog a:before {
  content: '#';
}

.taglog a:hover {
  font-weight: bold;
  letter-spacing: 0.5px;
  color: var(--point-color);
  transition: 0.7s;
}






/*======================================*/
/*=============== notice ===============*/
/*======================================*/

.n_entry {
  padding: 20px;
  margin-bottom: 15px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.n_entry .title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.n_entry .title_wrap .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  font-weight: bold;
}

.n_entry .article {
  padding-top: 10px;
  margin-top: 10px;
  border-top: var(--border);
}





/*=========================================*/
/*================ comment ================*/
/*=========================================*/

.comment_o {
  display: none;
  margin-top: 10px;
}

.comment_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}

.comment .cmt-wrap {
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.comment .cmt-top {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}

.comment .cmt-top .logo {
  width: 45px;
  aspect-ratio: 1;
  border: var(--border);
  border-radius: 100%;
  background-color: var(--main-bg);
  overflow: hidden;
}

.comment .cmt-top .logo img {
  width: 100%;
}

.comment .cmt-top .cmt-txt {
  width: calc(100% - 55px);
}

.comment .bottom-box {
  padding: 10px;
  border-top: var(--border);
}

.comment .bottom-box .cmt-bottom {
  padding-left: 10px;
  border-left: 3px solid var(--point-color);
}

.comment .bottom-box>div:not(:last-child) {
  margin-bottom: 10px;
}

.comment .name {
  font-weight: bold;
}

.comment .name .tistoryProfileLayerTrigger {
  display: none !important;
}

.comment .desc {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.comment .desc .desc-txt {
  width: 100%;
}

.comment .redel {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.comment .date {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}

.comment .redel a,
.comment .date,
.comment .date a {
  font-size: 0.9rem;
  color: var(--sub-color);
}

.comment textarea {
  width: 100%;
  height: 80px;
  padding: 10px;
  resize: none;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
  margin-bottom: 10px;
}

.comment .write-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}

.comment .write-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
  width: calc(100% - 140px);
}

.comment .write-input input {
  width: calc((100% - 10px) / 2);
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--main-bg);
  border: var(--border);
}

.comment .check-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
}

.comment .check-box>div {
  width: 60px;
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.comment .check {
  text-align: center;
}

.comment .check input[type="checkbox"] {
  display: none;
}

.comment .check input[type="checkbox"]+label:before {
  content: '공개';
  color: var(--font-color);
  line-height: var(--line-height);
}

.comment .check input[type="checkbox"]:checked+label:before {
  content: '비밀';
  font-weight: bold;
}

.comment .submit input[type="submit"] {
  font-size: 1rem;
  width: 100%;
  color: var(--font-color);
  font-weight: bold;
  background-color: var(--main-bg);
  line-height: var(--line-height);
}






/*==========================================*/
/*=============== cover item ===============*/
/*==========================================*/

.c_item:not(:last-child) {
  margin-bottom: 20px;
}

.c_item .title_wrap {
  font-weight: bold;
}

.cn1 {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.cn1 .title_wrap {
  margin-bottom: 10px;
  font-size: calc(1rem + 2px);
}

.cn1 .cn_content .cn_img {
  max-width: 100%;
  margin-bottom: 10px;
}

.cn1 .cn_content .cn_img img {
  width: 100%;
}


.cl {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.cl .title_wrap {
  margin-bottom: 10px;
  font-size: calc(1rem + 2px);
}

.cl .cl_content {
  display: flex;
  flex-direction: column;
  border-top: var(--border);
}

.cl .list_c {
  border-bottom: var(--border);
}

.cl .list_c>a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

.cl .list_c>a>.title {
  width: calc(100% - 95px);
  padding: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: 0.7s;
}

.cl .list_c:hover a>.title {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.cl .list_c>a>.date {
  width: 95px;
  padding: 15px;
  text-align: center;
  border-left: var(--border);
}


.cg1 {
  padding: 10px;
  border: var(--border);
  border-radius: var(--radius);
  background-color: var(--main-bg);
}

.cg1 .title_wrap {
  margin-bottom: 10px;
  font-size: calc(1rem + 2px);
}

.cg1 .cg_content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.cg1 .list_c {
  width: calc((100% - 20px) / 3);
  border: var(--border);
  border-radius: var(--radius);
  background: var(--main-bg);
  overflow: hidden;
}

.cg1 .list_c .list_t {
  border-top: var(--border);
  padding: 10px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cg1 .list_c .list_t .title span {
  transition: 0.7s;
}

.cg1 .list_c:hover .list_t .title span {
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: 0.7s;
}

.cg1 .list_c:hover .thumb_i img {
  transform: scale(1.1);
  transition: 0.7s;
}





/*============================================*/
/*================== mobile ==================*/
/*============================================*/

@media (max-width:1000px) {

  #container {
    width: 90%;
    margin: 5% auto;
  }

}

@media (max-width:767px) {

  #container {
    width: 90%;
    margin: 5% auto 70px;
    padding-bottom: 0;
  }

  .mbtn {
    display: block;
    z-index: 99999999;
  }

  #header .himg {
    height: 200px;
  }

  #header .hicon img {
    margin-left: 10px;
  }

  #header .htitle {
    padding: 0 10px;
  }

  #top {
    padding: 0 10px 10px;
  }

  #top .desc {
    padding: 10px;
  }

  .lgray {
    margin: 0 10px 20px;
    width: calc(100% - 20px);
  }

  #wrapper {
    padding: 0 10px 10px;
  }

  #side,
  #content {
    width: 100%;
  }

  #side {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5%;
    overflow-y: auto;
    background: var(--main-bg);
    z-index: 99999;
  }

  .n1 .ctitle .cc,
  .n1 .list_t .catelink {
    display: none;
    width: 0;
    padding: 0;
  }

  .n1 .ctitle .ct {
    width: calc(100% - 100px);
    border-right: 0;
  }

  .n1 .list_t .twrap {
    width: 100%;
  }

  .n1 .list_t .title {
    width: calc(100% - 100px);
    border-right: 0;
  }

  .n1 .list_t .title span {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .g1 .inner {
    gap: 10px;
  }

  .g1 .list_c,
  .cg1 .list_c {
    width: calc((100% - 10px) / 2);
  }

  .g1 .list_t,
  .cg1 .list_t {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .cl .list_c>a>.title {
    max-width: 100%;
  }

  .taglog .tag a {
    width: calc((100% - 20px) / 3);
  }
}




/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/

.yunicorn a {
  position: fixed;
  left: 13px;
  bottom: 10px;
  font-family: 'Pretendard-Regular';
  font-size: 12px;
  color: var(--font-color);
  letter-spacing: 1px;
  /* 수정 및 삭제 금지 */
}

/*=========================================*/
/*=============== copyright ===============*/
/*=========================================*/