@charset "utf-8";

/* 웹폰트 */
@import url('https://fonts.googleapis.com/css?family=Meddon');
@import url('//cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');

@font-face {
    font-family: 'DOSGothic';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_eight@1.0/DOSGothic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Iropke Batang';
    font-style: normal;
    font-weight: 400;
    src: url(/images/IropkeBatangM.eot);
    src: url(/images/IropkeBatangM.eot?#iefix) format('embedded-opentype'), url(images/IropkeBatangM.woff) format('woff');
}

html,
body,
code {
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    font-family: 'Iropke Batang', serif;
    font-size: 12px;
    line-height: 1.8;
    color: #bababa;
    color: var(--text);
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
    display: block;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
    overflow: visible;
    cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea {
    -webkit-appearance: none;
}

input,
select,
textarea,
button {
    font-family: 'Iropke Batang', serif;
    font-size: 100%;
    border-radius: 0;
    background: transparent;
    border: 0;
    outline: none;
    color: #bababa;
    color: var(--text);
}

button {
    overflow: visible;
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

img,
fieldset {
    border: none;
    vertical-align: top;
}

hr {
    display: none;
}

iframe,
embed {
    width: 100%;
}

table .imageblock {
    width: 100% !important;
}

table[border^="1"],
table[border^="1"] tr,
table[border^="1"] td {
    border: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
    border-spacing: 0;
}

table,
tr,
td {
    border-spacing: 1px;
    border: 0;
}

a,
a:link {
    text-decoration: none;
    color: #bababa;
    color: var(--text);
    transition: color .4s;
}

a:hover,
a:focus {
    color: #fff;
    color: var(--point);
}

/* 입력창 폰트 색상 */
::-webkit-input-placeholder {
    color: #bababa;
    color: var(--text);
}

:-moz-placeholder {
    color: #bababa;
    color: var(--text);
}

:-ms-input-placeholder {
    color: #bababa;
    color: var(--text);
}

::placeholder {
    color: #bababa;
    color: var(--text);
}

/* 마우스 드래그 블러 */
::selection {
    color: transparent;
    text-shadow: 0 0 3px #bababa;
    text-shadow: 0 0 3px var(--text);
    transition: all 250ms ease-in;
}

::-moz-selection {
    color: transparent;
    text-shadow: 0 0 3px #bababa;
    text-shadow: 0 0 3px var(--text);
    transition: all 250ms ease-in;
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #292C3A;
    background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
    background-color: #E1E1E2;
    background-color: var(--scroll);
}

body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* 밑줄 */
u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, #bababa 0%, #bababa 100%);
    background-image: linear-gradient(to right, var(--text) 0%, var(--text) 100%);
    background-size: 100% 2px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .4s ease-out;
}

u:hover {
    color: #fff;
    color: var(--point);
    background-size: 100% 100%;
}

u:hover::before {
    transform: translateY(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
}

/* 부드러운 화면 전환 */
.smooth-screen #container,
.smooth-screen .copy,
.smooth-screen .myoskin .item,
.smooth-screen .noti,
.smooth-screen #article {
    animation: fadein 1000ms ease-out;
    -moz-animation: fadein 1000ms ease-out;
    -webkit-animation: fadein 1000ms ease-out;
    -o-animation: fadein 1000ms ease-out;
}

@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;
    }
}

/* ★ 전체 박스 */
#container {
    min-height: 100vh;
}

/* ★ 헤더 */
#header {
    position: fixed;
    white-space: nowrap;
    z-index: 999999;
}

#header,
#header > div {
    min-height: 100vh;
}

#header .scroll,
#header .shot {
    padding: 70px 15px;
}

/* 카테고리 */

#header .catebox {
    position: fixed;
    left: -101%;
    top: 0;
    transition: left .5s;
}

html.open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.page_cover {
    position: fixed;
    background-color: #292C3A;
    background-color: var(--bg);
    opacity: 0;
    transition: opacity .5s;
}

.page_cover.open {
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99 !important;
    margin: 0 !important;
}

#header .catebox.open {
    left: 0;
    z-index: 999;
}

#header .catebox .cate a:before,
a.link_item:before,
#header .catebox .search:before,
.blogmenu:before {
    content: '- '
}

#header .catebox .cate,
#header .catebox .search {
    margin-bottom: 10px;
}

/* 타이틀 */
#header .catebox .title {
    font-family: 'DOSGothic';
    font-style: italic;
    font-size: 4em;
    margin-bottom: 10vh;
    line-height: 1;
}

#header .catebox .title img {
    max-height: 90px;
}

.catebox {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.category_list > li.mc .link_item:after {
    content: '\f107';
    font-family: 'fontAwesome';
    transition: .4s;
    float: right;
    display: inline-block;
}

.category_list > li.mc:hover .link_item:after {
    transform: rotate(180deg);
}

.category_list > li:not(.mc) .link_item:only-child,
.link_sub_item,
.catebox .cate a {
    display: block;
}

.sub_category_list {
    padding-bottom: 20px;
}

.link_sub_item {
    padding-left: 10px;
}

.new {
    color: #fff;
    color: var(--point);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
}

@keyframes animated-cursor {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.link_tit,
.sub_category_list {
    display: none;
}

/* 검색 */
#header .catebox .search {
    margin-top: 30px;
}

#header .catebox .search input {
    width: 100%;
}

#header .catebox .search button {
    display: none;
}

/* sns */
.sns {
    cursor: default;
}

/* 카테고리 호출 */
.shot {
    background-color: #E1E1E2;
    background-color: var(--scroll);
    flex: 0 0 70px;
    text-align: center;
    line-height: 3;
    font-size: 1.05em;
}

.shot,
.shot a {
    color: var(--bg);
}

.shot .btn {
    transition: .4s;
    cursor: pointer;
}

.shot .btn:hover,
.shot a:hover {
    color: #fff;
    color: var(--point);
}

/* ★ 콘텐츠 */
#content {
    padding: 8vh 0 0 70px;
}

.width {
    margin: auto;
}

/* 목록 공통 */
.myoskin .post-header {
    text-align: right;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
}

.myoskin .item {
    position: relative;
}

.myoskin .item a {
    display: block;
}

.myoskin .item .thumbox .img {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid;
    transition: .5s;
    opacity: 1;
    vertical-align: top;
}

.myoskin .item:hover .thumbox .img {
    filter: blur(5px);
    opacity: 0.5;
}

.myoskin .item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    transition: opacity .5s;
}

.myoskin .item:hover .info {
    opacity: 1;
}

.myoskin .item .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 42px;
    word-break: keep-all;
    word-wrap: break-word;
}

.noimg {
    display: none !important;
}

:not(.thum) + .noimg {
    display: inline-block !important;
}

/* 갤러리형 - 세로 */
#myo_gal .post-header {
    display: none;
}

#myo_gal ol {
    display: flex;
    flex-flow: row wrap;
}

#myo_gal .item {
    width: 32%;
    margin: 0 2% 2% 0;
    position: relative;
}

#myo_gal .item:nth-child(3n) {
    margin-right: 0;
}

#myo_gal .item .thumbox .img {
    padding-top: 42vh;
}

/* 갤러리형 - 가로 */
#myo_gal2 .item {
    margin-bottom: 20px;
}

#myo_gal2 .item .thumbox .img {
    padding-top: 70px;
}

#myo_gal2 .item .title {
    width: 50%;
    text-align: center;
}

/* 글 없음 */
.empty > ul {
    display: none;
}

#tt-body-category .empty .category,
#tt-body-search .empty .search {
    display: block;
}

/* 보호글 */
.pass {
    height: 40vh;
    -ms-display: flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.pass form {
    width: 200px;
    margin: auto;
}

.pass input,
.pass button {
    margin: 5px 0;
    padding: 5px 0;
}

.pass input {
    width: 100%;
    border: 0;
    background: transparent;
}

.pass button {
    width: 100%;
    border: 1px solid;
    letter-spacing: 3px;
    padding: 10px;
    transition: .4s;
}

.pass button:hover {
    color: #fff;
    color: var(--point);
}

.pass input[required] + label {
    display: block;
    height: 48px;
    margin-top: -48px;
    margin-bottom: 0;
    pointer-events: none;
    line-height: 1;
}

.pass input[required] + label:before {
    content: attr(placeholder);
    display: inline-block;
    height: 48px;
    line-height: 48px;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8em;
}

.pass input[required]:focus + label:before,
.pass input[required]:valid + label:before {
    -webkit-transform: translate(0, -24px) scale(1, 1);
    transform: translate(0, -24px) scale(1, 1);
    font-style: italic;
}

/* 본문 영역 */
body:not(#tt-body-page) #article .post:first-child {
    border-top: 4px double;
    margin-top: 50px;
}

body:not(#tt-body-page) #article .post {
    padding: 50px 0;
    border-bottom: 4px double;
}

#tt-body-page #content,
#tt-body-page footer,
.post {
    font-family: 'NanumSquare', sans-serif;
}

/* 본문 타이틀 영역 */
.titlebox {
    margin-bottom: 50px;
    padding: 0 10%;
}

.titlebox .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    color: var(--point);
    font-family: 'Iropke Batang', serif;
}

.titlebox .admin a {
    margin-right: 10px;
    font-size: .9em;
}

/* 본문 */
.text-item {
    word-break: break-word;
    word-wrap: break-word;
    border: 1px solid;
    padding: 15px;
}

.text-item a:before,
.tx-link:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
}

.text-item .another_category a:before {
    content: '';
    margin: 0;
}

.figure.fileblock a,
#tt-body-page figure.fileblock a:before {
    content: '';
}

.tx-link.imgblock:before,
.footnote a:before {
    display: none;
}

.text-item ul,
.text-item li {
    list-style: inherit;
}

.text-item ul {
    list-style: disc inside;
}

.text-item ol {
    list-style: inside decimal;
}

/* 링크 */
.btn_more,
.btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless,
.text-item a,
.another_category a {
    color: #fff;
    color: var(--point);
    transition: .4s;
}

.btn_more:hover,
.btn_less:hover,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
.text-item p a:hover,
.another_category a:hover {
    color: transparent !important;
    text-shadow: 0 0 2px #bababa;
    text-shadow: 0 0 2px var(--text);
    transition: all 250ms ease-in;
}

.text-item .imageblock img {
    transition: .4s;
}

.text-item .imageblock img:hover {
    filter: blur(3px);
}

figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
    position: relative;
    z-index: 1;
}

figure[data-ke-type='opengraph'] div.og-image {
    width: 100px;
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    height: 100px;
    border: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
}

figure[data-ke-type='opengraph'] a::before,
#tt-body-page figure[data-ke-type='opengraph'] a::before {
    left: 50px;
}

figure[data-ke-type='opengraph'] div.og-text {
    left: 101px;
    padding: 10px 10px 0 10px;
}

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 {
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
    color: var(--point);
    margin-bottom: 0 !important;
    transition: .4s;
}

figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title {
    color: #bababa;
    color: var(--text);
}

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 {
    color: #bababa;
    color: var(--text);
    font-size: inherit;
}

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 {
    color: #bababa;
    color: var(--text);
    margin-bottom: 0 !important;
    font-size: inherit;
    bottom: 10px;
    font-family: inherit;
    position: static;
}

/* 아이프레임 */
.framebox {
    position: relative;
    height: 0;
    margin: 0;
    padding-bottom: 56.25%;
}

.framebox.ver {
    padding-bottom: 177.77%;
}

.framebox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: top;
}

/* 이미지, 동영상 설명글 */
figure figcaption,
figure[data-ke-type='video'] figcaption {
    font-size: .8rem;
    color: #fff;
    color: var(--point);
}

.text-item .imageblock,
.text-item .imageblock .cap1,
.text-item .imageblock > span:nth-child(2) {
    width: auto !important;
}

/* 인용구 */
.tx-quote-tistory:before,
blockquote[data-ke-style='normal']:before,
#tt-body-page blockquote[data-ke-style='normal']:before {
    content: "\e67f";
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 0;
}

.tx-quote-tistory:after,
blockquote[data-ke-style='normal']:after,
#tt-body-page blockquote[data-ke-style='normal']:after {
    content: "\e67e";
    font-family: 'themify';
    position: absolute;
    right: 0;
    bottom: 0;
}

blockquote,
blockquote p {
    font-style: italic;
    font-size: inherit;
    color: inherit;
}

.tx-quote-tistory,
blockquote[data-ke-style='normal'],
#tt-body-page blockquote[data-ke-style='normal'] {
    position: relative;
    height: auto;
    margin: 5%;
    padding: 1em 2em;
    font-style: italic;
    font-size: inherit;
    color: inherit;
}

/* 인용구2 */
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='box'] {
    padding: 10px;
    background-color: transparent;
    border: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* 더보기 */
.btn_less::before {
    display: none;
}

.btn_more::before {
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    vertical-align: inherit;
}

.btn_more,
.btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: block;
    font-size: inherit;
    font-family: inherit;
    height: auto;
    transition: .4s;
}

.btn_more:before,
.btn_less span:before,
a.btn-toggle-moreless:before {
    content: "\e65f";
    font-family: 'themify';
    margin-right: 5px;
    vertical-align: middle;
}

.btn_less:last-child span:before {
    content: "\e65c";
}

.btn_less:first-child {
    border-bottom: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.btn_less:last-child {
    border-top: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.moreless_content,
.moreless-content,
div[data-ke-type='moreLess'] .moreless-content,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content {
    padding: 10px;
    line-height: inherit;
    border: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
}

/* 이미지 슬라이드 */
figure.imageslideblock div.image-container {
    width: auto !important;
    max-width: 100%;
    max-height: none;
    min-width: auto;
    min-height: auto;
}

/* 파일 첨부 */
figure.fileblock,
#tt-body-page figure.fileblock {
    background-color: transparent;
    border: 1px solid;
    border-color: #bababa;
    border-color: var(--text);
    z-index: 1;
}

figure.fileblock a:before,
#tt-body-page figure.fileblock a:before {
    content: ''
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    color: #fff;
    color: var(--point);
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    color: #bababa;
    color: var(--text);
    font-family: inherit;
}

.text-item .imageblock > a > img {
    display: none;
}

.text-item .imageblock > a:before {
    content: "\e6a7";
    font-family: 'themify';
    margin-right: 5px;
}

/* 공감 */
body .container_postbtn {
    padding: 25px 0 0;
    line-height: normal;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    border: 1px solid;
    border-color: #bababa !important;
    border-color: var(--text) !important;
    width: auto;
    height: 30px;
    line-height: inherit;
    font-family: inherit !important;
    padding: 0 10px;
    border-radius: 0;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .postbtn_like .wrap_btn {
    display: flex;
    align-items: center;
}

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
}

body .container_postbtn .btn_post {
    padding: 0 10px 0 0;
}

body .container_postbtn .wrap_btn:last-child .btn_post {
    padding-right: 0;
}

body .container_postbtn .btn_post .txt_like {
    font-size: 11px !important;
    font-family: inherit !important;
    vertical-align: middle;
}

body .container_postbtn .btn_post .ico_postbtn {
    background-image: none;
    position: relative;
    margin: 0 !important;
    text-indent: inherit !important;
    vertical-align: middle;
    overflow: visible;
    width: 12px;
}

body .container_postbtn .btn_post .ico_postbtn:after {
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
}

body .container_postbtn .btn_post .ico_like:after {
    content: '\e635'
}

body .container_postbtn .btn_post .ico_share:after {
    content: '\e72e';
}

body .container_postbtn .btn_post .ico_statistics:after {
    content: "\e6ba"''
}

body .container_postbtn .btn_post .ico_etc:after {
    content: "\e6e1";
}

body .container_postbtn .btn_post .txt_like.uoc-text {
    display: none;
}

/* 본문 하단 태그 */
.tags {
    margin-top: 25px;
    display: flex;
}

.tags .title,
#opencmt .title {
    margin-right: 15px;
    color: #fff;
    color: var(--point);
    white-space: nowrap;
}

.tags .tag {
    color: transparent !important;
    cursor: default;
}

.tags a:before {
    content: '#';
    margin-right: 1px;
}

.tags a {
    white-space: nowrap;
    color: #bababa;
    color: var(--text);
    transition: .4s;
    margin-right: 5px;
}

.tags a:hover {
    color: #fff;
    color: var(--point);
}

/* 댓글 오픈 */
#opencmt {
    margin-top: 15px;
}

#opencmt a {}

#opencmt a:hover {
    color: #fff;
    color: var(--point);
}

/* 댓글, 방명록 작성 */
#rp > div {
    display: none;
}

.write {
    margin-top: 50px;
}

.write textarea {
    padding: 10px;
    height: 100px;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    z-index: 100;
    display: block;
    vertical-align: top;
    border: 1px solid;
    margin-bottom: 5px;
}

.write button {
    line-height: 1;
    padding: 10px 20px;
    width: 100%;
    transition: .4s;
    border: 1px solid;
}

.write button:hover {
    color: #fff;
    color: var(--point);
}

.write .input + button {
    width: inherit;
}

.write .inputbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.write .inputbox .input {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.write .input input {
    display: inline-block;
    margin-right: 15px;
    max-width: 36%;
}

.write input {
    padding: 3px 0;
    width: 100%;
    height: 27px;
}

.write .input .secret {
    margin-right: 0;
    display: flex;
    align-items: center;
}

.write .inputbox input[name="secret"] {
    width: inherit;
    height: inherit;
    margin-right: 0;
    vertical-align: middle;
    border: 0;
    background-color: transparent;
    visibility: hidden;
}

.write input[name="secret"]:after {
    content: "\e603";
    font-family: 'themify';
    transition: color .4s;
    line-height: 1;
    visibility: visible;
}

.write input[name="secret"]:checked:after {
    content: "\e62b";
    color: #fff;
    color: var(--point);
}

/* 댓글, 방명록 목록 */
.lst {
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}

.lst > ul,
.lst li {
    position: relative;
}

.lst > ul,
#rp.order .lst > ul:last-child {
    padding: 50px 0;
    border-bottom: 1px solid;
}

.lst > ul:last-child,
#rp.order .lst > ul:first-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.lst > ul:first-child,
#rp.order .lst > ul:last-child {
    border-top: 1px solid;
}

#rp.order .lst {
    flex-direction: column-reverse;
}

.lst .name:before {
    font-family: "themify";
    font-size: .8em;
    margin-right: 5px;
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before {
    content: "\e642";
}

.lst .rp_secret .name:before,
.lst .guest_secret .name:before,
.lst .hiddenComment .name:before {
    content: "\e62b";
}

.lst .name {
    font-weight: bold;
}

.lst .name,
.lst .name a {
    color: #fff;
    color: var(--point);
}

.lst .name .tistoryProfileLayerTrigger {
    background-image: none;
    width: 10px;
}

.lst .name .tistoryProfileLayerTrigger:after {
    content: '\f2c0';
    font-family: 'fontAwesome';
    font-size: 8px;
    font-weight: normal;
}

.lst .name img[alt=BlogIcon] {
    display: none;
}

.lst .date:before {
    content: '';
    width: 1px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
}

.lst .date {
    font-size: .8em;
}

.lst .date a {
    visibility: hidden;
    margin-left: 15px;
    font-size: 0;
}

.lst .date a:after {
    content: '\f05e';
    font-family: "FontAwesome";
    visibility: visible;
    font-size: .8rem;
}

.lst .text {
    margin-bottom: 5px;
    word-break: normal;
    word-wrap: break-word;
}

.lst .text a {
    color: #fff;
    color: var(--point);
}

.lst .text a:hover {
    color: #bababa;
    color: var(--text);
}

.lst .text a:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    border-radius: 15px;
}

.lst .text img {
    max-width: 100%;
}

.lst .info {
    display: flex;
    align-items: center;
}

.lst .date,
.lst .admin {
    opacity: 0;
    transition: .4s;
}

.lst li:hover .date,
.lst li:hover .admin {
    opacity: 1;
}

.lst .admin {
    margin-left: auto;
}

.lst .admin a {
    margin-left: 15px;
}

.reply {
    margin-top: 15px;
}

.reply > li {
    margin-top: 30px;
}

.reply .rp_admin,
.reply .guest_admin {
    margin-left: 50px;
    position: relative;
}

/* 페이지네이션 */
.pagination {
    cursor: default;
    text-align: center;
    margin-top: 50px;
}

.pagination .num a {
    padding: 0 5px;
}

.pagination .prev:not([href]),
.pagination .next:not([href]) {
    opacity: 0.5;
}

.pagination a .selected {
    color: #fff;
    color: var(--point);
    font-weight: bold;
}

/* 푸터 */
footer {
    text-align: center;
    margin: 50px 0 50px 70px;
}

footer span {
    opacity: 0.5;
    transition: opacity .4s;
    cursor: default;
}

footer span:hover {
    opacity: 1;
}

/* ie */
#ie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.3em;
    padding: 5px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    z-index: 9999999999999;
    text-align: center;
}

#ie a {
    font-weight: bold;
    color: #ff0;
}

/* 카피라이트 삭제 금지 20.01.03 옵션 구매 */
.copy {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 8px;
    font-family: 'Meddon', cursive;
    text-align: center;
    display: none;
}

@media screen and (min-width: 426px) {
    #header {
        display: flex;
        align-items: flex-start;
    }

    .m {
        display: none;
    }
}

/* 모바일 영역 */

@media screen and (max-width: 425px) {
    #container {
        display: inherit;
        margin: 0;
        min-height: 94vh;
    }

    #header .shot {
        min-height: auto;
        width: 100%;
        position: fixed;
        padding: 0;
        justify-content: space-between;
    }

    #header .shot > * {
        padding: 0 10px;
    }

    #header .shot,
    #header .sns {
        display: flex;
        align-items: center;
    }

    #header .shot .home {
        order: 1;
        font-size: 1.2em;
        font-weight: bold;
    }

    #header .shot .home .fa {
        display: none;
    }

    #header .shot .btn {
        order: 2;
    }

    #header .shot .sns li:not(:last-child) a {
        margin-right: 7px;
    }

    .top {
        right: 10px;
        bottom: 11px;
        width: 30px;
        height: 30px;
        line-height: 32px;
        font-size: 1.4rem;
        position: fixed;
    }

    .top a {
        color: #bababa;
        color: var(--text);
    }

    .catebox {
        width: 70% !important;
        overflow: hidden !important;
        height: 100%;
        position: fixed !important;
        top: 0px;
        left: -75%;
        margin: 0;
        z-index: 999999 !important;
        transition: All 0.2s ease;
        -webkit-transition: All 0.2s ease;
        -moz-transition: All 0.2s ease;
        -o-transition: All 0.2s ease;
        background-color: #292C3A;
        background-color: var(--bg);
        text-align: inherit;
        line-height: 2.8;
    }

    .catebox .scroll {
        width: calc(100% + 5px);
        height: 100%;
        overflow-y: scroll;
    }

    #content {
        padding: 62px 15px 0 !important;
    }

    #tt-body-page .titlebox {
        margin-bottom: 20px;
    }

    .write .inputbox {
        flex-wrap: wrap;
    }

    .write .inputbox .input {
        flex: 0 0 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 5px;
    }

    .write .input input {
        max-width: none;
    }

    .write .inputbox .input input[name=name] {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .write .inputbox .input input[name=password] {
        flex: 0 0 90%;
    }

    .write .inputbox button {
        width: 100%;
    }

    footer {
        margin: 25px 0;
    }
}

