@charset "utf-8";

/* reset css */
@import url(./images/reset.css);

/* 웹폰트 */
@import url(//fonts.googleapis.com/css?family=Meddon);

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

/* 전체 폰트 */
html,
body,
th,
td,
input,
select,
textarea,
button,
body blockquote,
body blockquote p,
body figure figcaption,
code {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    font-family: 'NanumBarunpen';
    font-size: 11px;
    line-height: 1.8;
    color: #304231;
    color: var(--text);
}

/* ================ 
 *
 *   기본 설정
 *
 * ================ */

/* 링크 */
a,
a:link {
    text-decoration: none;
    color: #304231;
    color: var(--text);
    transition: color .4s;
}

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

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

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

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

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

/* 마우스 드래그 블럭 */
::selection {
    color: #C4DAC6;
    color: var(--point);
    background-color: var(--text);
}

::-moz-selection {
    color: #C4DAC6;
    color: var(--point);
    background-color: var(--text);
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 0;
    height: 5px;
    background-color: #fff;
    background-color: var(--point3);
}

::-webkit-scrollbar-thumb {
    background-color: #C4DAC6;
    background-color: var(--point);
}

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;
    overflow-x: hidden;
}

/* ================ 
 *
 *   스킨 시작
 *
 * ================ */
#container {
    margin: 150px auto 50px;
    width: 100%;
		display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================ 
 *
 *   헤더
 *
 * ================ */

#header {
    position: relative;
    margin-bottom: 30px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 999;
}

/* 로고 + 타이틀 */
#header .header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#header .logo {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 10px;
    cursor: pointer;
    transition: .4s;
    overflow: hidden;
    border: 1px solid;
    border-color: #fff;
    border-color: var(--point3);
}

#header .logo:hover {
    opacity: .5;
    border-color: #638A66;
    border-color: var(--point2);
}

#header .title {
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 5px;
}

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

/* ---------------
    카테고리
--------------- */
.catebox {
    position: absolute;
    top: 40px;
    min-width: 130%;
    max-width: 80vw;
    display: none;
    word-break: normal;
    word-wrap: break-word;
    z-index: 999;
    filter: blur(3px);
    opacity: 0;
    transition: filter 1s, opacity 1s;
    text-align: center;
    box-shadow: 0 0 30px #FFF, 0 0 30px #FFF, 0 0 30px #FFF;
    box-shadow: 0 0 30px var(--bg), 0 0 30px var(--bg), 0 0 30px var(--bg);
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 3px 0;
    border-color: #C4DAC6;
    border-color: var(--point);
    overflow: hidden;
}

.catebox:after {
    content: '';
    background-color: #fff;
    background-color: var(--point3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.8;
}

#header.open .catebox {
    filter: blur(0);
    opacity: 1;
}

.catebox .cate a,
.catebox .link_item,
.catebox .link_sub_item,
.catebox .search-box input {
    padding: 5px 30px;
    word-break: keep-all;
    white-space: nowrap;
}

.catebox .category_list > li {
    transition: .4s;
}

.catebox .category_list > li,
.catebox .cate,
.catebox .search-box input {
    border-radius: 5px;
}

.catebox .category_list > li:hover,
.catebox .cate:hover,
.catebox .search-box input:hover,
.catebox .search-box input:active,
.catebox .search-box input:focus {
    background-color: #638A66;
    background-color: var(--point2);
}

.catebox .category_list > li:hover .link_item,
.catebox .category_list > li:hover .link_sub_item,
.catebox .search-box input:hover,
.catebox .search-box input:active,
.catebox .search-box input:focus {
    color: #fff;
    color: var(--point3);
}

.catebox .category_list > li:hover .link_item:hover,
.catebox .category_list > li:hover .link_sub_item:hover,
.catebox .cate:hover a,
.catebox .search-box input:hover {
    color: #C4DAC6;
    color: var(--point);
}

.catebox .link_item {
    display: inline-block;
    transition: .4s;
}

.catebox .category_list > li.mc .link_item:before {
    content: '+';
    font-family: 'fontAwesome';
    transition: transform .4s;
    position: absolute;
    left: 10px
}

.catebox .category_list > li.mc:hover .link_item:before {
    transform: rotate(45deg);
}

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

.catebox .sub_category_list {
    border-top: 1px dashed;
    border-color: #C4DAC6;
    border-color: var(--point);
    padding-top: 5px;
    padding-bottom: 5px;
}

.catebox .link_sub_item {
    position: relative;
}

.catebox img[alt="N"],
.catebox .new {
    position: absolute;
    right: 10px;
}

.catebox img[alt="N"] {
    padding: 5px 0;
}

.catebox .link_tit,
.catebox .sub_category_list {
    display: none;
}

/* 검색 */
.search-box {
    padding-left: 0;
    padding-right: 0;
    margin-top: 3px;
    padding-top: 3px;
    border-top: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
}

.search-box input {
    width: 100%;
    text-align: center;
    transition: .4s;
}

.search-box input:hover:-moz-placeholder {
    color: #C4DAC6;
    color: var(--point);
}

.search-box input:hover::placeholder {
    color: #C4DAC6;
    color: var(--point);
}

.search-box input:hover:-ms-input-placeholder {
    color: #C4DAC6;
    color: var(--point);
}

.search-box input:hover::placeholder {
    color: #C4DAC6;
    color: var(--point);
}

.search-box input:focus:-moz-placeholder {
    color: transparent;
}

.search-box input:focus::placeholder {
    color: transparent;
}

.search-box input:focus:-ms-input-placeholder {
    color: transparent;
}

.search-box input:focus::placeholder {
    color: transparent;
}

.search-box button {
    display: none;
}

/* ================ 
 *
 *   콘텐츠 영역
 *
 * ================ */

#content {
    top: 0;
    width: 100%;
    height: 400%;
    transition: .4s;
}

body.gal #header + #content .trigger,
body.gal #header + #content .pagination,
body.gal #header + #content + #footer,
body:not(.gal) #header + #content,
body:not(.gal) #header + #content + #footer {
    transition: filter 1s;
}

body.gal #header.open + #content .trigger,
body.gal #header.open + #content .pagination,
body.gal #header.open + #content + #footer,
body:not(.gal) #header.open + #content,
body:not(.gal) #header.open + #content + #footer {
    filter: blur(3px);
}

/* ---------------
    목록 공통
--------------- */
.myoskin .item {
    position: relative;
}

.myoskin .item a {
    display: block;
}

.myoskin .item .thumbox img {
    width: 100%;
}

.myoskin .item .title-cnt img {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
}

.myoskin .item .title-cnt .ti {
    margin-right: 5px;
}

.myoskin .item .cnt {
    background-color: #C4DAC6;
    background-color: var(--point);
    border-radius: 15px;
    white-space: nowrap;
    line-height: 13px;
    padding: 0 3px;
    font-size: .8em;
    color: #638A66;
    color: var(--point2);
    font-family: 'Calibri', sans-serif;
}

.myoskin .item .cnt:empty {
    display: none !important;
}

/* 노이미지 */
.noimg {
    display: none !important;
}

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

/* 목록 없음 */
.myoskin .empty > ul {
    display: none;
}

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

/* ---------------
    갤러리형
--------------- */
body.gal #header,
body.gal .pagination,
body.gal #footer {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

#myo_gal .item,
#myo_gal #scrollDist,
#myo_gal .trigger {
    position: absolute;
    user-select: none;
}

#myo_gal .trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    z-index: -1;
}

#myo_gal #scrollDist {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 400%;
    z-index: -1;
    overflow: hidden;
}

#myo_gal .item .thumbox {
    border-radius: 20%;
    overflow: hidden;
}

#myo_gal .item .title-cnt {
    position: absolute;
    bottom: 5px;
    width: 100%;
    padding: 0 10px;
}

#myo_gal .item .title-cnt .fa-lock {
    background-color: #C4DAC6;
    background-color: var(--point);
    border-radius: 15px;
    white-space: nowrap;
    line-height: 13px;
    padding: 0 3px;
    font-size: .8em;
    color: #638A66;
    color: var(--point2);
    margin-right: 3px;
}

#myo_gal .item .cnt:not(:empty):before {
    content: '\f005';
    font-family: 'fontAwesome';
    margin-right: 4px;
    font-size: .8em;
}

#myo_gal .item .title,
#myo_gal .item .text,
#myo_gal + #article {
    display: none;
}

.YACSSTooltip {
    background-color: transparent !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #304231 !important;
    color: var(--text) !important;
    border-color: #C4DAC6 !important;
    border-color: var(--point) !important;
    line-height: 1;
}

.YACSSTooltip:after {
    content: '';
    background-color: #fff;
    background-color: var(--point3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.8
}

/* ---------------
    목록형
--------------- */
#myo_bbs .item {
    margin-bottom: 20px;
    max-width: 100%;
    text-align: center;
}

#myo_bbs .item a {
    display:inline;
}

#myo_bbs .item .thumbox {
    display: none;
}

#myo_bbs .item .info {
    text-align: center;
    display:inline;
}

#myo_bbs .item .title-cnt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    position: relative;
}

#myo_bbs .item .title-cnt .fa-lock {
    margin-right: 5px;
}

#myo_bbs .item .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: letter-spacing .4s;
}

#myo_bbs .item a:hover .title {
    letter-spacing: 1px;
}

#myo_bbs .item .title-cnt img,
#myo_bbs .item .new {
    position: absolute;
    left: 100%;
}

#myo_bbs .item .title-cnt img,
#myo_bbs .item .new,
#myo_bbs .item .cnt {
    margin-left: 7px;
}

#myo_bbs .item .text {
    display: none;
}

#myo_bbs .item:last-child {
    margin-bottom: 0;
}

/* ----------------------
    보호글 비밀번호 입력창
------------------------- */
.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;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
    letter-spacing: 3px;
    padding: 10px;
    transition: .4s;
    color: #638A66;
    color: var(--point2);
}

.pass button:hover {
    color: #C4DAC6;
    color: var(--point);
    background-color: #638A66;
    background-color: var(--point2);
}

.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;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8em;
    color: #638A66;
    color: var(--point2);
    transition: .4s;
}

.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;
    color: #C4DAC6;
    color: var(--point);
}

/* ---------------
    본문 영역
--------------- */
body:not(#tt-body-page) #article .post {
    padding: 30px 0;
    border-bottom: 3px double;
    border-color: #C4DAC6;
    border-color: var(--point);
}

body:not(#tt-body-page) #article .post:first-child {
    padding-top: 0;
}

body:not(#tt-body-page) .myoskin + #article .post:first-child {
    border-top: 3px double;
    border-color: #C4DAC6;
    border-color: var(--point);
    margin-top: 30px;
    padding-top: 30px;
}

body:not(#tt-body-page) #article .post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

/* ---------------
    본문 타이틀
--------------- */
.titlebox {
    margin-bottom: 30px;
    color: #638A66;
    color: var(--point2);
    display: flex;
}

.titlebox .thumbox {
    border-radius: 100px;
    overflow: hidden;
    margin-right: 15px;
    align-self: flex-start;
    flex: 0 0 40px;
}

.titlebox .title {
    font-size: 1.3em;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 75px;
    word-break: keep-all;
    word-wrap: break-word;
}

.titlebox p:last-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: .8em;
    margin-top: 5px;
    white-space: nowrap;
    line-height: 2;
}

.titlebox .date {
    color: #C4DAC6;
    color: var(--point);
}

.titlebox p:last-child *:not(:last-child),
.titlebox .admin a {
    margin-right: 15px;
    color: #C4DAC6;
    color: var(--point);
}

.titlebox .admin a:hover {
    color: #638A66;
    color: var(--point2);
}

/* ---------------
    본문
--------------- */
.text-item {
    word-break: keep-all;
    word-wrap: break-word;
}

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

.text-item u:hover {
    color: #638A66;
    color: var(--point2);
    background-size: 100% 100%;
}

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

.text-item hr,
.text-item hr[data-ke-style],
#tt-body-page hr[data-ke-style] {
    border: 0;
    border-top: 1px solid;
    border-color: #C4DAC6 !important;
    border-color: var(--point) !important;
    background-image: none;
}

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

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

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

.text-item iframe,
.text-item embed,
.text-item table {
    width: 100%;
}

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

.text-item table[border^='1'],
.text-item table[border^='1'] tr,
.text-item table[border^='1'] td {
    border: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-spacing: 0;
}

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

.footnote a,
.footnotes a {
    color: #C4DAC6 !important;
    color: var(--point) !important;
}

.footnote a:hover,
.footnotes a:hover {
    color: #638A66 !important;
    color: var(--point2) !important;
}

/* 아이프레임 */
.framebox {
    position: relative;
    height: 0;
    margin: 0;
    padding-bottom: 56.25%;
    border-radius: 5px;
    overflow: hidden;
}

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

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

/* 링크 */
.text-item a {
    color: var(--point2)
}

.text-item a:hover {
    color: var(--point)
}

.text-item p a:before,
.text-item span a:before,
.text-item .tx-link:before,
.text-item blockquote a:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
    font-size: .8em;
    width: 17px;
    height: 17px;
    text-align: center;
    background-color: #C4DAC6;
    background-color: var(--point);
    color: #638A66;
    color: var(--point2);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.text-item p a:hover:before,
.text-item span a:hover:before,
.text-item .tx-link:hover:before,
.text-item blockquote a:hover:before {
    color: #C4DAC6;
    color: var(--point);
    background-color: #638A66;
    background-color: var(--point2);
}

.figure.fileblock a,
#tt-body-page figure.fileblock a:before,
.text-item .tx-link.imgblock:before,
.text-item .footnote a:before,
.text-item .footnotes a:before,
.text-item .another_category a:before {
    display: none;
}

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

.text-item a .imageblock img:hover {
    opacity: 0.5;
}

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;
    border-color: #C4DAC6;
    border-color: var(--point);
}

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

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

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

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

.text-item .imageblock .cap1,
.text-item .imageblock > span:nth-child(2) {
    color: #638A66;
    color: var(--point2);
    margin-top: 3px;
}

/* 인용구 */
.text-item blockquote,
.text-item blockquote p {
    font-style: italic;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.tx-quote-tistory:before,
blockquote[data-ke-style='normal']:before,
#tt-body-page blockquote[data-ke-style='normal']:before,
blockquote[data-ke-style='style2']:before,
#tt-body-page blockquote[data-ke-style='style2']: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,
blockquote[data-ke-style='style2']:after,
#tt-body-page blockquote[data-ke-style='style2']:after {
    content: '\e67e';
    font-family: 'themify';
    position: absolute;
    right: 0;
    bottom: 0;
}

.tx-quote-tistory,
blockquote[data-ke-style='normal'],
#tt-body-page blockquote[data-ke-style='normal'],
blockquote[data-ke-style='style2'],
#tt-body-page blockquote[data-ke-style='style2'] {
    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'],
blockquote[data-ke-style='style3'],
#tt-body-page blockquote[data-ke-style='style3'] {
    padding: 10px;
    background-color: transparent;
    border: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

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

.text-item .btn_more,
.text-item .btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    font-size: inherit;
    font-family: inherit;
    height: auto;
    transition: .4s;
    margin: 0;
    width: auto;
    background-color: #C4DAC6;
    background-color: var(--point);
    color: #638A66;
    color: var(--point2);
    border-radius: 5px;
    padding: 3px 5px;
    line-height: 1;
}

.text-item .btn_more {
    margin-bottom: 10px;
}

.text-item .btn_more:hover,
.text-item .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 .btn_less:first-child,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless {
    color: #C4DAC6;
    color: var(--point);
    background-color: #638A66;
    background-color: var(--point2);
}

.text-item .btn_more:before,
.text-item .btn_less span:before,
.text-item .btn-toggle-moreless:before {
    content: '\f114';
    font-family: 'fontAwesome';
    margin-right: 5px;
}

.text-item .btn_less span:before,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless:before,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless:before {
    content: '\f115';
}

.text-item .btn_less:hover:first-child,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless:hover,
.text-item div[data-ke-type="moreLess"].open .btn-toggle-moreless:hover {
    color: #fff;
    color: var(--point3);
}

.text-item .btn_less:last-child {
    display: none;
}

.text-item .moreless_content .more-txt,
.text-item .moreless-content,
div[data-ke-type='moreLess'] .moreless-content,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content {
    border: 1px solid;
    padding: 10px;
    margin: 5px 0 10px;
    line-height: inherit;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
}

/* 이미지 슬라이드 */
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: #C4DAC6;
    border-color: var(--point);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

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

figure.fileblock .filename,
#tt-body-page figure.fileblock .filename {
    font-size: inherit;
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    color: #638A66;
    color: var(--point2);
    transition: .4s;
}

figure.fileblock:hover .name,
#tt-body-page figure.fileblock:hover .name {
    color: #304231;
    color: var(--text);
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    color: #304231;
    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 {
    line-height: normal;
    padding: 0;
    margin-top: 25px;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    width: auto;
    height: 30px;
    line-height: inherit;
    padding: 0 10px;
    border-color: #C4DAC6;
    border-color: var(--point);
}

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

body .container_postbtn .postbtn_like + .btn_menu_toolbar {
    display: inline-flex;
    align-items: center;
}

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
    transition: color .4s;
    font-family: 'NanumBarunpen';
    color: #638A66;
    color: var(--point2);
}

body .container_postbtn .btn_menu_toolbar .txt_state:before {
    content: '\e71f';
    font-family: 'themify';
    margin-right: 3px;
}

body .container_postbtn .btn_menu_toolbar.following .txt_state:before {
    content: '\e60a';
}

body .container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    margin: 0 0 0 5px;
}

body .container_postbtn .btn_menu_toolbar .ico_check_type1 {
    margin: 0 0 0 5px;
}

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: 'NanumBarunpen' !important;
    vertical-align: middle;
    padding-left: 5px;
    transition: .4s;
    color: #638A66 !important;
    color: var(--point2) !important;
}

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

body .container_postbtn .btn_post:hover .txt_like,
body .container_postbtn .btn_post:hover .ico_postbtn:after,
body .container_postbtn .btn_menu_toolbar:hover .txt_state {
    color: #C4DAC6 !important;
    color: var(--point) !important;
}

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;
    color: #638A66;
    color: var(--point2);
    transition: .4s;
}

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

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;
    cursor: default;
}

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

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

.tags .title {
    transition: color .4s;
}

.tags .title,
#opencmt .title {
    margin-right: 10px;
    width: 15px;
    display: inline-block;
}

.tags,
#opencmt,
.tags a,
#opencmt a,
#opencmt .title {
    color: #638A66;
    color: var(--point2);
}

.tags a:hover,
#opencmt a:hover {
    color: #C4DAC6;
    color: var(--point);
}

/* ---------------
    댓글 펼침
--------------- */
.tags + #opencmt {
    margin-top: 10px;
}

#opencmt {
    margin-top: 25px;
}

#opencmt .cnt:empty:after {
    content: '댓글';
}

body.cmtopen #opencmt {
    display: none;
}

/* ---------------
    댓글, 방명록
--------------- */

body.cmtopen #rp > div {
    display: block;
}

#rp > div {
    display: none;
}

#rp .write {
    margin-top: 30px;
}

/* 댓글, 방명록 작성 */
.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;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
    transition: height .4s;
}

.write textarea:active,
.write textarea:focus {
    height: 150px;
}

.write button {
    padding: 5px;
    transition: .4s;
    border: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
    width: 100%;
    color: #638A66;
    color: var(--point2);
}

.write button:hover {
    color: #C4DAC6;
    color: var(--point);
    background-color: #638A66;
    background-color: var(--point2);
}

.write .inputbox {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.write .inputbox input,
.write .secret {
    border: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    margin-right: 5px;
}

.write .inputbox input {
    max-width: 50%;
    width: 100%;
}

.write .secret {
    position: relative;
    min-width: 31px;
    height: 31px;
}

.write .inputbox input[name="secret"] {
    visibility: hidden;
}

.write input[name="secret"]:after {
    content: "\e603";
    font-family: 'themify';
    transition: .4s;
    visibility: visible;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* 댓글, 방명록 목록 */
#rp.order .lst {
    flex-direction: column-reverse;
}

.lst {
    display: flex;
    flex-direction: column;
}

.lst > ul {
    padding: 30px 0;
}

.lst > ul:not(:last-child) {
    border-bottom: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
}

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

.lst .guest {
    display: flex;
    align-items: flex-start;
}

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

.profile .lst .pro {
    display: inherit;
    align-self: flex-start;
}

.lst .pro {
    flex: 0 0 50px;
    margin-right: 15px;
}

.lst .pro img {
    border-radius: 5px;
    border: 1px solid;
    border-color: #C4DAC6;
    border-color: var(--point);
    height: 50px;
}

.lst .guest > div:last-child {
    flex-grow: 1;
}

.lst .text {
    word-wrap: break-word;
    word-break: keep-all;
}

.lst .info {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #638A66;
    color: var(--point2);
}

.lst .info a {
    color: #638A66;
    color: var(--point2);
}

.lst .info a:hover {
    color: #C4DAC6;
    color: var(--point);
}

.lst .info .name,
.lst .info .name a {
    font-weight: bold;
    font-size: 1.05rem;
}

.lst .name:before,
.lst .name a:before {
    font-family: "themify";
    font-size: .8em;
    margin-right: 3px;
    vertical-align: middle;
}

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

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

.lst .name .tistoryProfileLayerTrigger {
    background-image: none;
    width: auto;
    margin: 0;
    position: relative;
}

.lst .name .tistoryProfileLayerTrigger:after {
    content: '\f2bd';
    font-family: 'fontAwesome';
    font-size: .6em;
    color: inherit;
    transition: .4s;
}

.lst .info .cmt-btn {
    position: relative;
    font-size: .8rem;
}

.lst .info .cmt-btn i {
    display: inline-block;
    transition: .4s;
    margin-left: 10px;
    cursor: pointer;
}

.lst .info .cmt-btn .ti-eraser {
    vertical-align: middle;
}

.lst .info .cmt-btn .ti-more-alt {
    color: #638A66;
    color: var(--point2);
}

.lst .info .cmt-btn:hover .ti-more-alt {
    transform: rotate(90deg);
}

.lst .info .cmt-btn,
.lst .info .cmt-btn > ul,
.lst .date {
    display: flex;
    align-items: center;
}

.lst .info .cmt-btn > ul {
    overflow: hidden;
    white-space: nowrap;
    transition: opacity .4s ease-in-out, max-width 1s ease-in-out;
    opacity: 0;
    max-width: 0;
}

.lst .info .cmt-btn:hover > ul {
    opacity: 1;
    max-width: 300px;
}

.lst .date {
    cursor: default;
}

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

.lst .date a:after {
    content: "\e6c5";
    font-family: "themify";
    visibility: visible;
    font-size: .8rem;
    display: inline-block;
}

.lst .tt_more_preview_comments_text {
    background-color: #C4DAC6;
    background-color: var(--point);
    padding: 5px;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    background-color: #C4DAC6;
    background-color: var(--point);
    color: #638A66;
    color: var(--point2);
    border-radius: 5px;
    padding: 10px;
}

/* 답글 */
.lst .reply .guest {
    margin-top: 30px;
}

.lst .rp_admin,
.lst .guest_admin {
    flex-direction: row-reverse;
}

.lst .rp_admin .pro,
.lst .guest_admin .pro {
    margin: 0 0 0 15px;
}

/* ---------------
    페이지네이션
--------------- */
body.gal .pagination {
    margin-top: 0;
}

#tt-body-index .pagination .num,
#tt-body-search .pagination .num #tt-body-category .pagination .num {
    display: none;
}

.pagination {
    cursor: default;
    text-align: center;
    font-family: 'NanumBarunpen';
    margin-top: 50px;
}

.pagination a {
    padding: 0 7px;
}

.pagination .num {
    font-size: .8em;
}

.pagination .num a .selected,
.pagination .prev,
.pagination .next {
    color: #638A66;
    color: var(--point2);
}

.pagination .num a,
.pagination .prev:hover,
.pagination .next:hover {
    color: #C4DAC6;
    color: var(--point);
}

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

/* ================ 
 *
 *   푸터
 *
 * ================ */

#footer {
    margin-top: 30px;
}

/* 탑버튼 */
a.top {
    display: none;
    z-index: 999;
    font-size: 2rem;
    text-align: center;
    color: #C4DAC6;
    color: var(--point);
}

a.top:hover {
    color: #638A66;
    color: var(--point2);
}

/* ================ 
 *
 *   기타
 *
 * ================ */

/* 부드러운 화면 전환 */
.smooth-screen #container,
.smooth-screen .copy,
.smooth-screen .myoskin .item,
.smooth-screen .noti,
.smooth-screen #article {
    animation: fadein 2000ms ease-out;
    -moz-animation: fadein 2000ms ease-out;
    -webkit-animation: fadein 2000ms ease-out;
    -o-animation: fadein 2000ms 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;
    }
}

/* 새 글 아이콘 */
.new {
    color: #C4DAC6;
    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;
    }
}

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

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

.copy a {
    color: #C4DAC6;
    color: var(--point);
}

/* 모바일 영역 */
@media screen and (max-width: 425px) {
    body {
        background-image: none;
        padding: 30px 15px !important;
    }

    .mbg {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        z-index: -1;
    }

    #container {
        margin: 0;
    }

    #footer {
        position: static !important;
        left: auto !important;
        transform: none !important;
    }

    a.top {
        right: 15px;
        bottom: 15px;
        position: fixed;
        display: none;
        left: auto !important;
        transform: none !important;
    }

    .copy {
        margin-bottom: 15px;
        position: static;
        text-align: center;
    }

    body.gal .copy {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}
