@charset "utf-8";
/* 웹폰트 */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Meddon');

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;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

fieldset,
img {
    border: 0;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

iframe,
embed {
    width: 100%;
}

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

table {
    border-spacing: 1px 0;
}

h3 {
    font-size: 1.3em;
}

h2 {
    font-size: 1em;
}

h1 {
    font-size: .8em;
}

button,
input {
    background-color: transparent;
    border: 0;
    padding: 0;
}

/* 배경 */
body {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
}

body.smooth-screen {
    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 {

    /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

a {
    color: #af8a6d;
    color: var(--text);
    text-decoration: none;
    -moz-outline-style: none;
    transition-property: color;
    transition-duration: .5s;
}

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

/* 입력창 폰트 색상 */
::-webkit-input-placeholder {
    /* 크롬 4–56 */
    color: #af8a6d;
    color: var(--text);
}

:-moz-placeholder {
    /* 파이어폭스 4–18 */
    color: #af8a6d;
    color: var(--text);
}

::-moz-placeholder {
    /* 파이어폭스 19–50 */
    color: #af8a6d;
    color: var(--text);
}

:-ms-input-placeholder {
    /* 인터넷 익스플로러 10+ */
    color: #af8a6d;
    color: var(--text);
}

::placeholder {
    /* 파이어폭스 51+, 크롬 57+ */
    color: #af8a6d;
    color: var(--text);
}

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

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

/* 전체 박스 */
#container {
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
    background-color: #fff;
    background-color: var(--con-bg);
}

/* 툴바 */
.logo {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    width: 20px;
    height: 20px;
    margin: auto;
    border-radius: 100%;
    margin-bottom: 10px;
}

@media all and (min-width: 768px) {
    #container .main {
        position: relative;
        height: 100%;
        overflow: hidden;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .sbox {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        border-right: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        padding: 40px 10px;
        text-align: center;
        line-height: 4;
        opacity: 0;
        transition-property: opacity;
        transition-duration: 0.5s;
        background-color: #fff;
        background-color: var(--con-bg);
        z-index: 9;
    }

    .sbox:hover, .sbox.s {
        opacity: 1;
    }

    .sbox .icon {
        position: absolute;
        bottom: 30px;
        width: 100%;
        left: 0;
        line-height: 3;
    }

    /* 카테고리 툴바 */
    .sbox .tt_category {
        position: absolute;
        line-height: 2;
        white-space: nowrap;
        left: 110%;
        background-color: #fff;
        background-color: var(--con-bg);
        border: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        padding: 10px;
        top: 70px;
        display: none;
    }

    .sbox .sub_category_list > li:hover .sub_category_list {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .sbox .category_list {
        max-height: 500px;
        transition: 1s;
        opacity: 1;
        z-index: 99;
    }

    .mtop,
	  .link_tit,
    #header .ti-menu {
        display: none;
    }

    a.link_item:after {
        content: "";
        margin-left: 3px;
    }

    a.link_item:only-child:after {
        content: ""
    }

    a.link_sub_item {
        color: #e0cbbb;
        color: var(--point);
    }

    a.link_sub_item:hover {
        color: #af8a6d;
        color: var(--text);
    }

    .sbox .sub_category_list > li:last-child {
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid;
    }

    /* 검색 */
    .search {
        position: absolute;
        top: 110px;
        left: 110%;
        background-color: #fff;
        background-color: var(--con-bg);
        border: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        padding: 0 10px;
        white-space: nowrap;
        display: none;
    }

    .search input {
        border: 0;
        background-color: transparent;
    }

    .search .ssubmit {
        font-family: themify;
    }
}

/* 헤더 */
#header {
    text-align: center;
    padding: 30px;
}

#header > h3 img {
    width: auto;
    max-height: 50px;
}

/* 상단 카테고리  */
#header .tt_category {
    margin-top: 15px;
}

#header .category_list > li {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

#header a.link_item {
    margin: 0 7px;
}

#header .sub_category_list {
    position: absolute;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    max-height: 0;
    overflow: hidden;
}

#header .category_list > li:hover .sub_category_list {
    max-height: 500px;
    transition: 3s;
    z-index: 99;
}

/* 새글 표시 기능 */
.new {
    color: #eaeaea;
    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;
    }
}

/* 본문 영역 */
#content {
    margin: 20px 18%;
}

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

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

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

/* 갤러리형 */
#myo_gal .lst {
    width: 32%;
    margin: 0.2%;
    float: left;
    position: relative;
    overflow: hidden;
}

#myo_gal .lst a {
    display: block;
}

#myo_gal .lst .thumbox img {
    width: 100%;
    vertical-align: top;
    transition-property: opacity;
    transition-duration: .5s;
}

#myo_gal .lst .info {
    position: absolute;
    top: 0;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .5s;
    text-align: center;
    display: flex;
    -ms-display: flexbox;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #af8a6d;
    color: var(--text);
}

#myo_gal .lst .title {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: bold;
    margin: 0 5px;
}

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

#myo_gal .lst:hover img {
    opacity: 0.3;
}

#myo_gal .lst:hover .info {
    opacity: 1;
}

/* 목록형 */
#myo_bbs .lst {
    margin: 40px 0;
    text-align: center;
}

#myo_bbs .lst a {
    display: block;
}

#myo_bbs .lst .thumbox,
#myo_bbs .lst .thumbox img {
    display: none;
}

#myo_bbs .lst .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* 웹진형 */
#myo_web .lst {
    margin: 40px 0;
    position: relative;
}

#myo_web .lst:first-child {
    margin-top: 0;
}

#myo_web .lst a {
    display: block;
}

#myo_web .lst .thumbox,
#myo_web .lst .info {
    display: inline-block;
    vertical-align: middle;
}

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

#myo_web .lst .thumbox img {
    width: 100%;
    border-radius: 100%;
    vertical-align: top;
    transition-property: opacity;
    transition-duration: .5s;
}

#myo_web .lst:hover .thumbox img {
    opacity: 0.5;
}

#myo_web .lst .info {
    float: right;
    width: calc(70% - 20px);
}

#myo_web .lst .title {
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#myo_web .lst .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 66px;
    overflow: hidden;
}

/* 보호글 */
.pass {
    width: 220px;
    margin: 45% auto;
}

.pass p .input,
.pass p .submit {
    margin: 5px 0;
    padding: 10px;
}

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

.pass .submit {
    width: 100%;
    border: 0;
    background-color: #af8a6d;
    background-color: var(--text);
    color: #fff;
    color: var(--con-bg);
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.input[required] + label:before {
    content: attr(placeholder);
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding: 0 9px;
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
}

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

/* 본문 */

#tt-body-index .entry,
#tt-body-category .entry {
    padding: 50px 0;
    border-bottom: 1px solid;
    border-color: #af8a6d;
    border-color: var(--text);
}

#tt-body-index .entry:first-child,
#tt-body-category .entry:first-child {
    margin-top: 50px;
    border-top: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
}

#tt-body-index .entry:last-child,
#tt-body-category .entry:last-child {
    border: 0
}

.article {
    word-break: keep-all;
    word-wrap: break-word;
    line-height: 1.8 !important;
}

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

.article ul {
    list-style: disc inside;
}

.article ol {
    list-style: inside decimal;
}

.article u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to bottom, #af8a6d 0%, #af8a6d 100%);
    background-image: linear-gradient(to bottom, var(--text) 0%, var(--text) 100%);
    background-size: 100% 1px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .5s ease-out;
}

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

.article 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 a,
.footnote a {
    color: #af8a6d;
    color: var(--text);
    transition: .5s;
}

.text-item a:hover,
.footnote a:hover {
    opacity: .5;
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    border-color: #fbeee6;
    border-color: var(--scroll);
}

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 {

    color: #af8a6d;
    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: #af8a6d;
    color: var(--text);
}

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 {
    font-size: 1em;
    color: #e0cbbb;
    color: var(--point);
}

/* 동영상 */
#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: #e0cbbb;
    color: var(--point);
}

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

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

/* 인용구2 */
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='box'] {
    border: 0;
    border-left: 1px solid;
    border-color: #e0cbbb;
    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;
}

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

#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='box']:after {
    position: absolute;
    top: 50%;
    left: -0.5em;
    color: #e0cbbb;
    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: #e0cbbb;
    color: var(--point);
    height: auto;
}

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

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

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

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

.moreless_content,
.moreless-content {
    border: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
    padding: 10px;
    margin-top: 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 {
    border-color: var(--scroll);
}

.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 {
    font-size: 12px;
    color: #af8a6d;
    color: var(--text);
    font-weight: bold;
}

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

.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: #af8a6d !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: #e0cbbb !important;
    color: #e0cbbb !important;
    border-color: var(--point) !important;
    color: var(--point) !important;
}

body .container_postbtn .btn_post .txt_like {
    vertical-align: middle !important;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif !important;
}

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

.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;
    vertical-align: middle;
}

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

/* 본문 태그 */
.artitag {
    color: transparent;
    margin-top: 20px;
}

.artitag a:before {
    content: "#";
}

.artitag a {
    margin-right: 5px;
}

/* 본문 타이틀 */
.artititle {
    text-align: center;
    margin: 70px 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
}

.artititle .logo {
    width: 40px;
    height: 40px;
}

.artititle .title {
    margin-top: 10px;
    font-weight: bold;
}

.artititle .date {
    opacity: 0.7;
}

.artititle .admin {
    visibility: hidden;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .5s;
    margin-top: 5px;
}

.artititle .admin > a {
    margin: 0 5px;
}

.artititle:hover .admin {
    visibility: visible;
    opacity: 0.5;
}

/* 본문 댓글 */
.articmt .title {
    margin-right: 5px;
}

/* 댓글, 방명록 작성 */
.cmt {
    margin-top: 20px;
}

.write input {
    background-color: transparent;
    border: 0;
}

.write textarea {
    background-color: #fbeee6;
    background-color: var(--scroll);
    width: 100%;
    height: 70px;
    border: 0;
    transition: .5s;
    margin: 5px 0;
    padding: 5px;
}

.write textarea:focus,
.write textarea:hover {
    height: 120px;
}

.write .info {
    margin-bottom: 5px;
}

.write .info input {
    width: 32%;
    margin-right: 1%;
}

.write .info input:last-child {
    margin: 0;
}

.write .info,
.write .secret {
    display: inline-block;
}

.write .submit {
    float: right;
    font-family: 'themify';
}

:not(.secret) + .submit {
    width: 100%;
}

.write .secret {
    display: inline-block;
    margin-bottom: 10px;
}

.write .checkbox {
    display: none;
}

.write .checkbox + .secret-label:after {
    content: "\e603";
    font-family: 'themify';
}

.write .checkbox:checked + .secret-label:after {
    content: "\e62b";
    font-family: 'themify';
}

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

.list li {
    position: relative;
}

.listbox {
    border-bottom: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
}

.listbox:last-child {
    border: 0;
}

.listbox:last-child .info:last-child {
    margin-bottom: 0;
}

.list img {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 100% 0 100% 100%;
}

.list img[alt=BlogIcon],
.list .nopro {
    display: none;
}

.list .info {
    margin: 40px 0;
}

.list .info .name,
.list .info .date {
    margin-right: 10px;
}

.list .info .name {
    font-weight: bold;
}

.list .info .text {
    border-left: 1px solid;
    border-color: #fbeee6;
    border-color: var(--scroll);
    margin-left: 10px;
    padding-left: 10px;
}

.list .info .text a {
    color: #e0cbbb;
    color: var(--point);
}

.list .info .text a:hover {
    color: #af8a6d;
    color: var(--text);
}

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

.list .info .re {
    margin-top: 5px;
}

.list .info .re i {
    margin-right: 5px;
}

.reply {
    margin-left: 20px;
}

.list .date a {
    margin-right: 5px;
    visibility: hidden;
    font-size: .8em;
}

.list .date a:after {
    content: "\e620";
    font-family: 'themify';
    visibility: visible;
}

.rp_admin .name:before {
    content: "\e642";
    font-family: 'themify';
    font-size: .8em;
    margin-right: 3px;
}

.hiddenComment .name:after {
    content: "\e62b";
    font-family: 'themify';
    font-size: .8em;
}

.profile .list img[alt=BlogIcon],
.profile .list .nopro {
    display: block;
    z-index: 99999;
}

.profile .list .info {
    margin: 40px 0;
    padding-left: 40px;
    position: relative;
}

/* 공지 */
.notibox {
    position: relative;
    margin: 30px 0;
}

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

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

.noti {
    max-width: 75%;
    min-width: 6.5%;
    padding: 10px;
    background-color: #fbeee6;
    background-color: var(--scroll);
    position: relative;
    border-radius: 20px;
    transition: .5s;
    float: left;
    clear: both;
}

.notibox:nth-child(odd) .noti {
    background-color: #ffe3d1;
    background-color: var(--noti);
    float: right;
}

.noti:before {
    border-color: #ffe3d1;
    border-color: var(--noti);
    border-radius: 50% 50% 50% 50%;
    border-style: solid;
    border-width: 0 15px;
    bottom: 0;
    clip: rect(20px, 25px, 40px, 0px);
    content: " ";
    height: 40px;
    position: absolute;
    right: -33px;
    width: 18px;
    z-index: 1;
    transition: .5s;
}

.notibox:nth-child(even) .noti:before {
    border-color: #fbeee6;
    border-color: var(--scroll);
    left: -33px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* 푸터 */
#footer {}

/* 페이징 */
.paging {
    text-align: center;
    margin: 20px 0;
    position: absolute;
    left: 0;
    right: 0;
}

.paging a {
    margin: 0 7px;
}

.paging .selected {
    border-bottom: 1px solid;
    color: #e0cbbb;
    color: var(--point);
}

/* 카피라이트 삭제 금지 */
.copy {
    position: fixed;
    bottom: 5px;
    right: 5px;
    white-space: nowrap;
    font-size: .8em;
    font-family: 'Meddon', cursive;
}

/* 모바일 영역 */
@media all 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;
    }

    #container {
        position: static;
        width: auto;
        overflow: auto;
        transform: none;
        margin: 15px;
    }

    #header .tt_category {
        display: none;
    }

    #header .ti-menu {
        position: fixed;
        right: 30px;
        top: 30px;
    }

    #content {
        margin: 20px 10%;
    }

    #myo_web .lst .text {
        -webkit-line-clamp: 2;
        max-height: 32px;
    }

    .write .info {
        display: block;
    }

    .write .info input {
        width: 31.4%;
        border-bottom: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        padding: 2px 0;
        margin-right: 2%;
    }

    .write .info input:last-child {
        margin: 0;
    }

    #footer,
    .paging {
        position: static;
    }

    .mtop {
        position: fixed;
        right: 10px;
        bottom: 15px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        text-align: center;
    }

    .mtop:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        background-color: var(--con-bg);
        opacity: 0.5;
    }

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

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

    .page_cover.open {
        display: block;
    }

    .page_cover {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: #000;
        opacity: 0.4;
        z-index: 999;
        display: none;
    }

    .sbox {
        width: 70%;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0px;
        left: -75%;
        margin: 0;
        z-index: 999999;
        transition: All 0.2s ease;
        -webkit-transition: All 0.2s ease;
        -moz-transition: All 0.2s ease;
        -o-transition: All 0.2s ease;
        background-color: #fff;
        background-color: var(--con-bg);
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-right: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
    }

    .sbox.open {
        left: 0;
    }

    .sbox .scroll {
        width: 102%;
        height: 100%;
        overflow-y: scroll;
        padding: 50px;
    }

    .sbox .logo {
        width: 50px;
        height: 50px;
        margin: 0 0 20px;
    }

    .sbox .ti-menu,
    .sbox .link_tit,
    .sbox .ti-search,
    .sbox .icon .ti-arrow-up {
        display: none;
    }

    .category_list > li {
        margin-bottom: 20px;
    }

    a.link_item:after {
        content: "v";
        margin-left: 3px;
        float: right;
    }

    a.link_item:only-child:after {
        content: "";
    }

    a.link_sub_item {
        color: #e0cbbb;
        color: var(--point);
    }

    a.link_sub_item:hover {
        color: #af8a6d;
        color: var(--text);
    }

    .sub_category_list {
        padding-left: 10px;
        border-left: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        margin-left: 10px;
    }

    .search {
        white-space: nowrap;
        margin: 30px 0;
        display: flex;
        justify-content: space-between;
    }

    .search input {
        border: 0;
        background-color: transparent;
    }

    .search .sinput {
        border-bottom: 1px solid;
        border-color: #fbeee6;
        border-color: var(--scroll);
        margin-right: 5px;
        max-width: 70%;
    }

    .search .ssubmit {
        font-family: themify;
        font-size: .8em;
        float: right;
    }

    .sbox .icon > li {
        display: inline-block;
        margin-right: 5px;
    }
}
