@charset "UTF-8";
  
/* ------------------------------------------------- */
/* 웹폰트 */
/* ------------------------------------------------- */
/* @import로 시작 */ 
@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400..900&family=Playwrite+IS:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Coustard:wght@400;900&display=swap');
/* @font-face로 시작 */
@font-face {
    font-family: 'RIDIBatang';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* 
    폰트 패밀리명을 언어와 수정 범위에 맞게 변경해주세요 !
    지원하지않는 문자가 있는 웹폰트라면 '한국어', '다른 외국어' 순으로 패밀리명을 추가해주세요.
    예시) 'Pretendard Variable', 'M PLUS 1p';
*/
:root {
    /* 한국어 */ 
    --font-ko: 'Pretendard Variable';
    /* 영문 */ 
    --font-en: 'Maven Pro';
    /* 본문 전용 */
    --font-article: 'RIDIBatang';
    /* 카테고리 */
    --font-cate: 'Playwrite IS';
    /* 멤버리스트 */
    --font-member: 'RIDIBatang';
    /* def */
    --font-def: var(--font-ko), var(--font-en), 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);
}
nav a {
    font-size: var(--fs-nav);
    font-family: var(--font-cate), var(--font-def);
}
.article_content {
    font-family: var(--font-article);
    font-size: var(--fs-article);
    text-align: justify;
    line-height: 200%;
    letter-spacing: .05px;
}
/* novel 게시판 내용 미리보기 부분 폰트 */
.list_summary_wrap > p {
    font-family: var(--font-article);
}
/* ------------------------------------------------ */


 
/* ------------------------------------------------- */
/* 스타일 관리 */
/* ------------------------------------------------- */
:root {
    /* 색상 */ 
    --color-point: #cad5e1;
    --color-bg: #f7f7f7;

    --color-comic: #eacde1;
    --color-novel: #cad5e1;
    --color-illust: #cec8e2;

    --color-gr-gray: linear-gradient(135deg, #ececec 0%, rgba(247,247,247,1) 42%, rgba(255,255,255,1) 100%);
    --color-gr-comic: linear-gradient(135deg, var(--color-comic) 0%, rgba(247,247,247,1) 42%, rgba(255,255,255,1) 100%);
    --color-gr-comic-wh: linear-gradient( 135deg, var(--color-comic), transparent 55% );
    --color-gr-novel: linear-gradient(135deg, var(--color-novel) 0%, rgba(247,247,247,1) 42%, rgba(255,255,255,1) 100%);
    --color-gr-novel-wh: linear-gradient( 135deg, var(--color-novel), transparent 55% );
    --color-gr-illust: linear-gradient(135deg, var(--color-illust) 0%, rgba(247,247,247,1) 42%, rgba(255,255,255,1) 100%);
    --color-gr-illust-wh: linear-gradient( 135deg, var(--color-illust), transparent 55% );
    --color-border: #1a1a1a;

    --color-def: #1a1a1a;
    --color-line: #e9e9e9;
    --color-gray: #6b6b6b;
    --color-midGray: #aeaeae;
    --color-bgGray: #f9f9f9;

    /* 컨테이너 사이즈 */
    --container-size: 1100px;
    --left-container-size: 280px;

    /* 전체 스타일 */
    --border-width: 1px;
    --border-radius: 12px;
    --border-radius-min: 6px;
    --border-radius-odd: 0 70px 0 70px;
    --border-radius-even: 70px 0 70px 0;
    --border-radius-button: 3px;
    --transition: .25s ease-in-out;

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

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

    /* icon sprites */
    --icon-sprites: url(./images/cosmos_icon_sprites.png);

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



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

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

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

#tt-body-page figure.imageblock img, figure.imageblock img {
    display: block;
}
figure.imageblock.alignCenter {
    margin-top: 20px;
}
figure.imageblock.alignCenter + figure.imageblock.alignCenter {
    margin-top: 0 !important;
}

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




/* ------------------------------------------------- */
/* loader */
/* ------------------------------------------------- */
.loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:url(./images/cosmos_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    z-index: 9999;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader span {
    display: inline-block;
    width: 31px; 
    height: 31px;
    background-image: var(--icon-sprites);
    background-position: -164px -53px;
    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);
    }
}
/* ------------------------------------------------- */




/* ------------------------------------------------- */
/* main page */
/* ------------------------------------------------- */
.mainbox { display: none; }
.mainbox { 
    position: fixed; 
    z-index: 9999; 
    width:100vw; 
    height: 100vh; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background-image:url(./images/cosmos_bg_main_1.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mainbox_wrap { 
    position: relative;
    max-width: 80%;
}
.mainbox_wrap .line_1 {
    width: 90%;
}
.mainbox_wrap .line_1::before {
    left: -35px;
}
.mainbox_wrap .line_1::after {
    right: -35px;
}
.mainbox_content { 
    position: relative; 
}
.mainbox_logo_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    padding-bottom: 35px;
}
/* 메인페이지 활성화 */
body#tt-body-index .mainbox {
    display: flex;
}

/* ------------------------------------------------- */




/* ------------------------------------------------- */
/* ---------- 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: overlay;

    /* 배경 */
    background-image:url(./images/cosmos_bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
body.prevent-scroll {
  overflow: hidden;
}
#content { 
    animation: fadein 1.65s; 
    -moz-animation: fadein 1.65s;
    -webkit-animation: fadein 1.65s;
    -o-animation: fadein 1.65s;
}
.mainbox_wrap { 
    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: var(--color-bg); 
}
::-webkit-scrollbar-thumb { 
    background: var(--color-border); 
}
.mobile_container::-webkit-scrollbar,
.tt-box-textarea .tt-inner-g::-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-border);
    background: #fff;
    border-radius: var(--border-radius-min);
}
.iconbtn:hover, 
.iconbtn.active {
    background-color: var(--color-border);
}
.iconbtn i {
    line-height: 30px;
}

.button_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.back_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    letter-spacing: 1.628px;
    margin-top: 35px;
    padding: 5px 15px;
    border: 1px solid var(--color-border);
    border-radius: 35px;
    gap: 5px;
    transition: var(--transition);
}
.back_btn:hover {
    background-color: var(--color-border);
    color: #fff;
}
.back_btn:hover .pagination_arrow::before {
    border-color: #fff;
}

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

/* header */
#header {
    display: none;
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    height: 45px;
    background: #fff;
    z-index: 9995;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}
.scroll-has #header.scroll-up {
    top: 0px;
}
/* logo */
.logobox.pc {
    width: 100%;
}
.logobox.header {
    padding-top: 3px;
}
.logobox.header img {
    width: 90px;
}

.logobox a {
    margin-left: auto;
    margin-right: auto;
}
.logobox img {
    max-width: 100%;
    vertical-align: top;
}

/* 2단레이아웃 */
.layout_wrap { 
    width: var(--container-size); 
    margin: 0 auto; 
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between;
    padding-top: 125px;
    padding-bottom: 125px;
}
/* left_container */
.left_container {
    position: sticky;
    top: 65px;
    width: calc(var(--left-container-size) - 40px); 
    padding-bottom: 65px;
}
/* container */
#container {
    padding-top: 35px;
    width: calc(100% - var(--left-container-size));
}
#content { 
    position: relative;
    width: 100%; 
    min-height: 150px;
}
body#tt-body-tag #container {
    padding-top: 0;
}
body#tt-body-index #content {
    border-radius: var(--border-radius-odd);
    border: var(--border-width) solid var(--color-border);
    background: #fff;
}
body#tt-body-page .footer:not(.mobile) {
    display: none;
} 
body#tt-body-index #cover::before,
body#tt-body-index #cover::after {
    content: '';
    position: absolute;
    width: 69px;
    height: 69px;
    background-image: var(--icon-sprites);
    background-position: -10px -10px;
    background-repeat: no-repeat;
}
body#tt-body-index #cover::before {
    top: -35px;
    left: -35px;
}
body#tt-body-index #cover::after {
    bottom: -35px;
    right: -35px;
}
/* navigation bar */
nav {
    position: relative;
}
nav a {
    text-decoration: none;
    display: block;
    padding: 12px 15px 14px 15px;
    text-align: center;
}
nav > ul {
    width: 100%;
}
nav > ul > li > ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
nav > .category_item {
    margin-bottom: 15px;
}
nav > .category_item,
nav > ul > li > ul > li {
    position: relative;
    width: 100%;
}
nav > .category_item > a {
    overflow: hidden;
}
nav > .category_item > a,
nav > ul > li > ul > li > a {
    position: relative;
    width: 100%;
    border-radius: 25px;
    border-width: var(--border-width);
    border-style: solid;
    border-color: var(--color-border);
}
nav > .category_item > a:before,
nav > .category_item > a:after,
nav > ul > li > ul > li > a::before,
nav > ul > li > ul > li > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: -1;
    transition: opacity .2s ease-in-out;
}
nav > .category_item::before,
nav > .category_item::after,
nav > ul > li > ul > li::before,
nav > ul > li > ul > li::after {
    content: '';
    position: absolute;
    z-index: 9;
    width: 21px;
    height: 23px;
    background-repeat: no-repeat;
    pointer-events: none;
    background-image: var(--icon-sprites);
}
nav > .category_item::before,
nav > ul > li > ul > li::before {
    background-position: -164px -104px;
}
nav > .category_item::after,
nav > ul > li > ul > li:after {
    background-position: -205px -104px;
}
nav > .category_item::after,
nav > ul > li > ul > li:nth-child(odd)::after,
nav > ul > li > ul > li:nth-child(even)::before {
    bottom: -11px;
    right: 20px;
}
nav > .category_item::before,
nav > ul > li > ul > li:nth-child(even)::after,
nav > ul > li > ul > li:nth-child(odd)::before {
    top: -11px;
    left: 20px;
}
nav > .category_item > a::before {
    background-image: var(--color-gr-gray);
}
nav > ul > li > ul > li:nth-child(1) > a::before {
    background-image: var(--color-gr-comic);
}
nav > ul > li > ul > li:nth-child(2) > a::before {
    background-image: var(--color-gr-novel);
}
nav > ul > li > ul > li:nth-child(3) > a::before {
    background-image: var(--color-gr-illust);
}
nav > .category_item > a::after,
nav > ul > li > ul > li > a::after {
    background-color: #fff;
    opacity: 1;
}
nav > .category_item.selected::before,
nav > .category_item:hover::before,
nav > ul > li > ul > li.selected::before,
nav > ul > li > ul > li:hover::before {
    background-position: -51px -158px;
}
nav > .category_item.selected::after,
nav > .category_item:hover::after,
nav > ul > li > ul > li.selected::after,
nav > ul > li > ul > li:hover::after {
    background-position: -10px -158px;
}
nav > .category_item.selected > a::before, 
nav > .category_item:hover > a:before,
nav > ul > li > ul > li.selected > a::before,
nav > ul > li > ul > li:hover > a::before {
    opacity: 1;
}
nav > .category_item.selected > a::after,
nav > .category_item:hover > a::after,
nav > ul > li > ul > li.selected > a::after,
nav > ul > li > ul > li:hover > a::after {
    opacity: 0;
}
/* pc */
nav.pc {
    width: 180px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 35px;
}
/* mobile */
nav.mobile {
    width: 100%;
}
/* 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 .list_container {
    display: grid;
}
.list[id*="gal"] .list_container {
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
}
.list .list_item .list_title {
    position: relative;
    max-width: 100%;
}
.list .list_item .list_title img {
    width: auto !important;
    height: auto !important;
}
.list .list_item .list_category {
    display: inline-flex;
    align-items: center;
    font-weight: var(--fw-bold);
}
.list .list_item .list_info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.list:not(.list[id*="web"]) .list_item .list_info > i {
    display: none;
}
.list[id*="gal"] .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;
}
/* list_info 중앙 정렬 */
.list[id*="gal"] .list_item .list_info {
    align-content: center;
    justify-content: center;
    padding: 15px 10px 18px 10px;
    border-top: var(--border-width) solid var(--color-border);
}
.list[id*="gal"] .list_item .list_info > div {
    width: 100%;
    text-align: center;
    justify-content: center;
}
/* list_info 배경 */
.list .list_item .list_info::before,
.list .list_item .list_info::after {
    content: '';
    position: absolute;
    z-index: -1;
}
.list .list_item .list_info::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-bg);
}
.list .list_item .list_info::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;  
    transition: left .2s ease-in-out;
}
/* 썸네일 */
.list .list_item {
    border-radius: var(--border-radius);
    border: var(--border-width) solid var(--color-border);
    overflow: hidden;
}
.list .list_item .list_thumb {
    position: relative;
    overflow: hidden; 
    isolation: isolate;
    transition: var(--transition);
    background-color: #fff;
}
.list .list_item .list_thumb {
    aspect-ratio: 1/1;
}
.list .list_item .list_thumb img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0) scale(1.1);
}
.list .list_item a:hover .list_thumb img {
    -webkit-filter: grayscale(100%);
    filter: gray;
    transform: scale(1.2);
    opacity: 0.7;
}
.list .list_item .list_thumb:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: var(--transition);
} 
.list .list_item a:hover .list_thumb:after {
    opacity: 0.9;
}
/* 보호글 아이콘 */
.locked {
    position: relative;
    padding-left: 15px;
}
.locked::before {
    font-size: var(--fs-def);
    font-weight: normal;
    position: absolute;
    left: 0;
    font-family: var(--font-icon) !important;
    content: '\eae2';
    color: var(--color-def);
}
.list[id*="gal"] .list_summary {
    width: 0px;
    height: 0px;
    text-indent: -9999px;
    visibility: hidden;
}
/* 노이미지 */
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; 
}
/* comic 리스트 */
#list_gal_1 .list_item .list_info::after {
    background-image: var(--color-gr-comic);
}
#list_gal_1 .list_item .list_thumb:after {
    background-image: var(--color-gr-comic-wh);
}
/* illust 리스트 */
#list_gal_2 .list_category {
    display: none;
}
#list_gal_2 .list_title {
   font-weight: bold; 
}
#list_gal_2 .list_item .list_info::after {
    background-image: var(--color-gr-illust);
}
#list_gal_2 .list_item .list_thumb:after {
    background-image: var(--color-gr-illust-wh);
}
/* novel 리스트 */
#list_web .list_item .list_info::after {
    background-image: var(--color-gr-novel);
}
#list_web .list_container {
    gap: 25px;
}
#list_web .list_summary_wrap {
    position: relative;
    width: 100%; 
    height: auto;
    padding: 10px 20px;
    transition: var(--transition);
}
#list_web .list_summary_wrap > p {
    text-indent: 0;
    visibility: visible;
    overflow: hidden; 
    white-space: normal; 
    text-overflow: ellipsis;  
    display: -webkit-box; 
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical; 
    word-break: break-all;
} 
#list_web .list_summary_wrap::before,
#list_web .list_summary_wrap::after {
    content: '';
    position: absolute;
    z-index: -1;
    transition: var(--transition);
}
#list_web .list_summary_wrap::before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
}
#list_web .list_summary_wrap::after {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: var(--color-gr-gray);
    opacity: 0;
}
#list_web .list_item {
    width: 100%;
}
#list_web .list_item > a { 
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    gap: 15px;
}
#list_web .list_item .list_thumb {
    display: none;
}
#list_web .list_item .list_content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
#list_web .list_item .list_info {
    width: 100%;
    gap: 0 10px;
    padding: 13px 20px 14px 20px;
    border-bottom: var(--border-width) solid var(--color-border);
} 
#list_web .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;
}
/* more 버튼 */
.list_info > .arrow_more {
    width: 30px;
    height: 15px;
    position: absolute;
    opacity: 0;
    right: 35px;
    top: 18px;
    transition: var(--transition);
}
.list_info > .arrow_more::before,
.list_info > .arrow_more::after {
    content: "";
    position: absolute;
}
.list_info > .arrow_more::before {
    top: 50%;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-border);
}
.list_info > .arrow_more::after {
    top: 4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transform: rotate(45deg) translate(0);
    -webkit-transform: rotate(45deg) translate(0);
}
#list_web .list_item > a:hover .list_info > .arrow_more {
    opacity: 1;
    right: 25px;
}
#list_web .list_item > a:hover .list_summary_wrap::after {
    opacity: 1;
}

/* ---------- pagination ---------- */
.pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-top: 33px;
}
.pagination .numbox {
    display: none;
}
.pagination > div[class*='pagination_'] > a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    letter-spacing: 1.628px;
    margin-bottom: 35px;
    padding: 5px 15px;
    border: 1px solid var(--color-border);
    border-radius: 35px;
    gap: 5px;
}
.pagination > div[class*='pagination_'] > a[class*='no-more-'] {
    display: none !important;
}
.pagination_arrow {
    position: relative;
    width: 6px;
    height: 6px;
}
.pagination_arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transition: var(--transition);
}
.pagination_arrow.next::before {
    transform: rotate(45deg) translate(0);
    -webkit-transform: rotate(45deg) translate(0);
}
.pagination_arrow.prev::before {
    transform: rotate(225deg) translate(0);
    -webkit-transform: rotate(225deg) translate(0);
}
.pagination > div[class*='pagination_'] a:hover {
    background-color: var(--color-border);
    color: #fff;
}
.pagination > div[class*='pagination_'] a:hover .pagination_arrow::before {
    border-color: #fff;
}

/* ---------- guestbook & comment ---------- */
.gb_write {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 35px;
}
.gb_write .gb_txtarea_wrap {
    width: 100%; 
    height: 200px; 
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    background: #fff;
}
.gb_write .submit {
    width: 120px;
    background: #fff;
    color: var(--color-def);
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.gb_write .gb_txtarea_wrap textarea,
.gb_write .submit input { 
    width: 100%;
    padding: 10px 15px;
    outline: 0;
    border: 0;
    background: none;
    font-family: var(--font-def);
    overflow: hidden;
    transition: var(--transition);
    color: var(--color-def);
}
.gb_write .gb_txtarea_wrap textarea::placeholder,
.gb_write .gb_txtarea_wrap textarea {
    font-size: var(--fs-def);
}
.gb_write .gb_txtarea_wrap textarea {
    height: 100%;
}
.gb_write .submit input {
    font-size: var(--fs-s);
    font-weight: var(--fw-bold);
}
.gb_write .submit:hover {
    background: var(--color-border);
}
.gb_write .submit:hover input {
    color: #fff;
}
.gb_input_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
.gb_input_wrap > input {
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 10px 15px;
}
.gb_input_wrap > input,
.gb_input_wrap > input::placeholder {
    font-size: var(--fs-xs);
    font-family: var(--font-cate);
}
.gb_input_wrap > input:not(.input_home) {
    flex: 1;
}
.gb_input_wrap > input.input_home {
    width: 100%;
}
/* 방명록 리스트 */
.gb_list > ul {
    display: flex;
    flex-direction: column;
    gap: 25px 0;
}
.gb_list > ul > li {
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: #fff;
    padding-bottom: 10px;
}
.rp_desc {
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.rrp_desc {
    padding-left: 15px;
    padding-right: 15px;
}
.rp_user_wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-bottom: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 13px 20px 16px 20px;
    background-image: var(--color-gr-gray);
}
.rp_user_wrap .rp_user_name > span {
    margin-right: 3px;
}
.rp_user_wrap .rp_user_name > span,
.rp_user_wrap .rp_user_name > a {
    font-weight: var(--fw-bold);
}
.rp_user_wrap .rp_user_admin {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rp_user_wrap .rp_user_admin > a {
    font-size: var(--fs-xs);
    color: var(--color-gray);
}
.tistoryProfileLayerTrigger {
    display: none;
}

/* ---------- article ---------- */
article .article_container {
    word-wrap: break-word;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}
article .article_info {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    border-bottom: var(--border-width) solid var(--color-border);
}
article .article_info::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition);
    background-image: var(--color-gr-gray);
}
article .article_info.comic::after {
    background-image: var(--color-gr-comic);
}
article .article_info.novel::after {
    background-image: var(--color-gr-novel);
}
article .article_info.illust::after {
    background-image: var(--color-gr-illust);
}
article .article_title {
    text-align: center;
    width: 100%;
    position: relative;
    padding: 0 15px;
}
article .article_category > p {
    font-weight: var(--fw-bold);
}
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: 18px;
    right: 12px;
    display: inline-flex;
}
article .article_admin_btn > i {
    color: var(--color-midGray);
    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: 25px;
    background: #fff;
}
article .article_content .content_style {
    width: 100%;
    padding-bottom: 15px;
}
/* 네임카드 삭제 */
div[data-tistory-react-app="Namecard"] { display: none; }
/* 신고, 공감 버튼 */
body :is(.container_postbtn) {
    width: 100%;
    display: flex;
    padding: 20px 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) {
    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-bg);
}
.article_content b {
    font-weight: var(--fw-bold);
}
/* 링크 */
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-bg);
}
#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 var(--color-line);
    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);
}
#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::marker,
.article_content ol li,
.article_content ul li {
    transition: var(--transition);
}
.article_content ul li::marker {
    font-size: calc(var(--fs-def) + 3px); 
}
.article_content ul,
.article_content ol {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
}
.article_content ol li:hover,
.article_content ul li:hover {
    color: var(--color-point);
}
.article_content ol li:hover::marker,
.article_content ul li:hover::marker {
    color: var(--color-point);
}
/* table */
.article_content table img,
.article_content table figure {
    vertical-align: top;
    margin-bottom: 0 !important;
}
/* 구분선 */
hr[data-ke-style], #tt-body-page hr[data-ke-style] {
    margin-bottom: 0 !important;
    cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur817.cur), progress !important;
}
hr[data-ke-style='style6'], #tt-body-page hr[data-ke-style='style6'],
hr[data-ke-style='style5'], #tt-body-page hr[data-ke-style='style5'] {
    height: 3px;
}
/* 접은글 */
div .btn-toggle-moreless:before,
div .btn_more:before {
    font-family: var(--font-icon);
    content: '\ea5f';
    padding-right: 5px;
    color: var(--color-point);
}
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: #fff;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius-min);
    padding: 3px 12px;
    color: var(--color-point) !important;
    font-weight: var(--fw-boldEx);
}
div .btn-toggle-moreless:hover,
div .btn_more:hover {
    background: var(--color-point);
    border-color: var(--color-point);
    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-point);
    border-color: var(--color-point);
    border-radius: var(--border-radius-min);
    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-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 var(--color-line);
    margin-bottom: 5px;
    transition: var(--transition);
}
.moreless-content:hover {
    border-color: var(--color-point);
    background-color: var(--color-bg);
}
.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% - 36px);
    transform: rotate(-180deg) translateX(calc(50% - 36px));
    pointer-events: none;
}
#tt-body-page blockquote[data-ke-style='style1'] > span,
#tt-body-index blockquote[data-ke-style='style1'] > span {
    font-family: unset !important;
    color: var(--color-def);
}
/* 인용구 2 */
#tt-body-page blockquote[data-ke-style="style2"],
#tt-body-index blockquote[data-ke-style="style2"] {
    background: var(--color-bgGray) !important;
    border-left: 3px solid var(--color-point) !important;
    padding: 15px 25px !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 25px !important;
    color: var(--color-def) !important;
    border-radius: var(--border-radius-min);
    border: var(--border-width) solid var(--color-line) !important;
    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 blockquote[data-ke-style='style3']:hover,
#tt-body-index blockquote[data-ke-style='style3']:hover {
    border-color: var(--color-border) !important;
}
/* 제목용 */
#tt-body-page h2[data-ke-size],
#tt-body-page h3[data-ke-size],
#tt-body-page h4[data-ke-size],
#tt-body-index h2[data-ke-size],
#tt-body-index h3[data-ke-size],
#tt-body-index h4[data-ke-size] {
    font-weight: var(--fw-bold);
}
#tt-body-page h2[data-ke-size],
#tt-body-index h2[data-ke-size] {
    font-size: calc(var(--fs-l) + 2px);
}
#tt-body-page h3[data-ke-size],
#tt-body-index h3[data-ke-size] {
    font-size: var(--fs-l);
}
#tt-body-page h4[data-ke-size],
#tt-body-index h4[data-ke-size] {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 12px 0;
    border-left: 3px solid var(--color-point);
    font-size: var(--fs-m);
    color: var(--color-point);
}
/* 첨부파일 */
figure.fileblock,
#tt-body-page figure.fileblock,
#tt-body-index figure.fileblock {
    display: flex;
    justify-content: center;
    width: auto;
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
    border: 0;
}
figure.fileblock .image,
#tt-body-page figure.fileblock .image,
#tt-body-index figure.fileblock .image {
    display: none;
}
figure.fileblock .desc,
#tt-body-page figure.fileblock .desc,
#tt-body-index figure.fileblock .desc {
    position: static;
    max-width: 100%;
}
figure.fileblock .name,
#tt-body-page figure.fileblock .name,
#tt-body-index figure.fileblock .name {
    height: auto;
    color: var(--color-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-bg);
}

/* ---------- protected ---------- */
.protected {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 10px 55px 10px;
}
.protected_title { 
    display: inline-flex;
    align-items: center;
    font-weight: var(--fw-bold);
}
.protected_title i {
    margin-right: 3px;
    font-size: var(--fs-m);
}
.protected_title a {
    font-size: var(--fs-m);
}
.protected_alert {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 25px;
}
.protected_pw {
    display: flex;
    border: var(--border-width) solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.protected_pw input[type="password"] {
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    border-right: var(--border-width) solid var(--color-border);
    background: #fff;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
}
.protected_pw input[type="submit"] {
    border: 0;
    color: var(--color-def);
    background: #fff;
    height: 40px;
    width: 45px;
    font-size: var(--fs-s);
    font-weight: var(--fw-boldEx);
    transition: var(--transition);
    border-radius: 0;
}
.protected_pw input[type="submit"]:hover {
    background: var(--color-border);
    color: #fff;
}
/* 중앙 정렬 */
.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;
}

/* ---------- member ---------- */
#memberlist {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 35px;
    padding-bottom: 35px;
}
#memberlist .member_content {
    display: flex;
    flex-direction: column;
    gap: 65px 0;
}
#memberlist .member_box {
    position: relative;
}
#memberlist .member_box_title {
    position: absolute;
    top: -25px;
    display: inline-block;
    font-size: var(--fs-nav);
    font-weight: normal;
    font-family: var(--font-cate);
}
#memberlist .member_box_title > a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
#memberlist .member_box_title > a > span {
    text-align: center;
    width: 120px;
    display: block;
    position: relative;
    z-index: 1;
    padding: 12px 15px 14px 15px;
    border-radius: 25px;
    border-width: var(--border-width);
    border-style: solid;
    border-color: var(--color-border);
    overflow: hidden;
}
#memberlist .member_box_title > a > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: -1;
}
#memberlist .member_content > div:nth-child(1) > .member_box_title > a > span::before {
    background-image: var(--color-gr-comic);
}
#memberlist .member_content > div:nth-child(2) > .member_box_title > a > span::before {
    background-image: var(--color-gr-novel);
}
#memberlist .member_content > div:nth-child(3) > .member_box_title > a > span::before {
    background-image: var(--color-gr-illust);
}
#memberlist .member_box_title > a::before,
#memberlist .member_box_title > a::after {
    content: '';
    position: absolute;
    z-index: 9;
    width: 21px;
    height: 23px;
    background-repeat: no-repeat;
    pointer-events: none;
    background-image: var(--icon-sprites);
}
#memberlist .member_box_title > a::after {
    background-position: -51px -158px;
}
#memberlist .member_box_title > a::before {
    background-position: -10px -158px;
}
#memberlist .member_content > div:nth-child(odd) > .member_box_title {
    left: 65px;
}
#memberlist .member_content > div:nth-child(even) > .member_box_title {
    right: 65px;
}
#memberlist .member_content > div:nth-child(odd) > .member_box_title > a::after,
#memberlist .member_content > div:nth-child(even) > .member_box_title > a::before {
    bottom: -11px;
    right: 20px;
}
#memberlist .member_content > div:nth-child(odd) > .member_box_title > a::before,
#memberlist .member_content > div:nth-child(even) > .member_box_title > a::after {
    top: -11px;
    left: 20px;
}
#memberlist .member_content > div:nth-child(odd) > ul {
    border-radius: var(--border-radius-odd);
}
#memberlist .member_content > div:nth-child(even) > ul {
    border-radius: var(--border-radius-even);
}
#memberlist .member_box > ul {
    display: grid;
    padding: 45px 85px 35px 85px;
    border: var(--border-width) solid var(--color-border);
    background-color: #fff;
    overflow: hidden;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 10px;
}
#memberlist .member_box > ul > li {
    position: relative;
    padding-left: 13px;
}
#memberlist .member_box > ul > li::before {
    content: '';
    position: absolute;
    z-index: 9;
    top: 0;
    left: -5px;
    width: 21px;
    height: 23px;
    background-repeat: no-repeat;
    background-image: var(--icon-sprites);
    background-position: -205px -104px;
}
#memberlist .member_box > ul > li > a {
    position: relative;
    padding: 5px 3px;
    font-family: var(--font-member);
    z-index: 9;
    font-weight: normal;
}
#memberlist .member_box > ul > li > a::after {
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
#memberlist .member_content > div:nth-child(1) > ul > li > a::after {
    background-image: linear-gradient(135deg, var(--color-comic) 0%, rgba(247,247,247,1) 83%, rgba(255,255,255,1) 100%);
}
#memberlist .member_content > div:nth-child(2) > ul > li > a::after {
    background-image: linear-gradient(135deg, var(--color-novel) 0%, rgba(247,247,247,1) 83%, rgba(255,255,255,1) 100%);
}
#memberlist .member_content > div:nth-child(3) > ul > li > a::after {
    background-image: linear-gradient(135deg, var(--color-illust) 0%, rgba(247,247,247,1) 83%, rgba(255,255,255,1) 100%);
}
#memberlist .member_box > ul > li > a:hover::after {
    opacity: 1;
}

/* ---------- profile ---------- */
.profile_btn {
    position: fixed;
    z-index: 999;
    top: 50%;
    right: 47px;
    transform: translateY(-50%);
}
.profile_btn > div.mobile {
    display: none;
}
.profile_btn > div.pc {
    display: block;
    width: 70px;
    height: 446px;
    background-image: url(./images/cosmos_floating_icon.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
/* profile_content */
.profile {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 35px;
    padding-bottom: 35px;
}
.profile .line_2 {
    padding: 45px 0;
}
.profile_box {
    display: flex;
    gap: 15px 25px;
}
.profile_box .profile_info {
    width: calc(100% - 400px - 25px);
    padding: 22px 0;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: space-between;
}
.profile_box .profile_info_top > h3 {
    font-weight: var(--fw-bold);
    font-size: var(--fs-xl);
}
.profile_box .profile_info_bottom > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.profile_box .profile_info_bottom > ul > li {
    position: relative;
}
.profile_box .profile_info_bottom > ul > li::before {
    content: '';
    position: absolute;
    top: 0;
    width: 21px; 
    height: 23px;
    background-repeat: no-repeat;
    background-position: -205px -104px;
    background-image: var(--icon-sprites);
}
.profile_box .profile_name_sub {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.profile_box .profile_name_sub > span {
    font-weight: var(--fw-bold);
}
.profile_box .profile_slide {
    position: relative;
    width: 400px;
    aspect-ratio: 1 / 1;
    isolation: isolate; 
    border: var(--border-width) solid var(--color-border);
    overflow: hidden;
}
/* .profile_box.left */
.profile_box.left .profile_slide {
    border-radius: var(--border-radius-odd);
}
.profile_box.left .profile_info_bottom > ul > li {
    padding-left: 18px;
}
.profile_box.left .profile_info_bottom > ul > li::before {
    left: -2px;
}
/* .profile_box.righ */
.profile_box.right {
    flex-direction: row-reverse;
}
.profile_box.right .profile_slide {
    border-radius: var(--border-radius-even);
}
.profile_box.right .profile_info {
    align-items: flex-end; 
    text-align: right;
}
.profile_box.right .profile_info_bottom > ul > li {
    padding-right: 18px;
}
.profile_box.right .profile_info_bottom > ul > li::before {
    right: -2px;
}
/* profile swiper */
.profile_box .profile_slide .swiper-container {
    width: 100%;
    height: 100%;
}
.profile_box .profile_slide .profile_slide_item {
    position: relative;
    cursor: pointer;
    width: 100% !important;
    height: 100%;
}
.profile_box .profile_slide .profile_slide_item a {
    display: block;
    width: 100%;
    height: 100%;
}
.profile_box .profile_slide .profile_slide_item .profile_thumb {
    width: 100%; 
    height: 100%;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.profile_box .profile_slide .swiper-pagination {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.profile_box .profile_slide .swiper-pagination span {
    transition: var(--transition);
    box-sizing: border-box;
    width: 31px;
    height: 31px;
    background-image: var(--icon-sprites);
    background-position: -164px -53px;
    background-color: transparent;
}

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

/* ---------- footer ---------- */
.footer .footer_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 25px;
}
.footer .footer_info > p {
    text-align: center;
    font-weight: normal;
    font-family: var(--font-en);
    font-size: var(--fs-s);
    letter-spacing: 1.628px;
}
.copy {
    font-size: 9px;
    color: var(--color-midGray);
}

/* ---------- ic & line ---------- */
/* ic */
.ic {
    display: block;
    background-image: var(--icon-sprites);
    background-repeat: no-repeat;
}
.ic_small_star_wh {
    width: 18px; 
    height: 18px;
    background-position: -92px -158px;
}
/* line */
.line_1 {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 98px);
    position: relative;
    height: 1px;
    background-color: var(--color-border);
}
.line_1::before,
.line_1::after {
    content: '';
    position: absolute;
    top: -19px;
    width: 49px;
    height: 39px;
    background-repeat: no-repeat;
    background-image: var(--icon-sprites);
}
.line_1::before {
    background-position: -10px -99px;
    left: -40px;
}
.line_1::after {
    background-position: -79px -99px;
    right: -40px;
}
.line_2 {
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    position: relative;
    min-height: 29px;
    background-image: url(./images/cosmos_line_1.png);
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- 탑버튼 --------- */
#floating { 
    position: fixed;
    right: 35px; 
    bottom: 45px;
    z-index: 9995; 
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.scroll-has #floating {
    opacity: 1;
    pointer-events: auto;
}
#floating .top_control.pc {
    width: 75px; 
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: var(--border-width) solid var(--color-border);
    border-radius: 50%;
    z-index: 98;
    transition: background-color 0.25s ease-in-out;
    background-color: #fff;
}
#floating .top_control.pc .top_icon {
    display: flex;
    width: 22px;
    height: 43px;
    background-image: url(./images/top_1.png);
    background-repeat: no-repeat;
    background-size: 100%;
}
#floating .top_control.pc:hover {
  background-color: var(--color-border);
}
#floating .top_control.pc:hover .top_icon {
    background-image: url(./images/top_2.png);
}
#floating .top_control.pc::before {
  content: "";
  position: absolute;
  display: inline-block;
  top: -21px;
  right: -21px; 
  width: 115px;
  height: 115px;
  background: url(./images/cosmos_quick_line_txt.png);
  animation-delay: 0s;
  animation-duration: 22s;
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
#floating .floating_menu {
    display: none;
}
#floating .floating_menu > div {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-width) solid var(--color-border);
    border-right: 0;
    background: #fff;
    transition: var(--transition);
}
#floating .floating_menu > div:last-child {
    border-top: 0;
}
#floating .floating_menu > div:hover {
    background-color: var(--color-border);
    color: #fff;
}
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* ---------- cover ---------- */
/* 레이아웃 */
body#tt-body-index :is(#cover) {
    position: relative;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    height: 570px;
}
body#tt-body-index #cover .line_2 {
    width: 100%;
    padding: 25px 0;
}
.cover_wrap {
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* 아이템별 기본 스타일 */
.cover_style {
    display: none;
}
.cover_container {
    height: 100%;
    position: relative;
} 
#cover .cover_content img {
    max-width: 100%;
    vertical-align: top;
}
.cover_content_scroll {
    overflow-y: auto;
    height: 100%;
    padding-right: 5px;
}
.cover_content_scroll img {
    max-width: 100%;
}
/* 타이틀 */
#cover h2 {
    display: flex;
    align-items: center;
    border-bottom: var(--inline-line-width) solid var(--color-pointBd);
    justify-content: center;
}
#cover h2 > span {
    position: relative;
    z-index: 9;
    display: block;
    font-family: var(--font-cate);
    font-weight: normal;
    font-size: var(--fs-m);
    padding: 0 10px 10px 10px;
}
#cover h2 > span::before {
    content: '';
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 12px;
    left: 0;
    z-index: -1;
    transition: var(--transition);
    background-image: var(--color-gr-gray);
}
/* 공지 */
.cover_notice {
    width: calc(100% - 220px);
    padding-right: 10px;
    margin-right: 20px;
    border-right: var(--border-width) solid var(--color-border);
    position: relative;
}
.cover_notice::before,
.cover_notice::after {
    content: '';
    position: absolute;
    width: 31px;
    height: 31px;
    background-repeat: no-repeat;
    background-position: -164px -53px;
    background-image: var(--icon-sprites);
    right: -16px;
}
.cover_notice::before {
    top: -12px;
}
.cover_notice::after {
    bottom: -12px;
}
.cover_notice .cover_content {
    height: calc(100% - 50px);
}
/* 트위터위젯 */
.cover_twt {
    position: relative;
    width: 220px;
}
.twitter-timeline {
    height: 300px;
}
.cover_twt .cover_container {
    height: auto;
}
.cover_twt .cover_content {
    height: 260px;
}
/* 달력 */
.calendar_box {
    margin: 0 auto;
    text-align: center;
}
.calendar_box .cal_month {
    padding: 0 15px 10px 15px;
    border-bottom: var(--border-width) solid var(--color-border);
    margin-bottom: 15px;
}
.calendar_box .cal_month a:nth-child(2) {
    font-size: var(--fs-s);
    font-weight: var(--fw-bold);
    padding: 0 5px;
}
.calendar_box .cal_month a:first-child {
    float: left;
}
.calendar_box .cal_month a:last-child {
    float: right;
}
.calendar_box .cal_day_sunday {
    color: red;
}
.calendar_box thead {
    display: table-caption;
    padding-bottom: 10px;
}
.calendar_box thead > tr {
    display: flex;
    justify-content: space-around;
}
.calendar_box thead > tr > th {
    font-weight: var(--fw-bold);
    font-size: var(--fs-xs);
}
.calendar_box tbody > tr > td {
    font-size: var(--fs-xs);
    height: 25px;
    border-radius: var(--border-radius-button);
    transition: var(--transition);
}
.calendar_box tbody > tr > td.cal_day3:hover {
    background-image: var(--color-gr-gray);
}
/* 일요일 */
.calendar_box thead > tr > th.cal_week2 {
    color: red;
}
/* 오늘 날짜 */
.calendar_box .cal_day4 {
    background-image: var(--color-gr-comic);
    font-weight: var(--fw-bold);
}
/* 글쓴 날 */
.calendar_box a.cal_click {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-image: var(--color-gr-novel);
    font-weight: var(--fw-bold);
    border-radius: var(--border-radius-button);
}
.calendar_box .cal_day4:hover {
    background-image: var(--color-gr-comic);
}




/* ------------------------------------------------- */
/* ---------- 모바일 메뉴 ---------- */
#mobile {
    position: relative;
    display: none;
}
.mobile_container {
    position: fixed;
    z-index: 9997;
    top: 0;
    left: -240px;
    width: 240px;
    height: calc(100vh);
    opacity: 0;
    transition: var(--transition);
    overflow-y: auto;
    overflow-x: scroll;
}
.mobile_container .inner {
    padding: 45px 0;
}
.mobile_content {
    width: 200px;
    margin: 0 auto;
}
/* visible 상태 */
.mobile_container.visible {
    left: 0;
    opacity: 1;
    transition: left 0.3s linear;
}
/* 배경 */ 
.mobile_container {
    background-color: var(--color-bg);
    background-image: url(./images/cosmos_bg_mo.png);
    background-repeat: no-repeat;
    background-size: 150%;
    background-position: center;
}
/* 햄버거메뉴 */
.mobile_btn {
    position: absolute;
    z-index: 9998;
    top: 5px; 
    left: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.scroll-has .mobile_btn.scroll-down {
    opacity: 0;
}
.scroll-has .mobile_btn.scroll-up {
    position: fixed;
    opacity: 1;
}
.mobile_btn_wrap {
    position: relative;
    width: 20px;
    height: 16px;
    cursor: pointer;
}
.mobile_btn span {
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    transition: var(--transition);
    border-radius: 10px;
}
.mobile_btn span:nth-child(1) {
    top: 0;
}
.mobile_btn span:nth-child(2) {
    top: 7px;
}
.mobile_btn span:nth-child(3) {
    bottom: 1px;
}
.mobile_btn.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 6px);
}
.mobile_btn.open span:nth-child(2) {
    opacity: 0;
}
.mobile_btn.open span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -6px);
}
/* 모바일배경 */
.mobile_bg {
    display: none;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    height: 100vh; 
    background-image:url(./images/cosmos_bg_mo.png);
    background-repeat: repeat;
    background-size: 100% auto;
    background-position: top;
    z-index: -1; 
}
/* 모바일컨텐츠 */
.profile.mobile .profile_imgbox {
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}
/* link_list */
.link_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 22px 0 25px 0;
}
.link_list > a {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer.mobile .footer_info > p {
    font-size: var(--fs-xs);
}

/* ---------- 반응형 ---------- */
@media only screen and (max-width:1340px) {
    .layout_wrap {
        padding-right: 95px;
    }
}
@media only screen and (max-width:1140px) {
    /* layout */
    :root {
        --container-size: 700px;
    }
    .layout_wrap {
        max-width: calc(90% - 140px);
        padding-right: 0;
    }
    .layout_wrap {
        padding-top: 35px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .left_container {
        width: 100%;
        padding-bottom: 45px;
        position: static;
    }
    #container {
        padding-top: 0;
    }
    #container, .logobox_inner {
        width: 100%;
    }
    .logobox.pc {
        text-align: center;
    }
    .logobox.pc img {
        width: 240px;
    }
    nav.pc > ul {
        width: auto;
    }
    nav.pc {
        width: 100%;
        display: flex;
        gap: 15px;
        align-items: center;
        justify-content: center;
        padding-top: 45px;
    }
    nav.pc a {
        padding-top: 6px;
        padding-bottom: 8px;
    }
    nav.pc > .category_item {
        margin-bottom: 0;
    }
    nav.pc > .category_item, 
    nav.pc > ul > li > ul > li {
        width: 100px;
    }
    nav.pc > ul > li > ul {
        flex-direction: row;
        justify-content: flex-start;
    }
    /* list */
    .list[id*="gal"] .list_container {
        gap: 15px;
    }
    #list_web .list_item .list_info {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .list[id*="gal"] .list_item .list_info {
        padding-top: 8px;
        padding-bottom: 10px;
    }
    .list[id*="gal"] .list_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .list_info > .arrow_more {
        top: 13px;
    }
    /* profile */
    .profile_btn > div.pc {
        width: 50px;
        height: 319px;
    }
    .profile {
        padding-top: 0;
    }
    .profile_box.left,
    .profile_box.right {
        flex-direction: column;
        align-items: center;
    }
    .profile_box .profile_info {
        max-width: 100%;
        width: 400px;
        padding: 0;
    }
    .profile_box .profile_slide {
        max-width: 100%;
    }
    /* member */
    #memberlist {
        padding-top: 25px;
    }
    #memberlist .member_content > div:nth-child(even) > .member_box_title {
        right: 35px;
    }
    #memberlist .member_content > div:nth-child(odd) > .member_box_title {
        left: 35px;
    }
    #memberlist .member_box > ul {
        grid-template-columns: repeat(3, 1fr);
    }
    #memberlist .member_box > ul {
        padding-left: 35px;
        padding-right: 35px;
    }
}
@media only screen and (max-width:768px) {
    .mainbox_wrap { 
        width: 75%;
    }
    /* mobile */
    :root {
        --border-radius-odd: 0 45px 0 45px;
        --border-radius-even: 45px 0 45px 0;
    }
    .top_control.pc,
    nav:not(.mobile),
    .profile_btn { 
        display: none !important; 
    }
    #floating .floating_menu,
    #mobile { 
        display: block; 
    }
    #header {
        display: flex;
    }
    #floating {
        right: -50px;
        bottom: 25px;
    }
    #floating.scroll-up {
        right: 0px;
    }
    .layout_wrap {
        max-width: 94%;
    }
    .left_container {
        padding-bottom: 35px;
    }
    .logobox.pc img {
        width: 160px;
    }
    /* cover */
    body#tt-body-index :is(#cover) {
        height: auto;
        flex-wrap: wrap;
    }
    .cover_notice,
    .cover_wrap,
    .cover_twt {
        width: 100%;
    }
    .cover_notice {
        height: 400px;
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        border-bottom: var(--border-width) solid var(--color-border);
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .cover_notice::after {
        bottom: -16px;
        right: -16px;
    }
    .cover_notice::before {
        top: inherit;
        right: inherit;
        left: -16px;
        bottom: -16px;
    }
    body#tt-body-index .layout_wrap {
        max-width: 85%;
    }
    body#tt-body-index #cover::before,
    body#tt-body-index #cover::after {
        width: 45px;
        height: 45px;
        background-position-x: -99px;
    }
    body#tt-body-index #cover::before {
        top: -23px;
        left: -23px;
    }
    body#tt-body-index #cover::after {
        bottom: -23px;
        right: -23px;
    }
}
@media only screen and (max-width:660px) {
    body { 
        background-image: none; 
    }
    .footer .footer_info > p {
        font-size: var(--fs-xs);
    }
    .mobile_bg {
        display: block; 
    } 
    .tooltip {
        display: none !important;
    }
    .loader {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background-image:url(./images/cosmos_bg_mo.png);
        background-attachment: scroll;
        background-repeat: repeat;
        background-size: 100% auto;
        background-position: top;
    }
    .mainbox_logo_wrap {
        row-gap: 20px;
    }
    .mainbox_logo_wrap .line_2 {
        width: 200px;
    }
    .mainbox { 
        background-attachment: scroll;
        background-size: auto;
        background-image: linear-gradient(-25deg, rgba(205,221,237,1) 0%, rgba(239,239,239,1) 48%, rgba(255,255,255,1) 95%);
    }
    /* list */
    #list_web .list_item .list_info {
        flex-direction: column;
        align-items: center;
    }
    .list_info > .arrow_more {
        display: none;
    }
    .list[id*="gal"] .list_container {
        padding-left: 35px;
        padding-right: 35px;
        row-gap: 25px;
        grid-template-columns: repeat(1, 1fr);
    }
    /* member */
    #memberlist .member_content {
        row-gap: 45px;
    }
    #memberlist .member_box > ul {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
    }
    #memberlist .member_box_title {
        top: -20px;
    }
    #memberlist .member_content > div:nth-child(odd) > .member_box_title,
    #memberlist .member_content > div:nth-child(even) > .member_box_title {
        left: 50%;
        transform: translateX(-50%);
    }
    #memberlist .member_content > div:nth-child(even) > .member_box_title {
        right: inherit; 
    }
    #memberlist .member_content > div:nth-child(odd) > ul,
    #memberlist .member_content > div:nth-child(even) > ul {
        border-radius: var(--border-radius);
    }
    #memberlist .member_box_title > a > span {
        padding-top: 8px;
        padding-bottom: 10px;
    }
    /* 반응형시 이미지 깨짐 */
    .ic,
    .line_1::before,
    .line_1::after,
    .cover_notice::before,
    .cover_notice::after,
    .profile_box .profile_slide .swiper-pagination span,
    .profile_box .profile_info_bottom > ul > li::before,
    #memberlist .member_box > ul > li::before,
    #memberlist .member_box_title > a::before,
    #memberlist .member_box_title > a::after,
    nav > .category_item::before,
    nav > .category_item::after,
    nav > ul > li > ul > li::before,
    nav > ul > li > ul > li::after,
    body#tt-body-index #cover::before,
    body#tt-body-index #cover::after,
    .loader span {
        image-rendering: -moz-crisp-edges; /* firefox */
        image-rendering: -o-crisp-edges; /* opera */
        image-rendering: -webkit-optimize-contrast; /* chrome */
        image-rendering: crisp-edges;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}
.tt_article_useless_p_margin p {
    text-align: justify !important;
    word-break: break-all;
}
#list_web .list_summary_wrap > p {
	text-align: justify;
	word-break: break-all;
}