@charset "UTF-8";
   
/* ------------------------------------------------- */
/* 웹폰트 */ 
/* ------------------------------------------------- */
/* @import로 시작 */ 
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
/*  
    폰트 패밀리명을 언어와 수정 범위에 맞게 변경해주세요 !
    지원하지않는 문자가 있는 웹폰트라면 '한국어', '다른 외국어' 순으로 패밀리명을 추가해주세요.
    예시) 'Pretendard Variable', 'M PLUS 1p';
*/
:root {
    /* 한국어 */  
    --font-ko: 'Pretendard Variable';
    /* 영문 */ 
    --font-en: 'Inter'; 
    /* 일본어 */ 
    --font-jp: 'M PLUS 1p'; 
    /* def */
    --font-def: var(--font-en), var(--font-ko), var(--font-jp), Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html, body, textarea, button, code {
    font-family: var(--font-def);
}
/* ------------------------------------------------ */


/* - - - BGM player - - - */
#bgm-player {
    width: 140px;
    height: 200px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99999;
    overflow: hidden;  
    background-color: var(--color-window-bg);
    border: 2px solid var(--color-window-line);
    box-shadow: 2px 2px 0px var(--color-window-shadow);
}
#bgm-player.minimized {
	width: 25px !important;
	height: 25px !important;
}
#bgm-player.expanded {
	width: 140px !important;
	height: 200px !important;
}
/* - - - BGM player - - -*/
 #entry0Comment {
    width: 100%;
     height: 100%;
     display: flex;
    align-items: flex-end;
 }
/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root {
    /* 색상 */ 
    --color-pointBg: #f8f8f8;
    --color-bg: #f8f8f8;
    --color-contBg: #e2e2e2;
    --color-sideBg: #f1f1f1;
    --color-barBg: #f8f8f8;

    --color-hvBg: #dddddd;

    --color-def: #242424;
    --color-line: #ebebeb;
    --color-gray: #989898;
    --color-bgGray: #f8f8f8;

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

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

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

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

    /* icons */
    --wb-mini-icons: url(./images/wb_mini_icons_v2.png);
    --wb-dock-icons: url(./images/wb_dock_icons.png);

    --wb-mini-appleLogo: -10px -156px;
    --wb-mini-user: -10px -10px;
    --wb-mini-switch: -10px -44px;
    --wb-mini-wifi: -10px -78px;
    --wb-mini-pn: -10px -112px;
    --wb-mini-folder: -10px -200px;

    --wb-dock-appStore: -10px -10px;
    --wb-dock-cal: -10px -66px;
    --wb-dock-freeform: -10px -122px;
    --wb-dock-contacts: -10px -178px;
    --wb-dock-folder: -10px -234px;
    --wb-dock-appleTv: -10px -290px;
    --wb-dock-faceTime: -10px -346px;
    --wb-dock-launchPad: -10px -402px;
    --wb-dock-mail: -10px -458px;
    --wb-dock-maps: -10px -514px;
    --wb-dock-finder: -10px -570px;
    --wb-dock-message: -10px -626px;
    --wb-dock-reminders: -10px -682px;
    --wb-dock-music: -10px -738px;
    --wb-dock-safari: -10px -794px;
    --wb-dock-news: -10px -850px;
    --wb-dock-trash: -10px -906px;
    --wb-dock-photos: -10px -962px;
    --wb-dock-notes: -10px -1018px;
}
.article_content {
    font-size: var(--fs-article);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
.ic{
    display: block;
    background-repeat: no-repeat;
}
/* mini icons */
.ic.mini {
    background-image: var(--wb-mini-icons);
}
.ic.mini.ic_s {
    width: 14px;
    height: 14px;
}
.ic.mini.ic_m {
    width: 24px;
    height: 24px;
}
.ic.mini.ic_l {
    width: 33px;
    height: 32px;
}
.ic.mini.ic_appleLogo {
    background-position: var(--wb-mini-appleLogo);
}
.ic.mini.ic_user {
    background-position: var(--wb-mini-user);
}
.ic.mini.ic_switch {
    background-position: var(--wb-mini-switch);
}
.ic.mini.ic_wifi {
    background-position: var(--wb-mini-wifi);
}
.ic.mini.ic_pn {
    background-position: var(--wb-mini-pn);
}
.ic.mini.ic_folder {
    background-position: var(--wb-mini-folder);
}
/* dock icons */
.ic.dock {
    background-image: var(--wb-dock-icons);
    width: 36px;
    height: 36px;
}
.ic.dock.ic_appStore {
    background-position: var(--wb-dock-appStore);
}
.ic.dock.ic_cal {
    background-position: var(--wb-dock-cal);
}
.ic.dock.ic_freeform {
    background-position: var(--wb-dock-freeform);
}
.ic.dock.ic_contacts {
    background-position: var(--wb-dock-contacts);
}
.ic.dock.ic_folder {
    background-position: var(--wb-dock-folder);
}
.ic.dock.ic_appleTv {
    background-position: var(--wb-dock-appleTv);
}
.ic.dock.ic_faceTime {
    background-position: var(--wb-dock-faceTime);
}
.ic.dock.ic_launchPad {
    background-position: var(--wb-dock-launchPad);
}
.ic.dock.ic_mail {
    background-position: var(--wb-dock-mail);
}
.ic.dock.ic_maps {
    background-position: var(--wb-dock-maps);
}
.ic.dock.ic_finder {
    background-position: var(--wb-dock-finder);
}
.ic.dock.ic_reminders {
    background-position: var(--wb-dock-reminders);
}
.ic.dock.ic_music {
    background-position: var(--wb-dock-music);
}
.ic.dock.ic_safari {
    background-position: var(--wb-dock-safari);
}
.ic.dock.ic_news {
    background-position: var(--wb-dock-news);
}
.ic.dock.ic_trash {
    background-position: var(--wb-dock-trash);
}
.ic.dock.ic_photos {
    background-position: var(--wb-dock-photos);
}
.ic.dock.ic_notes {
    background-position: var(--wb-dock-notes);
}
.ic.dock.ic_message {
    background-position: var(--wb-dock-message);
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 마우스 커서 */
/* ------------------------------------------------- */
*, *:focus {
    cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important;
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 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;
}
#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);
}
a, img , button, textarea {
    transition: var(--transition);
}
body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
ul, li {
    list-style: none;
}

#tt-body-page figure.imageblock img, 
figure.imageblock img {
    vertical-align: top;
}

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

img.lazyload:not([src]) {
    visibility: hidden;
}

/* 타플랫폼글 업로드시 본문 박스를 넘어가는 현상 방지 */
div[class*='sheet-coc-rol'] {
    max-width: 100%;
}





/* ------------------------------------------------- */
/* loader */
/* ------------------------------------------------- */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 9999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-point);
    border-radius: 50%; 
    animation: loader 1s 0s linear infinite;
}
.loader span:not(:last-child) {
    margin-right: 10px;
}
.loader span:nth-child(1) {
    animation-delay: 0s; 
}
.loader span:nth-child(2) {
    animation-delay: 0.2s;
}
.loader span:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes loader {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5); 
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* ---------- body ---------- */
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: scroll;
    letter-spacing: .125px;

    /* 배경 */
    background-color: var(--color-bg);
}
/* 배경관리 */
body.bg-fiexd {
    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;
} 
body.bg-pt {
    background-position: center;
    background-repeat: repeat;
}
body.prevent-scroll {
  overflow: hidden;
}
body { 
    animation: fadein 3.65s;  
    -moz-animation: fadein 3.65s;
    -webkit-animation: fadein 3.65s;
    -o-animation: fadein 3.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; }
}

/* ---------- scrollbar ---------- */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 var(--color-contBg);
    transition: .25s;
}
::-webkit-scrollbar-thumb:hover {
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 var(--color-point);
}
::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: transparent;
}
.mobile_container::-webkit-scrollbar,
.sidebar_container::-webkit-scrollbar {
	display:none;
}

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

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

/* ---------- layer ---------- */
:root[data-layer-main="max"] .layout_wrap {
    width: var(--container-size-max); 
}
:root[data-layer-main="min"] .layout_wrap {
    width: var(--container-size); 
}
.layer {
    position: fixed;
    border-radius: var(--border-radius);
    box-shadow: rgba(9, 11, 12, 0.15) 0px 0px 25px;
    width: 300px;
    background: #fff;
    /* 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;
    pointer-events: none;
}
.layer.open {
    opacity: 1 !important;
    transform: scale(1);
    pointer-events: auto;
} 
#layer_main {
    /* 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;
    pointer-events: none;
}
#layer_main.open {
    opacity: 1 !important;
    transform: scale(1);
    pointer-events: auto;
}
#layer_profile {
    top: 35dvh;
    right: 8dvw;
}
#layer_message {
    top: 20dvh;
    left: 8dvw;
}
.layer_header {
    height: 30px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-line);
}
.layer_title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.layer_title i {
    font-size: 14px;
}
.layer_title span {
    padding-left: 3px;
    font-weight: var(--fw-bold);
}
.layer_container {
    padding: 15px;
    overflow-y: auto;
    min-height: 300px;
    max-height: 400px;
}
.profile_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile_info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile_info > strong {
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
    padding: 15px 0 10px 0;
}
.profile_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 14px;
  font-weight: var(--fw-bold);
  font-size: var(--fs-s);
  background: linear-gradient(to bottom, #9ec5ff, #c7eaf7);
  border: 1px solid #616163;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: rgba(0, 0, 0, 0.125) 0px 5px 5px;
}
.profile_desc {
    padding-top: 15px;
    text-align: center;
}

.messagebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.message_date {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: var(--color-gray);
    font-size: var(--fs-s);
    padding-bottom: 10px;
}
.message_end_date {
    width: 100%;
    display: inline-block;
    text-align: right;
    color: var(--color-gray);
    font-size: var(--fs-s);
    padding-top: 8px;
    padding-right: 5px;
}
.message_wrap {
    width: 100%;    
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.message_bubble {
    border-radius: 18px;
    background: #448af7;
    color: #fff;
    padding: 6px 12px 8px 12px;
    font-size: var(--fs-m);
}
.message_wrap.end .message_bubble {
    position: relative;
}
.message_wrap.end .message_bubble::before {
    content: '';
    position: absolute;
    width: 17px;
    height: 21px;
    background-image: url(./images/wb_bubble.png);
    background-size: 100%;
    z-index: -1;
    bottom: -5px;
    right: 0;
}

/* ---------- layout ---------- */
/* dock_bar */
.dock_bar {
    position: fixed;
    bottom: 15px;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 10px 5px 10px 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(243, 243, 243, 0.2);
    box-shadow: 0px 0px 5px rgba(0,0,0,.125);
    border-radius: var(--border-radius);
}
.dock_bar > ul {
    display: flex;
    gap: 10px;
    position: relative;
}
.dock_bar > ul:nth-child(2) {
    padding: var(--wb-dock-reminders);
    margin-left: 30px;
}
.dock_bar > ul:nth-child(2)::before {
    content: '';
    position: absolute;
    width: 2px;
    left: -15px;
    height: 100%;
    background: var(--color-gray);
    opacity: .45;
}
.dock_bar > ul > li.active {
    position: relative;
    transition: var(--transition); 
}
.dock_bar > ul > li.active:hover {
    transform: scale(1.2);
} 
/* header_bar */
.header_bar {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    height: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 0 10px;
}
.header_bar > div {
    display: flex;
}
.header_bar > div > ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
.header_left > ul {
    padding-left: 5px;
    font-weight: var(--fw-bold);
}
#clock {
    font-weight: var(--fw-bold);
    margin-left: 10px;
}
.wrap {
    position: relative;
    min-height: 100vh;
}
.dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    opacity: 0; 
    z-index: 9998;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity var(--transition);
    pointer-events: none;
}
.dim.visible {
    opacity: 1;
    pointer-events: auto;
}

/* 2단레이아웃 */
.layout_wrap { 
    width: var(--container-size); 
    margin: 0 auto; 
    display: flex; 
    padding: 65px 0;
    transition: width ease-in-out .35s;
    height: 100dvh;
}
.layout_wrap > .box {
    position: relative;
    width: 100%;
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between;
    flex-wrap: wrap;
    height: 760px;
    max-height: calc(100% - 120px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0px 0px 25px rgba(9,11,12,.15);
    padding: 8px;
    background-color: #fff;
    margin: auto;
}
/* left_container */
.left_container { 
    width: var(--left-container-size);
    background-color: var(--color-bgGray);
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .125);
    border: 3px solid rgba(255,255,255,.45);
}
.left_container .mobile_btn {
    display: none;
}
.left_inner_scroll {
    height: calc(100% - 32px);
    overflow-y: auto;
}
.left_box:not(:last-child) {
    padding-bottom: 15px;
}
.left_box > .section_title {
    position: relative;
    font-weight: var(--fw-bold);
    font-size: var(--fs-def);
    color: var(--color-gray);
    padding: 5px 35px 5px 15px;
}
.left_box > .section_title::before {
    content: '\ea5f';
    position: absolute;
    right: 15px;
    top: 8px;
    font-family: var(--font-icon);
    font-weight: normal;
    font-size: 14px;
    color: var(--color-gray);
}
.left_box > .section_title.open::before {
    transform: rotate(-180deg);
}
/* profile */
.left_box.profile {
    display: flex;
    padding: 15px;
}
.profile_infobox {
    width: calc(100% - 45px);
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile_infobox > p {
    font-size: var(--fs-s);
    color: var(--color-gray);
}
.profile_infobox > h3 {
    font-size: var(--fs-m);
    font-weight: var(--fw-boldEx);
}
.profile_imgbox {
    position: relative;
    height: 200px;
    aspect-ratio: 1 / 1;
    isolation: isolate;
    border-radius: 50%; 
    box-shadow: 0px 5px 5px rgba(0,0,0,.125);
    background-color: #fff; 
    overflow: hidden;
}
.profile_imgbox img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0) scale(1.2);
}
/* search */
.search {
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    width: 100px;
}
.search_wrap { 
    width: 100%; 
    height: 25px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, .125);
    padding: 1px 10px; 
    background: #fff; 
    border-radius: var(--border-radius); 
    border: 0; 
    color: var(--color-gray); 
    display: flex; 
    align-items: center; 
}
.search i { 
    font-size: 14px;
    margin-right: 5px; 
}
.searchform input::placeholder { 
    font-family: var(--font-def); 
    font-size: var(--fs-s); 
    color: var(--color-gray); 
}
.searchform input { 
    font-family: var(--font-def); 
    font-size: var(--fs-s); 
    width:100%; 
    height:100%; 
    text-align:left; 
    border:0; 
    background:none; 
    color: var(--color-gray); 
}
.searchform { 
    width: 100%; 
}
/* content_top */
.content_top {
    position: sticky;
    z-index: 9;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    top: 0;
    left: 0;
    height: 30px;
}
.content_top > .content_title { 
    width: calc(100% - 100px);
    padding-left: 50px;
    position: relative;
    padding-bottom: 3px;
}
.content_top > .content_title > a {
    display: block;
    font-size: var(--fs-def);
    font-weight: var(--fw-boldEx);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* container */ 
#container {
    position: relative;
    width: calc(100% - var(--left-container-size));
    height: 100%;
}
#content { 
    background: #fff;
    position: relative;
    width: 100%;  
    height: 100%;
    margin: 0 auto;
}
.content_inner {
    position: relative;
    height: 100%;
}
.scroll-aria {
    width: 100%;
    height: calc(100% - 30px);
}
.scrollbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    overflow-y: auto;
    overflow-x: hidden;
}
/* circles */
.circles {
    align-items: center;
    gap: 7px;
    padding: 5px 15px;
}
.circles > .circle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.circles > .circle:nth-child(1) {
    background-color: #e55e5d;
}
.circles > .circle:nth-child(2) {
    background-color: #fdb914;
}
.circles > .circle:nth-child(3) {
    background-color: #23b928;
}
/* link */
.link_list,
.category_list {
    display: flex;
    flex-direction: column;
    padding-left: 5px;
    padding-right: 5px;
}
/* navigation bar */
.dropdown_btn { 
    top: 6px;
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 20px;
}
.dropdown_btn::before {
    content: '\ea5f';
    font-family: var(--font-icon);
    color: var(--color-gray);
    font-size: 14px;
    font-weight: normal;
}
.dropdown_btn.open::before {
    transform: rotate(-180deg);
}
nav a {
    display: block;
    font-size: var(--fs-nav);
    font-weight: var(--fw-bold);
}
nav a:hover {
    color: var(--color-def);
}
.link_list > li,
nav > ul > li > ul > li {
    position: relative;
    padding-top: 2px;
    padding-left: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.link_list > li:not(.open):hover,
nav > ul > li > ul > li:not(.open):hover {
    background-color: var(--color-contBg);
}
.link_list > li > a,
nav > ul > li > ul > li > a {
    width: calc(100% - 30px);
    line-height: 22px;
    padding: 0px 5px 3px 0px;
    border-radius: var(--border-radius);
} 
.link_list > li > a::before,
nav > ul > li > ul > li > a::before {
    content: '\faf7';
    font-family: var(--font-icon);
    display: inline-block;
    font-size: 17px;
    font-weight: normal;
    top: 2px;
    position: relative;
    transition: var(--transition);
}
.link_list > li > a:hover::before,
nav > ul > li > ul > li > a:hover::before {
    color: var(--color-point);
}
nav > ul > li > ul > li > ul > li > a {
    padding: 5px 10px;
}
nav .sub_category_list {
    display: none;
    border-radius: var(--border-radius);
    background: var(--color-contBg);
    padding: 0 5px;
    margin-left: 15px;
    margin-bottom: 10px;
}
nav .sub_category_list > li:not(:last-child) {
    border-bottom: 1px solid #d2d2d2;
}
/* reset */
nav > ul > li > ul > li > a,
nav > ul > li > ul > li > ul > li > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.link_tit,
nav > ul > li > ul > li > ul {
    display: none;
}



/* ---------- list style ---------- */
/* list_top */
.at_top_title {
    font-size: var(--fs-m);
    font-weight: var(--fw-bold);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 25px 10px;
}
/* - common - */
.list .list_container {
  display: grid;
}
.list .list_item .list_title {
  position: relative;
  width: 100%;
  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-point);
}
.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-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);
}
.list .list_item .list_thumb > figure > img {
  transition: unset;
  vertical-align: top;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb {
  isolation: isolate;
  border: var(--border-width) solid var(--color-pointBd);
  aspect-ratio: 1/1;
}
.list:not(.list[id*="memo"]) .list_item .list_thumb > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list:not(.list[id*="memo"]) .list_item > a:hover .list_thumb {
  border-color: var(--color-point);
}
.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: 15px;
}
.locked::before {
  content: '\eae2';
  font-family: var(--font-icon) !important;
  position: absolute;
  left: 0;
  font-size: var(--fs-def);
  color: var(--color-def);
  transition: var(--transition);
}
.list[id*='gal_2'] .locked::before {
  color: #fff;
  top: -2px;
}
#list_memo .locked::before,
#list_web .locked::before {
  font-size: var(--fs-m);
}
.list:not(.list[id*='gal_2']) .list_item > a:hover .locked::before {
  color: var(--color-point);
}
.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;
}
/* - 갤러리형_2 - */
.list[id*='gal_2'] .list_container {
  gap: 15px;
}
.list[id*='gal_2'] .list_item {
  position: relative;
}
.list[id*='gal_2'] .list_item .list_info {
  position: absolute;
  bottom: 15px;
  padding: 0 15px;
  z-index: 3;
  width: 100%;
  line-height: 1.5;
  visibility: hidden;
}
.list[id*='gal_2'] .list_item .list_title {
  opacity: 0;
  font-size: calc(var(--fs-def) - 1px);
  color: #fff;
  -webkit-line-clamp: 3;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, .85);
}
.list[id*='gal_2'] .list_item .list_date {
  opacity: 0;
  color: #fff;
}
.list[id*='gal_2'] .list_item .list_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  backdrop-filter: blur(1.5px);
  transition: var(--transition);
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb {
  border-color: var(--color-pointBd) !important;
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb > figure {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}
.list[id*='gal_2'] .list_item > a:hover .list_thumb::after {
  opacity: 0.8;
}
.list[id*='gal_2'] .list_item > a:hover .list_info {
  visibility: visible;
}
.list[id*='gal_2'] .list_item > a:hover .list_title {
  opacity: 1;
}
.list[id*='gal_2'] .list_item > a:hover .list_date {
  opacity: 0.65;
}
/* 원형 썸네일 */
#list_gal_2_circle .list_item .list_thumb {
  border-radius: 50%;
}
#list_gal_2_circle .list_item .list_info {
  top: 50%;
  bottom: unset;
  transform: translateY(-50%);
  justify-content: center;
}
#list_gal_2_circle .list_item .list_title {
  text-align: center;
  -webkit-line-clamp: 1;
}
/* - 갤러리형_3 - */
#list_gal_3 .list_container {
  gap: 15px;
}
#list_gal_3 .list_item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: var(--border-width) solid var(--color-pointBg);
  border-radius: var(--border-radius);
}
#list_gal_3 .list_item .list_thumb {
  width: 60px;
  border-radius: 50%;
}
#list_gal_3 .list_item .list_info {
  width: calc(100% - 60px);
  padding-left: 10px;
}
#list_gal_3 .list_item .list_title {
  padding-bottom: 3px;
  -webkit-line-clamp: 1;
}
#list_gal_3 .list_item > a:hover {
  border-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;
}
/* - 일반형_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;
}
/* - 일반형_2 - */
#list_board_box .list_container {
  row-gap: 15px;
}
#list_board_box .list_item > a {
  display: block;
  padding: 15px 20px;
  border: var(--border-width) solid var(--color-subBg);
  border-radius: var(--border-radius-min);
  overflow: hidden;
}
#list_board_box .list_item > a:hover {
  background-color: var(--color-pointBd);
  border-color: var(--color-point);
}
/* 일반형 공통 */
.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_memo {
  padding: 0 15px;
}
#list_memo .list_item {
  padding: 20px 15px;
  border-bottom: var(--inline-line-width) solid var(--color-line);
}
#list_memo .list_item:first-child {
  border-top: var(--inline-line-width) solid var(--color-line);
}
#list_memo .list_item > a {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#list_memo .list_thumb {
  text-align: center;
}
#list_memo .list_summary > span {
  width: 100%;
  height: auto;
  text-indent: 0;
  visibility: visible;
  -webkit-line-clamp: 6;
}
#list_memo .list_item .list_info {
  order: -1;
  justify-content: space-between;
  align-items: center;
}
#list_memo .list_item .list_title {
  width: calc(100% - 60px);
  line-height: 1;
  font-size: calc(var(--fs-def) + 1.5px);
  -webkit-line-clamp: 1;
}
/* - 플레이리스트형 - */
#list_playlist {
  padding: 0 15px;
}
#list_playlist .list_item {
  border-bottom: var(--inline-line-width) solid var(--color-line);
  padding-bottom: 20px;
}
#list_playlist .list_item:first-child {
  border-top: var(--inline-line-width) solid var(--color-line);
}
#list_playlist .list_item > a {
  display: flex;
  flex-direction: column;
}
#list_playlist .list_item .list_title {
  font-size: calc(var(--fs-def) + 1.5px);
  padding: 15px 15px 15px 28px;
  position: relative;
  -webkit-line-clamp: 1;
}
#list_playlist .list_item .list_title::before {
  content: '\fa3c';
  font-family: var(--font-icon);
  position: absolute;
  left: 3px;
  top: 11px;
  font-size: 19px;
  color: var(--color-def);
}
#list_playlist .list_item > a:hover .list_title::before {
  color: var(--color-point);
}
#list_playlist .list_date {
  display: none;
}
#list_playlist .list_summary > span {
  width: 100%;
  height: auto;
  text-indent: 0;
  visibility: visible;
  -webkit-line-clamp: 6;
}
.video_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video_container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* - 웹진형 - */
#list_web .list_item {
  width: 100%;
  padding: 20px 15px;
  border-bottom: var(--inline-line-width) solid var(--color-line);
}
#list_web .list_item:first-child {
  border-top: var(--inline-line-width) solid var(--color-line);
}
#list_web .list_item > a { 
  display: grid;
  grid-template-columns: auto 1fr;
  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: 1; 
}
#list_web .list_summary {
  width: 100%; 
  padding-top: 5px;
  grid-row: 2; 
  display: flex;
  align-items: flex-start;
}
#list_web .list_summary > span {
  width: 100%; 
  height: auto;
  text-indent: 0;
  visibility: visible;
  -webkit-line-clamp: 3;
  color: var(--color-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: calc(var(--fs-def) + 1.5px);
  padding-bottom: 8px;
  -webkit-line-clamp: 1;
}
#list_web .list_thumb:has(.thumb) {
  margin-right: 25px;
}
/* pageButtons */
.pageButtons {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 5px;
    display: flex;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, .125);
    border-radius: var(--border-radius);
    width: 50px;
}
.pageButtons i {
    font-size: 14px;
    color: var(--color-gray);
    transition: var(--transition);
}
.pageButtons > div {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pageButtons > div i:hover {
    color: var(--color-point);
}
.d_page_prev {
    position: relative;
}
.d_page_prev::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background: var(--color-gray);
    right: -1px;
    top: 4px;
    opacity: .35;
}

/* - 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-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-point);
    background: var(--color-bg);
    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 {
    display: none;
}
.comment {
    display: none;
}
.guestbook {
    padding-top: 25px;
}
/* reset */
body :is(.tt-thumbnail) {
    width: 40px;
    height: 40px;
}
body :is(.tt-wrap-cmt .tt_desc) {
    font-family: var(--font-def) !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    font-weight: inherit !important;
    text-align: justify;
    word-break: break-all;
}
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-point) !important;
    background: none !important;
    font-weight: var(--fw-boldEx);
}
body :is(.tt-wrap-cmt .tt_date) {
    font-family: var(--font-def) !important;
    font-size: var(--fs-xs);
    line-height: inherit !important;
    color: var(--color-gray);
    padding-top: 10px;
}
body :is(.tt-wrap-cmt .tt-link-comment) {
    color: var(--color-gray);
}
body :is(.tt-wrap-cmt .tt-link-comment:hover) {
    color: var(--color-point);
}
body :is(.tt-wrap-cmt .tt-wrap-link-comment) {
    padding-left: 10px;
    transition: var(--transition);
    line-height: inherit !important;
}
body :is(.tt-link-comment .tt_txt_g),
body :is(.tt-link-comment .tt_num_g) {
    line-height: inherit !important;
    font-family: var(--font-def) !important;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: inherit !important;
    padding-top: 10px;
}
.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) {
    padding: 25px 25px 25px 15px;
    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-top: var(--inline-line-width) solid var(--color-line);
}
body :is(.tt-list-reply-comment > .tt-item-reply) {
    padding: 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;
}
/* 관리 */
body :is(.tt-box-modify-open .tt-list-modify) {
    box-shadow: none;
    border: var(--inline-line-width) solid var(--color-line);
    padding: 0;
    overflow: hidden;
}
body :is(.tt-box-modify-open .tt-list-modify > li > a) {
    font-size: var(--fs-s);
    padding: 10px 15px;
    line-height: inherit;
    color: var(--color-gray);
}
/* 핀고정 맨위로 */
.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) {
    color: var(--color-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-bgGray);
    border-radius: var(--border-radius-min);
    margin-bottom: 15px;
    transition: var(--transition);
}
body :is(.tt_btn_prev_more:hover) {
    color: var(--color-point);
    border-color: var(--color-point);
    background-color: var(--color-pointBg);
}
/* ----- */
.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-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-wrap-cmt .tt-box-content .tt-link-user {
    max-width: 100%;
}
.tt-wrap-cmt .tt_desc {
    display: inline-block;
    background-color: var(--color-bgGray);
	padding-top: 12px;
	padding-bottom: 14px;
	padding-left: 18px;
	padding-right: 18px;
    border-radius: 2px 20px 20px 20px;
} 
.tt-list-reply-comment .tt_desc {
    display: inline-block;
    background-color: var(--color-bgGray);
	padding-top: 12px;
	padding-bottom: 14px;
	padding-left: 18px;
	padding-right: 18px;
	border-radius: 20px 2px 20px 20px;
}
/* 글쓰기폼 */
body :is(.tt-area-write) {
    padding-bottom: 15px;
}
body :is(.tt-box-textarea) {
    background-color: var(--color-bgGray);
    border-radius: var(--border-radius-min);
    padding: 15px;
}
body :is(.tt-box-textarea .tt-inner-g) {
    border: 0;
    max-height: 110px;
    padding: 0;
}
body :is(.tt-area-write .tt-box-account input) {
    border: 0;
    background-color: var(--color-bgGray);
    border-radius: var(--border-radius-min);
    font-size: var(--fs-def);
}
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,
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
    color: var(--color-point) !important;
}
.tt_cmt_info + .tt-wrap-cmt .tt_desc {
    font-weight: var(--fw-bold) !important;
    background-color: var(--color-pointBg);
}
.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;
}

/* ---------- article ---------- */
article {
    height: 100%;
}
article .article_container {
    word-wrap: break-word;
}
article .article_info {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
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: 33px;
    right: 10px;
    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: 0 10px 15px 10px;
}
article .article_content .content_style {
    width: 100%;
    padding-bottom: 15px;
}
.contents_style {
    text-align: justify;
    word-break: break-all;
}
/* 댓글 버튼 */
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;
}
/* 이전/다음 글 */
.article_page {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-line);
}
.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-point);
  line-height: 25px;
}
/* 네임카드 삭제 */
div[data-tistory-react-app="Namecard"] { display: none; }
/* 신고, 공감 버튼 */
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: var(--font-def) !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) {
    display: none !important;
    margin: unset;
    font-size: var(--fs-s) !important;
    font-family: var(--font-def) !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: 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-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-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-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: #fff;
    color: var(--color-gray);
}
body :is(.container_postbtn .layer_post .btn_mark:hover) {
    background-color: var(--color-bgGray);
}
/* 통계 버튼 */
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-gray);
} 
/* 더보기 버튼 (관리자) */
body :is(.container_postbtn .btn_post.btn_etc1)::before {
    font-family: var(--font-icon) !important;
    content: '\eb20';
    color: var(--color-gray);
}
/* 더보기 버튼 (방문자) */
body :is(.container_postbtn .btn_post.btn_etc2)::before {
    font-family: var(--font-icon) !important;
    content: '\ea95';
    color: var(--color-gray);
}
/* 구독 버튼 */
body :is(.container_postbtn .btn_menu_toolbar) {
    display: none;
}
/* 본문 하단 */
.article_footer {
    display: flex;
    justify-content: space-between;
    border-top: var(--inline-line-width) solid var(--color-line);
    padding: 10px 15px 0 15px;
    margin-top: 10px;
}
@media only screen and (max-width:660px) {
    .article_footer {
        padding-top: 15px;
    }
}
/* 본문 스타일 */
.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-point);
}
.article_content b {
    font-weight: var(--fw-bold);
    box-shadow: inset 0 -.4em 0 var(--color-point);
}
/* 링크 */
article a[rel="noopener"] {
    font-weight: var(--fw-bold);
    font-style: italic;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}
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 { 
    color: var(--color-point);
    background-color: var(--color-pointBg);
}
#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;
    border-radius: var(--border-radius-min);
    border: var(--inline-line-width) solid #fff;
    background-color: var(--color-bgGray);
    overflow: hidden;
    transition: var(--transition);
}
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) !important;
}
#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-gray);
    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-gray);
    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-point);
}
@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,
.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;
}
/* 접은글 */
div .btn-toggle-moreless:before,
div .btn_more:before {
    font-family: var(--font-icon);
    content: '\ea5f';
    padding-right: 5px;
    color: #fff;
}
div.open .btn-toggle-moreless:before,
div.open .btn_less:before {
    font-family: var(--font-icon);
    content: '\ea62';
    color: #fff;
    padding-right: 5px;
}
.btn-toggle-moreless,
.btn_more,
.btn_less {
    font-size: calc(var(--fs-def) - 1px) !important;
    margin: 0 !important;
    outline: none !important;
    height: auto !important;
}
div .btn-toggle-moreless,
div .btn_more {
    background: var(--color-pointBg);
    border: var(--border-width) solid #fff;
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
    color: #fff !important;
    font-weight: var(--fw-boldEx);
}
div.open .btn-toggle-moreless,
div.open .btn_less {
    background: var(--color-point);
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
}
div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-index div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: inline-block !important;
    margin: 5px 0 !important;
    font-family: var(--font-def);
    font-weight: var(--fw-boldEx);
}
.moreless-content {
    border-radius: var(--border-radius-min);
    padding: 10px !important;
    background-color: var(--color-bgGray);
    border: var(--border-width) solid #fff;
    margin-bottom: 5px;
    transition: var(--transition);
}
.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: unset !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: 35px 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: 10px;
    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: transparent !important;
    border-left: 6px solid var(--color-point) !important;
    padding: 15px 20px !important;
    color: var(--color-def) !important;
}
/* 인용구 3 */
#tt-body-page blockquote[data-ke-style='style3'],
#tt-body-index blockquote[data-ke-style='style3'] {
    background: var(--color-bgGray) !important;
    padding: 15px 20px !important;
    color: var(--color-def) !important;
    border-radius: var(--border-radius-min);
    transition: var(--transition);
}
#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: 6px solid var(--color-point) !important;
    font-size: var(--fs-m);
}
/* 첨부파일 */
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-point);
    font-weight: var(--fw-boldEx);
    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-gray);
    font-weight: var(--fw-bold);
    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;
    border: var(--border-width) solid var(--color-point);
    border-radius: var(--border-radius-min);
    transition: var(--transition);
}
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-point);
    content: "\f912";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    transition: all 0.15s;
}
#tt-body-page figure.fileblock a:hover,
#tt-body-index figure.fileblock a:hover {
    background: var(--color-pointBg);
}

/* ---------- protected ---------- */
.protected {
    padding: 45px 10px 55px 10px;
}
.protected_title { 
    display: inline-flex;
    align-items: center;
    font-weight: var(--fw-bold);
    padding-bottom: 18px;
}
.protected_title i {
    margin-right: 3px;
    font-size: var(--fs-m);
}
.protected_title a {
    font-size: var(--fs-m);
}
.protected_pw {
    display: flex;
    padding-top: 25px;
}
.protected_pw input[type="password"] {
    border: var(--border-width) solid var(--color-point);
    background-color: var(--color-bg);
    font-size: var(--fs-s);
    font-weight: var(--fw-bold);
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: var(--border-radius-min);
    color: var(--color-def);
    appearance: none;
    -webkit-appearance: none;
}
.protected_pw input[type="submit"] {
    border: var(--border-width) solid var(--color-point);
    background-color: var(--color-bg);
    color: var(--color-def);
    height: 40px;
    width: 45px;
    font-size: var(--fs-s);
    font-weight: var(--fw-boldEx);
    border-radius: var(--border-radius-min) !important;
    margin-left: 5px;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}
.protected_pw input[type="submit"]:hover {
    color: var(--color-point);
}
/* 중앙 정렬 */
.protected {
    text-align: center;
}
.protected_pw {
    justify-content: center;
}

/* ---------- notice ---------- */
.notice {
    padding: 15px;
}
#tt-body-index :is(.article_content) {
    border-bottom: 0;
    margin-bottom: 0;
    min-height: 100%;
    justify-content: center;
}
#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-def);
    align-items: center;
}
.taglog_list > a:hover {
    background-color: var(--color-bgGray);
}
.taglog_list > a::before {
    content: '#';
    margin-right: 2px;
    color: var(--color-def);
}
/* taglog */
.taglog_content {
    padding: 15px;
}
.taglog_content .taglog_list > a {
    border-color: var(--color-point);
    border-width: var(--border-width);
    font-weight: var(--fw-bold);
    color: var(--color-point);
}
.taglog_content .taglog_list > a::before {
    color: var(--color-point);
}
.taglog_content .taglog_list > a:hover {
    background-color: var(--color-pointBg);
}
/* 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: #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;
}

/* ---------- copy (삭제x) ---------- */
.copy {
    width: 100%;
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;
    padding-top: 25px;
}
.copy a {
    font-size: 8px;
    font-weight: var(--fw-boldEx);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    color: #fff;
}
.copy a:hover { 
    opacity: .45;
}
.copy a:not(:last-child)::after {
    content: '';
    display: block;
    margin: 3px;
    width: 3px;
    height: 3px;
    background-color: var(--color-point);
    border: 2px solid #fff;
    border-radius: 50%;
    box-sizing: content-box;
}

/* ---------- 탑버튼 --------- */
#top { 
    display: none;
    position: fixed; 
    right: 15px; 
    bottom: 15px; 
    color: var(--color-point); 
    z-index: 9888; 
}
#top .iconbtn {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-min);
    transition: var(--transition);
}

/* ------------------------------------------------- */
/* ---------- cover ---------- */
/* ------------------------------------------------- */
/* 레이아웃 */
.cover_wrap {
    display: flex;
    gap: 30px 15px;
}
.cover_wrap {
  width: 100%;
}
.cover_wrap > div {
    width: 100%;
    position: relative;
}
.cover_wrap.row > div {
  height: 500px;
}
/* 아이템별 기본 스타일 */
.cover_style {
    display: none;
}
.cover_container {
    height: 100%;
    position: relative;
} 
#cover .cover_content img {
    max-width: 100%;
    vertical-align: top;
}
.cover_content {
    height: 100%;
}
.cover_content_scroll {
    overflow-y: auto;
    height: 100%;
}
.cover_content_scroll img {
    max-width: 100%;
}
/* cover_title */
.cover_title {
    font-size: var(--fs-def);
    font-weight: var(--fw-boldEx);
    gap: 5px;
    padding-left: 5px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
/* cover_content */
.cover_wrap.row .cover_content {
    height: calc(100% - 26px);
    padding: 10px 5px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}
/* 플레이리스트 */
.cover_playlist_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cover_playlist_list > li {
    padding: 5px 5px 10px 5px;
}
.cover_playlist_list .cover_item_title {
    padding-top: 5px;
    font-weight: var(--fw-bold);
}
.cover_playlist_list > li:not(:last-child) {
    border-bottom: 1px solid var(--color-line);
}
/* 갤러리리스트 */
.cover_gallery {
    padding: 10px 5px 0 5px;
}
.cover_gallery.gallery1 .cover_content {
    width: 100%;
}
.cover_gallery.gallery1 .cover_gallery_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.cover_gallery.gallery1 .cover_item {
    position: relative;
}
.cover_gallery.gallery1 .cover_item_thumb {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.cover_gallery.gallery1 .cover_item_thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  backdrop-filter: blur(1.5px);
  transition: var(--transition);
}
.cover_gallery.gallery1 .cover_item_thumb > figure {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 !important;
  transition: var(--transition);
}
.cover_gallery.gallery1 .cover_item_thumb > figure > img {
  transition: unset;
  vertical-align: top;
}
.cover_gallery.gallery1 .cover_item_thumb {
  isolation: isolate;
  aspect-ratio: 1/1;
}
.cover_gallery.gallery1 .cover_item_thumb > figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover_gallery.gallery1 .cover_item > a:hover .cover_item_thumb > figure {
  filter: grayscale(100%);
  opacity: 0.7;
}
.cover_gallery.gallery1 .cover_item_info {
  position: absolute;
  padding: 0 15px;
  z-index: 3;
  width: 100%;
  line-height: 1.5;
  visibility: hidden;
  bottom: 15px; /* 원형시 삭제 */
  /* top: 50%;
  transform: translateY(-50%);
  justify-content: center; */
}
.cover_gallery.gallery1 .cover_item_info .cover_item_title {
  opacity: 0;
  font-size: calc(var(--fs-def) - 1px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  white-space: normal;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  color: #fff;
  transition: var(--transition);
}
.cover_gallery.gallery1 .cover_item_info .cover_item_cate {
  opacity: 0;
  color: #fff;
  font-size: var(--fs-xs);
  transition: var(--transition);
}

.cover_gallery.gallery1 .cover_item > a:hover .cover_item_thumb > figure {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
}
.cover_gallery.gallery1 .cover_item > a:hover .cover_item_thumb::after {
  opacity: 0.8;
}
.cover_gallery.gallery1 .cover_item > a:hover .cover_item_info {
  visibility: visible;
}
.cover_gallery.gallery1 .cover_item > a:hover .cover_item_title {
  opacity: 1;
}
.cover_gallery.gallery1 .cover_item > a:hover .cover_item_cate {
  opacity: 0.65;
}
/* ------------------------------------------------- */

/* ---------- copy (삭제x) ---------- */
.copy {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
}
.copy a {
    font-size: 8px;
    font-weight: var(--fw-boldEx);
    display: inline-flex;
    align-items: center;
    color: var(--color-gray);
}
.copy a:hover { 
    color: var(--color-point);
}
.copy a > span {
    position: relative;
    left: -10px;
    padding-left: 5px;
    transition: var(--transition);
}
.copy a.copy_art {
    display: none;
    font-size: var(--fs-s);
    padding-left: 6px;
}
.copy a.copy_art:hover {
    color: var(--color-gray);
}
.copy a:not(.copy_art) > span {
    opacity: 0;
}
.copy a:not(.copy_art):hover > span {
    opacity: 1;
    left: 0;
}
/* ---------- 반응형 ---------- */
@media only screen and (max-width:1024px) {
    /* mobile */
    .left_container {
        position: absolute;
        z-index: 9999;
        left: -220px;
        top: 0;
        height: 100vh;
        opacity: 0;
        border-radius: 0;
    }
    .left_container.visible {
        left: 0;
        opacity: 1;
        transition: left 0.3s linear;
    }
    .hd_center .mobile_btn {
        display: flex;
    }
    .left_container .mobile_btn { 
        position: absolute;
        top: 5px;
        right: 13px;
        z-index: 9999;
        background: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .left_container .circles.mobile {
        width: calc(100% - 50px);
    }
    .list .list_item a:hover .list_thumb img {
        transform: none;
    }
    /* layout */
    :root {
        --container-size: 760px;
    }
    .main_header:not(.mobile) {
        height: 45px;
    }
    .main_header:not(.mobile) .circles {
        padding: 0;
    }
    .main_container {
        height: calc(100% - 60px - 45px);
    }
    .main_header.mobile {
        display: flex;
        border-bottom: 0;
        padding: 0; 
        height: 45px;
    }
    article .article_title > a  {
        width: 100%;
    }
    .main_wrap > .box {
        max-width: 400px;
        max-height: 360px;
        min-height: 360px;
    }
    .layout_wrap {
        max-width: 90%;
        padding-top: 0;
        padding-bottom: 25px;
    } 
    #container {
        width: 100%;
        border-left: 0;
    }
    .container_header > .hd_center {
        padding-right: 37px;
    }
    .dock_bar > ul:nth-child(2),
    .dock_bar > ul > li:not(.active),
    .header_bar > div > ul > li:not(.active) {
        display: none;
    }
}
@media only screen and (max-width:860px) {
    .cover_wrap {
        flex-direction: column;
    }
    .cover_wrap.row > div {
        height: 300px;
    }
    .cover_gallery.gallery1 .cover_gallery_list {
            grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width:660px) {
    #layer_profile {
        right: 10px;
    }
    #layer_message {
        left: 10px;
    }
    body { 
        background-image: none; 
    }
    .mobile_bg {
        display: block; 
    } 
    .tooltip {
        display: none !important;
    } 
    .logobox a { 
        width: 240px; 
    }
    .main_wrap > .box {
        max-width: 75%;
        max-height: 320px;
        min-height: 320px;
    }
    /* list */
    .list .list_container {
        padding-left: 0;
        padding-right: 0;
    }
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 35px;
        padding-right: 35px;
        row-gap: 25px;
    }
    #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_box .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-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;
    } 
    body :is(.tt-list-reply-comment > .tt-item-reply) {
        padding-right: 15px;
    }
    .tt-item-reply .tt-list-reply-comment .tt-wrap-cmt .tt-box-modify {
        right: -15px;
    }
    .guestbook .tt-comment-cont {
        padding-top: 0;
    }
}
@media only screen and (max-width: 460px) {
    .list[id*="gal"]:not(#list_gal_3) .list_container {
        grid-template-columns: repeat(1, 1fr);
    }
}