@charset "utf-8";

/* 웹폰트 */
@import url('//fonts.googleapis.com/css?family=Noto+Sans+KR|Meddon');

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

/* CSS리셋 */
html,
body,
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;
}

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-size: 100%;
    border-radius: 0;
    background: transparent;
    border: 0;
}

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

ul,
li {
    list-style: none;
}

img,
fieldset {
    border: none;
    vertical-align: top;
    max-width: 100%;
}

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: #484848;
    border-color: var(--text);
    border-spacing: 0;
}

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

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.30em;
}

h3 {
    font-size: 1.17em;
}

h4 {
    font-size: inherit;
}

h5 {
    font-size: 0.83em;
}

.fa,
.fas {
    font-size: 0.8em;
}

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

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

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

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

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

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

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

::-webkit-scrollbar-thumb {
    border-left: 1px solid;
    border-color: #fff;
    border-color: var(--top-text);
}

/* 기본 설정 */
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;
}

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

a:hover,
a:focus {
    color: #FA7268 !important;
    color: var(--point) !important;
}

/* 밑줄 */
u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, #484848 0%, #484848 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: #FA7268;
    color: var(--point);
    background-size: 100% 100%;
}

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

/* 부드러운 화면 전환 */
.smooth-screen #container,
.smooth-screen .copy {
    /* display: none; */
}

.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 {
    position: relative;
    margin: 0 auto 50px;
}

.in {
    margin: auto;
}

/* 헤더 */
#header {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: #fff;
    color: var(--top-text);
}

#header:after {
    display: block;
    height: 40%;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* 타이틀 */
#header .title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 9;
}

#header .title a {
    color: #fff;
    color: var(--top-text);
}

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

/* 카테고리 */
a.link_item,
a.link_sub_item,
.cate a {
    color: #fff;
    color: var(--top-text);
}

.catebox .cate,
.category_list > li,
.catebox > ul > li {
    position: relative;
}

.category_list > li .link_item:after {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    transition: .4s;
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 3px;
}

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

.category_list > li:not(.mc) .link_item:only-child:after {
    display: none;
}

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

@media screen and (min-width:769px) {
    .mobile {
        display: none;
    }

    .catebox {
        text-align: center;
        white-space: nowrap;
        cursor: default;
        position: absolute;
        width: 100%;
    }

    .catebox.sticky {
        position: fixed;
        top: 0;
        z-index: 999;
    }

    .catebox.sticky:after {
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #484848;
        background-color: var(--bg);
        opacity: 0.9;
        position: absolute;
        z-index: -1;
    }

    .catebox.sticky .in {
        position: static;
    }

    .catebox.sticky .in:before {
        display: none;
    }

    .catebox .scroll {
        padding: 10px 0;
        position: relative;
    }

    .catebox .scroll:before,
    .catebox .scroll:after {
        position: absolute;
        left: 0;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0)', endColorstr='rgba(255,255,255,0)', GradientType=1);
        background: -moz-linear-gradient(left, transparent 0%, var(--line) 50%, transparentf 100%);
        background: -webkit-gradient(linear, left top, right top, color-stop(0%, transparent), color-stop(50%, var(--line)), color-stop(100%, transparent));
        background: -webkit-linear-gradient(left, transparent 0%, var(--line) 50%, transparentf 100%);
        background: -o-linear-gradient(left, transparent 0%, var(--line) 50%, transparent 100%);
        background: -ms-linear-gradient(left, transparent 0%, var(--line) 50%, transparent 100%);
        background: linear-gradient(to right, transparent 0%, #eee 50%, transparent 100%);
        background: linear-gradient(to right, transparent 0%, var(--line) 50%, transparent 100%);
    }

    .catebox .scroll:before {
        top: 0;
    }

    .catebox .scroll:after {
        bottom: 0;
    }

    .catebox .cate,
    .tt_category,
    .category_list > li,
    .catebox .scroll .menubox > ul,
    .catebox .scroll .menubox > ul > li {
        display: inline-block;
    }

    .catebox .cate,
    .category_list > li,
    .catebox .scroll .menubox > ul > li {
        margin: 0 40px;
    }

    .link_item,
    .cate a,
    .catebox .scroll .menubox > ul > li > a {
        display: inline-block;
        padding: 10px 0;
        color: #fff;
        color: var(--top-text);
    }

    .category_list > li:hover .sub_category_list {
        display: block;
    }

    .sub_category_list {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        line-height: 1;
        z-index: 99;
        top: 80%;
    }

    .sub_category_list > li {
        padding: 8px 10px;
        background-color: #484848;
        background-color: var(--bg);
    }

    .sub_category_list > li {
        opacity: 0;
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        animation: enter 0.2s ease forwards;
    }

    .sub_category_list > li:nth-child(1) {
        animation-duration: 0.2s;
        animation-delay: 0s;
    }

    .sub_category_list > li:nth-child(2) {
        animation-duration: 0.3s;
        animation-delay: 0.1s;
    }

    .sub_category_list > li:nth-child(3) {
        animation-duration: 0.4s;
        animation-delay: 0.2s;
    }

    .sub_category_list > li:nth-child(4) {
        animation-duration: 0.5s;
        animation-delay: 0.3s;
    }

    .sub_category_list > li:nth-child(5) {
        animation-duration: 0.6s;
        animation-delay: 0.4s;
    }

    .sub_category_list > li:nth-child(6) {
        animation-duration: 0.7s;
        animation-delay: 0.5s;
    }

    .sub_category_list > li:nth-child(7) {
        animation-duration: 0.8s;
        animation-delay: 0.6s;
    }

    .sub_category_list > li:nth-child(8) {
        animation-duration: 0.9s;
        animation-delay: 0.7s;
    }

    .sub_category_list > li:nth-child(9) {
        animation-duration: 0.10s;
        animation-delay: 0.8s;
    }

    .sub_category_list > li:nth-child(10) {
        animation-duration: 0.11s;
        animation-delay: 0.9s;
    }

    .sub_category_list > li:nth-child(11) {
        animation-duration: 0.12s;
        animation-delay: 1.0s;
    }

    .sub_category_list > li:nth-child(12) {
        animation-duration: 0.13s;
        animation-delay: 1.1s;
    }

    .sub_category_list > li:nth-child(13) {
        animation-duration: 0.14s;
        animation-delay: 1.2s;
    }

    .sub_category_list > li:nth-child(14) {
        animation-duration: 0.15s;
        animation-delay: 1.3s;
    }

    .sub_category_list > li:nth-child(15) {
        animation-duration: 0.16s;
        animation-delay: 1.4s;
    }

    @keyframes enter {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0.98) translateY(10px);
            transform: scaleY(0.98) translateY(10px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @-moz-keyframes enter {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0.98) translateY(10px);
            transform: scaleY(0.98) translateY(10px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    @-webkit-keyframes enter {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0.98) translateY(10px);
            transform: scaleY(0.98) translateY(10px);
        }

        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }

    @-o-keyframes enter {
        from {
            opacity: 0;
            -webkit-transform: scaleY(0.98) translateY(10px);
            transform: scaleY(0.98) translateY(10px);
        }

        to {
            opacity: 1;
            -webkit-transform: none;
            transform: none;
        }
    }
}

.sub_category_list {
    display: none;
}

.link_tit {
    display: none !important;
}

/* 메인 영역 */
#content {
    margin: 100px auto 10px;
    padding: 3vh;
    background-color: #fff;
    background-color: var(--con);
}

.myoskin:after {
    display: block;
    clear: both;
    content: '';
    overflow: auto;
}

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

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

/* 목록 공통 */
.myoskin .item a {
    display: block;
}

.myoskin .thumbox {
    overflow: hidden;
}

.myoskin .item .thumbox > img,
.myoskin .item .centered > img  {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.myoskin .item:hover .thumbox > img,
.myoskin .item:hover .centered > img  {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
}

.myoskin .item .thumbox {
    position: relative;
}

.myoskin .item .hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    z-index: 9;
    transition: opacity .5s;
    opacity: 0;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

.myoskin .item .hover img {
    width: auto;
    max-height: 50px;
}

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

.myoskin .item .cate {
    color: #FA7268;
    color: var(--point);
    width: 100%;
}

.myoskin .item .title img {
    width: auto !important;
    height: auto !important;
}

.myoskin .item .info .cnt {
    color: #FA7268;
    color: var(--point);
    white-space: nowrap;
    line-height: 23px;
}

.myoskin .item .info .cnt:before {
    content: '+';
    margin: 0 3px;
}

.myoskin .item .info .cnt:empty {
    display: none;
}

.myoskin .empty > ul {
    display: none;
}

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

/* 갤러리형 */
#myo_gal ol {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

#myo_gal .item .info {
    text-align: center;
    margin-top: 10px;
    padding: 0 5px;
}

#myo_gal .item .info div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

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

#myo_gal .item .info .text,
#myo_gal .item .info .date {
    display: none;
}

/* 갤러리형 3열 */
#myo_gal.n3 .item {
    width: calc((100% - 4%) / 3);
}

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

/* 갤러리형 4열 */
#myo_gal.n4 .item {
    width: calc((100% - 6%) / 4);
}

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

/* 갤러리형 masonry */
body.masonry #myo_gal .item {
    margin-right: 0;
}

body.masonry .sizer {
    width: 2%;
}

/* 목록형 */
#myo_bbs .item {
    margin: 30px 0;
}

#myo_bbs .item:first-child {
    margin-top: 0;
}

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

#myo_bbs .item .info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

#myo_bbs .item .info > div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
}

#myo_bbs .item .info > div > div {
    padding-right: 15px;
    overflow: hidden;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

#myo_bbs .item .info .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 15px;
}

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

/* 웹진형 */
#myo_web .item {
    margin-bottom: 30px;
}

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

#myo_web .item a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

#myo_web .item .thumbox {
    width: 30%;
}

#myo_web .item .thumbnail {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

#myo_web .item .thumbnail .centered {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%);
}

#myo_web .item .thumbnail .centered img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#myo_web .item .thumbnail .centered img.portrait {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
}

#myo_web .item .thumbnail .centered img.landscape {
    width: auto !important;
    max-width: none !important;
    height: 100% !important;
}

#myo_web .item .info div > div {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

#myo_web .item .info {
    width: 69%;
    padding-left: 20px;
}

#myo_web .item .info .date {
    margin-top: 10px;
}

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

.pass form {
    width: 220px;
    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: 0;
    letter-spacing: 3px;
    padding: 10px;
    color: #fff;
    color: var(--top-text);
    background-color: #484848;
    background-color: var(--bg);
}

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

.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: 2px solid;
    margin-top: 50px;
}

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

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

/* 본문 타이틀 영역 */
.titlebox {
    text-align: center;
    margin-bottom: 3vh;
}

.titlebox .cate {
    border-radius: 10px;
    display: inline-block;
    padding: 2px 10px;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

.titlebox h1 {
    margin: 10px 0;
}

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

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

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

.figure.fileblock a,
#tt-body-page figure.fileblock a:before,
.tx-link.imgblock:before,
.footnote a:before,
.footnotes a:before,
.another_category 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;
}

/* 링크 */
.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-right: 1px solid;
    border-color: #484848;
    border-color: var(--text);
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    height: 100px;
    border: 1px solid;
    border-color: #484848;
    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: #FA7268;
    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: #484848;
    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: #484848;
    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: #484848;
    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: #FA7268;
    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,
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;
}

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'],
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;
    border: 0;
    font-size: inherit;
    line-height: inherit;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

blockquote[data-ke-style='box'] a,
#tt-body-page blockquote[data-ke-style='box'] a,
blockquote[data-ke-style='style3'] a,
#tt-body-page blockquote[data-ke-style='style3'] a {
    color: #fff;
    color: var(--top-text);
}

blockquote[data-ke-style='box'] a:hover,
#tt-body-page blockquote[data-ke-style='box'] a:hover,
blockquote[data-ke-style='style3'] a:hover,
#tt-body-page blockquote[data-ke-style='style3'] a:hover {
    color: #FA7268;
    color: var(--point);
}

/* 더보기 */
.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;
    color: #484848;
    color: var(--text);
    height: auto;
    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 {
    color: #FA7268;
    color: var(--point);
}

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

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

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

.btn_less:last-child {
    border-top: 1px solid;
    border-color: #fff;
    border-color: var(--top-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;
    background-color: #484848;
    background-color: var(--text);
}

.btn_less,
.moreless_content,
.moreless_content a {
    color: #fff;
    color: var(--top-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: #484848;
    border-color: var(--text);
    z-index: 1;
}

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

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

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

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    color: #484848;
    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: #484848 !important;
    border-color: var(--text) !important;
    width: auto;
    height: 30px;
    line-height: inherit;
    padding: 0 10px;
    border-radius: 0;
}

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

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
    color: #484848;
    color: var(--text);
    transition: color .4s;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
}

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;
    color: #484848 !important;
    color: var(--text) !important;
    padding-left: 5px;
    transition: .4s;
}

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: #FA7268 !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%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 11px;
    color: #484848;
    color: var(--text);
    transition: .4s;
}

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

/* 댓글 오픈 */
body.cmtopen #opencmt {
    display: none;
}

#opencmt {
    width: 25%;
}

#opencmt a {
    border-radius: 15px;
    padding: 2px 10px;
    text-align: center;
    display: inline-block;
    color: #fff;
    color: var(--top-text);
    background-color: #484848;
    background-color: var(--bg);
}

#opencmt a .num {
    font-weight: bold;
}

.other {
    margin: 20px 0;
}

#opencmt,
.tags {
    display: inline-block;
    vertical-align: middle;
}

/* 본문 하단 태그 */
.tags {
    color: transparent;
    float: right;
    width: 70%;
    text-align: right;
}

.tags a {
    display: inline-block;
    padding: 2px 10px;
    margin-bottom: 3%;
    border-radius: 15px;
    color: #fff;
    color: var(--top-text);
    background-color: #484848;
    background-color: var(--bg);
}

/* 카테고리 글 더보기 */
#more_off {
    display: none;
}

.morebox {
    margin: 20px 0 3vh;
    overflow: hidden;
    clear: both;
}

.morebox:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

.morebox > .title {
    padding: 10px 0;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.morebox a {
    display: block;
}

/* 카테고리 글 더보기 갤러리형 */
#article #myo_gal .item {
    float: left;
    margin-right: 2%;
    width: 23.5%;
}

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

/* 댓글, 방명록 작성 */
#tt-body-page .cmt {
    margin-top: 3vh;
}

.cmt .writebox {
    margin-bottom: 3vh;
}

.cmt .write h2 {
    margin-bottom: 10px;
}

.cmt .write textarea {
    width: 100%;
    height: 80px;
    transition: height .5s;
    padding: 10px;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

.cmt .write textarea:focus {
    height: 130px;
}

.cmt .write input,
.cmt .write button {
    padding: 2px 0;
}

.cmt .write button {
    float: right;
    font-weight: bold;
    letter-spacing: 2px;
}

.cmt .write #secret {
    display: none;
}

.cmt .write input + label:after {
    content: "\f09c";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 0.9em;
}

.cmt .write input:checked + label:after {
    content: "\f023";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}

.cmt .writebox:after {
    content: '';
    display:block;
    clear: both;
}

/* 댓글, 방명록 목록 */
.lst {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

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

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

#rp:not(.order) .lst > ul:first-child,
#rp.order .lst > ul:last-child {
    border-top: 1px solid;
    border-color: #484848;
    border-color: var(--text);
}

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

.lst .text {
    margin-bottom: 10px;
}

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

.lst .name {
    display: inline-block !important;
    margin-right: 15px;
}

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

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

.lst .admin {
    display: inline-block;
    float: right;
}

.lst .name:before {
    font-family: "Font Awesome 5 Free";
    font-size: 0.8em;
    margin-right: 5px;
}

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

.lst .rp_admin,
.lst .guest_admin {
    padding: 10px;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before {
    content: '\f521';
}

.lst .rp_admin,
.lst .rp_admin a,
.lst .guest_admin,
.lst .guest_admin a {
    color: #fff;
    color: var(--top-text);
}

.lst .reply {
    margin-top: 3vh;
}

/* 프로필 사진 */
.profile .lst .name img[alt=BlogIcon],
.profile .lst .nopro {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 100%;
    display: block;
}

.profile .cmt .guest,
.profile .reply {
    padding-left: 60px;
}

.profile .nopro {
    display: inline-block;
    background-color: #484848;
    background-color: var(--bg);
}

.profile .rp_admin,
.profile .guest_admin {
    padding: 10px 10px 10px 70px !important;
}

.profile .rp_admin .name img[alt=BlogIcon],
.profile .guest_admin .name img[alt=BlogIcon] {
    top: 10px;
    left: 10px;
}

/* 공지 */
.noti {
    margin-bottom: 4vh;
    border: 1px solid;
}

.noti:last-child {
    margin-bottom: 0;
}

.noti .title {
    padding: 5px 10px;
    background-color: #484848;
    background-color: var(--bg);
    color: #fff;
    color: var(--top-text);
}

.noti .text {
    padding: 10px;
}

/* 페이지네이션 */
.pagination {
    text-align: center;
    margin-top: 1.5vh;
    cursor: default;
    position: relative;
}

.pagination a {
    margin: 0 5px;
}

.pagination .num {
    position: relative;
    display: inline-block;
}

.pagination .num:after {
    content: '';
    display: inline-block;
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    animation: out 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
    background-color: #FA7268;
    background-color: var(--point);
}

.pagination .num:hover:after {
    animation: in 0.2s cubic-bezier(1, 0, 0.58, 0.97) 1 both;
}

@keyframes in {
    0% {
        width: 0;
        left: 0;
        right: auto;
    }

    100% {
        left: 0;
        right: auto;
        width: 100%;
    }
}

@keyframes out {
    0% {
        width: 100%;
        left: auto;
        right: 0;
    }

    100% {
        width: 0;
        left: auto;
        right: 0;
    }
}

.pagination .selected {
    color: #FA7268;
    color: var(--point);
}

.pagination .current {
    display: none !important;
}

.page-more .pagination .more-btn {
    margin-top: 10px;
    padding: 0.6vh 4vh;
    border: 1px solid;
    display: inline-block;
}

/* 푸터 */
#footer,
#footer a {
    color: #fff;
    color: var(--top-text);
}

/* sns */
.sns a {
    margin-right: 5px;
}

.sns,
.copy {
    display: inline-block;
    cursor: default;
}

/* 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 {
    float: right;
    font-size: 8px;
    font-family: 'Meddon', cursive;
}

@media screen and (min-width: 970px) {

    /* 홈 */
    .home {
        display: inline-block;
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px);
        text-align: center;
    }

    .home a {
        display: block;
    }

    .home,
    .top {
        position: fixed;
        top: 50%;
        right: 10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        font-size: .9em;
        transition: background .5s;
        animation: fadein 2000ms ease-out;
        -moz-animation: fadein 2000ms ease-out;
        -webkit-animation: fadein 2000ms ease-out;
        -o-animation: fadein 2000ms ease-out;
        z-index: 999;
        overflow: hidden;
    }

    .home:after,
    .top:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        background-color: var(--con);
        transition: .4s;
        z-index: -1;
    }

    .home:hover:after,
    .top:hover:after {
        opacity: 0.4
    }

    /* 검색 */
    .catebox .search {
        position: fixed;
        top: 50%;
        right: 10px;
        border-radius: 30px;
        width: 30px;
        overflow: hidden;
        white-space: nowrap;
        transition: width .5s, background .5s, padding .5s;
        animation: fadein 2000ms ease-out;
        -moz-animation: fadein 2000ms ease-out;
        -webkit-animation: fadein 2000ms ease-out;
        -o-animation: fadein 2000ms ease-out;
        z-index: 999;
        background-color: #fff;
        background-color: var(--con);
        display: -webkit-flex;
        display: flex;
    }

    .catebox .search input {
        max-width: 0;
        padding: 0;
        transition: max-width .5s;
    }

    .catebox .search button {
        text-align: center;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 100%;
        font-size: .9em;
    }

    .catebox .search:hover {
        width: 150px;
        padding-left: 15px;
    }

    .catebox .search:hover input {
        max-width: 105px;
    }

    /* 탑버튼 */
    .top {
        -webkit-transform: translateY(35px);
        transform: translateY(35px);
        text-align: center;
        display: none;
    }
}

@media screen and (max-width: 969px) {
    .home {
        position: static;
        margin-top: 15px;
        display: inline-block;
        background: transparent !important;
        vertical-align: top;
    }

    .top {
        position: fixed;
        bottom: 15px;
        right: 10px;
        text-align: center;
        width: 35px;
        height: 35px;
        border-radius: 100%;
        font-size: 1.5rem;
        transition: background .5s;
        border: 1px solid;
        overflow: hidden;
    }

    .top:after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        opacity: .5;
        background-color: #fff;
        background-color: var(--con);
    }
}

@media screen and (max-width: 970px) and (min-width: 769px) {
    .search {
        display: none;
    }

    .fas {
        vertical-align: middle;
    }
}

/* 모바일 영역 */
@media screen and (max-width: 768px) {
    .mbg {
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center center;
        z-index: -1;
    }

    .in {
        margin: auto 15px;
    }

    #content {
        margin: 10px 15px 10px !important;
    }

    .tags {
        text-align: left;
    }

    #opencmt,
    .tags {
        display: block;
        width: 100%;
    }

    .lst .admin {
        float: none;
        display: block;
        margin-top: 10px;
    }

    .lst .admin a {
        margin: 0 15px 0 0;
    }

    .lst .admin .re {
        float: left
    }

    .ham {
        width: 20px;
        height: 15px;
        position: fixed;
        right: 15px;
        top: 15px;
        display: inline-block;
        z-index: 999;
    }

    .ham span {
        background-color: #fff;
        background-color: var(--top-text);
        position: absolute;
        border-radius: 2px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
        width: 100%;
        height: 2px;
        display: block;
        box-shadow: 0 3px 3px 0 #00000057;
    }

    .ham span:nth-child(1) {
        top: 0px;
        left: 0px;
    }

    .ham span:nth-child(2) {
        top: 6.4px;
        left: 0px;
    }

    .ham span:nth-child(3) {
        bottom: 0px;
        left: 0px;
    }

    .ham:not(.ham.open):hover span:nth-child(1) {
        top: -2px;
        left: 0px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham:not(.ham.open):hover span:nth-child(2) {
        top: 13px;
        left: 0px;
        transition: .4s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham:not(.ham.open):hover span:nth-child(3) {
        bottom: -2px;
        left: 0px;
        transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    }

    .ham.open {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .ham.open span:nth-child(1) {
        left: 1px;
        top: 4px;
        width: 20px;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        transition-delay: 150ms;
    }

    .ham.open span:nth-child(2) {
        left: 2px;
        top: 10px;
        width: 10px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition-delay: 50ms;
    }

    .ham.open span:nth-child(3) {
        left: 10px;
        top: 10px;
        width: 10px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        transition-delay: 100ms;
    }

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

    .page_cover.open {
        display: block;
    }

    .page_cover {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: #484848;
        background-color: var(--bg);
        opacity: .4;
        z-index: 999;
        display: none;
    }

    .catebox {
        width: 70%;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0px;
        left: -71%;
        z-index: 9999999999;
        transition: All 0.2s ease;
        -webkit-transition: All 0.5s ease;
        -moz-transition: All 0.5s ease;
        -o-transition: All 0.5s ease;
        line-height: 3;
        background-color: #484848;
        background-color: var(--bg);
    }

    .catebox.open {
        left: 0;
    }

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

    .catebox .scroll::-webkit-scrollbar {
        width: 0;
    }

    .catebox .title {
        font-size: 1.5rem;
    }

    .catebox .title a {
        color: #fff;
        color: var(--top-text);
    }

    .catebox .title img {
        max-width: 100px;
    }

    .catebox .title,
    .catebox .cate,
    .category_list > li,
    .menubox > ul > li {
        position: relative;
    }

    .catebox .title:after,
    .catebox .cate:after,
    .category_list > li:after,
    .menubox > ul > li:after {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: #fff;
        background-color: var(--top-text);
        opacity: 0.13;
        content: '';
    }

    .catebox .title,
    .category_list > li.mc .link_item,
    .category_list > li:not(.mc) .link_item:only-child,
    .link_sub_item,
    .cate a,
    .menubox > ul > li > a,
    .search {
        display: block;
        padding: 3% 10%;
    }

    a.link_item:after {
        float: right;
    }

    .sub_category_list {
        background-color: #FA7268;
        background-color: var(--point);
    }

    .sub_category_list > li:hover a.link_sub_item {
        color: #484848 !important;
        color: var(--text) !important;
    }

    .search {
        position: static;
        vertical-align: middle;
        background: transparent !important;
    }

    .search input {
        text-align: left;
        padding: 2px 0;
        max-width: none;
        width: 80%;
    }

    .search button {
        float: right;
        vertical-align: middle;
        padding: 2px 0;
        line-height: 22px;
    }
}

@media screen and (max-width: 425px) {
    #myo_gal .item {
        width: calc((100% - 3%) / 2) !important;
        margin: 0 3% 3% 0 !important;
    }

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

    #myo_web .item a {
        display: block;
    }

    #myo_web .item .thumbox,
    #myo_web .item .info {
        display: block;
        width: 100%;
    }

    #myo_web .item .info {
        padding: 10px 0 0 0;
    }
}
