@charset "utf-8";

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

@font-face {
    font-family: 'omyu_pretty';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-01@1.0/omyu_pretty.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* 전체 폰트 */
html,
th,
td,
input,
select,
textarea,
button,
#tt-body-page blockquote,
#tt-body-page blockquote p,
#tt-body-page blockquote[data-ke-style='box'],
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
figure figcaption,
figure[data-ke-type='video'] figcaption,
code {
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    font-size: 11px;
    color: #444;
    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;
    outline: none;
}

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 {
    background: transparent;
    border: 0;
    outline: none;
}

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

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,
tr,
td {
    border-spacing: 1px 0;
    border-color: #444;
    border-color: var(--text);
}

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

/* 기본 설정 */
body {
    background-color: #fff;
    background-color: var(--bg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

a {
    color: #444;
    color: var(--text);
    text-decoration: none;
    transition: color .5s;
}

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

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

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

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

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

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

/* 마우스 드래그 블럭 */
::selection {
    color: #fff;
    color: var(--item-bg);
    background-color: #444;
    background-color: var(--text);
}

::-moz-selection {
    color: #fff;
    color: var(--item-bg);
    background-color: #444;
    background-color: var(--text);
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: transparent;
}

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

/* 벽지 */
.wall {
    background-image: url(//www.transparenttextures.com/patterns/egg-shell.png);
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: -1;
    opacity: 0.5;
}

/* 전체 박스 */
#container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 100vh;
}

body.smooth-screen #container {
    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;
    }
}

.width {
    max-width: 1000px;
    max-width: var(--width);
    width: 100%;
    margin: auto;
}

.box {
    padding: 10px;
    background-color: #fff;
    background-color: var(--item-bg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

/* 헤더 */
#header {
    background-color: #fff;
    background-color: var(--header);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 15px;
    line-height: 55px;
}

#header .width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .width > div {
    display: flex;
    align-items: center;
}

#header .title {
    display: flex;
    align-items: center;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.1em;
    margin-right: 3vw;
    white-space: nowrap;
    line-height: 1;
}

#header .logo {
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: inline-block;
    border-radius: 100%;
    margin-right: 3vw;
}

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

#header.s {
    position: fixed;
}

#header .intro {
    white-space: nowrap;
    line-height: 1;
    cursor: default;
}

/* sns */
#header .right > .sns {
    margin-right: 30px;
}

#header .right .sns a {
    margin: 0 10px;
}

/* 버튼 */
#header .button {
    position: relative;
    width: 42px;
    text-align: right;
}

#header .button > div {
    position: absolute;
    top: 100%;
    right: 0;
    white-space: nowrap;
    display: none;
    border-radius: 0 0 5px 5px;
    min-width: 130px;
    background-color: #444;
    background-color: var(--text);
    color: #fff;
    color: var(--header);
    line-height: 1.7;
    text-align: left;
}

#header .button > .fa {
    transition: color .5s;
    padding: 10px 0 10px 10px;
}

#header .button.open > .fa,
#header .button .fa:hover {
    color: #a0615d;
    color: var(--point);
}

/* 카테고리 */
.catebox {
    padding: 5px 0;
}

.category_list > li {
    position: relative;
}

.catebox a {
    color: #fff;
    color: var(--header);
    padding: 5px 10px;
}

.catebox .new,
.catebox a:hover {
    color: #a0615d;
    color: var(--point);
}

.catebox .blogmenu a,
.catebox .cate a,
.catebox .link_item:only-child,
.catebox .link_sub_item,
.catebox .links a {
    display: block;
}

@media screen and (min-width: 769px) {
    .catebox .link_item {
        display: block;
    }

    .catebox .sns {
        display: none;
    }
}

.catebox .link_item:after {
    content: "\f107";
    float: right;
    font-family: fontAwesome;
}

.catebox .link_item:only-child:after {
    content: '';
}

.catebox .sub_category_list {
    background-color: #444;
    background-color: var(--text);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    border-radius: 5px 0 5px 5px;
}

.catebox .link_tit {
    display: none;
}

/* 검색 */
.search {
    padding: 10px;
}

.search input {
    color: #fff;
    color: var(--header);
}

/* 입력창 폰트 색상 */
.search input::-webkit-input-placeholder {
    color: #fff;
    color: var(--header);
}

.search input:-moz-placeholder {
    color: #fff;
    color: var(--header);
}

.search input::-moz-placeholder {
    color: #fff;
    color: var(--header);
}

.search input:-ms-input-placeholder {
    color: #fff;
    color: var(--header);
}

.search input::placeholder {
    color: #fff;
    color: var(--header);
}

.search button {
    color: #fff;
    color: var(--header);
    font-size: .8em;
}

/* 사이드바 */
#side {}

/* 메인 영역 */
#content:before {
    content: '';
    display: block;
    height: calc(60px + 5vh);
}

#content:after {
    content: '';
    display: block;
    height: 5vh;
}

#content {
    flex-grow: 1;
}

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

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

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

/* 목록 공통 */
.myoskin {
    position: relative;
    min-height: 100%;
}

.myoskin .item a {
    margin: 0;
    display: block;
}

.myoskin .item img {
    width: 100%;
    transition: filter .5s;
}

.myoskin .item:hover img {
    filter: grayscale(100%);
}

.myoskin .item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'omyu_pretty';
    font-size: 1.6em;
    word-break: break-word;
}

.myoskin .info .fa {
    font-size: .9em;
    margin-right: 5px;
}

#myo_gal .item:before,
#myo_gal .item:nth-child(3n):after,
#myo_bbs .item:before,
#myo_web .item .thumbox:before {
    content: '';
    width: 80px;
    height: 40px;
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAbCAYAAAA53gJaAAAACXBIWXMAAA7EAAAOxAGVKw4bAAACk0lEQVRoge2ZQUvjQBTH//OS1jTJDGk0stQepCD0VOjJQz9EoXeFxasHT4Ie/QDe9u4HEL+Ct8WD9OhVt6wi0rKlWrVtnOzBWltpN2lB0qz5wVzmzfD+vMzkvZlhiKF+80P2G9gMk2cdP6uPaccGnmPbtnpwcJB5eXnxHWtZlnt6enp1dHT0oAJAPp/X9/b2cs1mUw3irNfr0dramq3ruuZ5XiCBmqZpi4uLVtDxnufR8vKyxRgLpMnzPBiGkTIMQw/kYAaur69/AHhUAdD+/n52Y2Pj+2c5+184Pz93gdelLDc3N28vLy9/haxp7ul0OhKAfNv/j8fHxz/DFBQFzs7OusD7T9Pd3d296vV6boia5p719fUkMJRxKpWKnkgkAv10vyqrq6saABoErVQq2WEKigKccwKGVlo2m7VC1BMJbNvWgKGgOY4TB82HVCqVxPD2FEKYYQqKAul0ejQRCCFEiHoiAed8NBGYphmvNB+klCPFLXHOeZiCosDFxUUdb0FbWlpSdV3XQtY095ycnAyCRuVyWRDRtNc8X4p2u/1YrVYHxygqFApxEvDBdd3BJSQBoJWVlfg04APnXEe/2iAAZNt2vNJ8ICLa2tqy0C854sI2IMVi8T1ohmHEQQtAJpOx8Ra0hYWFZNiCooDjOAIAqQBgmuanPUZEnbu7uwZjDEQkhRBdAFIF4HY6nSYAJ2R9I0gpZb1e/8MYG2t/enp6brVaD4wx+dHGGJO1Wq2uKMqITVVVWa1WbxOJxEi/oijY3t7+jX5J8VHKUH8XgMvwmkG1fqPDw8NviqJMvMF1XZdyuZxoNBrP9/f3XSIa5+ifeJ4nd3Z2biaInCR4kn2aedP2j2XcZ5zlEXhaphI5b/wFFxm7YIDbnPoAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

#myo_gal .item:nth-child(2n):before,
#myo_bbs .item:nth-child(2n):before,
#myo_web .item:nth-child(2n) .thumbox:before {
    width: 90px;
    height: 40px;
    transform: translateX(-50%) rotate(-10deg);
}

#myo_gal .item:nth-child(4n):before,
#myo_bbs .item:nth-child(4n):before,
#myo_web .item:nth-child(3n) .thumbox:before {
    height: 25px;
    top: -25px;
    transform: translateX(-50%) rotate(-95deg);
}

/* 갤러리형 */
.sizer {
    width: 7%;
}

#myo_gal .item {
    width: 28.6%;
    margin-bottom: 7%;
}

#myo_gal .item:nth-child(3n):after {
    bottom: -30px;
    top: auto;
}

#myo_gal .item a {
    position: relative;
    overflow: hidden;
}

#myo_gal .item .info {
    position: absolute;
    bottom: -100%;
    left: 0;
    opacity: 0;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    background-color: var(--item-bg);
    color: #444;
    color: var(--text);
    white-space: nowrap;
    text-align: center;
    transition: bottom .5s, opacity .5s;
}

#myo_gal .item:hover .info {
    bottom: 0;
    opacity: 1;
}

#myo_gal.info .item .info {
    position: static;
    opacity: 1;
    padding-bottom: 0;
    text-align: center !important;
}

#myo_gal.random .item {
    width: 31%;
}

#myo_gal.random .grid-item--width1 {
    width: 14%;
}

#myo_gal.random .grid-item--width2 {
    margin-top: 20px;
}

#myo_gal.random .item:nth-child(2n) .info {
    text-align: right;
}

#myo_gal.random .item:nth-child(3n) .info {
    text-align: left;
}

#myo_gal .item .other,
#myo_gal .item .cate,
#myo_gal .item .text {
    display: none;
}

/* 목록형 */
#myo_bbs .item {
    width: 28.6%;
    margin-bottom: 50px;
}

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

#myo_bbs .item .text {
    margin: 10px 0;
    word-break: break-word;
}

#myo_bbs .item .text,
#myo_bbs .item .other {
    color: #444;
    color: var(--text);
}

#myo_bbs .item .item-cmt {
    float: right;
}

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

/* 웹진형 */
#myo_web .item {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

#myo_web .item a {
    display: flex;
}

#myo_web .item .thumbox {
    flex: 0 0 25%;
    position: relative;
}

#myo_web .item .thumbnail {
    position: relative;
    padding-top: 76%;
    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 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 10px;
}

#myo_web .item .text {
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-height: 105px;
}

#myo_web .item .text,
#myo_web .item .other {
    color: #444;
    color: var(--text);
}

#myo_web .item .other > span {
    margin-right: 15px;
}

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

.pass form {
    padding: 30px 15px;
}

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

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

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

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

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

.titlebox .title {
    font-weight: bold;
    font-family: 'omyu_pretty';
    font-size: 1.6em;
}

.titlebox .date {}

.titlebox .admin {
    margin-top: 5px;
}

.titlebox .admin a {
    margin: 0 10px;
}

/* 본문 */
.text-item {
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.8 !important;
}

.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 u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to bottom, #a0615d 0%, #a0615d 100%);
    background-image: linear-gradient(to bottom, var(--point) 0%, var(--point) 100%);
    background-size: 100% 2px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .5s ease-out;
}

.text-item u:hover {
    color: #fff;
    color: var(--item-bg);
    background-size: 100% 100%;
}

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

/* 아이프레임 */
.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%;
}

/* 링크 */
.text-item p a:not(img):before {
    content: "\e62d";
    font-family: 'themify';
    font-size: .8em;
    margin-right: 5px;
}

.tx-link.imgblock[href]:before {
    display: none
}

.text-item a[href] {
    color: #a0615d;
    color: var(--point);
    transition: .4s;
}

.text-item a[href] img {
    transition: opacity .4s;
}

.text-item a[href] img:hover {
    opacity: 0.5;
}

.text-item a[href]:hover {
    text-decoration: line-through;
}

/* 동영상 */
#tt-body-page figure[data-ke-type='video'][data-video-host] iframe {
    vertical-align: top;
}

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

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

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

/* 인용구2 */
#tt-body-page blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='style3'] {
    border: 0;
    border-left: 1px solid;
    border-color: #a0615d;
    border-color: var(--point);
    font-style: italic;
    margin: 5%;
    padding: 1em 2em;
    position: relative;
    transition: 0.2s border ease-in-out;
    z-index: 0;
    background-color: transparent;
    line-height: inherit;
}

#tt-body-page blockquote[data-ke-style='box']:before,
#tt-body-page blockquote[data-ke-style='style3']:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -4px;
    height: 2em;
    background-color: #fff;
    background-color: var(--bg);
    width: 5px;
    margin-top: -1em;
}

#tt-body-page blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='style3']:after {
    position: absolute;
    top: 50%;
    left: -0.5em;
    color: #a0615d;
    color: var(--point);
    content: "\e67e";
    font-family: 'themify';
    font-style: normal;
    line-height: 1em;
    text-align: center;
    text-indent: -2px;
    width: 1em;
    margin-top: -0.5em;
    transition: 0.2s all ease-in-out, 0.4s transform ease-in-out;
}

/* 더보기 */
.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 {
    display: block;
    font-size: inherit;
    color: #a0615d;
    color: var(--point);
    height: auto;
}

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

.btn_less:last-child span:before {
    content: '\f106'
}

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

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

.moreless_content,
.moreless-content {
    border: 1px solid;
    padding: 10px;
}

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

/* 파일 첨부 */
.figure.fileblock a,
#tt-body-page figure.fileblock a:before {
    content: '';
}

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

figure.fileblock .name,
#tt-body-page figure.fileblock .name {}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
}

.imageblock > a > img {
    display: none;
}

.imageblock > a[href]:before {
    content: "\e6a7";
    font-family: "themify";
}

/* 공감 */
.container_postbtn {
    padding: 0 !important;
    margin-top: 35px;
}

.container_postbtn .postbtn_like,
.container_postbtn .btn_menu_toolbar {
    border: 0 !important;
    color: #444 !important;
    color: var(--text) !important;
}

.container_postbtn .postbtn_like {
    float: none !important;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
    padding: 0 !important;
}

.container_postbtn .postbtn_like > div,
.container_postbtn .btn_menu_toolbar > * {
    float: none;
    transition: .4s;
}

.container_postbtn .postbtn_like > div:hover,
.container_postbtn .btn_menu_toolbar:hover > * {
    border-color: #a0615d !important;
    color: #a0615d !important;
    border-color: var(--point) !important;
    color: var(--point) !important;
}

.container_postbtn .btn_post .txt_like {
    display: none !important;
}

.container_postbtn .postbtn_ccl {
    position: absolute !important;
    right: 0 !important;
    top: 0;
}

.container_postbtn .btn_post .ico_postbtn,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    background-image: none;
    position: relative;
    margin: 0 !important;
    height: 14px !important;
    text-indent: inherit !important;
    overflow: visible;
}

.container_postbtn .btn_post .ico_postbtn:after,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e635";
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    font-size: 13px;
    vertical-align: middle;
    line-height: 1;
}

.container_postbtn .wrap_btn:first-child .btn_post {
    padding-left: 0;
}

.container_postbtn .btn_post .empathy_up_without_ani .ico_postbtn:after {
    content: "\e634";
}

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

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

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

.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e64c";
    line-height: inherit;
    margin-left: 3px;
}

/* 본문 하단 태그, 댓글 오픈 */
.tags {
    color: transparent;
    margin-top: 35px;
    display: flex;
}

.tags a {
    margin-right: 10px;
    word-break: keep-all;
    word-wrap: break-word;
}

.tags .title,
.opencmt .title {
    font-weight: bold;
    width: 70px;
    color: #444;
    color: var(--text);
    cursor: default;
    flex: 0 0 70px;
}

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

.morebox {
    overflow: hidden;
}

.morebox > p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.morebox > p > .title {
    cursor: default;
    font-size: 1.6em;
    font-family: 'omyu_pretty';
}

.morebox > p i {
    margin-left: 10px;
}

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

.morebox a {
    display: block;
}

/* 카테고리 글 더보기 갤러리형 */
#more_gal .more-item {
    float: left;
    width: calc((100% - 30px) / 4);
    margin-right: 10px;
}

#more_gal .more-item:last-child {
    margin: 0;
}

#more_gal .more-item img {
    width: 100%;
    transition: .5s;
}

#more_gal .more-item:hover img {
    filter: grayscale(100%);
}

#more_gal .more-item .info {
    padding-top: 10px;
    text-align: center;
}

#more_gal .more-item .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#more_gal .more-item .date {
    display: none;
}

/* 카테고리 글 더보기 목록형 */
#more_bbs .more-item {
    margin-bottom: 10px;
}

#more_bbs .more-item:last-child {
    margin: 0;
}

#more_bbs .more-item .title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
}

#more_bbs .more-item .info {
    display: flex;
    justify-content: space-between;
}

#more_bbs .more-item .thumbox {
    display: none;
}

/* 댓글, 방명록 작성 */
#tt-body-page .write {
    padding-top: 10px;
}

.write .area {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.write textarea,
.write button {
    padding: 10px;
    height: 100px;
    min-height: 100px;
    border: 1px solid;
    border-color: #444;
    border-color: var(--text);
}

.write textarea {
    flex-grow: 1;
    width: calc(100% - 90px);
}

.write button {
    flex: 0 0 80px;
    margin-left: 10px;
    text-transform: uppercase;
    transition: color .4s;
}

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

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

.write input {
    text-transform: uppercase;
    padding: 3px 0;
    margin: 10px 10px 0 0;
    max-width: 50%;
    height: 30px;
}

.write .secret {
    padding: 3px 0;
    text-align: center;
    height: 30px;
    margin-top: 10px;
}

.write .secret input {
    display: none;
}

.write input + label {
    line-height: 30px;
}

.write input + label:after {
    content: "\f13e";
    font-family: 'fontAwesome';
    transition: color .4s;
}

.write input:checked + label:after {
    content: "\f023";
    font-family: 'fontAwesome';
    color: #a0615d;
    color: var(--point);
}

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

.lst > ul {
    position: relative;
}

.lst li {
    position: relative;
}

#tt-body-page .lst > ul,
#tt-body-page.order .lst > ul:last-child {
    border-bottom: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

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

#tt-body-page.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;
    font-size: 1.1em;
}

.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;
    line-height: 13px;
    display: inline-block;
    vertical-align: middle;
}

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

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

.lst .text {
    margin-top: 5px;
}

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

.lst .text a:hover {
    text-decoration: line-through;
}

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

.lst .admin {
    float: right;
    opacity: 0;
    transition: .4s;
}

.lst .admin a {
    margin-left: 15px;
    font-size: .8em;
}

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

.reply {
    margin-top: 20px;
    margin-left: 30px;
    position: relative;
}

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

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

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

/* 공지 */
#tt-body-page .noti {
		width: 100%;
}
.noti {
    width: 28.6%;
    margin-bottom: 7%;
}

.noti:first-child {
    margin-top: 0;
}

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

.noti .title {
    font-family: 'omyu_pretty';
    font-size: 1.6em;
    margin-bottom: 10px;
}

.noti .container_postbtn {
    margin: 10px 0 0;
}

/* 태그 클라우드 */
.taglog li {
    display: inline-block;
    margin: 0 10px 10px 0;
}

/* 푸터 */
#footer {
    margin-bottom: 0;
    background-color: #fff;
    background-color: var(--header);
    padding: 15px;
}

#footer .width {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 페이지네이션 */
.pagination {
    cursor: default;
}

.pagination a {
    margin-right: 20px;
}

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

.pagination .prev,
.pagination .next {
    display: none !important;
}

/* 탑버튼 */
.top {
    display: none;
    position: fixed;
    right: 1.5vw;
    bottom: 1.5vh;
    z-index: 999;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
}

/* ie */
#ie {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    z-index: 9999999999999;
}

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

/* 커버 */
#cover section {
    padding: 0 1vw;
    margin-bottom: 7vh;
    max-width: calc(1000px + 2vw);
    max-width: calc(var(--width) + 2vw);
}

#cover #c-gal,
#cover #c-gal2,
#cover #c-bbs,
#cover section:last-child {
    margin-bottom: 0;
}

#cover section:hover .slick-prev,
#cover section:hover .slick-next {
    opacity: 1;
}

#cover section:after {
    content: '';
    display: block;
    clear: both;
}

#cover #c-slider:before,
#cover #c-notice .box:before {
    content: '';
    width: 80px;
    height: 40px;
    display: block;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE0AAAAbCAYAAAA53gJaAAAACXBIWXMAAA7EAAAOxAGVKw4bAAACk0lEQVRoge2ZQUvjQBTH//OS1jTJDGk0stQepCD0VOjJQz9EoXeFxasHT4Ie/QDe9u4HEL+Ct8WD9OhVt6wi0rKlWrVtnOzBWltpN2lB0qz5wVzmzfD+vMzkvZlhiKF+80P2G9gMk2cdP6uPaccGnmPbtnpwcJB5eXnxHWtZlnt6enp1dHT0oAJAPp/X9/b2cs1mUw3irNfr0dramq3ruuZ5XiCBmqZpi4uLVtDxnufR8vKyxRgLpMnzPBiGkTIMQw/kYAaur69/AHhUAdD+/n52Y2Pj+2c5+184Pz93gdelLDc3N28vLy9/haxp7ul0OhKAfNv/j8fHxz/DFBQFzs7OusD7T9Pd3d296vV6boia5p719fUkMJRxKpWKnkgkAv10vyqrq6saABoErVQq2WEKigKccwKGVlo2m7VC1BMJbNvWgKGgOY4TB82HVCqVxPD2FEKYYQqKAul0ejQRCCFEiHoiAed8NBGYphmvNB+klCPFLXHOeZiCosDFxUUdb0FbWlpSdV3XQtY095ycnAyCRuVyWRDRtNc8X4p2u/1YrVYHxygqFApxEvDBdd3BJSQBoJWVlfg04APnXEe/2iAAZNt2vNJ8ICLa2tqy0C854sI2IMVi8T1ohmHEQQtAJpOx8Ra0hYWFZNiCooDjOAIAqQBgmuanPUZEnbu7uwZjDEQkhRBdAFIF4HY6nSYAJ2R9I0gpZb1e/8MYG2t/enp6brVaD4wx+dHGGJO1Wq2uKMqITVVVWa1WbxOJxEi/oijY3t7+jX5J8VHKUH8XgMvwmkG1fqPDw8NviqJMvMF1XZdyuZxoNBrP9/f3XSIa5+ifeJ4nd3Z2biaInCR4kn2aedP2j2XcZ5zlEXhaphI5b/wFFxm7YIDbnPoAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}

#cover #c-slider:before,
#cover #c-notice .c-noti:before {
    width: 90px;
    height: 40px;
    transform: translateX(-50%) rotate(-10deg);
}

#cover #c-notice .c-twt:before {
    height: 25px;
    top: -25px;
    transform: translateX(-50%) rotate(-95deg);
}

#cover section .c-title {
    font-family: 'omyu_pretty';
    font-size: 1.7em;
    margin-bottom: 7vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    white-space: nowrap;
}

#cover section .c-title span:nth-child(2) {
    padding: 0 5%;
}

#cover section .c-title .border1,
#cover section .c-title .border2 {
    height: 1px;
    background-color: #444;
    background-color: var(--text);
    min-width: 5%;
    max-width: 10vh;
    width: 100%;
    opacity: 0.5;
}

/* 슬라이드 공통 */
.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 9999999;
    opacity: 0;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    color: #444;
    color: var(--text);
    transition: .5s;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.slick-prev {
    left: 1.5vw;
}

.slick-next {
    right: 1.5vw;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'themify';
    font-size: 1rem;
    display: inline-block;
    transition: .5s;
}

.slick-prev:after,
.slick-next:after {
    background-color: #fff;
    background-color: var(--item-bg);
    opacity: 0.8;
    width: 30px;
    height: 30px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.slick-prev:before {
    content: "\e64a";
}

.slick-next:before {
    content: "\e649";
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #a0615d;
    color: var(--point);
}

.slick-dots {
    margin: 10px auto 0;
    text-align: center;
}

.slick-dots li {
    display: inline;
}

.slick-dots li button {
    text-indent: -9999px;
    height: 8px;
    width: 8px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 8px;
    background-color: #fff;
    background-color: var(--item-bg);
    border-radius: 100%;
    display: inline-block;
    opacity: 0.5;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover {
    background-color: #a0615d !important;
    background-color: var(--point) !important;
    cursor: pointer;
}

/* 슬라이드1 */
#c-slider {
    position: relative;
    width: inherit !important;
}

#c-slider .slick-dots {
    margin: 22px 0;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#c-slider .item {
    position: relative;
    vertical-align: top;
    overflow: hidden;
    height: 40vh;
}

#c-slider .item .thumbox {
    height: 100%;
}

#c-slider .thum,
#c-slider .noimg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

#c-slider .info {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    padding: 0 20%;
    z-index: 1;
    transition: opacity .5s;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: #444;
    color: var(--text);
}

#c-slider .info:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-color: var(--item-bg);
    opacity: 0.75;
    z-index: -1;
}

#c-slider:hover .info {
    opacity: 1
}

#c-slider .info .title {
    outline: none;
    font-family: 'omyu_pretty';
    font-size: 1.6em;
    margin-bottom: 5px;
}

#c-slider .info .text {
    font-size: .85em;
}

/* 커버 - 슬라이더2, 슬라이더3 */
#c-slider3 {
    max-width: 100% !important;
}

#c-slider2,
#c-slider3 {
    padding: 0 !important;
}

#c-slider2 #myo_gal,
#c-slider3 #myo_gal {}

#c-slider2 #myo_gal .item,
#c-slider3 #myo_gal .item {
    vertical-align: top;
    float: left;
    position: relative;
}

#c-slider2 #myo_gal .item:before,
#c-slider3 #myo_gal .item:before {
    display: none;
}

#c-slider2 .slick-prev {
    left: -30px;
    color: #444;
    color: var(--text);
}

#c-slider2 .slick-next {
    right: -30px;
    color: #444;
    color: var(--text);
}

#c-slider2 .slick-dots li button {
    background-color: #444;
    background-color: var(--text);
}

#c-slider2 .slick-slide > div,
#c-slider3 .slick-slide > div {
    padding: 0 1vw;
}

#c-slider2 #myo_gal .item,
#c-slider3 #myo_gal .item {
    margin-bottom: 5px;
}

/* 커버 공지 , 트위터 위젯 */
#c-notice {
    position: relative;
}

#c-notice .c-title {
    margin-bottom: 10px !important;
}

#c-notice .c-noti {
    max-width: 64%;
    margin-bottom: 0;
    position: relative;
}

#c-notice .c-noti .thum {
    display: inline-block;
    margin-bottom: 10px;
}

#c-notice .c-noti.on {
    float: none;
    width: 100%;
    max-width: 100%;
}

#c-notice .c-twt {
    width: 35%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#c-notice .c-twt > ul {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    flex-grow: 1;
    height: 100%;
}

#c-notice .c-twt > ul::-webkit-scrollbar {
    background: transparent;
}

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

/* 모바일 영역 */
@media screen and (max-width: 768px) {
    html {
        min-height: 100vh;
    }

    body {
        background-image: none;
    }

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

    #header .intro,
    .right > .sns {
        display: none;
    }

    .catebox .mc {
        padding: 5px 10px 5px 0;
    }

    .catebox .sns a {
        padding: 0;
        margin-top: 10px;
        display: inline-block;
    }

    #myo_gal .item {
        width: 46.5% !important;
        margin: 0 0 10%;
    }

    #myo_gal .item::before,
    #myo_gal .item:nth-child(3n):after,
    #myo_bbs .item:before {
        width: 60px;
    }

    #myo_gal .item:nth-child(2n):before,
    #myo_bbs .item:nth-child(2n):before {
        width: 60px;
        height: 20px;
    }

    #myo_gal .item:nth-child(4n):before,
    #myo_bbs .item:nth-child(4n):before {
        height: 20px;
        top: -10px;
    }

    #myo_gal .item .info {
        position: static;
        padding: 10px 0 0;
        opacity: 1;
        text-align: center !important;
    }

    #myo_bbs .item,
    #myo_web .item {
        width: 100%;
    }

    #myo_bbs .item {
        margin-bottom: 30px;
    }

    #myo_web .item {
        margin-bottom: 15px;
    }

    #myo_bbs .item .title,
    #myo_web .item .title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        max-height: 48px;
    }

    #myo_bbs .item .text,
    #myo_web .item .text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        overflow: hidden;
        max-height: 51px;
    }

    #myo_web .item a {
        display: block;
    }

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

    #myo_web .item .other {
        display: flex;
        justify-content: space-between;
    }

    #myo_web .item .other span {
        margin: 0;
    }

    #more_gal .more-item {
        width: calc((100% - 10px) / 2);
        margin-bottom: 10px;
    }

    #more_gal .more-item:nth-child(2n) {
        margin-right: 0;
    }

    .write .area {
        display: block;
    }

    .write textarea,
    .write button {
        width: 100%;
        margin: 0;
    }

    .write button {
        height: auto;
        min-height: auto;
    }

    .write .inputbox {
        align-items: flex-end;
    }

    #footer .width {
        display: block;
    }

    #footer {
        text-align: center;
    }

    .pagination a {
        margin: 2vw;
    }

    .copy {
        margin-top: 10px;
    }

    #c-notice {
        min-height: auto;
    }

    #c-notice .c-twt {
        display: none;
    }

    #c-notice .c-noti {
        float: none;
        max-width: 100%;
    }

    #c-slider2 #myo_gal .item,
    #c-slider3 #myo_gal .item {
        width: 100% !important;
    }

    #c-slider2 #myo_gal .item,
    #c-slider3 #myo_gal .item {
        margin-bottom: 1vh;
    }
}

@media screen and (max-width: 300px) {
    .catebox .sub_category_list {
        position: static;
    }

    .catebox .link_sub_item {
        padding-left: 25px;
    }

    #myo_gal .item {
        width: 100%;
        margin: 0 0 30px;
    }

    #more_gal .more-item {
        width: 100%;
        margin-bottom: 10px;
    }

    #more_gal .more-item:last-child {
        margin: 0;
    }
}
