@charset "UTF-8";
 
/* ------------------------------------------------- */
/* 웹폰트 */    
/* ------------------------------------------------- */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.woff2') format('woff2');
    font-weight: 400; font-style: normal;
}
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.woff2') format('woff2');
    font-weight: 700; font-style: normal;
}
:root { 
    --font-def: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Apple SD Gothic Neo", Arial, sans-serif;
    /* 로고 전용 */
    --font-logo : 'Pretendard';
}
html, body, textarea, button, code {
    font-family: var(--font-def);
}
#header .logo > a {
  font-family: var(--font-logo);
  font-weight: var(--fw-bold); 
}
/* ------------------------------------------------ */



/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root {
  /* point */
  --color-white-bg: rgba(255,255,255,.15);
  --color-white: #fff;
  --color-link: #b759ff;
  --color-link-mid: #8654e2;
  --color-link-deep: #7410c1;
  --box-shadow: 0 10px 15px -3px rgba(0,0,0,.165),0 4px 6px -4px rgba(0,0,0,.165);

  /* 테마 - light */
  --theme-light-def: #333;
  --theme-light-source: #000;
  --theme-light-gray: #666;
  --theme-light-bgGray: #f7f7f7;
  --theme-light-cont-bg: #fff;
  --theme-light-bg: #fff;
  --theme-light-line: #ddd;
  --theme-light-cp-line: #ddd;
  --theme-light-cp-bg: #fff;
  --theme-light-gr-bg: linear-gradient(90deg,var(--color-link-deep),var(--color-link-mid),var(--color-link));

  --theme-light-namu-gray: #666;
  --theme-light-namu-line: #ddd;

  /* 테마 - dark */
  --theme-dark-def: #eee;
  --theme-dark-source: #000;
  --theme-dark-gray: #8d8d8d;
  --theme-dark-bgGray: #404143;
  --theme-dark-cont-bg: #1c1d1f;
  --theme-dark-bg: #000;
  --theme-dark-line: #2d2d2d;
  --theme-dark-cp-line: #474747;
  --theme-dark-cp-bg: #2e2e2e;
  --theme-dark-gr-bg: #1c1d1f;

  --theme-dark-namu-gray: #fff;
  --theme-dark-namu-line: #fff;
  
  /* 테마 기본설정 */
  --color-text: var(--theme-light-def);
  --color-text-source: var(--theme-light-def);
  --color-text-gray: var(--theme-light-gray);
  --color-bg: var(--theme-light-bg);
  --color-cont-bg: var(--theme-light-cont-bg);
  --color-cp-bg: var(--theme-light-cp-bg);
  --color-cp-line: var(--theme-light-cp-line);
  --color-bg-gray: var(--theme-light-bgGray);
  --color-line: var(--theme-light-line);
  --color-gr-bg: var(--theme-light-gr-bg);

  --namu-txt-gray: var(--theme-light-namu-gray);
  --namu-line: var(--theme-light-namu-line);

  /* 컨테이너 사이즈 */
  --container-size: 1000px;
  --article-size: 872px;

  /* 전체 스타일 */
  --border-width: 1px;
  --border-radius: 10px;
  --border-radius-min: 5px; 
  --transition: .25s ease-in-out;

  /* 내부 스타일 */
  --inline-line-width: 1px;

  /* 갤러리 썸네일 */ 
  --border-radius-gal: 10px;

  /* 
      기본 폰트 사이즈를 조절 원할 시 --fs-def 의 px을 조절하세요.
      본문에서만 폰트 사이즈를 조절 원할 시 --fs-article 의 px을 조절하세요.
      ★웹폰트 변경시 bold 처리가 안 되는 경우가 있습니다. --fw-bold, --fw-boldEx 를 bold 로 변경해 주세요.★
  */
  --fs-xs: 10px; 
  --fs-s: 12px; 
  --fs-def: 14px;
  --fs-article: 1rem; /* 기본 */
  --fs-nav: 12px; /* 카테고리 전용 */
  --fs-m: calc(var(--fs-def) + 1.5px); 
  --fs-l: calc(var(--fs-def) + 3px); 
  --fs-xl: calc(var(--fs-def) + 14px); 
  --line-height: 1.6; /* 글줄 */
  --font-icon: 'tabler-icons';
  --fw-def: 400; 
  --fw-bold: 700;
  --fw-boldEx: 700;
}
@media (prefers-color-scheme: dark) {
  :root {
  --color-text: var(--theme-dark-def);
  --color-text-source: var(--theme-dark-def);
  --color-text-gray: var(--theme-dark-gray);
  --color-bg: var(--theme-dark-bg);
  --color-cont-bg: var(--theme-dark-cont-bg);
  --color-bg-gray: var(--theme-dark-bgGray);
  --color-line: var(--theme-dark-line);
  --color-cp-bg: var(--theme-dark-bg);
  --color-cp-line: var(--theme-dark-cp-line);
  --color-gr-bg: var(--theme-dark-gr-bg);

  --namu-txt-gray: var(--theme-dark-namu-gray);
  --namu-line: var(--theme-dark-namu-line);
  }
}
[data-theme="dark"] {
  --color-text: var(--theme-dark-def);
  --color-text-source: var(--theme-dark-def);
  --color-text-gray: var(--theme-dark-gray);
  --color-cont-bg: var(--theme-dark-cont-bg);
  --color-bg: var(--theme-dark-bg);
  --color-bg-gray: var(--theme-dark-bgGray);
  --color-line: var(--theme-dark-line);
  --color-cp-line: var(--theme-dark-cp-line);
  --color-cp-bg: var(--theme-dark-cp-bg);
  --color-gr-bg: var(--theme-dark-gr-bg);

  --namu-txt-gray: var(--theme-dark-namu-gray);
  --namu-line: var(--theme-dark-namu-line);
}
[data-theme="light"] {
  --color-text: var(--theme-light-def);
  --color-text-source: var(--theme-light-def);
  --color-text-gray: var(--theme-light-gray);
  --color-cont-bg: var(--theme-light-cont-bg);
  --color-bg: var(--theme-light-bg);
  --color-bg-gray: var(--theme-light-bgGray);
  --color-line: var(--theme-light-line);
  --color-cp-line: var(--theme-light-cp-line);
  --color-cp-bg: var(--theme-light-cp-bg);
  --color-gr-bg: var(--theme-light-gr-bg);
  
  --namu-txt-gray: var(--theme-light-namu-gray);
  --namu-line: var(--theme-light-namu-line);
}
/* 본문관련 */
:root {
  namu-color-txt-def: #373a3c;
  namu-color-txt-white: #fff;
}
#article-view {
  font-size: 1rem;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 마우스 커서 & 스크롤바 & 드래그 */
/* ------------------------------------------------- */
*, *:focus {
    cursor: url(./images/cur1054.cur), progress !important;
}

/* - scrollbar - */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background:var(--color-line); }
::-webkit-scrollbar-thumb:hover { background:var(--color-link); }

.category_list::-webkit-scrollbar,
.mobile_container::-webkit-scrollbar,
nav.pc > ul > li > ul > li > ul::-webkit-scrollbar,
.sidebar_container::-webkit-scrollbar {
  display: none;
}

/* - drag color - */
::selection {
  color: var(--color-point);
  background: var(--color-bg);
  text-shadow: none;
  transition: all 250ms ease-in;
}
::-moz-selection {
  color: var(--color-point);
  background: var(--color-bg);
  text-shadow: none;
  transition: all 250ms ease-in;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* reset */
/* ------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
body, button, dd, dl, dt, fieldset, form, 
h1, h2, h3, h4, h5, h6, input, 
legend, li, ol, p, select, table, td, textarea, th, ul {
  margin: 0;
  padding: 0
}
button, textarea, input {
  outline: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button {
  border: 0;
  color: inherit;
  cursor: pointer;
  -webkit-appearance:none; 
  -moz-appearance:none; 
  appearance:none; 
}
input {
  -webkit-appearance:none; 
  -moz-appearance:none; 
  appearance:none; 
}
#tistorytoolbarid {
  display: none;
}
iframe, video, embed, object, img, table {
  max-width: 100%;
}
a, a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}
a {
  color: var(--color-text);
}
a, img , button, textarea {
  transition: var(--transition);
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
ul, li {
  list-style: none;
}

.ti {
  font-size: 18px;
}
.ti-s {  
  font-size: 16px;
}
.ti-xs {
  font-size: 12.5px;
}
.ti-m {
  font-size: 22px;
}
.ti-l {
  font-size: 36px;
} 
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* body */
/* ------------------------------------------------- */
body {
  font-size: var(--fs-def);
  color: var(--color-text);
  line-height: var(--line-height);
  word-wrap: break-word;
  font-weight: var(--fw-def);
  overflow-y: scroll;
  background-color: var(--color-bg);
}
body.prevent-scroll {
  overflow: hidden;
}
body { 
  animation: fadein 1.65s; 
  -moz-animation: fadein 1.65s;
  -webkit-animation: fadein 1.65s;
  -o-animation: fadein 1.65s;
}
@keyframes fadein {
  from { opacity:0; }
  to { opacity:1; }
}
@-moz-keyframes fadein { /* Firefox */
  from { opacity:0; }
  to { opacity:1; }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
  from { opacity:0; }
  to { opacity:1; }
}
@-o-keyframes fadein { /* Opera */
  from { opacity:0; }
  to { opacity: 1; }
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* loader */
/* ------------------------------------------------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100dvh;
    z-index: 999999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 배경 */
  background-color: var(--color-bg);
}  
.loader_icons {
    max-width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.loader_icons > span { 
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-link);
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%       { transform: scale(1.5); opacity: 1;   }
}
.loader_icons > span:nth-child(1) { animation: pulse 1.2s ease-in-out infinite 0s; }
.loader_icons > span:nth-child(2) { animation: pulse 1.2s ease-in-out infinite .2s; }
.loader_icons > span:nth-child(3) { animation: pulse 1.2s ease-in-out infinite .4s; }
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- components ---------- */
/* ------------------------------------------------- */
/* - button - */
.iconbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--color-point);
  background-color: var(--color-bg);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--border-radius-min);
}
.iconbtn:hover, 
.iconbtn.active {
  background-color: var(--color-bg-gray);
}
.iconbtn i {
  line-height: 30px;
}

.button {
  display: flex;
  width: 35px;
  height: 35px;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.button.ic_txt {
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
  gap: 5px;
  color: var(--color-text-gray);
}
.button.ic_txt:hover {
  background-color: var(--color-bg-gray);
}
.button.big {
  width: 40px;
  height: 40px;
}
.button.small {
  width: 30px;
  height: 30px;
}
.button.box {
  background: var(--color-bg);
  border-radius: var(--border-radius-min);
}
.button.box.white {
  background: transparent;
}
.button.box.white:hover {
  background: var(--color-white-bg);
}
.button.ic.white > i {
  color: var(--color-white);
}
.button.border {
  border: var(--border-width) solid var(--color-line);
}
.button.shadow {
  box-shadow: var(--box-shadow);
} 
.button.circle {
  border-radius: 50%;
}

.article_buttons .button.box {
  border-color: var(--color-cp-line);
  background: var(--color-cp-bg);
}
.article_buttons .button.box:hover {
  background-color: var(--color-cont-bg);
}
/* ------------------------------------------------- */




/* ------------------------------------------------- */
/* ---------- mainpage ---------- */
/* ------------------------------------------------- */
.mainpage {
  position: relative;
  display: none;
  width: 100%;
  z-index: 999999;
  height: 100dvh;
  padding: 35px 15px;
  background-color: var(--color-link);
}
body#tt-body-index #header,
body#tt-body-index .floating, 
body#tt-body-index #container,
body#tt-body-index #footer {
  display: none;
}
body#tt-body-index .mainpage {
  display: flex;
}
body#tt-body-index .mainpage_container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 500px;
  max-width: 90%;
}
.mainpage_txt {
  text-align: center;
}
.mainpage_txt > h3 {
  font-weight: 400;
  font-size: 40px;
  color: var(--color-white);
  line-height: 1.4;
}
.mainpage_txt > span {
  color: var(--color-white);
  font-size: var(--fs-l);
}
.mainpage_form {
  width: 100%;
  padding-top: 45px;
}
.user_name_input {
  padding-top: 25px;
}
.user_icon {
  text-align: center;
  color: var(--color-white);
}
.user_icon > i {
  font-size: 100px;
}
input#user_name {
  width: 100%;
  border: 0;
  padding: 0 10px;
  height: 35px;
  border-radius: var(--border-radius-min);
}
input#user_name:focus {
  box-shadow:0 0 0 .25rem hsla(0,0%,100%,.4);
  transition: box-shadow .15s ease-in-out;
}
input#user_name::placeholder {
  color: var(--color-text-gray);
}
.mainpage_button {
  margin-left: auto;
  margin-top: 15px;
  width: 100px;
  height: 35px;
  background-color: var(--color-link-deep);
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: var(--border-radius-min);
  transition: var(--transition);
}
.mainpage_button:hover {
  filter: brightness(0.9);
}
.mainpage_button > a {
  color: var(--color-white);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ------------------------------------------------- */




/* ------------------------------------------------- */
/* ---------- layout ---------- */
/* ------------------------------------------------- */
.wrap {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0; 
  z-index: 9996;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity var(--transition);
  pointer-events: none;
}
.dim.visible {
  opacity: 1;
  pointer-events: auto;
}

/* - header - */
#header {
  height: 55px;
  width: 100%;
  background: var(--color-gr-bg);
  margin-bottom: 15px;
}
.header_container {
  width: var(--container-size);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 22px;
  transition: var(--transition);
}
#header .logo > i {
  color: var(--color-white);
  font-size: 26px;
}
#header .logo > a {
  color: var(--color-white);
}
#header .logo:hover {
  opacity: .65;
}

.bar {
  background-color: var(--color-bg);
  border-radius: var(--border-radius-min);
  height: 35px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.best_article {
  max-width: 360px;
  width: calc(100% - 160px - 270px - 15px);
}
.best_article_tt {
  width: 120px;
  display: flex;
  align-items: center;
  padding-right: 5px;
  margin-right: 10px;
  height: 20px;
  position: relative;
}
.best_article_tt::before {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  height: 60%;
  background-color: var(--color-line);
}
.best_article_tt > span {
  padding-left: 8px;
  font-weight: var(--fw-bold);
}

.best_article_slide {
  width: calc(100% - 120px - 10px);
  height: 22px;
  overflow: hidden;
}
.best_article_slide .swiper-slide {
  display: flex;
  align-items: center;
}
.best_article_slide a {
  display: block;
  color: var(--color-link);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.best_article_slide a:hover {
  text-decoration: underline;
}

/* rigt_wrap */
.rigt_wrap {
  display: flex;
  gap: 10px;
}
.search {
  width: 180px;
  padding-right: 0;
}
.search:focus-within {
  box-shadow:0 0 0 .25rem hsla(0,0%,100%,.4);
  transition: box-shadow .15s ease-in-out;
}

/* search */
.search_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
}
.searchform {
  width: calc(100% - 40px);
}
.searchform input {
  width: 100%;
  background: none;
  border: 0;
  outline: 0;
}
.searchform input::placeholder {
  color: var(--color-text-gray);
}

/* - logo - */
.logobox {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.logobox > a {
  font-size: var(--fs-l);
  font-weight: var(--fw-boldEx);
  color: var(--color-point);
  display: block;
}
.logobox img {
  max-width: 100%;
}
.logobox.pc {
  width: var(--container-size);
  padding-top: 95px;
  padding-bottom: 25px;
}
.logobox.mobile {
  width: 180px;
  padding-top: 35px;
  padding-bottom: 15px;
}

/* - 기본 레이아웃 - */
/* - content - */
#container {
  flex: 1;
  position: relative;
  width: var(--article-size); 
  margin: 0 auto;
  background-color: var(--color-cont-bg);
  border-radius: var(--border-radius);
  border: var(--border-width) solid var(--color-line);
}
#content { 
  position: relative;
} 
.content_inner {
  padding: 20px 25px;
  scroll-behavior: smooth;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- list ---------- */
/* ------------------------------------------------- */
/* - 목록 상단 - */
.list_top {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: var(--border-width) solid var(--color-line);
}
.list_top > span {
  font-weight: var(--fw-bold);
  font-size: var(--fs-l);
}
/* - common - */
.list .list_container {
  display: grid;
}
.list .list_item .list_title {
  position: relative;
  width: 100%;
  font-weight: var(--fw-def);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  transition: var(--transition);
}
.list_item > a:hover {
  color: var(--fs-def);
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .list_title {
  color: var(--color-link);
}
.list .list_item .list_title img {
  display: none;
}
.list .list_item .list_date {
  display: none;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-text-gray);
  transition: var(--transition);
}
.list .list_item .list_info {
  display: flex;
  flex-wrap: wrap;
}
/* 썸네일 */
.list_item .list_thumb {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.list .list_item .list_thumb > figure {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 !important;
  transition: var(--transition);
  transform: scale(1.1);
}
.list .list_item .list_thumb > figure > img {
  transition: unset;
  vertical-align: top;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb {
  isolation: isolate;
  aspect-ratio: 1/1;
  border: var(--border-width) solid var(--color-line);
} 
.list:not(.list[id*="memo"]) .list_item .list_thumb > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .list_thumb > figure {
  filter: grayscale(100%);
  opacity: 0.7;
}
.list:not(.list[id*="memo"]) .list_item > a:hover .list_thumb > figure {
  transform: scale(1.2);
}
/* 보호글 처리 */
.locked {
  position: relative;
  padding-left: 18px;
}
.locked::before {
  content: '\eae2';
  font-family: var(--font-icon) !important;
  position: absolute;
  left: 0;
  font-size: var(--fs-def);
  color: var(--color-text);
  transition: var(--transition);
}
#list_memo .locked::before,
#list_web .locked::before {
  font-size: var(--fs-m);
}
.list_summary > span {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: 0;
  height: 0;
  text-indent: -9999px;
  visibility: hidden;
  word-break: break-all;
}
/* 썸네일 없는 경우 처리 (메모, 웹) */
#list_memo .list_thumb:not(:has(.thumb)),
#list_web  .list_thumb:not(:has(.thumb)) {
  display: none;
}
/* no_thumb 표시/비표시 */
:not(.thumb) + .no_thumb {
  display: inline-block !important;
}
.thumb + .no_thumb {
  display: none;
}
/* - 갤러리형_1 - */
#list_gal_1 .list_container {
  gap: 35px 15px;
}
#list_gal_1 .list_item .list_info {
  padding: 15px 5px 0;
  justify-content: center;
}
#list_gal_1 .list_item .list_title {
  padding-bottom: 3px;
  -webkit-line-clamp: 3;
  text-align: center;
}
/* 갤러리형 공통 */
.list[id*="gal"]:not(#list_gal_3) .list_container {
  grid-template-columns: repeat(4, 1fr);
}
#list_gal_3 .list_container {
  grid-template-columns: repeat(2, 1fr);
}
/* 썸네일 숨김 */
.list[id*="playlist"] .list_thumb,
.list[id*="playlist"] .list_thumb img,
.list[id*="board"] .list_thumb,
.list[id*="board"] .list_thumb img {
  display: none;
}
/* - 일반형_1 - */
#list_board .list_item {
  border-top: var(--inline-line-width) solid var(--color-line);
}
#list_board .list_item:last-child {
  border-bottom: var(--inline-line-width) solid var(--color-line);
}
#list_board .list_item > a {
  display: block;
  padding: 15px 20px;
}
/* 일반형 공통 */
.list[id*="board"] .list_item .list_title {
  flex: 1;
  padding-right: 15px;
  -webkit-line-clamp: 1;
}
.list[id*="board"] .list_item .list_date {
  margin-left: auto;
}
/* - 웹진형 - */
#list_web .list_item {
  width: 100%;
  padding: 20px 5px;
  border-bottom: var(--inline-line-width) solid var(--color-line);
}
#list_web .list_item:first-child {
  padding-top: 5px;
}
#list_web .list_item > a { 
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: stretch;
}
#list_web .list_item .list_thumb {
  width: 150px;
  height: 150px; 
  grid-row: 1 / span 2;
  grid-column: 2; 
}
#list_web .list_summary {
  width: 100%; 
  padding-top: 10px;
  grid-row: 2; 
  display: flex;
  align-items: flex-end;
}
#list_web .list_summary > span {
  width: 100%; 
  height: auto;
  text-indent: 0;
  visibility: visible;
  -webkit-line-clamp: 4;
  color: var(--color-text-gray);
}
#list_web .list_item .list_content {
  width: calc(100% - 165px);
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}
#list_web .list_item .list_info {
  grid-row: 1;
  width: 100%;
}
#list_web .list_item .list_title {
  line-height: 1;
  font-size: var(--fs-def) ;
  padding-bottom: 8px;
  -webkit-line-clamp: 1;
}
#list_web .list_thumb:has(.thumb) {
  margin-left: 25px;
}
/* - pagination - */
.pagination {
    width: 100%;
    padding: 25px 25px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .numbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.pagination .numbox a,
.pagination > div[class*='pagination_'] {
    width: 30px;
    height: 30px;
}
.pagination .numbox a > span,
.pagination > div[class*='pagination_'] > a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    transition: var(--transition);
}
.pagination .numbox a:hover > span,
.pagination > div[class*='pagination_'] a:hover {
    color: var(--color-sub);
}
.pagination .numbox a > span.selected {
    color: var(--color-link);
    background: var(--color-bg-gray);
    border-radius: var(--border-radius-min);
    font-weight: var(--fw-boldEx);
}
.pagination > div[class*='pagination_'] > a[class*='no-more-'] {
    display: none !important;
}
/* - guestbook & comment - */
#tt-body-guestbook .pagination,
.comment,
.tt-list-reply-comment .tt-item-reply:before {
  display: none;
}
/* reset / base */
.tt-thumbnail {
  width: 40px;
  height: 40px;
}
.tt-wrap-cmt .tt_desc,
.tt-wrap-cmt .tt-link-user,
.tt-txt-mention,
.tt-wrap-cmt .tt_date,
.tt-link-comment .tt_txt_g,
.tt-link-comment .tt_num_g {
  font-family: var(--font-def) !important;
  line-height: inherit !important;
}
.tt-wrap-cmt .tt_desc {
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}
.tt-wrap-cmt .tt-link-user,
.tt-txt-mention {
  font-size: var(--fs-xs);
}
.tt-wrap-cmt .tt-link-user {
  color: var(--color-text);
  font-weight: var(--fw-boldEx);
}
.tt-txt-mention {
  color: var(--color-link) !important;
  background: none !important;
  font-weight: var(--fw-boldEx);
}
.tt-wrap-cmt .tt_date {
  font-size: var(--fs-xs);
  color: var(--color-text-gray);
  padding-top: 10px;
}
.tt-wrap-cmt .tt-link-comment {
  color: var(--color-text-gray);
}
.tt-wrap-cmt .tt-link-comment:hover {
  color: var(--color-link);
}
.tt-wrap-cmt .tt-wrap-link-comment {
  padding-left: 10px;
  transition: var(--transition);
}
/* 댓글 내부 텍스트 */
.tt-link-comment .tt_txt_g,
.tt-link-comment .tt_num_g {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding-top: 10px;
}
.tt-item-reply .tt_cmt_info .tt_txt_g {
  font-family: var(--font-def), sans-serif !important;
  font-size: var(--fs-s) !important;
  color: var(--color-link) !important;
  font-weight: var(--fw-bold);
}
/* 댓글 레이아웃 */
.tt-list-reply > .tt-item-reply {
  padding: 25px 25px 25px 15px;
  border-top: var(--inline-line-width) solid var(--color-line);
}
.tt-list-reply > .tt-item-reply:last-child {
  border-top: 0;
}
.tt-item-reply .tt-list-reply-comment {
  border-top: 0;
}
.tt-list-reply-comment > .tt-item-reply {
  padding: 15px 0;
  border-top: 0;
}
.tt-item-reply .tt-list-reply-comment:before {
  display: none;
}
.tt-item-reply .tt-wrap-cmt > .tt-box-thumb {
  margin-right: 0;
}
.tt-item-reply .tt-box-content {
  width: calc(100% - 50px);
  padding-top: 3px;
}
.tt-item-reply .tt-button-modify {
  opacity: 0.45;
}
.tt-area-reply {
  margin-bottom: 0;
}
.tt-list-reply {
  border: 0;
  display: flex;
  flex-direction: column-reverse;
}
.tt-wrap-info .tt_date + .tt-wrap-link-comment:before {
  display: none !important;
}
/* 댓글 폼 */
.tt-box-textarea {
  background-color: var(--color-bg-gray);
  border-radius: var(--border-radius-min);
  padding: 15px;
}
.tt-box-textarea .tt-inner-g {
  border: 0;
  max-height: 110px;
  padding: 0;
}
.tt-area-write {
  padding-bottom: 15px;
}
.tt-area-write .tt-box-account input {
  border: 0;
  background-color: var(--color-bg-gray);
  border-radius: var(--border-radius-min);
  font-size: var(--fs-def);
}
.tt-box-textarea .tt_txt_user,
.tt_txt_user {
  display: none;
}
/* 버튼류 */
.tt-btn_register,
.tt-btn-cancel {
  position: relative;
  color: transparent;
  border: 0;
  width: 35px;
  height: 35px;
  background: none;
}
.tt-btn_register:disabled,
.tt-btn_register:hover {
  background: none;
  border: 0;
}
.tt-btn-cancel {
  min-width: 0;
  margin-right: 3px;
}
.tt-btn-cancel::before {
  position: absolute;
  left: 6px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\f429';
  color: var(--color-text-gray);
}
.tt-btn_register::before {
  position: absolute;
  left: 6px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\eb1e';
  color: var(--color-link);
}
.tt-btn_register:disabled::before {
  color: var(--color-text-gray);
}
.tt-box-write .tt-xe-input-helper {
  width: 35px;
  height: 35px;
  background: none;
  margin-right: 3px;
}
.tt-box-write .tt-xe-input-helper::before {
  position: absolute;
  top: 18px;
  left: 8px;
  font-family: var(--font-icon);
  font-size: 20px;
  content: '\eae1';
  color: var(--color-text-gray);
}
.tt-box-write input[type='checkbox']:checked + .tt-xe-input-helper::before {
  content: '\eae2';
  color: var(--color-link);
}
/* 이전 댓글 더보기 버튼 */
.tt_btn_prev_more {
  color: var(--color-text-gray);
  font-weight: var(--fw-bold);
  font-size: var(--fs-s);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border-width) solid var(--color-line);
  background: var(--color-bg-gray);
  border-radius: var(--border-radius-min);
  margin-bottom: 15px;
  transition: var(--transition);
}
.tt_btn_prev_more:hover {
  color: var(--color-link);
}
/* 숨기기 */
.tt-box-total {
  display: none;
}
/* 아이콘류 */
.tt_cmt_info .tt_ico_fixed,
.tt-box-meta .tt_img_area_reply {
  background: none;
  position: relative;
  overflow: visible;
  font-size: var(--fs-def);
}
.tt_img_area_reply::before {
  position: absolute;
  font-family: var(--font-icon);
}
.tt_img_area_reply.tt_ico_lock::before {
  content: '\eae2';
  color: var(--color-text-gray);
  top: 10px;
  left: 3px;
}
.tt_img_area_reply.tt_ico_fixed::before {
  content: '\f68d';
  color: var(--color-link);
  top: 7px;
  left: 3px;
}
.tt_cmt_info .tt_img_area_reply.tt_ico_fixed::before {
  transform: rotate(-90deg);
}
.tt_cmt_info + .tt-wrap-cmt .tt-box-meta a,
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
  color: var(--color-link) !important;
}
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
  font-weight: var(--fw-bold) !important;
  background-color: var(--color-bg-gray);
}
.tt-box-meta .tt_img_area_reply.tt_ico_fixed::before {
  content: '\f68e';
  color: var(--color-text-gray);
  top: 6px;
  left: 0;
}
.tt_cmt_info + .tt-wrap-cmt .tt-box-meta .tt_img_area_reply.tt_ico_fixed::before {
  color: var(--color-link);
}
/* 대댓글 스타일 */
.tt-comment-cont {
  display: flex;
  flex-direction: column-reverse;
  padding: 25px 15px 0 15px;
}
.tt-item-reply .tt-wrap-cmt {
  justify-content: space-between;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt {
  flex-direction: row-reverse;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-modify {
  right: -25px;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tt-item-reply .tt-list-reply-comment .tt-box-content .tt-link-user {
  max-width: 100%;
}
.tt-list-reply li:first-child {
  border-bottom: 0;
}
/* 말풍선 스타일 */
.tt-wrap-cmt .tt_desc {
  display: inline-block;
  background-color: var(--color-bg-gray);
  padding: 12px 18px 14px;
  border-radius: 2px 20px 20px 20px;
}
.tt-list-reply-comment .tt_desc {
  border-radius: 20px 2px 20px 20px;
}
/* 핀고정 댓글 맨 위 */
.tt-item-reply:not(.rp_general) {
  order: 1;
}
/* 수정 모드 */
.tt-box-modify-open .tt-list-modify {
  box-shadow: none;
  border: var(--inline-line-width) solid var(--color-line);
  padding: 0;
  overflow: hidden;
}
.tt-box-modify-open .tt-list-modify > li > a {
  font-size: var(--fs-s);
  padding: 10px 15px;
  line-height: inherit;
  color: var(--color-text-gray);
}
/* 댓글 영역 */
body :is(.tt-box-textarea textarea, .tt-box-textarea div) {
  background-color: transparent;
}
/* - article - */
/* 기본 레이아웃 */
article .article_container {
  word-wrap: break-word;
}
article .article_content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 15px;
  /*
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-line); 
  */
}
article .article_content .content_style {
  width: 100%;
  padding-bottom: 15px;
}
/* 본문 상단 영역 */
.article_title {
  font-size: var(--fs-xl);
  line-height: 1.4;
  padding-bottom: 5px;
}
.article_title > a:hover {
  text-decoration: underline;
}
.article_date {
  color: var(--color-text-gray);
}

.article_buttons {
  display: flex;
  justify-content: flex-end;
}
.article_button.mod > .button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.article_button.del > .button {
  border-radius: 0;
}
.article_button.back > .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.article_button.refresh > .button {
  color: var(--color-text-gray);
}
.article_button:not(:last-child) {
  margin-left: -1px;
}
.article_button:last-child {
  margin-left: 5px;
}
/* 본문 하단 영역 */
.article_footer {
  display: none;
  padding: 20px 25px;
  border-top: var(--border-width) solid var(--color-line);
}
body#tt-body-page .article_footer {
  display: block;
}
.article_footer > p {
  text-align: right;
}
/* 댓글 버튼 */
article .article_content .article_button {
  position: absolute;
  right: 10px;
  bottom: 12px;
  z-index: 1;
}
article .article_content .article_button button {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  outline: none;
  color: var(--color-text-gray);
  transition: var(--transition);
}
article .article_content .article_button button:hover,
article .article_content .article_button button.active {
  color: var(--color-link);
}
article .article_content .article_button button > span {
  padding-left: 3px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  font-style: italic;
  line-height: 1.8;
}
/* 네임카드 제거 */
div[data-tistory-react-app="Namecard"] {
    display: none;
}
/* 이전/다음 글 */
.article_page {
  display: none;
  width: 100%;
  padding: 0 10px;
  /* display: flex; */
  flex-wrap: wrap;
}
.article_page > div {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.article_page > div a {
  max-width: calc(100% - 35px);
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 25px;
}
.article_page > div span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-boldEx);
  color: var(--color-link);
  line-height: 25px;
}
/* 신고, 공감 버튼 */
body :is(.container_postbtn) {
    width: 100%;
    display: flex;
    padding: 15px 0 0 0;
}
body :is(.container_postbtn)::after {
    content: none;
}
body :is(.container_postbtn .postbtn_like) {
    display: flex;
    align-items: center;
    float: unset;
    padding: unset;
    font-size: inherit !important;
}
body :is(.container_postbtn .postbtn_like .wrap_btn) {
    display: flex;
    align-items: center;
    float: unset;
}
body :is(.container_postbtn .btn_post) {
    height: unset;
    border: unset;
    border-radius: unset;
    padding: unset;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    display: flex;
    align-items: center;
}
body :is(.container_postbtn .btn_post .ico_like) {
    display: none;
    max-width: unset;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.container_postbtn .btn_post .txt_like) {
    margin: unset;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post .ico_share) {
    display: none;
    margin: unset;
    background: none;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .layer_post) {
    border: unset;
    box-shadow: unset;
    padding: unset;
    background: unset;
}
body :is(.container_postbtn .layer_post .ico_arrbt) {
    display: none;
}
body :is(.container_postbtn .layer_post .btn_mark) {
    outline: none !important;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    color: inherit;
}
body :is(.container_postbtn .btn_post .ico_statistics) {
    display: none;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.btn_post, .btn_menu_toolbar) {
    outline: none !important;
}
body :is(.btn_post, .btn_menu_toolbar):focus-visible {
    outline: 2px !important;
}
body :is(.container_postbtn .postbtn_ccl) {
    display: none;
}
body :is(.container_postbtn .ico_postbtn.ico_etc) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar) {
    width: -moz-fit-content;
    width: fit-content;
    height: unset;
    margin: unset;
    border: unset;
    border-radius: unset;

    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_menu_toolbar .txt_state) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar.following .ico_check_type1) {
    display: none;
}
body :is(.container_postbtn) {
    gap: 20px;
    order: 3;
    flex-grow: 1;
}
body :is(.container_postbtn .postbtn_like) { 
    gap: 10px;
    border: 0;
    background-color: transparent;
}
/* 좋아요 버튼 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon)::before {
    font-family: var(--font-icon) !important;
    content: "\eabe";
    color: var(--color-text-gray);
    margin-right: 5px;
}
/* 공감 눌렀을 때 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon.like_on)::before {
    content: "\f67c";
    margin-right: 5px;
    color: #f25858; 
    animation: animateHeart .3s linear forwards;
}
@keyframes animateHeart{
    0%{transform:scale(.2);}
    40%{transform:scale(1.2);}
    100%{transform:scale(1);}
}
/* 카운트 */
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    color: var(--color-text-gray);
}
/* 공유하기 버튼 */
body :is(.container_postbtn .postbtn_like .wrap_btn_share) {
    display: none;
}
body :is(.container_postbtn .btn_post.sns_btn.btn_share)::before {
    font-family: var(--font-icon) !important;
    content: '\eb21';
    color: var(--color-text-gray);
} 
/* 공유하기/더보기 레이어 */
body :is(.container_postbtn .bundle_post) {
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: var(--border-radius-min);
    overflow: hidden;
}
/* 공유하기/더보기 레이어 아이템 */
body :is(.container_postbtn .layer_post .btn_mark) {
    padding: 10px 15px;
    background-color: var(--color-cont-bg);
    color: var(--color-text-gray);
}
body :is(.container_postbtn .layer_post .btn_mark:hover) {
    background-color: var(--color-bg-gray);
}
/* 통계 버튼 */
body :is(.container_postbtn .wrap_btn .btn_post:not(.btn_etc1, .btn_etc2, .sns_btn, .uoc-icon))::before {
    font-family: var(--font-icon) !important;
    content: '\ea59';
    color: var(--color-text-gray);
} 
/* 더보기 버튼 (관리자) */
body :is(.container_postbtn .btn_post.btn_etc1)::before {
    font-family: var(--font-icon) !important;
    content: '\eb20';
    color: var(--color-text-gray);
}
/* 더보기 버튼 (방문자) */
body :is(.container_postbtn .btn_post.btn_etc2)::before {
    font-family: var(--font-icon) !important;
    content: '\ea95';
    color: var(--color-text-gray);
}
/* 구독 버튼 */
body :is(.container_postbtn .btn_menu_toolbar) {
    display: none;
}
/* - protected - */
.protected {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.protected_title > h3 {
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
}
.protected_title > p {
  text-align: center;
}
.protected_pw {
  display: flex;
  padding-top: 25px;
      flex-direction: column;
  gap: 5px;
}
.protected_pw input[type="password"] {
  background-color: var(--color-bg-gray);
  border: var(--border-width) solid var(--color-line);
  font-size: var(--fs-s);
  font-weight: var(--fw-bold);
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  width: 300px;
  max-width: 100%;
  border-radius: var(--border-radius-min);
  transition: box-shadow .15s ease-in-out;
}
.protected_pw input[type="password"]:focus {
  box-shadow:0 0 0 .25rem rgba(0,0,0,.15);
}
.protected_buttons input[type="submit"] {
  height: 35px;
  flex: 1;
  background-color: var(--color-link);
  color: var(--color-white);
  border: var(--border-width) solid var(--color-link);
  border-radius: var(--border-radius-min) !important;
  transition: var(--transition);
  font-size: var(--fs-def);
  font-weight: var(--fw-def);
}
.protected_buttons input[type="submit"]:hover {
  filter: brightness(0.9);
}
.protected_buttons {
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  padding-top: 15px;
}
.protected_cancel {
  height: 35px;
  flex: 1;
  background-color: var(--color-white-bg);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--border-radius-min);
  color: var(--color-text);
  font-size: var(--fs-def);
  font-weight: var(--fw-def);
}
.protected_cancel:hover {
    filter: brightness(0.9);
}

/* - notice - */
#tt-body-index :is(.article_content) {
    border-bottom: 0;
    margin-bottom: 0;
}
#tt-body-index :is(.container_postbtn) {
    display: none;
}
#tt-body-index :is(.content_style) {
    padding-bottom: 0;
}

/* - taglog - */
.taglog_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.taglog_list > a {
    padding: 5px 10px;
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: var(--border-radius-min);
    font-size: var(--fs-s);
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    background-color: var(--color-cp-bg);
}
.taglog_list > a:hover {
    background-color: var(--color-cont-bg);
}
.taglog_list > a::before {
    content: '#';
    margin-right: 2px;
    color: var(--color-text);
}
.taglog_content {
    padding: 15px;
}
.taglog_content .taglog_list > a {
    border-color: var(--color-line);
    border-width: var(--border-width);
    font-weight: var(--fw-bold);
    color: var(--color-text);
}
.taglog_content .taglog_list > a::before {
    color: var(--color-text);
}
.taglog_content .taglog_list > a:hover {
    background-color: var(--color-cont-bg);
}

/* article_taglog */
.article_taglog {
    width: 100%;
    padding: 0 5px 15px 5px;
    color: transparent;
} 
.article_taglog .taglog_list {
    column-gap: 0;
}

/* - tooltip - */
.tooltip {
    display: none;
    position: absolute;
    left: 50%; 
    transform: translateX(-50%);
    font-size: var(--fs-xs);
    background: var(--color-bg);
    border: var( --inline-line-width) solid var(--color-line);
    color: var(--color-text-gray);
    border-radius: var(--border-radius-min);
    padding: 3px 10px;
    font-weight: var(--fw-bold);
    z-index: 9999;
} 
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- floating ---------- */
/* ------------------------------------------------- */
.floating {
  position: fixed;
  z-index: 9999;
  bottom: 35px;
  right: calc((100vw - var(--container-size)) / 2);
  display: flex;
  flex-direction: column;
  gap: 15px; 
  transition: bottom .35s ease-in-out;
}
.floating.mobile {
  bottom: 120px;
}
.menu {
  position: relative;
}
.scroll_buttons > button,
.floating .dropmenu_button {
  position: relative;
  z-index: 999;
}
.scroll_buttons > button::before,
.floating .dropmenu_button::before {
  position: absolute;
  content: attr(data-tooltip);
  box-shadow: var(--box-shadow);
  background-color: var(--color-cont-bg);
  color: var(--color-text-gray);
  font-size: var(--fs-s);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--border-radius-min);
  padding: 1px 5px;
  pointer-events: none;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.scroll_buttons > button:hover::before,
.floating .dropmenu_button:hover::before {
  right: calc(100% + 5px);
  opacity: .85;
  visibility: visible;
}
.theme_toggle {
  color: var(--color-text-gray);
  transition: var(--transition);
}
.theme_toggle:hover {
  background-color: var(--color-bg-gray);
}
.category {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 170px;
  position: absolute;
  background: var(--color-cont-bg);
  border-radius: var(--border-radius-min);
  border: var(--border-width) solid var(--color-line);
  box-shadow: var(--box-shadow);
  max-height: 300px;
  overflow-y: auto;
  transition: var(--transition);
}
.category.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile_menu .category {
  right: 0;
  bottom: 0;
}
.mobile_menu .category.active {
  bottom: 45px;
}
.floating .category {
  right: 0;
  bottom: 0;
}
.floating .category.active {
  bottom: 45px;
}
.link_menu,
.category_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.link_menu > li,
.category_list > li {
  width: 100%;
}
.sub_category_list > li > a {
  padding: 5px 5px 5px 25px !important;
}
.sub_category_list > li > a::before {
  content: '';
  position: absolute;
    left: 8px;
    top: 12px;
    width: 8px;
    height: 8px;
  border-left: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.sub_category_list > li:first-child {
  border-top: var(--border-width) solid var(--color-line);
}
.sub_category_list > li {
  border-bottom: var(--border-width) solid var(--color-line);
}
.sub_category_list > li > a:hover {
  background-color: var(--color-bg-gray);
}
.link_menu > li > a,
.category_list > li a {
  margin: 3px;
  padding: 5px;
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: var(--border-radius-min);
}
.link_menu > li > a::before,
.category_list > li > a::before {
  content: '\eaad';
  font-family: var(--font-icon) !important;
  float: left;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-min);
  background-color: var(--color-cont-bg);
  margin-right: 10px;
  transition: var(--transition);
}
.link_menu > li:nth-child(1) > a::before {
  content: '\10096';
}
.link_menu > li:nth-child(2) > a::before {
  content: '\f38a';
}
.link_menu > li:nth-child(3) > a::before {
  content: '\f7eb';
}
.link_menu > li > a:hover::before,
.category_list > li > a:hover::before {
  background-color: var(--color-link-deep);
  color: var(--color-white);
}
.category_list > li > ul > a:hover {
  background: var(--color-bg-gray);
  color: var(--color-text);
}
nav a:hover {
  color: var(--color-text);
}
.link_menu {
  margin-top: -1px;
  border-top: var(--border-width) solid var(--color-line);
  border-bottom: var(--border-width) solid var(--color-line);
}
.nav_footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
  align-items: center;
}
.nav_footer > a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 50px;
  border: var(--border-width) solid var(--color-line);
  height: 30px;
  padding: 0 10px;
  color: var(--color-text-gray);
}
.nav_footer > a:hover {
  background-color: var(--color-bg-gray);
  color: var(--color-text-gray);
}
.nav_footer > a > span {
  font-size: var(--fs-s);
  padding-top: 1px;
}
/* - navigation - */
.link_tit,
.category > ul > li > ul > li > ul {
  display: none;
}
/* - scroll_buttons - */
.scroll_buttons {
  box-shadow: var(--box-shadow);
}
.scroll_buttons > button {
  background: var(--color-bg);
  border-style: solid;
  border-color: var(--color-line);
}
.scroll_buttons > button:nth-child(1) {
  border-top-width: var(--border-width);
  border-bottom-width: var(--border-width);
  border-left-width: var(--border-width);
  border-right-width: var(--border-width);
  border-radius: var(--border-radius-min) var(--border-radius-min) 0 0;
}
.scroll_buttons > button:nth-child(2) {
  border-top-width: 0;
  border-bottom-width: var(--border-width);
  border-left-width: var(--border-width);
  border-right-width: var(--border-width);
  border-radius: 0 0 var(--border-radius-min) var(--border-radius-min);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- footer ---------- */
/* ------------------------------------------------- */
#footer {
  width: 100%;
  border-top: var(--border-width) solid var(--color-line);
  background-color: var(--color-cont-bg);
  margin-top: 15px;
}
.footer_container {
  width: var(--container-size);
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  max-width: 90%;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- mobile ---------- */
/* ------------------------------------------------- */
#mobile {
  display: none;
  position: fixed;
  z-index: 99999;
  background-color: var(--color-bg);
  width: 100%;
  border-top: var(--border-width) solid var(--color-line);
  padding: 10px;
  bottom: -100px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: 0;
  transition: all .45s ease-in-out;
}
#mobile.fixed {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search_mo {
  background-color: var(--color-bg-gray);
  border-radius: 50px;
  margin-bottom: 10px;
}
.search_mo .search_wrap {
  padding: 0 15px 0 10px;
  flex-direction: row-reverse;
}
.mobile_menus {
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}
.mobile_menu > a > i {
  font-size: 24px;
}
.mobile_menu > .button {
  padding-bottom: 1px;
}
.mobile_menu > .button:hover {
  background-color: var(--color-bg-gray);
}
.mobile_menu .dropmenu_button > i {
  font-size: 24px;
}
.mobile_menu .dropmenu_button:hover {
  background-color: var(--color-bg-gray);
}
/* mobile_article_title */
.mobile_article_title {
  display: none;
  position: fixed;
  z-index: 99998;
  background-color: var(--color-bg);
  width: 100%;
  border-top: var(--border-width) solid var(--color-line);
  padding: 10px 15px;
  bottom: -100px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  left: 0;
  transition: all .65s ease-in-out; 
}
.mobile_article_title {
  text-align: center;
}
.mobile_article_title > a {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.mobile_article_title.fixed {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* ------------------------------------------------- */



@media only screen and (max-width:1024px) {
  /* layout */
  #container,
  .header_container,
  .footer_container {
    width: 100%;
    max-width: 100%;
  }
  #container {
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0;
  }
  .header_container,
  .footer_container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .best_article {
    width: calc(100% - 160px - 220px - 15px);
  }
  .search {
    width: 130px;
  }
  .floating {
    right: 10px;
  }
  .mainpage_txt > h3 {
    font-size: 36px;
  }
  body#tt-body-index .mainpage_container {
    width: 400px;
  }
  .user_icon > i {
    font-size: 80px;
  }
  #list_gal_1 .list_container {
    gap: 35px;
  }
  .content_inner {
    padding: 15px;
  }
  #header .logo {
    font-size: 18px;
  }
    #list_gal_1 .list_container {
      gap: 15px;
    }
}
@media only screen and (max-width:680px) {
    :root {
      --fs-xl: calc(var(--fs-def) + 12px); 
    }
    .floating {
      bottom: 125px;
    }
    .floating.scroll-up {
      bottom: 35px;
    }
    .floating.scroll-up-article {
      bottom: 60px;
    }
    .floating.scroll-down {
      bottom: 125px;
    }
    .floating .menu {
      display: none;
    }
    #mobile,
    .mobile_article_title { 
        display: block; 
    }
    .tooltip {
        display: none !important;
    }
    .mainpage_txt > h3 {
      font-size: 26px;
      font-weight: var(--fw-def);
    }
    .mainpage_txt > span {
      font-size: var(--fs-def);
    }
    .user_icon > i {
      font-size: 60px;
    }
    .mainpage_form {
      padding-top: 25px;
    }
    .mainpage_button {
      width: 100%;
      margin-top: 5px;
    }
    /* layout */
    #footer {
      padding-bottom: 110px;
    }
    .article_buttons {
      padding-top: 15px;
    }
    .best_article {
      width: 100%;
    }
    #header {
      height: auto;
    }
    #header .logo {
      padding-bottom: 5px;
    }
    .header_container {
      align-items: flex-start;
      flex-direction: column;
      padding-top: 10px;
      padding-bottom: 20px;
    }
    .rigt_wrap {
      display: none;
    }
    .login_button,
    .random_button {
      display: none;
    }
    /* list */
    .list .list_container {
      padding-left: 0;
      padding-right: 0;
    }
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(3, 1fr);
    }
    #list_gal_3 .list_container {
        grid-template-columns: repeat(1, 1fr);
    }
    #list_web .list_item .list_thumb {
      width: 100px;
      height: 100px;
    }
    #list_web .list_summary > span {
      -webkit-line-clamp: 2;
    }
    /* 사이드 여백 */
    .tt-comment-cont, .taglog_content {
        padding-left: 5px;
        padding-right: 5px;
    }
    /* 방명록 */
    .tt-area-write {
        flex-direction: column; 
    }
    .tt-box-thumb {
        margin-bottom: 15px;
    }
    body :is(.tt-list-reply > .tt-item-reply) {
        padding-left: 0;
        padding-right: 15px;
    }
    .tt-list-reply-comment > .tt-item-reply .tt-button-modify {
      right: 10px;
    }
    body :is(.tt-list-reply-comment > .tt-item-reply) {
        padding-right: 15px;
    }
    .guestbook .tt-comment-cont {
        padding-top: 0;
    }
    /* cover */
    #cover > div {
      flex: none;
      width: 100%;
    }
    .cover_wrap {
      row-gap: 25px;
    }
    .cover_notice {
      height: 300px;
    }
}
@media only screen and (max-width: 480px) {
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 360px) {
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        padding-left: 25px;
        padding-right: 25px;
        grid-template-columns: repeat(1, 1fr);
    }
    #list_web .list_thumb:has(.thumb) {
      margin-left: 0;
    }
    #list_web .list_item .list_thumb {
      width: 100%;
      height: 50vw;
      grid-row: unset;
      grid-column: 1/1;
    }
    #list_web .list_item .list_thumb {
      margin-bottom: 15px;
    }
    #list_web .list_item .list_info {
      grid-row: 2/2;
    }
    #list_web .list_summary {
      grid-row: 3/3;
    }
}