@charset "UTF-8";

/* ------------------------------------------------- */
/* 웹폰트 */
/* ------------------------------------------------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    /* 한국어 */
    --font-ko: 'Pretendard';
    /* 영문 */ 
    --font-en: 'Poppins'; 
    /* 카테고리 */
    --font-cate: 'Pretendard', 'Poppins'; 
}
html, body, textarea, button, code {
    font-family: var( --font-en), var(--font-ko), sans-serif;
}
nav a {
    font-family: var(--font-cate), sans-serif;
    font-weight: 800;
}
/* ------------------------------------------------ */



/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root {
    /* 색상 */
    --color-point: #1a1b1b;
    --color-pointBd: #1a1b1b;
    --color-pointBg: #f4f4f4;
    --color-sub: #1a1b1b;
    --color-subBd: #1a1b1b;
    --color-subBg: #f4f4f4;
    --color-bg: #fff1ae;

    --color-def: #1a1b1b;
    --color-line: #e8e8e8;
    --color-gray: #999;
    --color-midGray: #cac9c9;
    --color-bgGray: #f6f6f6;

    /* 컨테이너 사이즈 */
    --container-size: 1200px;
    --left-container-size: 300px;

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

    /* 내부 스타일 */
    --inline-line-width: 1px;
    --inline-line-color: #e8e8e8;
    
    --inline-input-width: 1px;
    --inline-input-color: #e8e8e8;
    --inline-input-bg: #f6f6f6;

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

    /* 폰트 */
    --fs-xs: calc(var(--fs-def) - 3px);
    --fs-s: calc(var(--fs-def) - 1.5px);
    --fs-def: 13px; 
    --fs-m: calc(var(--fs-def) + 2px); 
    --fs-l: calc(var(--fs-def) + 6px); 
    --line-height: 1.6; /* 글줄 */
    --font-icon: 'tabler-icons';
}
/* ------------------------------------------------- */



/* ------------------------------------------------- */
/* 마우스 커서 */
/* ------------------------------------------------- */
*, *:focus {
    cursor: url(https://cur.cursors-4u.net/symbols/sym-6/sym597.cur), progress !important;
}
/* ------------------------------------------------- */



/* 배경음악 */
.bgm-box {
    position: fixed;
    z-index: 9996;
    top: 12px;
    right: 10px;
    display:flex;
    vertical-align:middle;
    justify-content: flex-end;
    animation-duration: 2s;
    animation-name: fade-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.bgm-btn {
    background: none;
    color: var(--color-midGray);
}
.bgm-title {
    display: none;
}
.bgm-copy-btn {
    background: none;
    color: var(--color-midGray);
    margin-left: 3px;
}
.bgm-copy-btn > i {
    font-size: 12px;
}
@keyframes fade-in-out {
    from {
        opacity: 1.0;
    }

    to {
        opacity: 0.5;
    }
}
.paused {
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
    -o-animation-play-state: paused !important; 
    animation-play-state: paused !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;
}

.ti {
    font-size: 22px;
}
.ti-s {  
    font-size: 16px;
}
.ti-xs {
    font-size: 12.5px;
}



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

    /* 배경 */
    background-color: var(--color-bg);
}
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:3px; 
}
::-webkit-scrollbar-track{ 
    background:transparent; 
}
::-webkit-scrollbar-thumb{ 
    background:var(--color-line); 
}

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

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

/* ---------- main page ---------- */
.mainbox {
    display: none;
}
.mainbox {
    width: 100%;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main_img {
    position: relative;
    max-width: 460px;
}
.main_img img {
    width: 100%;
    vertical-align: middle;
}
.main_img a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
@media only screen and (max-width:680px) {
    .main_img {
        width: 280px;
    }
}

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

/* 2단레이아웃 - 다이어리형 */
.diary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 35px 25px 65px 25px;
}
.layout_wrap { 
    position: relative; 
    display: flex;
    justify-content: space-between;
    width: var(--container-size); 
    height: 665px; 
}
.profile { 
    width: 100%;
    position:relative; 
}
.profile_txt {
    text-align: center;
    padding: 15px 10px;
    font-size: var(--fs-s);
    font-weight: 600;
    color: var(--color-point);
}
.profile_imgbox {
    position: relative;
    width: 100%;
    isolation: isolate;
}
.profile_imgbox a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-min); 
}
.profile_imgbox img {
    vertical-align: top;
}

/* left_container */
.left_container { 
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(var(--left-container-size) - 10px); 
    padding: 15px;
    border-radius: var(--border-radius);
    background: #fff;
}
/* 추가 */
.barcode {
    max-height: 55px;
    width: 100%;
    margin-bottom: 10px;
    background-color: var(--color-bgGray) ;
    overflow: hidden;
}
.barcode img {
    vertical-align: top;
    max-width: 100%;
}
.barcode_txt {
    width: 100%;
    font-size: var(--fs-s);
    font-weight: 600;
    text-align: left;
}
/* link */
.link_list { 
    width: 100%;
    display: flex;
    padding-top: 5px; 
}
.link_list li a { 
    display: inline-flex;
    color: var(--color-point); 
    padding: 3px; 
}
.link_list li:not(:last-child) { 
    margin-right: 5px; 
}
/* right_container */
.right_container {
    width: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.right_container button {
    background: none;
    border: 0;
}
.right_container .character {
    display: flex;
    flex-direction: column;
}
.right_container .character > button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-bottom: 8px;
    overflow: hidden;
}
.right_container .character > button img {
    vertical-align: top;
    max-width: 100%;
}
.right_container .chat {
    position: relative;
}
.right_container .chat .chat_container {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    z-index: 9991;
    width: 260px;
    height: 380px;
    border-radius: var(--border-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 10px 10px 35px rgba(0,0,0,.125);
}
.chat_header {
    position: relative;
    height: 45px;
    background-color: #f4f4f4; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 45px;
}
.chat_header .title {
    text-align: center;
    font-weight: 600;
    font-size: var(--fs-s);
}
.chat_header .tools {
    display: flex; 
    position: absolute;
    right: 10px;
    top: 10px;
}
.chat_header .tool {
    color: var(--color-point); 
}
.chat_content {
    padding: 15px;
    height: calc(100% - 45px);
    overflow-y: scroll;
}
.chat_form {
    display: flex;
}
.chat_form:not(:last-child) {
    margin-bottom: 10px;
}
.chat_profile {
    padding-right: 10px;
}
.chat_profile .chat_profile_imgbox {
    width: 35px;
    height: 35px;
    background-color: var(--color-bgGray);
    border-radius: 50%;
    overflow: hidden;
}
.chat_profile .chat_profile_imgbox img {
    vertical-align: top;
    max-width: 100%;
}
.chat_bubble {
    display: inline-block;
    background-color: var(--color-point);
    font-size: var(--fs-s);
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px; 
    padding-left: 16px; 
    padding-right: 16px;
    border-radius: 5px 15px 15px 15px;
}
.chat_name {
    font-size: var(--fs-s);
    font-weight: 600;
    color: var(--color-point);
}
.chat_form.right .chat_profile {
    padding-right: 0;
    padding-left: 10px;
}
.chat_form.right {
    flex-direction: row-reverse;
}
.chat_form.right .chat_name {
    text-align: right;
}
.chat_form.right .chat_bubble {
    border-radius: 15px 5px 15px 15px;
    background: #646464;
}
/* container */
#container {
    position: relative;
    width: calc(100% - var(--left-container-size) - 65px);
    padding: 15px 10px;
    border-radius: var(--border-radius);
    background: #fff;
}
#content {
    width: 100%; 
    height: 100%; 
    padding: 0 15px;
    overflow-y: scroll;
    background: #fff;
} 
.content_inner {
    width: 100%; 
    height: 100%;
}
.content_title {
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 5px 10px 10px 10px;
}
.content_title i {
    margin-right: 3px;
    margin-top: 2px;
}
.content_title span {
    font-size: var(--fs-s); 
    font-weight: 600;
}
#search { position: absolute; bottom: -45px; right: 0; width: 200px; padding: 1px 15px; background: #fff; border-radius: var(--border-radius); color:var(--color-def); display: flex; align-items: center; }
#search i { padding-right: 10px; color: var(--color-def); }
.searchform input::placeholder { color:var(--color-gray); font-size: var(--fs-s); }
.searchform input { font-size: var(--fs-s); width:100%; height:30px; text-align:left; border:0; background:none; color:var(--color-sub); }
.searchform { width: 100%; }
/* navigation bar */
.tt_category {
    margin: 0;
}
nav>ul>li>ul>li {
    position: relative;
}
nav {
    position: relative;
    width: 100%;
    flex: 1;
    overflow-y: scroll;
    margin-bottom: 35px;
}
nav a {
    text-decoration: none;
    display: block;
    font-size: var(--fs-s);
    color: var(--color-point);
    padding: 10px 35px 10px 5px;
}
nav>ul>li>ul>li>ul>li:first-child {
    border-top: var(--border-width) dashed var(--color-def);
}
/* 공통 아이콘 */
nav>ul>li>ul>li::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: var(--font-icon);
}
nav>ul>li>ul>li:not(:last-child) {
    border-bottom: var(--border-width) solid var(--color-def);
}
nav .category_list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
nav>ul>li>ul>li {
    width: 100%;
}
nav>ul>li>ul>li>ul>li:not(:last-child) {
    border-bottom: var(--border-width) dashed var(--color-pointBd);
}
/* 리셋 */
nav>ul>li>ul>li>a,
nav>ul>li>ul>li>ul>li>a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
nav>ul>li>a,
nav>ul>li>ul>li>a>span.c_cnt,
nav span.c_cnt {
    display: none;
}
nav>ul>li>ul>li>ul {
    display: none;
}
/* 아이콘 */
nav > ul > li > ul > li > a {
    position: relative;
    padding-right: 35px;
}
nav > ul > li > ul > li > a::before {
    transition: var(--transition);
}
nav > ul > li > ul > li.drop > a::before {
    content: '\fb2a';
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-icon);
}
nav > ul > li > ul > li.open > a::before {
    transform: rotate(-180deg); 
}
nav.pc > ul > li > ul > li:not(.drop) > a::before {
    content: '\fb2c';
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-icon);
    opacity: 0;
}
nav.pc > ul > li > ul > li:not(.drop) > a:hover::before {
    right: 10px;
    opacity: 1;
}



/* ---------- list style ---------- */
/* 카테고리명 표기 */
.cate_name {
    margin-right: 3px;
}
.cate_num {
    color: var(--color-point);
    font-size: var(--fs-xs);
    font-style: italic;
}
/* 리스트 공통 */
.list .list_container {
    display: grid;
    padding-top: 15px;
}
.list[id*="gal"] .list_container {
    gap: 15px;
}
.list[id*="gal"]:not(#list_gal_3) .list_container {
    grid-template-columns: repeat(4, 1fr);
}
.list .list_item .list_title {
    position: relative;
    display: inline-block;
    max-width: 100%;
    font-weight: 600;
    word-wrap: break-word;
}
.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); 
    align-items: center;
}
.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:not(.list[id*="web"]):not(#list_gal_3) .list_item .list_info > div > i {
    display: none;
}
.list .list_item .list_thumb {
    position: relative;
    overflow: hidden; 
    isolation: isolate;
    transition: var(--transition);
}
.list:not(.list[id*="web"]):not(#list_gal_4) .list_item .list_thumb {
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-gal);
}
.list .list_item .list_thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0) scale(1.2);
}
/* 썸네일 마우스 오버 효과 */
/* 기본 */
.list .list_item a:hover .list_thumb img {
    -webkit-filter: grayscale(100%);
    filter: gray;
    transform: scale(1.4);
    opacity:0.7;
}
/* dim */
#list_gal_2 .list_item a:hover .list_thumb img,
#list_gal_4 .list_item a:hover .list_thumb img {
    -webkit-filter: grayscale(100%);
    filter: gray;
}
#list_gal_2 .list_item .list_thumb:after,
#list_gal_4 .list_item .list_thumb:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(3px);
} 
#list_gal_2  .list_item a:hover .list_thumb:after,
#list_gal_4  .list_item a:hover .list_thumb:after {
    opacity: 0.8;
}
/* 보호글 아이콘 추가 */
.locked {
    position: relative;
    padding-left: 15px;
}
.locked::before {
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    top: -2px;
    left: 0;
    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 .list_title::before {
    color: #fff;
}
#list_gal_3 .locked .list_title::before {
    top: 1px;
}
#list_web_1 .locked .list_title::before {
    top: 0;
} 
#list_gal_4 .locked .list_title::before { 
    top: 1px;
}
/* 노이미지 */
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_gal_1 */
#list_gal_1 .list_item .list_info {
    align-items: center;
    padding: 15px 0;
}
#list_gal_1 .list_item .list_info > div {
    width: 100%;
    text-align: center;
    justify-content: center;
}
#list_gal_1 .list_item .list_date {
    padding-top: 3px;
} 
#list_gal_1 .list_item .list_category {
    display: none;
}
/* 갤러리형2 #list_gal_2 */
#list_gal_2 .list_container {
    padding-bottom: 25px;
}
#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;
    justify-content: center;
    align-content: center;
    text-align: center;
    visibility: hidden;
    color: #fff;
    transition: var(--transition);
}
#list_gal_2 .list_item .list_info > div {
    text-align: center;
}
#list_gal_2 .list_item .list_category {
    display: none;
}
#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;
    word-break: keep-all;
    opacity: 0;
    transition: all var(--transition);
}
#list_gal_2 .list_item .list_date, 
#list_gal_2 .list_item .list_category {
    width: 100%;
    color: #fff;
    padding-top: 5px;
    opacity: 0;
    justify-content: center;
    transition: all var(--transition);
}
#list_gal_2 .locked::before {
    color: #fff;
    opacity: 1;
    top: -1px;
}
/* 오버 효과 */
#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;
}
/* 갤러리형3 #list_gal_3 */
#list_gal_3 .list_container {
    padding-bottom: 25px;
}
#list_gal_3 .list_container {
    grid-template-columns: repeat(2, 1fr);
}
#list_gal_3 .list_item {
    overflow: hidden;
    border-radius: var(--border-radius-min);
    box-sizing: border-box;
    border: var( --border-width) solid var(--color-pointBd);
}
#list_gal_3 .list_item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
#list_gal_3 .list_item .list_thumb {
    width: 60px;
}
#list_gal_3 .list_item .list_content {
    display: flex;
    width: calc(100% - 70px);
    flex-wrap: wrap; 
}
#list_gal_3 .list_item .list_info {
    width: 100%;
}
#list_gal_3 .list_item .list_title {
    width: 100%;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
}
#list_gal_3 .list_item .list_date, 
#list_gal_3 .list_item .list_category {
    padding-top: 3px;
}
#list_gal_3 .list_item .list_category {
    margin-left: 5px;
}
/* 갤러리형2 #list_gal_4 */
#list_gal_4 {
    padding-bottom: 25px;
}
#list_gal_4 .list_item {
    position: relative;
}
#list_gal_4 .list_item .list_thumb {
    aspect-ratio: 1/1.2;
    border-radius: var(--border-radius);
}
#list_gal_4 .list_item .list_info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    line-height: 1.3;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    justify-content: center;
    align-content: center;
    text-align: center;
    visibility: hidden;
    color: #fff;
    transition: var(--transition);
}
#list_gal_4 .list_item .list_info > div {
    text-align: center;
}
#list_gal_4 .list_item .list_category {
    display: none;
}
#list_gal_4 .list_item .list_title {
    position: relative;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: keep-all;
    opacity: 0;
    transition: all var(--transition);
}
#list_gal_4 .list_item .list_date, 
#list_gal_4 .list_item .list_category {
    width: 100%;
    color: #fff;
    padding-top: 5px;
    opacity: 0;
    justify-content: center;
    transition: all var(--transition);
}
#list_gal_4 .locked::before {
    color: #fff;
    opacity: 1;
    top: -1px;
}
/* 썸네일 롤오버 효과 */
#list_gal_4 .list_item a:hover .list_info {
    visibility: visible;
}
#list_gal_4 .list_item a:hover .list_title {
    opacity: 1;
}
#list_gal_4 .list_item a:hover .list_date, 
#list_gal_4 .list_item a:hover .list_category {
    opacity: .45;
}
/* 일반글목록형 #list_board */
#list_board .list_container {
    padding: 10px 15px 0 15px;
}
#list_board .list_item a {
    display: block;
    padding: 15px 20px;
}
#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_category {
    display: none;
}
#list_board .list_item .list_date, 
#list_board .list_item .list_category {
    margin-left: auto;
}
/* 스타일 */
#list_board .list_item:last-child {
    margin-bottom: 15px;
    border-bottom: var(--inline-line-width) solid var(--inline-line-color);
}
#list_board .list_item {
    border-top: var(--inline-line-width) solid var(--inline-line-color);
}
/* 일반글목록형-box #list_board_box */
#list_board_box .list_container {
    padding: 0 15px;
}
#list_board_box .list_item a {
    display: block;
    padding: 15px 20px;
}
#list_board_box .list_item .list_info {
    align-items: center;
    justify-content: space-between;
}
#list_board_box .list_item .list_title {
    flex: 1;
    padding-right: 15px;
}
#list_board_box .list_item .list_date {
    display: none;
}
#list_board_box .list_item .list_category {
    margin-left: auto;
    opacity: 1;
    color: var(--color-point);
    font-weight: 800;
}
/* 스타일 */
#list_board_box .list_item {
    margin-bottom: 15px;
}
#list_board_box .list_item {
    border: var(--border-width) solid var(--color-pointBd);
    border-radius: var(--border-radius-min);
    overflow: hidden;
}
#list_board_box .list_item a:hover {
    background-color: var(--color-pointBg);
}
/* 일반형에서 갤러리 요소 감추기 */
.list[id*="board"] .list_thumb,
.list[id*="board"] .list_thumb img {
    display: none;
}
/* 웹진형1 #list_web_1 */
#list_web_1 .list_summary {
    width: 100%; 
    height: auto;
    text-indent: 0;
    visibility: visible;
    overflow: hidden; 
    white-space: normal; 
    text-overflow: ellipsis; 
    display: -webkit-box; 
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical; 
    word-break: break-all;
    color: var(--color-gray);
} 
#list_web_1 .list_item {
    width: 100%;
    padding: 0 15px 25px 15px;
}
#list_web_1 .list_item:not(:last-child) {
    margin-bottom: 25px;
    border-bottom: var(--inline-line-width) solid var(--inline-line-color);
}
#list_web_1 .list_item > a { 
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 15px;
}
#list_web_1 .list_item .list_thumb {
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius-min);
}
#list_web_1 .list_item .list_content {
    width: calc(100% - 165px);
    padding: 5px 0;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
}
#list_web_1 .list_item .list_info {
    width: 100%;
} 
#list_web_1 .list_item .list_title {
    font-size: var(--fs-m);
    width: 100%;
    padding-bottom: 5px;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
#list_web_1 .list_item .list_category {
    padding-left: 10px;
}

/* pagination */
.pagination {
    width: 100%;
    padding: 5px 25px 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .numbox {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .numbox a > span {
    display: inline-block;
    font-size: var(--fs-xs);
    padding: 0 12px;
    line-height: 30px;
    color: var(--color-gray);
    font-weight: 600;
    transition: var(--transition);
}
.pagination .numbox a:hover > span {
    color: var(--color-sub);
    transition: var(--transition);
}
.pagination .numbox a > span.selected {
    color: var(--color-point);
    background: var(--color-pointBg);
    border-radius: var(--border-radius-min);
    font-weight: 800;
}
.pagination > div[class*='pagination_'] {
    height: 30px;
}
.pagination > div[class*='pagination_'] > a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 5px;
    color: var(--color-gray);
}
.pagination > div[class*='pagination_'] a:hover {
    color: var(--color-point);
}
.pagination_prev {
    margin-right: 5px;
}
.pagination_next {
    margin-left: 5px;
}
.pagination a[class*='no-more-'], 
.pagination a[class*='no-more-']:hover {
    color: var(--color-midGray) !important;
}

/* ---------- guestbook & comment ---------- */
#tt-body-guestbook .pagination {
    display: none;
}
.comment {
    display: none;
}
/* reset */
body :is(.tt-thumbnail) {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    outline: 1px solid var(--color-line);
}
body :is(.tt-wrap-cmt .tt_desc) {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    font-weight: inherit !important;
}
body :is(.tt-wrap-cmt .tt-link-user),
body :is(.tt-txt-mention) {
    font-family: inherit !important;
    font-size: var(--fs-s);
    line-height: inherit !important;
}
body :is(.tt-wrap-cmt .tt-link-user) {
    color: var(--color-gray);
    font-weight: 600;
}
body :is(.tt-txt-mention) {
    color: var(--color-point) !important;
    background: none !important;
    font-weight: 600;
}
body :is(.tt-wrap-cmt .tt_date) {
    font-family: inherit !important;
    font-size: var(--fs-xs);
    line-height: inherit !important;
    color: var(--color-midGray);
    padding-top: 5px;
}
body :is(.tt-wrap-cmt .tt-link-comment) {
    color: var(--color-midGray);
}
body :is(.tt-wrap-cmt .tt-link-comment:hover) {
    color: var(--color-point);
}
body :is(.tt-wrap-cmt .tt-wrap-link-comment) {
    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: inherit !important;
    font-size: var(--fs-xs);
    color: inherit !important;
    padding-top: 5px;
}
.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: 600; 
}
body :is(.tt-list-reply > .tt-item-reply) {
    padding: 25px 25px 25px 15px;
}
body :is(.tt-list-reply-comment > .tt-item-reply) {
    padding: 15px 0;
    border-top: 0;
    border-bottom: var(--inline-input-width) solid var(--line-height);
}
.tt-list-reply-comment .tt-item-reply:before {
    display: none;
}
body :is(.tt-item-reply .tt-list-reply-comment) {
    border-top: 0;
    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);
}
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 {
    top: 13px !important;
    background-color: var(--color-midGray) !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;
}
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;
    top: 2px;
    left: 6px;
    font-family:var(--font-icon);
    font-size: 20px;
    content: '\f429';
    color: var(--color-gray);
}
.tt-btn_register::before {
    position: absolute;
    top: 2px;
    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);
}
/* ----- */
.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(--inline-input-bg);
	padding-top: 12px;
	padding-bottom: 14px;
	padding-left: 18px;
	padding-right: 18px;
    border-radius: 2px 25px 25px 25px;
} 
.tt-list-reply-comment .tt_desc {
    display: inline-block;
    background-color: var(--color-pointBg);
	padding-top: 12px;
	padding-bottom: 14px;
	padding-left: 18px;
	padding-right: 18px;
	border-radius: 25px 2px 25px 25px;
}
/* 글쓰기폼 */
body :is(.tt-box-textarea .tt-inner-g) {
    border: 0;
    background-color: var(--color-bgGray);
    border-radius: var(--border-radius-min);
}
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);
    margin-right: 6px;
}
.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: 600 !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);
}
/* 댓글 */
.comment .tt-list-reply li:last-child {
    border-top: 0;
}
body :is(.tt-list-reply > .tt-item-reply:last-child) {
    border-top: 0;
}
body :is(.tt-box-textarea textarea, .tt-box-textarea div) {
    background-color: transparent;
}

/* ---------- article ---------- */
article .article_container {
    word-wrap: break-word;
}
article .article_info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 5px;
}
article .article_title {
    text-align: center;
    width: 100%;
    position: relative;
    padding-bottom: 2px;
    padding-left: 55px;
    padding-right: 55px;
}
article .article_title > a {
    display: inline-block;
    font-size: var(--fs-m);
    font-weight: 800;
}
article .article_info_footer {
    display: flex;
    padding: 12px 15px 10px 15px;
    margin-top: 5px;
    border-top: 1px solid var(--color-line);
    flex-wrap: wrap;
    justify-content: center;
}
article .article_info_footer > div {
    display: inline-flex;
    align-items: center;
    font-size: var(--fs-xs);
    color: var(--color-gray);
    transition: var(--transition); 
    padding: 0 5px;
}
article .article_info_footer > div > span {
    padding-left: 3px;
}
article .article_category:hover {
    color: var(--color-point);
}
article .admin_btn {
    background-color: transparent;
    font-size: var(--fs-s);
    color: var(--color-gray);
}
article .article_admin {
    position: absolute;
    z-index: 9;
    top: 8px;
    right: 10px;
    display: inline-flex;
    padding-left: 10px;
}
article .article_admin a {
    font-size: var(--fs-xs);
    color: var(--color-gray);
    display: inline-flex;
}
article .article_admin a:hover {
    color: var(--color-point);
}
article .article_admin a:not(:last-child) {
    margin-right: 6px;
}
@media only screen and (max-width: 1024px) {
    article .article_admin {
        display: none;
    }
    article .article_title {
    padding-left: 0;
    padding-right: 0;
    }
}
article .article_content {
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: 1px solid var(--color-line);
    padding: 15px 10px;
    margin-bottom: 15px; 
}
article .article_content .content_style {
    width: 100%;
    padding-bottom: 15px;
}
/* 이전글, 다음글 */
.article_page {
    width: 100%;
    padding: 0 10px;
    display: flex;    
    flex-wrap: wrap;
}
.article_page > div {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}
.article_page > div a {
    max-width: calc(100% - 35px);
    overflow:hidden; 
    text-overflow:ellipsis; 
    white-space:nowrap;
    line-height: 25px;
    padding-left: 10px;
}
.article_page > div span {
    color: var(--color-point);
    font-size: var(--fs-xs);
    font-weight: 600;
    line-height: 25px;
}
/* 이전글, 다음글 (썸네일형) */
/* 댓글 버튼 */
article .article_content .article_button {
    position: absolute;
    z-index: 9;
    bottom: 12px;
    right: 10px;
}
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: 600;
    padding-left: 3px;
    font-size: var(--fs-xs);
    font-style: italic;
    line-height: 1.8;
}
/* 태그 클라우드 */
.article_taglog {
    width: 100%;
    padding: 0 5px 15px 5px;
    color: transparent;
}
.article_taglog .article_taglog_list > a {
    padding: 5px 10px;
    border: var(--inline-line-width) solid var(--color-line);
    border-radius: 50px;
    font-size: var(--fs-xs);
    color: var(--color-def);
}
.article_taglog .article_taglog_list > a:hover {
    background-color: var(--color-bgGray);
}
.article_taglog .article_taglog_list > a::before {
    content: '#';
    margin-right: 2px;
}
/* 네임카드 삭제 */
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: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post.uoc-icon .uoc-icon) {
    display: flex;
    align-items: center;
}
body :is(.container_postbtn .btn_post .ico_like) {
    display: none;
    max-width: unset;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.container_postbtn .btn_post .txt_like) {
    margin: unset;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_post .ico_share) {
    display: none;
    margin: unset;
    background: none;
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .layer_post) {
    border: unset;
    box-shadow: unset;
    padding: unset;
    background: unset;
}
body :is(.container_postbtn .layer_post .ico_arrbt) {
    display: none;
}
body :is(.container_postbtn .layer_post .btn_mark) {
    outline: none !important;
    font-size: var(--fs-s) !important;
    font-family: inherit !important;
    color: inherit;
}
body :is(.container_postbtn .btn_post .ico_statistics) {
    display: none;
    width: unset;
    height: unset;
    margin: unset;
    background: none;
    text-indent: unset;
}
body :is(.btn_post, .btn_menu_toolbar) {
    outline: none !important;
}
body :is(.btn_post, .btn_menu_toolbar):focus-visible {
    outline: 2px !important;
}
body :is(.container_postbtn .postbtn_ccl) {
    display: none;
}
body :is(.container_postbtn .ico_postbtn.ico_etc) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar) {
    width: -moz-fit-content;
    width: fit-content;
    height: unset;
    margin: unset;
    border: unset;
    border-radius: unset;

    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}
body :is(.container_postbtn .btn_menu_toolbar .txt_state) {
    display: none;
}
body :is(.container_postbtn .btn_menu_toolbar.following .ico_check_type1) {
    display: none;
}
body :is(.container_postbtn) {
    gap: 20px;
    order: 3;
    flex-grow: 1;
}
body :is(.container_postbtn .postbtn_like) { 
    gap: 10px;
    border: 0;
    background-color: transparent;
}
/* 좋아요 버튼 */
body :is(.container_postbtn .btn_post.uoc-icon >.uoc-icon)::before {
    font-family: var(--font-icon) !important;
    content: "\eabe";
    color: var(--color-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(--inline-line-color);
    padding: 10px 15px 0 15px;
    margin-top: 10px;
}
@media only screen and (max-width:660px) {
    .article_footer {
        padding-top: 15px;
    }
}
/* 본문 스타일 */
.article_content u {
    transition: var(--transition);
}
.article_content u:hover {
    background-color: var(--color-pointBg);
}
.article_content b { 
    font-weight: 600;
}
/* 링크 */
article a[rel="noopener"] {
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    transition: var(--transition);
}
article a[rel="noopener"]::before {
    font-family: var(--font-icon);
    content: "\eade";
    margin-right: 3px;
    font-size: 13px;
    font-weight: normal;
}
article a[rel="noopener"]:hover { 
    color: var(--color-sub);
    background-color: var(--color-pointBg);
}
figure[data-ke-type='opengraph'] a:hover {
    background-color: transparent;
}
figure[data-ke-type='opengraph'], 
#tt-body-page figure[data-ke-type='opengraph'], 
#tt-body-index figure[data-ke-type='opengraph'] {
    margin-top: 15px;
}
figure[data-ke-type='opengraph'] a, 
#tt-body-page figure[data-ke-type='opengraph'] a, 
#tt-body-index figure[data-ke-type='opengraph'] a {
    width: 400px;
    height: 100px;
    border-radius: var(--border-radius-min);
    border: var(--inline-line-width) solid var(--color-line);
    overflow: hidden;
    max-width: 100%;
}
figure[data-ke-type='opengraph'] div.og-image {
    width: 120px;
}
figure[data-ke-type='opengraph'] div.og-text {
    left: 120px;
    padding: 15px 25px;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}
figure[data-ke-type='opengraph'] div.og-text p.og-title, 
#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: inherit !important;
    max-width: 100% !important;
    font-weight: 800;
    font-size: var(--fs-m);
    transition: var(--transition);
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
}
figure[data-ke-type='opengraph'] div.og-text p.og-desc, 
#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 {
    display: none;
}
figure[data-ke-type='opengraph'] div.og-text p.og-host, 
#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: inherit;
    color: var(--color-gray);
    font-size: var(--fs-s);
    font-weight: 800;
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis; 
    word-break: break-all;
}
figure[data-ke-type='opengraph']:hover div.og-text p.og-title, 
#tt-body-page figure[data-ke-type='opengraph']:hover div.og-text p.og-title, 
#tt-body-index figure[data-ke-type='opengraph']:hover div.og-text p.og-title {
    color: var(--color-point);
}
@media (max-width: 600px) {
    figure[data-ke-type='opengraph'] a,
    #tt-body-page figure[data-ke-type='opengraph'] a,
    #tt-body-index figure[data-ke-type='opengraph'] a {
        width: 400px;
        height: 80px;
    }
    figure[data-ke-type='opengraph'] div.og-image {
        width: 80px;
    }
    figure[data-ke-type='opengraph'] div.og-text,
    #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: 10px 15px;
    }
}
/* ul, li, ol */
.article_content ul,
.article_content ol {
    padding-right: 10px;
    margin-left: 25px;
}
/* table */
.article_content table tr,
.article_content table td {
    padding: 10px;
}
.article_content table figure {
    margin-bottom: 0 !important;
}
/* 접은글 */
div .btn-toggle-moreless:before,
div .btn_more:before {
    font-family: var(--font-icon) !important;
    content: '\fb2a';
    padding-right: 5px;
    color: var(--color-point);
}
div.open .btn-toggle-moreless:before,
div.open .btn_less:before {
    font-family: var(--font-icon)  !important;
    content: '\fb2d';
    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: #fff;
    border: var(--border-width) solid var(--color-pointBd);
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
    color: var(--color-point) !important;
    font-weight: 800;
}
div .btn-toggle-moreless:hover,
div .btn_more:hover {
    background: var(--color-pointBd);
    color: #fff !important;
}
div .btn-toggle-moreless:hover:before,
div .btn_more:hover:before {
    color: #fff !important;
}
div.open .btn-toggle-moreless,
div.open .btn_less {
    background: var(--color-sub);
    border-radius: var(--border-radius-min) var(--border-radius-min) 0 0;
    padding: 3px 12px;
    color: #fff !important;
}
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-ko);
    font-weight: 800;
}
.moreless-content {
    border-radius: 0 var(--border-radius-min) var(--border-radius-min) var(--border-radius-min);
    padding: 10px !important;
    border: var(--border-width) solid var(--color-pointBd) !important;
    margin-top: -5px;
}
.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: 0;
}
/* 인용구 1 */
#tt-body-page blockquote[data-ke-style='style1'], 
#tt-body-index blockquote[data-ke-style='style1'] {
    position: relative;
    background: none;
    padding: 0 0 0 25px !important;
    text-align: justify;
    margin-top: 10px;
}
#tt-body-page blockquote[data-ke-style='style1']::before,
#tt-body-index blockquote[data-ke-style='style1']::before {
    content: '\efbe'; 
    position: absolute; 
    font-family: var(--font-icon);
    color: var(--color-point);
    font-size: 20px;
    line-height: 0px; 
    top: 5px; 
    left: 0; 
    pointer-events: none; 
    transform: rotate(-180deg);
}
#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-point);
}
/* 인용구 2 */
#tt-body-page blockquote[data-ke-style="style2"],
#tt-body-index blockquote[data-ke-style="style2"] {
    background: transparent !important;
    border-left: 3px solid var(--color-point) !important;
    padding: 5px 25px !important;
    margin-bottom: 10px !important;
    color: var(--color-point) !important;
}
/* 인용구 3 */
#tt-body-page blockquote[data-ke-style='style3'],
#tt-body-index blockquote[data-ke-style='style3'] {
    background: var(--color-pointBg) !important;
    text-align: justify !important;
    padding: 15px 25px !important;
    color: var(--color-def) !important;
    border-radius: var(--border-radius-min);
    border: var(--border-width) solid var(--color-pointBd) !important;
}
#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: 800;
}
/* 첨부파일 */
figure.fileblock,
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    display: block;
    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: 800;
    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: 600;
    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);
}
.moreless_fold, .moreless_top, .moreless_bottom, .moreless_top:hover, .moreless_fold:hover, .moreless_bottom:hover {
    transition: var(--transition);
}

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

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

/* ---------- taglog ---------- */
.taglog_content {
    padding: 15px 10px;
} 
.taglog ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.taglog li {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 5px;
}
.taglog a {
    font-weight: 800;
    padding: 4px 15px;
    background: #fff;
    border: var(--border-width) solid var(--color-point);
    border-radius: 8px;
    color: var(--color-point);
}
.taglog .cloud1,
.taglog .cloud2,
.taglog .cloud3,
.taglog .cloud4,
.taglog .cloud5 {
    display: block;
}
.taglog .cloud1:hover,
.taglog .cloud2:hover,
.taglog .cloud3:hover,
.taglog .cloud4:hover,
.taglog .cloud5:hover {
    background: var(--color-point);
    color: #fff;
}
.taglog .cloud1::before,
.taglog .cloud2::before,
.taglog .cloud3::before,
.taglog .cloud4::before,
.taglog .cloud5::before {
    content: '#';
    padding-right: 5px;
    font-weight: 800;
}

/* ---------- 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: 600;
    z-index: 9999;
}

/* ---------- copy (삭제x) ---------- */
.copy {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 9990;
}
.copy a {
    font-size: 8px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    color: var(--color-gray);
}
.copy a:hover { 
    color: var(--color-point);
}
.copy a > span {
    position: relative;
    left: -10px;
    opacity: 0;
    padding-left: 5px;
    padding-top: 2px;
    transition: var(--transition);
}
.copy a:hover > span {
    opacity: 1;
    left: 0;
}

/* ---------- cover ---------- */
body#tt-body-index #cover {
    display: flex;
    box-sizing: border-box;
    height: 100%;
    justify-content: center;
}
#cover>div {
    box-sizing: border-box;
}
#cover h2 {
    display: inline-flex; 
    align-items: center; 
    font-weight: 800;
    color: var(--color-point);
    font-size: var(--fs-def); 
    padding-bottom: 5px;
}
#cover h2 > i {
    margin-right: 5px;
}
/* 공지 */
body#tt-body-index #cover {
    padding: 15px 0;
}
.cover_notice_img .cover_content,
.cover_notice_img .cover_item, 
.cover_notice_img .cover_item_bg {
    width: 100%;
    height: 100%;
}
.cover_notice_img .cover_item_bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-min);
}
.cover_notice_mini .cover_content {
    height: calc(100% - 35px);
}
.cover_notice_mini .cover_item_scroll {
    height: 100%;
    overflow-y: scroll;
    padding-right: 5px;
}
/* row */
.cover_row .cover_notice_img,
.cover_row .cover_notice_mini {
    width: 50%;
}
.cover_row .cover_notice_mini {
    padding-left: 15px;
}
/* col */
body#tt-body-index .cover_col {
    padding: 15px 0;
}
.cover_col {
    flex-direction: column;
    justify-content: flex-start;
}
.cover_col .cover_notice_mini, 
.cover_col .cover_notice_img {
    width: 100%;
    height: 50%;
}
.cover_col .cover_notice_mini {
    padding-top: 15px;
}

/* ---------- sidebar --------- */
#sidebar { 
    width: 245px;
    height: 100%;
    background-color: #fff;
    border-left: 3px solid var(--color-point);
    position: fixed;
    z-index: 9995;
    top: 0;
    transition: right 0.3s linear;
    right: -245px;
    padding: 10px;
}
#sidebar.visible {
    right: 0;
    transition: right 0.3s linear; 
}
.sidebar_container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.sidebar_container::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.sidebar_container::-webkit-scrollbar-thumb {
    border: none;
    box-shadow: none;
}
.sidebar_container::-webkit-scrollbar-thumb:hover {
    border: none;
    box-shadow: none;
}
.sidebar_container::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar_container .inner { 
    margin-bottom: 10px;
}
.sidebar_btn {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: 45%; 
    left: -45px;
    transition: var(--transition);
}
.sidebar_btn span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background: var(--color-point);
    border-radius: 50%; 
    transition: var(--transition);
}
.sidebar_btn i {
    color: #fff;
    transition: var(--transition);
}
.sidebar_btn:hover i, 
.sidebar_btn.open i {
    color: var(--color-pointBg);
}
.sidebar_btn.open {
    width: 35px;
    left: -35px;
}
.sidebar_btn.open span {
    border-radius: 50% 0 0 50%;
}
.side_content {
    width: 100%;
    padding: 10px;
    border-top: var(--border-width) solid var(--color-point);
    border-bottom: var(--border-width) solid var(--color-point);
}
.side_title {
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 5px 10px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    border: var( --border-width) solid var(--color-point);
    border-radius: var(--border-radius-min) var(--border-radius-min) 0 0;
    border-bottom: 0;
    background: #fff;
    color: var(--color-point);
    text-transform: uppercase;
}
.side_title > i {
    padding-right: 3px;
}
/* 디데이 */
.side_dday {
    text-align: center;
    font-size: var(--fs-m); 
    font-weight: 700;
}
.side_dday > strong {
    display: inline-block;
    width: 100%;
    color: var(--color-point);
}
.dday_txt {
    display: inline-flex;
    color: #fff;
    background-color: var(--color-point);
    align-items: center;
    border-radius: var(--border-radius);
    padding: 5px 20px;
    margin-top: 5px;
}
.dday_txt i { 
    color: #fff;
    padding-right: 5px; 
}
/* 달력 */
.side_calendar {
    margin: 0 auto;
    text-align: center;
}
.side_calendar tr > th {
    font-weight: 600;
    font-size: var(--fs-xs);
    padding-bottom: 10px;
}
.side_calendar .cal_month {
    border-bottom: var(--inline-line-width) dashed var(--color-line);
    margin-bottom: 10px;
}
.side_calendar .cal_month a {
    color: var(--color-point);
}
.side_calendar .cal_month a:first-child,
.side_calendar .cal_month a:last-child {
    font-size: var(--fs-def);
    color: var(--color-gray);
}
.side_calendar .cal_month a,
.side_calendar .cal_day,
.side_calendar a.cal_click {
    font-size: var(--fs-xs);
    line-height: 2;
}
.side_calendar .cal_month a,
.side_calendar .cal_day4,
.side_calendar a.cal_click {
    font-weight: 700;
}
.side_calendar .cal_month {
    padding-bottom: 10px;
}
.side_calendar .cal_month a {
    padding: 5px 5px;
}
.side_calendar .cal_day_sunday {
    color: red;
}
/* 오늘 날짜 */
.side_calendar .cal_day4 {
    color: var(--color-point);
}
/* 글쓴 날 */
.side_calendar a.cal_click {
    text-decoration: underline;
}
.side_calendar a.cal_click:hover {
    color: var(--color-point);
}
/* 트위터 */
.timeline-Tweet-text {
    font-size: var(--fs-def) !important;
    font-family: 'Pretendard-Regular' !important;
}
/* 최근글, 최근 공지 */

/* 태그 */
.side_taglog ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.side_taglog ul li > a {
    font-size: var(--fs-s);
    color: var(--color-def);
    padding-right: 5px;
}
.side_taglog ul li > a:hover {
    color: var(--color-point);
}
/* 배너 */
.side_banner ul {
    display: flex;
    flex-direction: column;
}
.side_banner ul li:not(:last-child) {
    margin-bottom: 5px;
}
.side_banner ul li > a {
    display: block;
}
.side_banner ul li img {
    max-width: 100%;
    vertical-align: top;
}
/* 카운터 */
.side_visit {
    height: 60px;
}
.side_visit span {
    font-size: 8pt;
}
.side_visit span.vist_title {
    float: left;
    font-weight: 800;
}
.side_visit span.text-total,
.side_visit span.item-visit {
    float: right;
}
.side_visit span.text-total {
    color: var(--color-point);
    font-weight: 800;
}

/* ---------- 탑버튼 --------- */
#top { 
    display :none; 
    position: fixed; 
    right: 20px; 
    bottom: 20px; 
    color: var(--color-point); 
    z-index: 9888; 
}



/* ------------------------------------------------- */
/* ---------- 모바일 메뉴 ---------- */
#mobile_menu {
    position: relative;
    display: none;
}
.mobile_menu_wrap {
    position: fixed;
    z-index: 9997;
    top: 0;
    left: -240px;
    width: 240px;
    height: calc(100vh);
    opacity: 0;
    transition: var(--transition);
    overflow-y: scroll;
}
.mobile_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--border-radius);
    background: #fff;
    padding: 15px;
    height: 100%;
}
.mobile_menu_wrap .inner {
    padding: 45px 15px 15px 15px;
    height: 100vh;
    min-height: 460px;
}
/* 배경 */
.mobile_menu_wrap {
    background-color: var(--color-bg);
}
/* 타이틀 */
.mobile_title {
    padding-top: 35px;
    padding-bottom: 15px;
}
.mobile_title .logobox {
    max-width: 80%;
}
/* 모바일메뉴 스크롤바 */
.mobile_menu_wrap::-webkit-scrollbar {
    width: 0;
    height: 0;
    padding: 0;
}
.mobile_menu_wrap::-webkit-scrollbar-thumb {
    border: none;
    box-shadow: none;
}
.mobile_menu_wrap::-webkit-scrollbar-thumb:hover {
    border: none;
    box-shadow: none;
}
.mobile_menu_wrap::-webkit-scrollbar-track {
    background: transparent;
}
/* 햄버거메뉴 */
.mobile_menu_btn {
    position: fixed;
    z-index: 9998;
    top: 5px; 
    left: 10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile_menu_btn_wrap {
    position: relative;
    width: 20px;
    height: 16px;
    cursor: pointer;
}
.mobile_menu_btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.85);
    transition: var(--transition);
    border-radius: 10px;
}
.mobile_menu_btn span:nth-child(1) {
    top: 0;
}
.mobile_menu_btn span:nth-child(2) {
    top: 7px;
}
.mobile_menu_btn span:nth-child(3) {
    bottom: 0;
}
.mobile_menu_btn.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}
.mobile_menu_btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile_menu_btn.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}
/* visible 상태 */
.mobile_menu_wrap.visible {
    left: 0;
    opacity: 1;
    transition: left 0.3s linear;
}
/* 모바일배경 */
.mo_bg {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background-image: url(./images/enn_bg_mo10.png); 
    background-size: cover; 
    background-position: center center; 
    z-index: -1; 
}

/* ---------- 반응형 ---------- */
@media only screen and (max-width:1320px){
    .right_container .chat .chat_container {
        right: 0;
        left: inherit;
    }
}
@media only screen and (max-width:1024px) {
    /* mobile */
    nav:not(.mobile) { 
        display: none; 
    }
    #mobile_menu { 
        display: block; 
    }
    /* layout */
    :root {
        --container-size: 760px;
    }
    .diary {
        padding-left: 0;
        padding-right: 0;
        padding-top: 35px;
        align-items: flex-start;
    }
    .layout_wrap {
        max-width: 90%;
        height: auto;
        padding: 25px;
        flex-direction: column;
    }
    .left_container {
        display: none;
    }
    .layout_wrap {
        padding: 0;
    }
    .right_container {
        order: -1;
        width: 100%;
        flex-direction: row;
        justify-content: flex-end;
    } 
    .right_container .character {
        flex-direction: row;
    }
    .right_container .character > button {
        margin-right: 8px;
        margin-bottom: 15px;
    }
    #container {
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }
    body#tt-body-index #container {
        height: 75vh;
        min-height: 420px;
    }
    #content {
        overflow-y: hidden;
    }
}
@media only screen and (max-width:660px) {
    body { 
        background-image: none; 
    }
    .mo_bg { 
        display: block; 
    }
    .tooltip {
        display: none !important;
    }
    .cover_row {
        flex-direction: column;
        justify-content: flex-start;
    }
    .cover_row .cover_notice_mini, 
    .cover_row .cover_notice_img {
        width: 100%;
        height: 50%;
    }
    .cover_row .cover_notice_mini {
        padding-left: 0;
        padding-top: 15px;
    }
    /* list */
    .list_top {
        padding-top: 5px;
        padding-bottom: 15px;
    }
    .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_board .list_container {
        padding-left: 0;
        padding-right: 0;
    }
    /* 웹진형 */
    #list_web_1 .list_item > a {
        flex-direction: column;
    }
    #list_web_1 .list_item .list_thumb {
        width: 100%;
        height: 250px;
    }
    #list_web_1 .list_item .list_content {
        width: 100%;
        padding: 0;
    }
    /* 사이드 여백 */
    .content_title,
    .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;
    }
}
@media only screen and (max-width: 460px) {
    #search {
        width: 120px;
    }
    /* 보호글 */
    .protected_pw {
        flex-direction: column;
    }
    .protected_pw input[type="password"], 
    .protected_pw input[type="submit"] {
        width: 100%;
    }
    .protected_pw input[type="submit"] {
        margin-left: 0;
        margin-top: 10px;
    }
}