@charset 'utf-8'; 
   
/* ------------------------------------------------- */ 
/* 웹폰트 */   
/* ------------------------------------------------- */ 
/* @import로 시작 */       
@import url('https://cdn.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Keania+One&display=swap');

@font-face {
    font-family: 'Galmuri11';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2506-1@1.0/Galmuri11-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
}
}
/* 
    폰트 패밀리명을 언어와 수정 범위에 맞게 변경해주세요 !
    지원하지않는 문자가 있는 웹폰트라면 '한국어', '다른 외국어' 순으로 패밀리명을 추가해주세요.
    예시) 'Pretendard Variable', 'M PLUS 1p';
*/ 
:root {  
    /* 한국어 */ 
    --font-ko: 'Galmuri11'; 
    --font-bit: 'Galmuri11', sans-serif;
    --font-jp: 'Galmuri11'; 
    /* def */
    --font-def: 'Galmuri11', 'Galmuri11', sans-serif;
}
html, body, textarea, button, code {
    font-family: 'Galmuri11';
}
/* ------------------------------------------------ */


/* ------------------------------------------------- */
/* 스타일 관리 */
/* window -> box-shadow: inset 1px 1px grey; */
/* ------------------------------------------------- */
:root {
    /* 색상 */ 
    --color-txt-point: #0a0cc4;

    --color-point: #0a0cc4;
    --color-pointBd: #0a0cc4;
    --color-pointBg: #f9f2f2;
    --color-bg: #ede8e8;
  
    --color-window-gr: linear-gradient(80deg, #0a0cc4, #040839);
    --color-window-bar: #0a0cc4;

    /* han 테마 색상 */
    --color-window-line: #0a0cc4;
    --color-window-outline: #000000;
    --color-window-outline-2: #07076d; 
    --color-window-shadow: #000000;
    --color-window-bg: linear-gradient(180deg, #0a0cc4, #000000);

    --color-window-scroll-bg: #c0c0c0;
    --color-window-scroll-bar-bg: #c0c0c0;
    --color-window-scroll-line: #e7e7e7;

    --color-def: #fff;
    --color-text: #212121;
    --color-line: #afb9c1;
    --color-gray: #5a666b;
    --color-bgGray: #c1c8d1;

    /* 컨테이너 사이즈 */
    --container-size: 1000px;
    --container-size-max: 90%;

    /* 전체 스타일 */
    --border-width: 2px;
    --border-radius: 0px;
    --border-radius-min: 0px;
    --border-radius-button: 0px;
    --transition: .25s ease-in-out;

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

    /* 갤러리 썸네일 모양 */
    --border-radius-gal: 0px;

    /* 
        기본 폰트 사이즈를 조절 원할 시 --fs-def 의 수치를 조절하세요.
        본문에서만 폰트 사이즈를 조절 원할 시 --fs-article 의 수치를 조절하세요.
        ★웹폰트 변경시 bold 처리가 안 되는 경우가 있습니다. --fw-bold, --fw-boldEx 를 bold 로 변경해주세요.★
    */
    --fs-xs: 8px;
    --fs-s: 9px;
    --fs-def: 12px; /* 기본 */
    --fs-article: 12px; /* 본문 전용 */
    --fs-nav: 10px; /* 카테고리 전용 */
    --fs-m: calc(var(--fs-def) + 2.5px); 
    --fs-l: calc(var(--fs-def) + 6px); 
    --line-height: 2; /* 글줄 */
    --font-icon: 'tabler-icons';
    --fw-def: 500;
    --fw-bold: 700;
    --fw-boldEx: 900;
    
    /* window icon - app */
    --window-control-icon: url(./images/controller_icon_sprites_w.png);

    --window-control-close: -10px -10px;
    --window-control-size: -10px -40px;
    --window-control-help: -10px -70px;

    /* window-icon-han */
    --window-han-icon: url(./images/han_css_sprites.png);
    --window-han-icon-hover: url(./images/han_css_sprites_hover.png);

    --window-han-icon-folder-wt: -10px -10px;
    --window-han-icon-folder-bk: -75px -75px;
    --window-han-icon-folder-bl: -140px -10px;

    --window-han-icon-mail: -10px -75px;
    --window-han-icon-search: -75px -10px;

    --window-han-icon-start: -98px -140px;
    --window-han-icon-file: -134px -140px;
    --window-han-icon-cal: -205px -10px;
    --winodw-han-icon-key: -140px -75px;
    --window-han-icon-set: -10px -140px;
    --window-han-icon-com: -54px -140px;
}
.article_content {
    font-size: var(--fs-article);
}
article {
    color: var(--color-text);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 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;
    appearance: none;
    -webkit-appearance: none;
}
button {
    border: 0;
    color: inherit;
    cursor: pointer;
}
#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-def);
}
a:hover {
    color: var(--color-point);
}
img, 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-l {
    font-size: 36px;
}

/* 본문 글, 이미지 처리 */
.article_content > .contents_style {
  font-size: var(--fs-article);
}
.article_content.keep > .contents_style {
  word-break: keep-all !important;
}
.article_content.justify > .contents_style {
  text-align: justify;
}
.article_content.break > .contents_style {
  word-break: break-all !important;
}
#tt-body-index figure.imageblock
#tt-body-page figure.imageblock,
#tt-body-index figure.imagegridblock,
#tt-body-page figure.imagegridblock { 
	margin: 20px 0 !important;
} 
figure.imageslideblock div.image-container,
figure.imageblock img,
#tt-body-page figure.imageblock img,
figure.imagegridblock img,
#tt-body-page figure.imagegridblock img {
  border-radius: var(--border-radius-img); 
  overflow: hidden;
  vertical-align: top;
}
#tt-body-page figure.imageblock.floatLeft,
#tt-body-index figure.imageblock.floatLeft {
    margin: 0 25px 20px 0 !important;
}
/* 타플랫폼글 업로드시 본문 박스를 넘어가는 현상 방지 */
div[class*='sheet-coc-rol'] {
  max-width: 100%;
}
/* 본문이미지 흑백 전환 */
figure.imageslideblock div.image-container:hover img,
.article_content.img-filter figure.imagegridblock img:hover,
.article_content.img-filter figure.imageblock:hover img {
  -webkit-filter: grayscale(100%);
  filter: gray;
  opacity:0.7;
}
/* ------------------------------------------------- */
 


/* ------------------------------------------------- */
/* loader */
/* ------------------------------------------------- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100dvh;
    background-image: url(./images/han_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    -moz-background-size:cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    z-index: 9999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
} 
.loader img {
    display: inline-block;
    animation: loader s 0s linear infinite;
    opacity: 0;
}   
.loader_icons {
  display: flex;
  gap: 10px;
}
.loader_icons img {
  opacity: 0;
  animation: heartCycle 3s infinite;
}
.loader_icons img:nth-child(1) {
  animation-delay: 0s;
}
.loader_icons img:nth-child(2) {
  animation-delay: 0.4s;
}
.loader_icons img:nth-child(3) {
  animation-delay: 0.85s;
}
@keyframes heartCycle {
  0%   { opacity: 0; }
  10%  { opacity: 1; } 
  60%  { opacity: 1; }
  80%  { opacity: 0; } 
  100% { opacity: 0; } 
}
/* ------------------------ */



/* ------------------------------------------------- */
/* main page */
/* ------------------------------------------------- */
body#tt-body-index .background_icon,
body#tt-body-index .taskbar,
body#tt-body-index .window_header,
body#tt-body-index .container_top {
    display: none !important;
}
body#tt-body-index #layer_main .window_content {
    height: 70dvh;
    max-height: 720px;
    border-color: var(--color-window-line);
}
body#tt-body-index #layer_main .container_inner {
    padding-top: 0;
}
body#tt-body-index .pagination {
    display: none;
}
body#tt-body-index .main_logo {
    display: block;
}
.main_logo {
    display: none;
    position: absolute;
    z-index: 99999;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
}
.main_logo a {
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
.main_logo img {
    width: 100%;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- windows 95/98 style ---------- */
/* ------------------------------------------------- */
/* - cursor - */
*, *:focus {
    cursor: url(https://cur.cursors-4u.net/others/oth-6/oth661.cur), progress !important;
}
/* - scrollbar - */
/* A Windows 95/98 styled scrollbar for https://windows93.net */
body *::-webkit-scrollbar {
    width: 16px;
    height: 16px;
    background: none;
}
body *::-webkit-scrollbar-thumb, body *::-webkit-scrollbar-button {
    width: 16px;
    height: 16px;
    background: var(--color-window-scroll-bg);
    box-shadow: inset 1px 1px var(--color-window-scroll-line), inset -1px -1px var(--color-window-scroll-bg);
    border: 1px solid;
    border-color: var(--color-window-scroll-bg) #000 #000 var(--color-window-scroll-bg);
}
body *::-webkit-scrollbar-track {
    image-rendering: optimizeSpeed;
    image-rendering: pixelated;
    image-rendering: optimize-contrast;
    background-color: var(--color-window-scroll-bar-bg);
    background-position: 0 0;
    background-repeat: repeat;
    background-size: 2px;
}
body *::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    background-size: 16px;
}
body *::-webkit-scrollbar-button:single-button:vertical:decrement {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTcgNWgxTTYgNmgzTTUgN2g1TTQgOGg3IiAvPgo8L3N2Zz4=");
}
body *::-webkit-scrollbar-button:single-button:vertical:increment {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTQgNWg3TTUgNmg1TTYgN2gzTTcgOGgxIiAvPgo8L3N2Zz4=");
}
body *::-webkit-scrollbar-button:single-button:horizontal:decrement {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTggM2gxTTcgNGgyTTYgNWgzTTUgNmg0TTYgN2gzTTcgOGgyTTggOWgxIiAvPgo8L3N2Zz4=");
}
body *::-webkit-scrollbar-button:single-button:horizontal:increment {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgLTAuNSAxNiAxNiIgc2hhcGUtcmVuZGVyaW5nPSJjcmlzcEVkZ2VzIj4KPG1ldGFkYXRhPk1hZGUgd2l0aCBQaXhlbHMgdG8gU3ZnIGh0dHBzOi8vY29kZXBlbi5pby9zaHNoYXcvcGVuL1hieHZOajwvbWV0YWRhdGE+CjxwYXRoIHN0cm9rZT0iIzAwMDAwMCIgZD0iTTYgM2gxTTYgNGgyTTYgNWgzTTYgNmg0TTYgN2gzTTYgOGgyTTYgOWgxIiAvPgo8L3N2Zz4=");
}
body *::-webkit-scrollbar-corner {
    background: silver;
}

/* - layout : footer - */
.window_footer {
    width: 100%;
    display: flex;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline-2);
    margin-top: 3px;
}
.footer_info_box > span {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.footer_info_box {
    height: 25px;
    padding: 0 5px;
    border-top: 2px solid var(--color-window-outline);
    border-left: 2px solid var(--color-window-outline);
    border-bottom: 2px solid var(--color-window-outline);
    border-right: 2px solid var(--color-window-outline);
}
.footer_info_box:nth-child(1) {
    flex: 1 1 0;
    border-right-color: var(--color-window-line);
}
.footer_info_box:not(:nth-child(1)) {
    width: 120px; 
}
.footer_info_box:nth-child(add) {
    border-right-color: var(--color-window-line);
}
.footer_info_box:nth-child(even) {
    border-left-color: var(--color-window-outline-2);
}
/* - layout : header - */
.window_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 30px;
    background: var(--color-window-gr);
    padding: 0 8px 0 12px;
}
.window_controller {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.window_controller > button {
    cursor: pointer; 
    color: var(--color-def);
    font-weight: var(--fw-bold);
    font-family: var(--font-cate);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
} 
.window_controller > button:hover {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline);
    border-right: 2px solid var(--color-window-outline);
}
/* controller */
.window_control_icon_min {
    width: 5px;
    height: 1px;
    background-color: #fff;
    margin-top: 4px;
}
.window_control_icon {
    width: 10px;
    height: 10px;
    background-image: var(--window-control-icon);
    background-repeat: no-repeat;
}
.window_control_icon.close {
    background-position: var(--window-control-close);
    margin-bottom: 2px;
    margin-right: 1px;
}
.window_control_icon.resize {
    background-position: var(--window-control-size);
    margin-bottom: 2px; 
    margin-right: 1px;
}
.window_control_icon.help {
    background-position: var(--window-control-help);
}

.window_controller > button:hover .window_control_icon.close {
    margin-bottom: 0px;
    margin-right: 0px;
}
.window_controller > button:hover .window_control_icon.resize {
    margin-bottom: 0px; 
    margin-right: 0px;
}
/* title */
.window_title {
    position: relative;
    width: calc(100% - 75px);
    display: inline-flex;
    align-items: center;
    cursor: default;
    gap: 8px;
}
.window_title > a,
.window_title > span {
    color: #fff;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    flex: 1;
    font-family: var(--font-bit);
}

/* - layout : container & content - */
.window_container {
    background: var(--color-window-shadow);
    border: 2px solid var(--color-window-line);
    padding: 3px;
    box-shadow: 2px 2px 0px var(--color-window-shadow);
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    /* close */
    opacity: 0;
    transition: transform-origin .25s ease-in-out ,transform .25s ease-in-out, opacity .25s ease-in-out, width .25s ease-in-out;
    transform: scale(0);
    transform-origin: center;
    z-index: 99;
    pointer-events: none;
}
.window_container.open {
    opacity: 1 !important;
    transform: scale(1);
    pointer-events: auto;
} 
.window_content {
    width: 100%;
    overflow: hidden;
}
.window_content.imgbox {
    text-align: center;
} 
.window_content.imgbox img {
    width: 100%;
}
.window_content img {
    vertical-align: top;
}
/* 공통 레이아웃 */
.layout_wrap { 
    width: 100%;
    max-width: 90%;
    height: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container_inner {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 4px;
}
.content_scroll {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 10px;
}

/* - layout : footer (taskbar) - */
.taskbar {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 30px;
    background: var(--color-window-bg);
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 2px solid var(--color-window-outline);
    border-bottom: 2px solid var(--color-window-outline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}
.taskbar_left {
    flex: 1;
    display: flex;
    height: 100%;
    align-items: center;
}
.taskbar_left > div,
.taskbar_left > ul {
    display: flex;
    align-items: center;
    height: 100%;
}
.cur_program {
    gap: 3px;
    margin-left: 5px;
}
.taskbar_left .cur_program_btn,
.taskbar_right > .clock {
    gap: 5px;
    padding: 0 5px;
    height: 23px;
    font-size: var(--fs-s);
    font-family: var(--font-bit);
    flex: 1 1 auto;
}
.taskbar_left .cur_program_btn {
    cursor: pointer;
    min-width: 90px;
    justify-content: flex-start;
}
.taskbar_left .cur_program_btn .window_icon {
    margin-top: 1px;
}
.taskbar_right > .clock {
    cursor: default;
}
.taskbar_left > .start {
    cursor: pointer;
    font-size: var(--fs-s);
    font-family: var(--font-bit);
    gap: 5px;
    padding: 0 5px;
    height: 24px;
    color: #fff;
}
.taskbar_left .application_icon_list {
    gap: 5px;
    position: relative;
    padding: 0 15px;
}
.taskbar_left .application_icon_list::before,
.taskbar_left .application_icon_list::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 60%;
    border-left: 1px solid var(--color-window-outline-2);
    border-right: 1px solid var(--color-window-line);
}
.taskbar_left .application_icon_list::before {
    left: 8px;
}
.taskbar_left .application_icon_list::after {
    right: 8px;
}
.taskbar_right > .clock > i {
    margin-top: 2px;
}

/* - components - */
/* window_style */
.window_style,
.window_style_click {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.window_style {
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-line);
}
.button {
    height: 25px;
    cursor: pointer;
    min-width: 80px;
    border-radius: 0 !important; 
    -webkit-appearance: none; 
    appearance: none; 
    transform: translateZ(0);
    will-change: border-color, box-shadow;
}
.window_style.dotted {
    outline: 1px dotted rgb(37, 37, 37);
    outline-offset: -4px;
}
input,
input::placeholder {
    color: var(--color-text) !important;
    font-weight: var(--fw-def); 
}
input[type="submit"]::placeholder,
input[type="submit"],
input[type="button"]::placeholder,
input[type="button"] {
    color: var(--color-def) !important;
    font-weight: var(--fw-def); 
}
.window_style.button:hover,
.window_style.button.click,
.window_style_click,
.window_style:not(.cate):hover {
    border-top: 2px solid var(--color-window-outline);
    border-left: 2px solid var(--color-window-outline);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
    color: #fff;
}
/* box */
.window_style_box {
    background: #fff;
    border-top: 2px solid var(--color-window-outline);
    border-left: 2px solid var(--color-window-outline);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
}
body#tt-body-index #layer_main .window_style_box:not(.category_dropdown),
body#tt-body-guestbook #layer_main .window_style_box:not(.category_dropdown),
body#tt-body-search #layer_main .window_style_box:not(.category_dropdown),
body#tt-body-category #layer_main .window_style_box:not(.category_dropdown) {
    background: none;
}
/* window_pathbox */
.window_pathbox {
    display: flex;
    width: 100%;
    padding: 2px;
}
.window_pathbox > .window_pathInput {
    padding-left: 5px;
    height: 100%;
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
}
/* window_input */
.window_input_wrap {
    display: flex;
}
.window_input_wrap:not(.col) {
    align-items: center;
    justify-content: space-between;
}
.window_input_wrap.col {
    flex-direction: column;
    gap: 5px;
}
.window_input_label {
    padding-left: 5px;
    text-align: left;
}
.window_input {
    width: 100%;
    height: 25px;
    background-color: #fff;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
    padding: 5px 10px;
    font-size: var(--fs-s);
    color: var(--color-def);
    appearance: none;
    -webkit-appearance: none;
}
.window_input::placeholder {
    color: var(--color-gray);
    font-size: var(--fs-s);
}
.window_input#search_form {
    width: calc(100% - 40px);
}
/* start_menu */
.start_menu {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    z-index: 99999;
    bottom: 0;
    opacity: 0;
    left: 0;
    pointer-events: none;
    background: var(--color-window-bg);
    border: 2px solid var(--color-window-outline);
    padding: 2px;
    box-shadow: 2px 2px 0px var(--color-window-shadow);
    gap: 2px;
    transition: var(--transition);
}
.start_menu.visible {
    opacity: 1;
    bottom: 31px;
    pointer-events: auto;
}
.start_menu_logo {
    display: flex;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
    padding: 2px;
    min-height: 120px;
    width: 22px;
    background-image: linear-gradient(180deg, #0a0cc9 78%, #000000 100%);
}
.start_menu_logo > span {
    padding-top: 5px;
    font-size: 16px;
    color: #fff;
    font-family: 'Galmuri11';
    font-weight: 800;
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    text-orientation: sideways;
}
.start_menu_wrap {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
}
.start_menu_list {
    position: relative;
    display: flex;
    flex-direction: column;
}
.start_menu_list:not(:last-child) {
    padding-bottom: 6px;
}
.start_menu_list:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid var(--color-window-line);
    border-top: 1px solid var(--color-window-outline-2);
}
.start_menu_list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 8px;
    font-family: var(--font-bit);
    font-size: var(--fs-nav);
}
.start_menu_list > li > a:hover {
    color: var(--color-def);
    background-color: var(--color-window-bar);
}
/* background_icon */
.background_icon {
    position: absolute;
    height: auto;
    top: 35px;
    left: 35px;
}
.background_icon_list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px 0;
    height: 100%;
}
.background_icon_list > li {
    width: 100px;
    border-radius: var(--border-radius-min);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 5px;
    cursor: pointer;
}
.background_icon_item > span {
    color: #fff;
    font-size: var(--fs-nav);
    font-family: var(--font-bit);
    background-color: var(--color-window-outline);
    padding: 0 2px;
    border: 1px dotted transparent;
}
.background_icon_item:hover > i {
    background-image: var(--window-han-icon-hover);
}
.background_icon_item:hover > span {
    border-color: rgb(255,255,255,.8);
    background-color: var(--color-window-bar);
}

/* ---------- icon : window ---------- */
.window_icon {
    display: inline-block;
    background-repeat: no-repeat;
    pointer-events: none;
    background-image: var(--window-han-icon);
}
.window_icon.big {
    width: 45px;
    height: 45px;
}
.window_icon.lg {
    width: 32px;
    height: 32px;
}
.window_icon.md {
    width: 24px;
    height: 24px;
}
.window_icon.small {
    width: 16px;
    height: 16px;
} 
.window_icon.xsmall {
    width: 14px;
    height: 14px;
}
.window_icon.maxi {
    width: 163px;
    height: 126px;
}
/* 바탕화면 아이콘 */
.window_icon.big.folder-wt {
    background-position: var(--window-han-icon-folder-wt);
}
.window_icon.big.folder-bk {
    background-position: var(--window-han-icon-folder-bk);
}
.window_icon.big.folder-bl {
    background-position: var(--window-han-icon-folder-bl);
}
.window_icon.big.search {
    background-position: var(--window-han-icon-search);
}
.window_icon.big.mail {
    background-position: var(--window-han-icon-mail);
}
/* 시스템 관련 */
.window_icon.small.file {
    background-position: var(--window-han-icon-file);
}
.window_icon.small.cal {
    background-position: var(--window-han-icon-cal);
}
.window_icon.small.start {
    background-position: var(--window-han-icon-start);
}
.window_icon.md.key {
    background-position: var(--winodw-han-icon-key);
}
.window_icon.md.computer {
    background-position: var(--window-han-icon-com);
}
.window_icon.md.set {
    background-position: var(--window-han-icon-set);
}
/* ------------------------------------------------- */





/* ------------------------------------------------- */
/* -- */
/* ------------------------------------------------- */
body {
    font-size: var(--fs-def);
    color: var(--color-def);
    line-height: var(--line-height);
    word-wrap: break-word;
    font-weight: var(--fw-def);
    overflow-y: overlay;

    /* 배경 */ 
    background-image: url(./images/han_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    -moz-background-size:cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.content_scroll { 
    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 {
    from { opacity:0; }
    to { opacity:1; }
}
@-webkit-keyframes fadein {
    from { opacity:0; }
    to { opacity:1; }
}
@-o-keyframes fadein {
    from { opacity:0; }
    to { opacity: 1; }
}
/* 배경관리 */
#layer_chat .window_content.cover {
    background-attachment: fixed;
    background-repeat: no-repeat;
    -moz-background-size:cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
#layer_chat .window_content.pt {
    background-repeat: repeat;
}

/* ---------- drag color ---------- */
::selection {
    color: transparent;
    background: #fff;
    text-shadow: 0 0 2px var(--color-pointBd);
    transition: all 250ms ease-in;
}
::-moz-selection {
    color: transparent;
    background: #fff;
    text-shadow: 0 0 2px var(--color-pointBd);
    transition: all 250ms ease-in;
}

/* ---------- button ---------- */
.buttons {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 5px;
}
.button.window_style {
    font-size: var(--fs-nav);
    font-family: var(--font-bit);
    color: var(--color-def) !important;
}
/* iconbtn */
.iconbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: var( --border-width) solid var(--color-pointBd);
    background: var(--color-pointBg);
    border-radius: var(--border-radius-min);
    color: var(--color-def);
    transition: var(--transition);
}
.iconbtn:hover, 
.iconbtn.active {
    background-color: #fff;
    color: var(--color-point);
}
.iconbtn i {
    line-height: 30px;
}

/* ---------- layout ---------- */
.wrap {
    position: relative; 
    height: 100dvh;
}
.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;
}

/* - layer - */
div[id^='layer_']:not(#layer_main,#window) {
    position: absolute;
    z-index: 9999;
}
#window { 
    position: relative;
    margin-left: auto;
    margin-right: auto; 
    width: 100%;
    height: 100%;
    /* 배경 */
    background-image: url(./images/han_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    -moz-background-size:cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    /* close */
    opacity: 0;
    transition: transform-origin .25s ease-in-out ,transform .25s ease-in-out, opacity .25s ease-in-out, width .25s ease-in-out;
    transform: scale(0);
    transform-origin: center;
    z-index: 99; 
}
#window.open {
    opacity: 999 !important;
    transform: scale(1);
} 
body#tt-body-index #window {
    background-image: url(./images/han_bg_main.png);
}
/* main */
#layer_main {
    position: relative;
    width: var(--container-size); 
    max-width: 100%;
}
#layer_main .window_content { 
    position: relative;
    margin: 0 auto; 
    height: calc(90dvh - 220px);
}
#layer_main .content_scroll {
    height: 100%;
}
:root[data-layer-main="max"] #layer_main,
#layer_main.max {
    width: var(--container-size-max); 
}
:root[data-layer-main="min"] #layer_main,
#layer_main.min {
    width: var(--container-size); 
}
#layer_main { transition: none; }
html.lm-ready #layer_main { transition: all .2s ease; }
/* banner */
#layer_banner {
    width: 250px;
    left: 5vw;
}
#layer_banner .content_scroll {
    height: 280px;
}
.banner_wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.banner_wrap > li > a {
    display: block;
}
.banner_wrap > li > a > img {
    max-width: 100%;
}
/* img */ 
#layer_dday {
    width: 220px;
    top: calc(25vh - 35px);
    right: 5vw;
}
#layer_dday .window_content {
    min-height: 100px;
}
.dday_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
}
.dday_box > strong {
    font-family: var(--font-bit);
}
.dday_box > p {
    font-family: 'Galmuri11'v, sans-serif;
}
.dday_box > p {
    text-align: center;
    font-size: 26px;
}
.dday_txt {}
/* container_top */
.container_top {
    position: relative;
    z-index: 9; 
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
    border: 2px solid var(--color-window-outline-2);
    box-shadow: 2px 2px 0px var(--color-window-line);
}
/* link_list */
.link_wrap {
    height: 35px;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 2px;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
}
.link_wrap.line {
    border-bottom: 2px solid var(--color-window-outline-2);
}
.link_list {
    display: flex;
    gap: 10px;
    padding-bottom: 1px;
    align-items: center;
}
.link_list > li > a {
    display: block;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-bit);
    font-size: var(--fs-nav);
}
.link_list > li > a::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--color-def);
}
/* menu */
nav.menu {
    position: relative;
    z-index: 99;
}
.category_list > li:not(:last-child)::before,
nav.menu > ul > li:not(:last-child)::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid var(--color-window-line);
    border-top: 1px solid var(--color-window-outline-2);
}
.category_list > li,
nav.menu > ul:not(.tt_category) > li {
    position: relative;
    width: 100%; 
    padding: 4px 10px 4px 10px;
    color: var(--color-def);
}
.tt_category > li > a {
    display: none !important;
}
.category_list > li > a,
nav.menu > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: var(--fs-nav);
    font-family: var(--font-bit);
}
.category_list > li:hover,
.category_list > li:hover > a,
nav.menu > ul > li:hover,
nav.menu > ul > li:hover > a {
    color: #fff;
}
nav.menu {
    display: none;
    position: absolute; 
    top: 30px;
    width: auto;
}
nav.menu > ul {
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-shadow);
    border-right: 2px solid var(--color-window-shadow);
}
/* window_double_line */
.window_double_line {
    width: 4px;
    margin-right: 2px;
    height: 100%;
    border-left: 2px solid var(--color-window-outline);
    border-right: 2px solid var(--color-window-line);
}
.window_txt {
    padding-left: 10px;
    padding-right: 10px;
    color: #fff;
    font-family: var(--font-bit);
    font-size: var(--fs-nav);
}

/* ---------- navigation bar ---------- */
.category_wrap {
    display: flex;
    height: 35px;
    align-items: center;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    width: 100%;
    padding: 2px;
}
.category_dropdown {
    cursor: pointer;
    position: relative;
    flex: 1;
    height: 26px;
}
.category_btn {
    padding-left: 5px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category_btn > span {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 22px;
    padding-bottom: 2px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    font-family: var(--font-bit);
    font-size: var(--fs-nav);
    color: var(--color-text);
}
.category_btn > span::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: var(--window-han-icon); 
    background-repeat: no-repeat;
    background-position: var(--window-han-icon-file);
}
.window_style.cate {
    width: 20px;
    height: 20px;
}
.window_style.cate::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '\fb2a';
    font-family: var(--font-icon);
    font-size: 11px;
}
.category_btn.active .window_style.cate {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
    padding-left: 2px;
}
.category_btn.active .window_style.cate::before {
    content: '\fb2d';
    transform: translate(calc(-50% - 1px), -50%);
}
/* nav */
nav > ul > li > ul > li,
nav > ul > li > ul > li > ul > li {
    position: relative;
}
/* drop */
nav.drop > ul > li > ul > li:not(:last-child)::after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 1px solid var(--color-window-line);
    border-top: 1px solid var(--color-window-outline-2);
}
nav.drop > ul > li > ul {
    max-height: 200px;
    overflow-y: auto;
}
nav.drop > ul > li > ul > li.drop > a::before {
    position: absolute;
    top: 5px;
    right: 9px;
    content: '\fb2a';
    font-family: var(--font-icon);
    font-size: 12px;
}
nav.drop > ul > li > ul > li.open > a::before {
    content: '\fb2d';
}
nav.drop > ul > li > ul > li::before,
nav.drop > ul > li > ul > li::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
}
nav.drop > ul > li > ul > li > a {
    position: relative;
    width: 100%; 
    padding: 6px 26px 6px 26px;
    color: var(--color-def);
    font-family: var(--font-bit);
    font-size: var(--fs-nav);
}
nav.drop > ul > li > ul > li::before,
nav.drop > ul > li > ul > li > ul > li::before {
    content: '';
    position: absolute;
    z-index: 99;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: var(--window-icon-v2);
}
nav.drop > ul > li > ul > li:nth-child(1):before,
nav.drop > ul > li > ul > li:nth-child(1) > ul > li::before {
    background-position: var(--window-icon-folder-open-small);
    background-image: var(--window-icon);
}
nav.drop > ul > li > ul > li:nth-child(2):before,
nav.drop > ul > li > ul > li:nth-child(2) > ul > li::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-book2-small);
}
nav.drop > ul > li > ul > li:nth-child(3):before,
nav.drop > ul > li > ul > li:nth-child(3) > ul > li::before {
    background-position: var(--window-icon-fi-small);
}
nav.drop > ul > li > ul > li:nth-child(4):before,
nav.drop > ul > li > ul > li:nth-child(4) > ul > li::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-orr-small);
}
nav.drop > ul > li > ul > li:nth-child(5):before,
nav.drop > ul > li > ul > li:nth-child(5) > ul > li::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-st2-small);
}
nav.drop > ul > li > ul > li:nth-child(6):before,
nav.drop > ul > li > ul > li:nth-child(6) > ul > li::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-gemstone-small);
}
nav.drop > ul > li > ul > li > ul > li::before {
    top: 8px;
    left: 15px;
}
nav.drop > ul > li > ul > li::before {
    top: 8px;
    left: 6px; 
}
nav.drop > ul > li > ul > li a {
    background: var(--color-window-bg);
}
nav.drop > ul > li > ul > li a:hover {
    background-color: var(--color-window-bar);
}
nav.drop > ul > li > ul > li > ul > li > a {
    position: relative;
    color: var(--color-def);
    transition: var(--transition);
    padding: 6px 10px 6px 36px;
}
nav.drop {
    display: none;
    position: absolute;
    top: 24px;
    left: -2px;
    width: calc(100% + 4px);
}
nav.drop > ul > li > ul {
    border: 2px solid var(--color-window-line);
    box-shadow: 2px 2px 0px var(--color-window-shadow);
    background: #fff;
}
nav.drop > ul > li > ul > li > ul {
    overflow: hidden;
}
/* layer */
nav.layer {
    padding-left: 150px;
}
nav.layer > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 0;
}
nav.layer > ul > li > ul > li {
    width: 70px;
}
nav.layer > ul > li > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 35px;
    text-align: center;
}
nav.layer > ul > li > ul > li > a::before {
    content: '';
    display: inline-block;
    background-repeat: no-repeat;
    pointer-events: none;
    background-image: var(--window-icon);
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-position: var(--window-icon-folder-open-md);
}
nav.layer > ul > li > ul > li:nth-child(1) > a::before {
    background-position: var(--window-icon-folder-open-md);
}
nav.layer > ul > li > ul > li:nth-child(2) > a::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-book2-md);
}
nav.layer > ul > li > ul > li:nth-child(3) > a::before {
    background-position: var(--window-icon-fi-md);
}
nav.layer > ul > li > ul > li:nth-child(4) > a::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-orr-md);
}
nav.layer > ul > li > ul > li:nth-child(5) > a::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-st2-md);
}
nav.layer > ul > li > ul > li:nth-child(6) > a::before {
    background-image: var(--window-icon-v4);
    background-position: var(--window-icon-gemstone-md);
}
nav.layer > ul > li > ul > li > a > span {
    font-size: var(--fs-nav);
    padding: 0 2px;
    border: 1px dotted transparent;
}
nav.layer > ul > li > ul > li > a:hover::before {
    background-image: var(--window-icon-hover);
}
nav.layer > ul > li > ul > li:nth-child(4) > a:hover::before,
nav.layer > ul > li > ul > li:nth-child(5) > a:hover::before,
nav.layer > ul > li > ul > li:nth-child(6) > a:hover::before,
nav.layer > ul > li > ul > li:nth-child(2) > a:hover::before {
    background-image: var(--window-icon-v4-hover);
}
nav.layer > ul > li > ul > li > a:hover > span {
    color: #fff;
    border-color: rgb(255,255,255,.8);
    background-color: var(--color-window-bar);
}
/* reset */
nav > ul > li > ul > li > a,
nav > ul > li > ul > li > ul > li > a {
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    display: block;
}
nav > ul > li > ul > li > ul {
    display: none !important;
}

/* ---------- list style ---------- */
.empty_desc {
    text-align: center;
    padding-top: 15px;
    padding-left: 25px;
    padding-right: 25px;
    color: var(--color-gray);
    word-break: keep-all;
}
/* 리스트 공통 */
.list .list_container {
    display: grid;
    padding-bottom: 5px;
}
.list[id*="gal"] .list_container {
    gap: 10px;
}
.list .list_item .list_title {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.list .list_item .list_title img {
    width: auto !important;
    height: auto !important;
}
.list .list_item .list_category, 
.list .list_item .list_date { 
    display: inline-flex;
    font-size: var(--fs-xs); 
    color: var(--color-gray);
}
.list .list_item .list_category i, 
.list .list_item .list_date i {
    margin-right: 3px;
}
.list .list_item .list_info {
    display: flex;
    flex-wrap: wrap;
}
/* 썸네일 */
.list .list_item .list_thumb {
  transition: var(--transition);
}
.list_item .list_thumb {
  position: relative;
  overflow: hidden;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb {
  isolation: isolate;
    border-top: 2px solid var(--color-window-shadow);
    border-left: 2px solid var(--color-window-shadow);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-shadow);
  aspect-ratio: 1/1;
}
.list:not(#list_gal_2_circle):not(#list_gal_3) .list_item .list_thumb {
  border-radius: var(--border-radius-gal);
}
.list .list_item .list_thumb > figure {
  position: relative;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  margin: 0 !important;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb > figure > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list:not(.list[id*="gal_2"]) .list_item > a:hover .list_thumb > figure {
  -webkit-filter: grayscale(100%);
  filter: gray;
  opacity: 0.7;
}
.list:not(.list[id*="memo"]) .list_item > a:hover .list_thumb > figure {
  transform: scale(1.2);
}
.list .list_item .list_thumb > figure > img {
  transition: unset;
}
.list_item a:hover .list_title {
    color: var(--color-point);
}
/* 갤러리형 한 줄에 보여질 개수 */
.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;
}
/* 보호글 아이콘 */
.locked {
    position: relative;
    padding-left: 15px;
}
.locked::before {
    font-size: var(--fs-def);
    font-weight: normal;
    position: absolute;
    left: 0;
    top: -5px;
    font-family: var(--font-icon) !important;
    content: '\eae2';
    color: var(--color-def);
}
.list_summary {
    width: 0px;
    height: 0px;
    text-indent: -9999px;
    visibility: hidden;
}
#list_gal_2 .locked::before {
    color: #fff;
}
#list_web_1 .locked::before {
    font-size: var(--fs-m);
}
/* 노이미지 */
div[id*='web'] .list_thumb:not(:has(.thumb)) {
    display: none;
}
div[id*='web'] .list_thumb:not(:has(.thumb)) + .list_content {
    width: 100% !important;
}
:not(.thumb) + .no_thumb {
    display: inline-block !important;
}
.thumb + .no_thumb {
    display: none;
}
.list_thumb img {
    vertical-align: top; 
}
/* 카테고리명 표시 삭제 */
.list:not(.list[id*="web"]) .list_item .list_category {
    display: none;
}
/* list_info 중앙 정렬 */
#list_gal_1 .list_item .list_info,
#list_gal_2 .list_item .list_info {
    align-content: center;
    justify-content: center;
}
#list_gal_1 .list_item .list_info > div,
#list_gal_2 .list_item .list_info > div {
    width: 100%;
    text-align: center;
    justify-content: center;
}
/* --- 개별 스타일 --- */
/* 기본 갤러리형 #list_gal_1 */
#list_gal_1 .list_item .list_info {
    padding: 8px 10px;
}
div[id*='gal'] .list_item a {
    display: block;
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-outline-2);
}
div[id*='gal'] .list_item a:hover { 
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
    color: var(--color-def);
}
div[id*='gal'] .list_item a:hover .locked::before {
    color: var(--color-point);
}
/* 갤러리형2 #list_gal_2 */
#list_gal_2 .list_item {
    position: relative;
}
#list_gal_2 .list_item .list_info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    line-height: 1.3;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    text-align: center;
    visibility: hidden;
    color: #fff;
    transition: var(--transition);
}
#list_gal_2 .list_item .list_title {
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    opacity: 0;
    word-break: break-all;
    transition: all var(--transition);
}
#list_gal_2 .list_item .list_date {
    color: #fff;
    padding-top: 5px;
    opacity: 0;
    transition: all var(--transition);
}
/* 오버 효과 */
#list_gal_2 .list_item a:hover .list_info {
    visibility: visible;
}
#list_gal_2 .list_item a:hover .list_title {
    opacity: 1;
}
#list_gal_2 .list_item a:hover .list_date, 
#list_gal_2 .list_item a:hover .list_category {
    opacity: .45;
}
/* 일반글목록형-box #list_board */
#list_board .list_item a {
    display: block;
    padding: 8px 10px;
}
#list_board .list_item .list_info {
    align-items: center;
    justify-content: space-between;
}
#list_board .list_item .list_title {
    flex: 1;
    padding-right: 15px;
}
#list_board .list_item .list_date {
    margin-left: auto;
    opacity: 1;
}
/* 스타일 */
#list_board .list_item:not(:last-child) {
    margin-bottom: 8px;
}
#list_board .list_item a {
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
}
/* 오버효과 */
#list_board .list_item a:hover {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-outline-2);
    color: var(--color-def);
    outline: 1px dotted rgb(37, 37, 37);
    outline-offset: -5px;
}
/* 일반형에서 갤러리 요소 감추기 */
.list[id*="board"] .list_thumb,
.list[id*="board"] .list_thumb img {
    display: none;
}

/* ---------- pagination ---------- */
.pagination {
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .numbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.pagination .numbox a {
    width: 30px;
    height: 30px;
}
.pagination .numbox a > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--fs-xs);
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline);
    border-right: 2px solid var(--color-window-outline);
}
.pagination .numbox a:hover > span {
    border-top: 2px solid var(--color-window-shadow);
    border-left: 2px solid var(--color-window-shadow);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
    color: #fff;
}
.pagination .numbox a > span.selected {
    border-top: 2px solid var(--color-window-shadow);
    border-left: 2px solid var(--color-window-shadow);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
    color: #fff;
}
.pagination > div[class*='pagination_'] {
    width: 30px;
    height: 30px;
}
.pagination > div[class*='pagination_'] > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%; 
    color: #fff;
}
.pagination > div[class*='pagination_'] a:hover {
    color: #fff;
}
.pagination > div[class*='pagination_'] > a[class*='no-more-'] {
    display: none !important;
}

/* ---------- guestbook & comment ---------- */
#tt-body-guestbook .pagination {
    display: none;
}
.comment {
    display: none;
}
.comment .tt-comment-cont {
    padding-left: 0;
    padding-right: 0;
}
/* reset */
body :is(.tt-thumbnail) {
    width: 45px;
    height: 45px;
    border-radius: 0;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-shadow);
    border-right: 2px solid var(--color-window-shadow);
}
body :is(.tt-wrap-cmt .tt_desc) {
    font-family: var(--font-def) !important;
    font-size: inherit !important;
    line-height: inherit !important;
    font-weight: inherit !important;
}
body :is(.tt-wrap-cmt .tt-link-user),
body :is(.tt-txt-mention) {
    font-family: var(--font-def) !important;
    font-size: var(--fs-xs); 
    line-height: inherit !important;
}
body :is(.tt-wrap-cmt .tt-link-user) {
    color: var(--color-def);
    font-weight: var(--fw-boldEx);
}
body :is(.tt-txt-mention) {
    color: var(--color-def) !important;
    background: none !important;
    font-weight: var(--fw-boldEx);
}
body :is(.tt-wrap-info) {
    padding-top: 5px;
    align-items: flex-start;
    flex-direction: column;
}
body :is(.tt-wrap-cmt .tt_date) {
    font-family: var(--font-def) !important;
    font-size: var(--fs-s);
    line-height: inherit !important;
    color: var(--color-def);
    padding-bottom: 5px;
    padding-top: 0;
}
body :is(.tt-wrap-cmt .tt-link-comment) {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-def);
    padding: 2px 5px;
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-line);
}
body :is(.tt-wrap-cmt .tt-link-comment:hover) {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
    color: var(--color-point);
}
body :is(.tt-wrap-cmt .tt-wrap-link-comment) {
    padding-left: 0;
    transition: var(--transition);
    line-height: inherit !important;
}
body :is(.tt-list-reply-comment .tt-wrap-info) {
    align-items: flex-end;
}
body :is(.tt-link-comment .tt_txt_g) {
    line-height: inherit !important;
    font-family: var(--font-bit) !important;
    font-size: var(--fs-nav);
    color: #fff !important;
    padding-top: 0px;
}
body :is(.tt-link-comment .tt_num_g) {
    display: none;
}
.tt-item-reply .tt_cmt_info .tt_txt_g {
    font-family: var( --font-en), var(--font-ko), sans-serif !important;
    font-size: var(--fs-s) !important;
    line-height: inherit !important;
    color: var(--color-point) !important;
    font-weight: var(--fw-bold);
}
body :is(.tt-list-reply > .tt-item-reply) {
    border-top: 0;
}
body :is(.tt-item-reply .tt-list-reply-comment) {
    border-top: 0;
}
body :is(.tt-list-reply > .tt-item-reply:not(:last-child)) {
    border: 0;
}
body :is(.tt-list-reply-comment > .tt-item-reply) {
    padding: 15px 20px 15px 0;
    border-top: 0;
    border-bottom: var(--inline-line-width) solid var(--line-height);
}
.tt-list-reply-comment .tt-item-reply:before {
    display: none;
}
body :is(.tt-item-reply .tt-list-reply-comment) {
    margin: 0;
}
body :is(.tt-item-reply .tt-wrap-cmt > .tt-box-thumb) {
    margin-right: 0;
}
body :is(.tt-item-reply .tt-box-content) {
    width: calc(100% - 50px);
    padding-top: 3px;
}
body :is(.tt-item-reply .tt-button-modify) {
    opacity: .45;
}
body :is(.tt-area-reply) {
    margin-bottom: 0;
}
body :is(.tt-list-reply) {
    border: 0;
    display: flex;
    flex-direction: column-reverse;
}
.tt-wrap-info .tt_date+.tt-wrap-link-comment:before {
    display: none !important;
} 
body :is(.tt-box-textarea .tt_txt_user) {
    display: none;
}
.tt_item_secret>.tt-wrap-cmt .tt_desc {
    color: var(--color-def);
}
/* 관리 */
body :is(.tt-box-modify-open .tt-list-modify) {
    border: 2px solid var(--color-window-line);
    padding: 2px;
    box-shadow: 2px 2px 0px var(--color-window-shadow);
    background: #fff;
    overflow: hidden;
}
body :is(.tt-box-modify-open .tt-list-modify > li > a) {
    font-size: var(--fs-s);
    background: var(--color-window-bg);
    padding: 10px 15px;
    line-height: inherit;
    color: var(--color-gray);
}
body :is(.tt-box-modify-open .tt-list-modify > li > a:hover) {
    background: var(--color-window-bar);
}
/* 핀고정 맨위로 */
.tt-item-reply:not(.rp_general) {
    order: 1;
}
/* 버튼류 */
body :is(.tt-btn_register), 
body :is(.tt-btn-cancel) {
    position: relative;
    color: transparent;
    border: 0;
    width: 35px;
    height: 35px;
    background: none;
}
body :is(.tt-btn_register:disabled) {
    background: none;
    border: 0;
}
body :is(.tt-btn_register:hover) {
    background: none;
    border: 0;
}
body :is(.tt-btn-cancel) {
    min-width: 0;
    line-height: inherit;
    font-size: inherit;
    margin-right: 3px;
}
.tt-btn-cancel::before {
    position: absolute;
    left: 6px;
    font-family:var(--font-icon);
    font-size: 20px;
    content: '\f429';
    color: var(--color-gray);
}
.tt-btn_register::before {
    position: absolute;
    left: 6px;
    font-family: var(--font-icon);
    font-size: 20px;
    content: '\eb1e';
    color: var(--color-point);
}
.tt-btn_register:disabled:before {
    color: var(--color-gray);
}
body :is(.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-gray);
}
.tt-box-write input[type='checkbox']:checked+.tt-xe-input-helper::before {
    content: '\eae2';
    color: var(--color-point);
}
/* 이전 댓글 더보기 */
body :is(.tt_btn_prev_more) {
    font-size: var(--fs-nav);
    font-family: var(--font-bit);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    line-height: 35px;
    color: var(--color-def);
    border-style: solid;
    border-width: 2px;
    border-top-color: var(--color-window-outline-2);
    border-left-color: var(--color-window-outline-2);
    border-right-color: var(--color-window-line);
    border-bottom-color: var(--color-window-line);
    cursor: pointer;
    transform: translateZ(0);
    will-change: border-color;
    background: none;
}
body :is(.tt_btn_prev_more:hover) {
    border-top-color: var(--color-window-line);
    border-left-color: var(--color-window-line);
    border-right-color: var(--color-window-outline-2);
    border-bottom-color: var(--color-window-outline-2);
    color: var(--color-def);
}
/* ----- */
.tt-box-total { 
    display: none;
}
.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-wrap-cmt .tt-box-modify {
    top: 18px;
    left: -20px;
    right: unset;
}
.tt-wrap-cmt .tt-box-modify .tt-list-modify {
    left: 0;
    right: unset;
    border-radius: 0;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-modify .tt-list-modify {
    right: 0;
    left: unset;
}
.tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-modify {
    right: 0px;
    left: unset;
}
.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-wrap-cmt .tt-box-content .tt-link-user {
    max-width: 100%;
}
.tt-wrap-cmt .tt_desc {
    display: inline-block;
    color: var(--color-def);
    background-color: var(--color-window-shadow);
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-outline-2);
    padding: 4px 8px;
} 
.tt-list-reply-comment .tt_desc {
    display: inline-block;
    padding: 4px 8px;
    background-color: var(--color-window-bar);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
}
/* 글쓰기폼 */
.tt-thumbnail:after {
    display: none !important;
}
body :is(.tt-area-write) {
    padding-bottom: 15px;
}
.tt-box-textarea .tt-cmt[contenteditable=true]:empty:before {
    color: var(--color-gray);
}
body :is(.tt-box-textarea) {
    background-color: #fff;
    color: var(--color-def);
    padding: 4px 8px;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-outline-2);
}
body :is(.tt-box-textarea .tt-inner-g) {
    border: 0;
    max-height: 110px;
    padding: 0;
    overflow-y: auto;
}
.tt-area-write .tt-box-account input::placeholder {
    color: var(--color-gray);
}
body :is(.tt-area-write .tt-box-account input) {
    background-color: #fff;
    color: var(--color-def);
    font-size: var(--fs-def);
    padding: 4px 8px;
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-outline-2);
}
body :is(.tt-area-write .tt-box-account input:hover),
body :is(.tt-area-write .tt-box-account input:focus) {
    background-color: #fff;
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-line);
}
body :is(.tt_txt_user) {
    display: none;
}
/* 아이콘류 */
body :is(.tt-item-reply .tt_cmt_info .tt_ico_fixed),
body :is(.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';
    font-family: var(--font-icon);
    color: var(--color-gray);
    top: 10px;
    left: 3px;
}
.tt_img_area_reply.tt_ico_fixed:before {
    content: '\f68d';
    font-family: var(--font-icon);
    color: var(--color-point);
    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 {
    color: var(--color-point) !important;
}
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
    font-weight: var(--fw-bold) !important;
    background-color: var(--color-window-bar);
}
.tt-box-meta .tt_img_area_reply.tt_ico_fixed:before {
    content: '\f68e';
    font-family: var(--font-icon);
    color: var(--color-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-point);
}
/* 댓글 */
body :is(.tt-box-textarea textarea, .tt-box-textarea div) {
    background-color: transparent;
    font-size: var(--fs-def) !important;
    line-height: var(--line-height) !important;
}

/* ---------- article ---------- */
article .article_container {
    word-wrap: break-word;
    position: relative;
    padding: 5px 10px 10px 10px;
}
article .article_info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
article .article_title {
    width: 100%;
    position: relative;
    font-size: var(--fs-m);
    font-weight: var(--fw-boldEx);
    padding-right: 25px;
}
article .admin_btn { 
    background-color: transparent;
    font-size: var(--fs-s);
    color: var(--color-gray);
}
article .article_admin_btn {
    position: absolute;
    z-index: 9;
    top: 4px;
    right: 0px;
    display: inline-flex;
}
article .article_admin_btn > i {
    color: var(--color-gray);
    transition: var(--transition);
}
article .article_admin_btn.open > i {
    transform: rotate(90deg);
}
article .article_admin_wrap {
    position: relative;
}
article .article_admin_wrap > ul {
    display: none;
    position: absolute;
    overflow: hidden;
    top: 15px;
    right: 0;
    width: 100px;
    background: #fff;
    border-radius: var(--border-radius-min);
    border: var(--inline-line-width) solid var(--color-line);
}
article .article_admin_wrap > ul > li > a {
    display: block;
    padding: 10px 15px;
    font-size: var(--fs-s);
    color: var(--color-gray);
    transition: var(--transition);
}
article .article_admin_wrap > ul > li:hover > a {
    background-color: var(--color-bgGray);
}
article .article_admin_wrap > ul.open {
    display: block;
}
@media only screen and (max-width: 1024px) {
    article .article_admin_btn {
        display: none;
    }
    article .article_title {
    padding-left: 0;
    padding-right: 0;
    }
}
article .article_content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 25px;
}
article .article_content .content_style {
    width: 100%;
    padding-bottom: 15px;
}
/* 이전글, 다음글 */
.article_page {
    width: 100%;
    display: flex;    
    padding: 0;
}
.article_page .button {
    padding: 0 6px;
    min-width: 0;
    color: #fff;
    font-size: var(--fs-nav);
    font-family: var(--font-bit);
}
#cm_btn {
    min-width: 40px;
}
/* 댓글 버튼 */
article .article_content .article_button {
    position: absolute;
    bottom: 12px;
    right: 10px;
    z-index: 1;
}
article .article_content .article_button button {
    background: none;
    outline: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    color: var(--color-gray);
}
article .article_content .article_button button:hover,
article .article_content .article_button button.active {
    color: var(--color-point);
}
article .article_content .article_button button > span {
    font-weight: var(--fw-bold);
    padding-left: 3px;
    font-size: var(--fs-xs);
    font-style: italic;
    line-height: 1.8;
}
/* 네임카드 삭제 */
div[data-tistory-react-app="Namecard"] { display: none; }
/* 신고, 공감 버튼 */
body :is(.container_postbtn) {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 !important;
}
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) {
    border: unset;
    border-radius: unset;
    font-size: inherit !important;
    font-family: var(--font-def) !important;
    line-height: inherit !important;
    color: var(--color-point);
    height: 25px;
    padding: 0 5px;
    background: var(--color-window-bg);
    border-style: solid;
    border-width: 2px;
    border-top-color: var(--color-window-outline-2);
    border-left-color: var(--color-window-outline-2);
    border-right-color: var(--color-window-line);
    border-bottom-color: var(--color-window-line);
    transform: translateZ(0); 
    will-change: border;
}
body :is(.container_postbtn .btn_post:hover) {
  border-top-color: var(--color-window-line);
  border-left-color: var(--color-window-line);
  border-right-color: var(--color-window-outline-2);
  border-bottom-color: var(--color-window-outline-2);
}
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: 0;
    display: none;
}
body :is(.container_postbtn .btn_post .ico_share) {
    display: none;
    margin: unset;
    background: none;
    font-size: inherit !important;
    font-family: var(--font-def) !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: var(--font-def) !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: var(--font-def) !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-def);
}
/* 공감 눌렀을 때 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon.like_on)::before {
    content: "\eabe";
    margin-right: 5px;
    color: #f25858; 
}
@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-def);
    display: none;
}
/* 공유하기 버튼 */
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-def);
} 
/* 공유하기/더보기 레이어 */
body :is(.container_postbtn .bundle_post) {
    border: 2px solid var(--color-window-line);
    padding: 2px;
    box-shadow: 2px 2px 0px var(--color-window-shadow);
    overflow: hidden;
    background: #fff;
}
/* 공유하기/더보기 레이어 아이템 */
body :is(.container_postbtn .layer_post .btn_mark) {
    padding: 10px 15px;
    background: var(--color-bg);
    color: var(--color-gray);
}
body :is(.container_postbtn .layer_post .btn_mark:hover) {
    background: var(--color-window-bar);
}
/* 통계 버튼 */
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-def);
    display: none;
} 
/* 더보기 버튼 (관리자) */
body :is(.container_postbtn .btn_post.btn_etc1)::before {
    font-family: var(--font-icon) !important;
    content: '\f69e';
    color: var(--color-def);
    position: relative;
    top: -2px;
}
/* 더보기 버튼 (방문자) */
body :is(.container_postbtn .btn_post.btn_etc2)::before {
    font-family: var(--font-icon) !important;
    content: '\f69e';
    color: var(--color-def);
    position: relative;
    top: -2px;
}
/* 구독 버튼 */
body :is(.container_postbtn .btn_menu_toolbar) {
    display: none;
}
.wrap_btn:not(.wrap_btn_etc) {
    display: none !important;
}
/* 본문 하단 */
.article_footer {
    display: flex;
    justify-content: space-between;
    padding-top: 35px;
}
@media only screen and (max-width:660px) {
    .article_footer {
        padding-top: 25px;
    }
}
/* 본문 스타일 */
.article_content u span {
    background-color: transparent !important;
}
.article_content u {
    transition: var(--transition);
    text-underline-position : under;
}
.article_content u:hover {
    background-color: var(--color-window-bar);
    color: var(--color-def);
}
.article_content b {
    font-weight: var(--fw-bold);
}
.content_style {
    word-break: break-all;
    text-align: justify;
    line-height: 1.8;
    letter-spacing: .05px;
}
/* 링크 */
article a[rel="noopener"] {
    font-weight: var(--fw-bold);
    font-style: italic;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition);
    color: var(--color-def);
}
article a[rel="noopener"]::before {
    font-family: var(--font-icon);
    content: "\eade";
    font-weight: normal;
    font-style: normal;
    font-size: var(--fs-def);
    margin: 3px;
}
article a[rel="noopener"]:hover { 
    background-color: var(--color-window-bar);
    color: var(--color-def);
}
#tt-body-page figure[data-ke-type='opengraph'], 
#tt-body-index figure[data-ke-type='opengraph'] {
    margin-top: 15px;
}
#tt-body-page figure[data-ke-type='opengraph'] a, 
#tt-body-index figure[data-ke-type='opengraph'] a {
    width: 500px;
    max-width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--color-window-bg);
    transition: none;
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-line);
    color: var(--color-def);
}
#tt-body-page figure[data-ke-type='opengraph'] a:hover, 
#tt-body-index figure[data-ke-type='opengraph'] a:hover {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
} 
figure[data-ke-type='opengraph'] div.og-image {
    width: 140px;
    border: 0;
}
figure[data-ke-type='opengraph'] div.og-text {
    left: 140px;
    padding: 15px 25px;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-title {
    font-family: var(--font-def) !important;
    max-width: 100% !important;
    font-size: var(--fs-def);
    transition: var(--transition);
    line-height: var(--line-height) !important;
    margin-bottom: 0 !important;
    font-style: normal;
    font-weight: var(--fw-bold);
    color: var(--color-def);
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc, 
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-desc {
    color: var(--color-def);
    font-family: var(--font-ko);
    font-size: var(--fs-def);
    line-height: var(--line-height);
}
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host, 
#tt-body-index figure[data-ke-type='opengraph'] div.og-text p.og-host {
    position: static !important;
    font-family: var(--font-def) !important;
    color: var(--color-def);
    font-size: var(--fs-s);
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis; 
    word-break: break-all;
    font-style: normal;
    font-weight: var(--fw-def);
}
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title, 
#tt-body-index figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title {
    color: var(--color-def);
}
@media (max-width: 600px) {
    figure[data-ke-type='opengraph'] div.og-image {
        width: 80px;
    }
    #tt-body-page figure[data-ke-type='opengraph'] div.og-text,
    #tt-body-index figure[data-ke-type='opengraph'] div.og-text {
        left: 80px;
        padding: 15px;
    }
    #tt-body-page figure[data-ke-type='opengraph'] a, 
    #tt-body-index figure[data-ke-type='opengraph'] a {
        height: 80px;
    }
}
/* ul, li, ol */
.article_content ol li::marker,
.article_content ol li,
.article_content ul li {
    transition: var(--transition);
}
.article_content ul li::marker {
    font-size: calc(var(--fs-def) + 3px); 
}
.article_content ul,
.article_content ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
}
.article_content ol li:hover,
.article_content ul li:hover {
    color: var(--color-point);
}
.article_content ol li:hover::marker,
.article_content ul li:hover::marker {
    color: var(--color-point);
}
/* table */
.article_content table img,
.article_content table figure {
    vertical-align: top;
    margin-bottom: 0 !important;
}
/* 인용구 공통 */
#tt-body-page blockquote {
    margin: 0 !important;
}
/* 접은글 */
div .btn-toggle-moreless:before,
div .btn_more:before {
    font-family: var(--font-icon);
    content: '\fb2a';
    padding-right: 5px;
    color: var(--color-def);
}
div[data-ke-type='moreLess'].open .btn-toggle-moreless:before,
div[data-ke-type='moreLess'].open .btn_less:before {
    font-family: var(--font-icon);
    content: '\fb2d';
    padding-right: 5px;
    color: var(--color-def);
}
.btn-toggle-moreless,
.btn_more,
.btn_less {
    font-size: var(--fs-def) !important;
    margin: 0 !important;
    outline: none !important;
    height: auto !important;
}
.btn-toggle-moreless,
.btn_more {
  background: var(--color-window-bg);
  border-style: solid;
  border-width: 2px !important;
  border-top-color: var(--color-window-outline-2);
  border-left-color: var(--color-window-outline-2);
  border-right-color: var(--color-window-line);
  border-bottom-color: var(--color-window-line);
  padding: 0 8px;
  color: var(--color-def) !important;
  display: inline-block; 
  font-family: var(--font-bit) !important;
  cursor: pointer;
  transform: translateZ(0);
  will-change: border-color, box-shadow;
}
.btn-toggle-moreless:hover::before {
  color: var(--color-def);
}
.btn-toggle-moreless:hover,
.btn_more:hover {
  border-top-color: var(--color-window-line);
  border-left-color: var(--color-window-line);
  border-right-color: var(--color-window-outline-2);
  border-bottom-color: var(--color-window-outline-2);
  color: var(--color-def) !important;
}
/* open 상태 */
[data-ke-type='moreLess'].open .btn-toggle-moreless,
[data-ke-type='moreLess'].open .btn_less {
  padding: 0 8px;
  border-top-color: var(--color-window-line);
  border-left-color: var(--color-window-line);
  border-right-color: var(--color-window-outline-2);
  border-bottom-color: var(--color-window-outline-2);
  color: var(--color-def) !important;
}
/* open + hover */
[data-ke-type='moreLess'].open .btn-toggle-moreless:hover,
[data-ke-type='moreLess'].open .btn_less:hover {
  border-top-color: var(--color-window-line);
  border-left-color: var(--color-window-line);
  border-right-color: var(--color-window-outline-2);
  border-bottom-color: var(--color-window-outline-2);
  color: var(--color-def);
}
[data-ke-type='moreLess'] .btn-toggle-moreless {
  display: inline-block;
  margin: 5px 0;
  font-family: var(--font-bit);
}
/* 내용 */
.moreless-content {
  background: #fff;
  border-style: solid;
  border-width: 2px !important;
  border-top-color: var(--color-window-outline);
  border-left-color: var(--color-window-outline);
  border-bottom-color: var(--color-window-line);
  border-right-color: var(--color-window-line);
  padding: 5px 10px;
  margin: 0 !important;
}
.moreless-content:hover {
  border-top-color: var(--color-window-line);
  border-left-color: var(--color-window-line);
  border-right-color: var(--color-window-outline);
  border-bottom-color: var(--color-window-outline);
}
.btn-toggle-moreless:focus-visible,
.btn_more:focus-visible,
.btn_less:focus-visible {
  outline: 2px dotted var(--color-point);
  outline-offset: 2px;
}
.moreless_content .btn_less {
    margin: 5px 0 !important;
}
.moreless_content .btn_less:last-child {
    display: none;
}
/* 인용구 reset */
blockquote,
blockquote p {
    font-size: inherit !important;
    line-height: 1.8 !important;
    margin: 12px 0 !important;
}
/* 인용구 1 */
#tt-body-page blockquote[data-ke-style='style1'], 
#tt-body-index blockquote[data-ke-style='style1'] {
    position: relative;
    background: none;
    padding: 25px 0 0 0 !important;
    text-align: center;
    font-style: italic;
}
#tt-body-page blockquote[data-ke-style='style1']::before,
#tt-body-index blockquote[data-ke-style='style1']::before {
    content: '"';
    position: absolute;
    font-family: 'Coustard';
    color: var(--color-def);
    font-size: 36px;
    line-height: 0px;
    top: 0;
    left: calc(50% - 30px);
    transform: rotate(-180deg) translateX(calc(50% - 36px));
    pointer-events: none;
}
#tt-body-page blockquote[data-ke-style='style1'] > span,
#tt-body-index blockquote[data-ke-style='style1'] > span {
    font-family: unset !important;
    color: var(--color-def);
}
/* 인용구 2 */
#tt-body-page blockquote[data-ke-style="style2"],
#tt-body-index blockquote[data-ke-style="style2"] {
    background: var(--color-window-bar) !important;
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-line);
    padding: 5px 10px !important;
    color: var(--color-def) !important;
}
#tt-body-page blockquote[data-ke-style="style2"]:hover,
#tt-body-index blockquote[data-ke-style="style2"]:hover {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
}
/* 인용구 3 */
#tt-body-page blockquote[data-ke-style='style3'],
#tt-body-index blockquote[data-ke-style='style3'] {
    padding: 5px 10px !important;
    color: var(--color-def) !important;
    background: var(--color-window-bg);
    border-top: 2px solid var(--color-window-outline-2);
    border-left: 2px solid var(--color-window-outline-2);
    border-right: 2px solid var(--color-window-line);
    border-bottom: 2px solid var(--color-window-line);
}
#tt-body-page blockquote[data-ke-style='style3']:hover,
#tt-body-index blockquote[data-ke-style='style3']:hover {
    border-top: 2px solid var(--color-window-line);
    border-left: 2px solid var(--color-window-line);
    border-right: 2px solid var(--color-window-outline-2);
    border-bottom: 2px solid var(--color-window-outline-2);
}
#tt-body-page blockquote[data-ke-style='style3'] > span,
#tt-body-index blockquote[data-ke-style='style3'] > span {
    font-family: unset !important;
}
/* 제목용 */
#tt-body-page h2[data-ke-size],
#tt-body-page h3[data-ke-size],
#tt-body-page h4[data-ke-size],
#tt-body-index h2[data-ke-size],
#tt-body-index h3[data-ke-size],
#tt-body-index h4[data-ke-size] {
    font-weight: var(--fw-bold);
}
#tt-body-page h2[data-ke-size],
#tt-body-index h2[data-ke-size] {
    font-size: calc(var(--fs-l) + 2px);
}
#tt-body-page h3[data-ke-size],
#tt-body-index h3[data-ke-size] {
    font-size: var(--fs-l);
}
#tt-body-page h4[data-ke-size],
#tt-body-index h4[data-ke-size] {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 12px 0;
    border-left: 3px solid var(--color-point);
    font-size: var(--fs-m);
    color: var(--color-point);
}
/* 첨부파일 */
figure.fileblock,
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
    border: 0;
}
figure.fileblock .image,
#tt-body-page figure.fileblock .image,
#tt-body-index figure.fileblock .image {
    display: none;
}
figure.fileblock .desc,
#tt-body-page figure.fileblock .desc,
#tt-body-index figure.fileblock .desc {
    position: static;
    max-width: 100%;
}
figure.fileblock .name,
#tt-body-page figure.fileblock .name,
#tt-body-index figure.fileblock .name {
    height: auto;
    color: var(--color-def);
    font-size: var(--fs-s);
}
figure.fileblock .filename,
#tt-body-page figure.fileblock .filename,
#tt-body-index figure.fileblock .filename {
    height: auto;
    margin: 0;
}
figure.fileblock .size,
#tt-body-page figure.fileblock .size,
#tt-body-index figure.fileblock .size {
    font-size: var(--fs-xs);
    color: var(--color-def);
    margin: 0;
}
figure.fileblock a,
#tt-body-page figure.fileblock a,
#tt-body-index figure.fileblock a {
    display: inline-flex;
    max-width: 100%;
    position: relative;
    height: auto;
    padding: 6px 25px 8px 50px;
    background: var(--color-window-bg);
    border-top: 1px solid var(--color-window-line);
    border-left: 1px solid var(--color-window-line);
    border-right: 1px solid var(--color-window-outline-2);
    border-bottom: 1px solid var(--color-window-outline-2);
    box-shadow: inset 1px 1px var(--color-window-bar-bg), 1px 0 var(--color-window-shadow), 0 1px var(--color-window-shadow), 1px 1px var(--color-window-shadow);
}
figure.fileblock a::after,
#tt-body-page figure.fileblock a::after,
#tt-body-index figure.fileblock a::after {
    display: none;
}
#tt-body-page figure.fileblock a::before,
#tt-body-index figure.fileblock a::before {
    font-family: "tabler-icons";
    font-size: 26px;
    color: var(--color-def);
    content: "\f912";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#tt-body-page figure.fileblock a:hover,
#tt-body-index figure.fileblock a:hover {
    border-top: 1px solid var(--color-window-shadow);
    border-left: 1px solid var(--color-window-shadow);
    border-right: 1px solid var(--color-window-line);
    border-bottom: 1px solid var(--color-window-line);
    box-shadow: inset 1px 1px grey;
}

/* ---------- protected ---------- */
.protected {
    width: 360px;
    max-width: 90%;
    padding: 10px 0;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-text);
}
.protected_alert {
    word-break: keep-all;
}
.protected .window_input_wrap {
    margin-top: 35px;
}
/* 중앙 정렬 */
.protected {
    text-align: center;
}
.protected_pw {
    justify-content: center;
}

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

.notice .article_container {
    word-wrap: break-word;
    position: relative;
    padding: 5px 10px 55px 10px;
    color: var(--color-def);
}
.notice_article_date {
    font-size: var(--fs-def);
    font-weight: var(--fw-bold);
    padding-bottom: 25px;
}
.notice article {
    padding-top: 25px;
}
.notice:not(:last-child) {
     padding-bottom: 25px;
 }
/* ---------- tooltip ---------- */
.tooltip {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--fs-xs);
    background: #fff;
    border: var( --inline-line-width) solid var(--color-line);
    color: var(--color-point);
    border-radius: var(--border-radius-min);
    padding: 3px 10px;
    font-weight: var(--fw-bold);
    z-index: 9999;
}



/* ------------------------------------------------- */
/* ---------- 반응형 ---------- */
/* ------------------------------------------------- */
@media only screen and (max-width:1024px) {
    body {
        background-attachment: unset;
    }
    #window {
        background-position: left center;
        background-attachment: unset;
    }
    :root {
        --game-size: 100%;
    }
    #window {
        max-width: 100%;
    }
    #mobile { 
        display: block; 
    }
    .taskbar {
        position: fixed;
    }
}
@media only screen and (max-width:766px) {
    .loader,
    #window {
        background-image: url(./images/han_bg_mo.png);
    }
    .loader_icons img {
        width: 45px;
    }
    .main_logo {
        bottom: -85px;
    }
    .main_logo a {
        width: 260px;
    }
    #layer_dday {
        right: 15px;
    }
    #layer_banner {
        left: 15px;
        top: unset;
        bottom: 65px;
    }
    #layer_banner .content_scroll {
        height: 150px;
    }
    div[id^='layer_memo'] .window_style_box {
        height: 200px;
    }
    .category_wrap .buttons {
        display: none;
    }
    .position_title {
        padding-top: 10px;
    }
    .category_position > p {
        display: none;
    }
    nav.layer > ul > li > ul > li {
        width: 60px;
    }
    nav.layer {
        padding-left: 90px;
    }
    .position_line {
        width: 100px;
    }
    .position_title {
        padding-left: 15px;
        padding-right: 15px;
    }
    .category_position {
        background-size: 100%;
        width: 100px;
    }
    .background_icon {
        width: calc(100% - 30px);
        top: 15px;
        left: 15px;
    }
    .background_icon_list {
        flex-direction: row;
        gap: 15px 0;
    }
    .background_icon_list > li {
        width: 80px;
    }
    .cur_program,
    .tooltip {
        display: none !important;
    }
    /* list */
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(2, 1fr);
    }
    #list_gal_3 .list_container {
        grid-template-columns: repeat(1, 1fr);
    }
    #list_web_1 .list_item > a {
        flex-direction: column;
    }
    #list_web_1 .list_item .list_thumb {
        width: 100%;
        height: 180px;
    }
    #list_web_1 .list_item .list_content {
        width: 100%;
        padding: 0;
    }
    #list_web_1, #list_gal_1, #list_gal_2 {
        padding-right: 0;
        padding-left: 0;
    }
    #list_web_1 .list_item:last-child {
        padding-bottom: 0;
    }
    #list_web_1 .list_item .list_category, 
    #list_web_1 .list_item .list_date {
        width: 100%;
    }
    #list_web_1 .list_item .list_category {
        padding-left: 0;
        padding-top: 3px;
    }
    #list_gal_2 .list_item .list_title {
        -webkit-line-clamp: 2;
    }
    #list_gal_1 .list_item .list_title,
    #list_board .list_item .list_title,
    #list_board .list_item .list_title {
        overflow: hidden;
        white-space: normal;
        text-overflow: ellipsis;
        display: -webkit-box; 
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        word-break: break-all;
    }
    /* 사이드 여백 */
    .tt-comment-cont, .taglog_content {
        padding-top: 5px;
        padding-left: 5px;
        padding-right: 5px;
    }
    /* 방명록 */
    .tt-area-write {
        flex-direction: column; 
    }
    .tt-box-thumb {
        margin-bottom: 10px;
    } 
}
@media only screen and (max-width: 360px) {
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(1, 1fr);
    }
}