@charset "utf-8";

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

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

@font-face {
    font-family: Calibri', 'Noto Sans KR', sans-serif;
    src: url('//fonts.googleapis.com/css?family=Noto+Sans+KR|Meddon.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* 전체 폰트 */
html,
body,
th,
td,
input,
select,
textarea,
button,
body blockquote,
body blockquote p,
body figure figcaption,
code {
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    font-size: 12px;
    color: #444;
    color: var(--text);
}

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

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

a:hover {
    color: #CD717E;
    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(--bg);
    background-color: #444;
    background-color: var(--text);
}

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

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

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

.ti {
    font-size: .7em;
}

/* 전체 박스 */
#container {
    display: flex;
    min-height: 100vh;
    flex-direction: row;
}

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

html.open #header {
    left: 0;
}

html.open #content,
html.open #bar {
    left: 230px;
}

html.open .page_cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 8;
    display: none;
}

/* 헤더 */
#header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: -230px;
		width: 230px;
    height: 100vh;
    line-height: 2.8;
    z-index: 9;
    transition: left .5s;
}

#nav {
    background-color: #444;
    background-color: var(--text);
    color: #fff;
    color: var(--bg);
    width: 100%;
    flex: 0 0 230px;
}

#nav a {
    color: #fff;
    color: var(--bg);
}

#nav a:hover,
.search button:hover {
    color: #CD717E !important;
    color: var(--point) !important;
}

#nav .scroll {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 40px 0;
}

#nav .scroll .nav-top > div,
#nav .blogmenu {
    margin-bottom: 20px;
}

#nav .scroll div > div,
.blogmenu a,
.link_item,
.link_sub_item,
.cate a {
    padding: 0 20px;
}

#nav .logo {
    text-align: center;
}

#nav .logo a {
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
}

#nav .title {
    text-align: center;
    margin: 40px 0 !important;
    line-height: 1.2;
}

#nav .title a {
    font-family: 'HSBombaram';
    font-size: 2em;
    text-align: center;
}

#nav .title a {}

#nav .title img {
    max-width: 70%;
}

#nav .intro {
    text-align: center;
}

/* 카테고리 */
.catebox {
    padding: 0 !important;
}

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

.mc:before {
    content: '\f107';
    font-family: 'fontAwesome';
    float: right;
    margin-right: 20px;
}

.catebox .cate {}

.category_list > li {}

.link_item {}

.sub_category_list {
    font-style: italic;
    padding-bottom: 10px;
}

.link_sub_item {
    padding-left: 40px;
}

.link_tit,
.sub_category_list {
    display: none;
}

/* 검색 */
.search .in {
    border-radius: 20px;
    background-color: #fff;
    background-color: var(--bg);
    padding: 5px 10px !important;
    display: flex;
    justify-content: space-between;
}

.search input {}

.search button {
    transition: .5s;
}

/* sns */
#nav .sns {}

#nav .sns a {
    margin-right: 15px;
}

#bar .sns {
    min-height: 99px;
}

/* 바 */
#bar {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    text-align: center;
    border-right: 1px solid;
    border-color: #f6f6f6;
    border-color: var(--line);
    background-color: #fff;
    background-color: var(--bg);
    line-height: 2.8;
    z-index: 9;
    transition: left .5s;
}

#bar .fa-bars,
#bar .fa-bell {
    width: 100%;
    line-height: 33px;
}

#bar a {
    display: block;
    width: 100%;
}

#bar i {
    transition: .5s;
}

#bar i:hover {
    cursor: pointer;
    color: #CD717E;
    color: var(--point);
}

#bar .title {}

#bar .title a {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    line-height: 1;
    font-family: 'HSBombaram';
    font-size: 1.5em;
}

/* 트위터 위젯 */
#twt {
    background-color: #fff;
    background-color: var(--bg);
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    border-left: 1px solid;
    border-color: #f6f6f6;
    border-color: var(--line);
}

#twt.open {
    display: block;
}

/* 메인 영역 */
#content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    left: 0;
    transition: left .5s;
    padding-bottom: 45px;
}

#content #con {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

#tt-body-page .myoskin {
    padding: 3vh;
    height: auto;
}

#tt-body-category .empty {
    margin: 45px auto;
}

#content #main {
    flex-grow: 1;
    width: 100%;
}

/* 커버 */
#cover {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#cover > section {
    position: relative;
    margin: 0 auto 6vh;
    width: 100%;
}

#cover > section:last-child {
    margin-bottom: 0;
}

#cover .c-title {
    border-left: 3px solid;
    line-height: 1;
    padding-left: 10px;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 20px;
}

#cover .c-title:empty {
    display: none;
}

#cover section .item img {
    width: none;
}

#cover + .myoskin {
    display: none;
}

/* 슬라이드 공통 */
section:hover .slick-prev,
section:hover .slick-next {
    opacity: 1;
}

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

.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:before {
    content: "\e64a";
}

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

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

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

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

.slick-dots li {
    display: inline-block;
    vertical-align: top;
    height: 8px;
}

.slick-dots li button {
    text-indent: -9999px;
    height: 8px;
    width: 8px;
    line-height: 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 5px;
    background-color: #444;
    background-color: var(--text);
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.5;
    padding: 0;
}

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

/* 슬라이드1 */
#cover #c-slider {
    position: relative;
    height: 39vh;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

#cover #c-slider .slick-prev {
    left: 1.5vw;
}

#cover #c-slider .slick-next {
    right: 1.5vw;
}

#cover #c-slider .slick-prev,
#cover #c-slider .slick-next {
    color: #fff;
    color: var(--bg);
}

#cover #c-slider .slick-dots {
    left: 0;
    position: absolute;
    right: 0;
    bottom: 10px;
    margin: auto;
    text-align: center;
    opacity: 0.5;
    transition: opacity .5s;
}

#cover #c-slider:hover .slick-dots {
    opacity: 1;
}

#cover #c-slider .slick-dots li button {
    background-color: #fff;
    background-color: var(--bg);
    border: 0;
    height: 2px;
    width: 20px;
    border-radius: 0;
}

#cover #c-slider .slick-dots li.slick-active button,
#cover #c-slider .slick-dots li button:hover {
    border-radius: 0;
    background-color: #CD717E !important;
    background-color: var(--point) !important;
    border-color: #CD717E !important;
    border-color: var(--point) !important;
    cursor: pointer;
}

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

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

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

#cover #c-slider .info:after {
    content: '';
    background-color: #444;
    background-color: var(--text);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .5;
    z-index: -1;
}

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

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

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

/* 커버 - 슬라이더2 */
#c-slider2 .slick-slide {
    margin: 0 2.5px;
}

#c-slider2 .slick-list {
    margin: 0 -2.5px;
}

#c-slider2 #myo_gal {}

#c-slider2 #myo_gal .item {
    vertical-align: top;
}

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

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

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

#c-slider2 .slick-slide {
    float: left;
}

/* 커버 공지 */
#c-notice img {
    max-width: 100%;
    display: inline-block;
}

#c-notice.cover-left .width,
#c-notice.cover-left + section .width {
    width: 100% !important;
}

#c-notice.cover-left {
    padding-right: 2.5px;
    margin-right: 0;
}

#c-notice.cover-left + section {
    padding-left: 2.5px;
    margin-left: 0;
}

#c-notice.cover-left + section #myo_gal .item {
    width: calc((100% - 5px) / 2);
}

#c-notice.cover-left + section #myo_gal .item:nth-child(2n) {
    margin-right: 0;
}

#c-notice.cover-left .width {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#c-notice.cover-left .width > ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

#c-notice .thum {
    margin-bottom: 5px;
    display: block;
}

#c-notice .thum + .text {
    padding: 0 5px;
}

/* 커버 목록 */
#c-bbs .info ul:first-child {
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

#c-bbs #myo_bbs .item .info > ul:nth-child(2) {
    padding: 0;
    overflow: inherit;
}

/* 커버 갤러리형2 */
#c-gal2 #myo_gal .item .info {
    position: static;
    background-color: transparent;
    color: inherit;
    opacity: 1;
    padding: 5px 0 0;
    text-align: center;
}

#c-gal2 #myo_gal .item .title {
    font-size: 1.1em;
}

#c-gal2 #myo_gal .item .date,
#c-gal2 #myo_gal .item .cnt,
#c-gal2 #myo_gal .item .info > ul:last-child li:last-child {
    display: none;
}

/* 커버 웹진형 */
#c-web .thumbox {
    border-radius: 100%;
    overflow: hidden;
}

/* 커버 트위터 위젯 */
#cover #c-twt .width {
    height: 30vh;
    display: flex;
    flex-direction: column;
}

#cover #c-twt ul {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
}

/* 커버 인스타그램 */
#c-ins .slick-slide {
    margin: 0 2.5px;
}

#c-ins .slick-list {
    margin: 0 -2.5px;
}

#c-ins #myo_gal .item .thumbnail {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

#c-ins #myo_gal .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%);
}

#c-ins #myo_gal .item .centered img {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: .4s;
}

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

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

#c-ins #myo_gal .item:hover .centered img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

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

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

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

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

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

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

.myoskin .item:hover img {
    transform: scale(1.1);
}

.myoskin .item .title > .ti-lock {
		margin-left: 5px;
		vertical-align: middle;
}

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

.myoskin .info > ul:last-child .date,
.myoskin .bbs,
.post-header.em {
    display: none;
}

.post-header {
    font-family: 'HSBombaram';
    margin-bottom: 6vh;
}

.sizer {
    width: 5px;
}

/* 갤러리형 */

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

#myo_gal .item {
    margin-bottom: 5px;
    overflow: hidden;
    position: relative;
    vertical-align: top;
}

#myo_gal .item .info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    color: var(--bg);
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

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

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

#myo_gal .item .title,
#myo_web .item .title {
    font-family: 'HSBombaram';
    font-size: 1.5em;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 42px;
}

#myo_gal .item .info > ul:last-child {
    display: flex;
    justify-content: space-between;
    align-content: flex-end;
}

#myo_gal .item .info > ul:last-child .c i,
#myo_web .item .info > ul:last-child .c i {
    margin-right: 10px;
}

#myo_gal .item .info > ul:last-child .ti-arrow-circle-right {
    font-size: 1.5em;
}

#myo_gal .item .info > ul:last-child .date,
#myo_gal .item .cate,
#myo_gal .item .text {
    display: none;
}

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

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

/* 갤러리형 5열 */
#myo_gal.n5 .item {
    width: calc((100% - 20px) / 5);
}

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

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

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

/* 목록형 */
#myo_bbs .em,
#myo_web .em {
    display: block;
}

#myo_bbs .item,
#myo_web .item {
    margin-bottom: 3vh;
    width: 100%;
}

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

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

#myo_bbs .item .info {
    display: flex;
    align-items: center;
    line-height: 1;
}

#myo_bbs .item .day {
    font-weight: bold;
    font-size: 1.5em;
}

#myo_bbs .item .bbs {
    display: block;
    text-align: center;
}

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

#myo_bbs .item .info > ul:nth-child(2) {
    flex-grow: 1;
    padding: 0 40px;
    overflow: hidden;
}

#myo_bbs .item .info .c {
    display: flex;
    align-items: center;
}

#myo_bbs .item .info .c i {
    order: 1;
    margin-left: 10px;
}

#myo_bbs .item .info > ul:last-child > li:last-child,
#myo_bbs .item .cate,
#myo_bbs .item .date,
#myo_bbs .item .text {
    display: none;
}

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

#myo_web .item .thumbox {
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    #myo_web .item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #myo_web .item .thumbox {
        flex: 0 0 120px;
        border-radius: 100%;
    }

    #myo_web .item .thumbox img {
        height: 120px;
    }

    #myo_web .item .thumbox > div {
        position: relative;
        overflow: hidden;
    }

    #myo_web .item:not(.you) .thumbox .thumbnail {
        padding-top: 100%;
    }

    #myo_web .item:not(.you) .thumbox .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:not(.you) .thumbox .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%);
        transition: .4s;
    }

    #myo_web .item:hover .thumbox .thumbnail .centered img {
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        transform: translate(-50%, -50%) scale(1.1);
    }

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

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

    #myo_web .item .info {
        flex-grow: 1;
        padding: 5px 0 5px 25px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
}

#myo_web .item .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
    display: block;
}

#myo_web .item .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 40px;
    word-break: keep-all;
    color: #444;
    color: var(--text);
}

#myo_web .item .info > ul:last-child {
    display: flex;
    width: 100%;
    margin-top: 5px;
}

#myo_web .item .info > ul:last-child li {
    margin-right: 20px;
    color: #444;
    color: var(--text);
    display: inline-block;
}

#myo_web .item .framebox {
    padding-bottom: 100%;
}

#myo_web .item .info > ul > li:last-child,
#myo_web .item .info > ul:nth-child(2) .date,
#myo_web .item .cate {
    display: none;
}

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

.pass form {
    max-width: 200px;
    width: 100%;
    margin: auto;
}

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

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

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

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

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

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

/* ---------------
    본문 영역
--------------- */
body:not(#tt-body-page) #article .post {
    padding: 50px 0;
    border-bottom: 1px solid;
}

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

body:not(#tt-body-page) .myoskin:not(#myo_gal) + #article .post:first-child {
    border-top: 1px solid;
    margin-top: 50px;
}

body:not(#tt-body-page) .myoskin + #article .post:first-child {
    padding-top: 50px;
}

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

/* 본문 영역 */
.article:after {
    content: '';
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0.5;
    filter: blur(30px);
}

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

.titlebox .cate {
    border-bottom: 1px solid;
    display: inline-block;
}

.titlebox .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'HSBombaram';
    font-size: 1.5em;
    margin: 10px 0;
}

.titlebox .date {}

.titlebox .admin {
    float: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 링크 */
.text-item p a:before,
.text-item span a:before,
.text-item .tx-link:before,
.text-item blockquote a:before,
.lst .text a:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
    font-size: .8em;
    width: 17px;
    height: 17px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #444;
    background-color: var(--text);
    color: #fff;
    color: var(--bg);
}

.text-item p a:hover:before,
.text-item span a:hover:before,
.text-item .tx-link:hover:before,
.text-item blockquote a:hover:before,
.lst .text a:hover:before {
    color: inherit;
}

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

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

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

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

figure[data-ke-type='opengraph'] div.og-image {
    width: 100px;
    border-color: #444;
    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: #444;
    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: #CD717E;
    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: #444;
    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: #444;
    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: #444;
    color: var(--text);
    margin-bottom: 0 !important;
    font-size: inherit;
    bottom: 10px;
    font-family: inherit;
    position: static;
}

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

figure figcaption:empty,
figure[data-ke-type='video'] figcaption:empty {
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 이미지 슬라이드 */
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: #444;
    border-color: var(--text);
    z-index: 1;
}

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

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

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

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

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

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

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

/* ---------------
    공감 버튼
--------------- */

body .container_postbtn {
    line-height: normal;
    padding: 0;
    margin-top: 3vh;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    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: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

body .container_postbtn .btn_post .txt_like {
    font-size: 11px !important;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif !important;
    vertical-align: middle;
    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: #CD717E !important;
    color: var(--point) !important;
}

body .container_postbtn .btn_post .ico_postbtn:after {
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #444;
    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;
}

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

.tags a {
    margin-right: 10px;
}

.tags,
.opencmt {
    margin-top: 25px;
    line-height: 3;
}

.tags + .opencmt {
    margin-top: 0;
}

.tags .title,
.opencmt .title {
    color: #444;
    color: var(--text);
    font-weight: bold;
    width: 80px;
    display: inline-block;
}

/* 댓글 오픈 */
.opencmt {}

body.cmtopen .opencmt {
    display: none;
}

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

.write > p {
    margin-bottom: 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;
}

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

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

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

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

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

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

.write .secret input {
    display: none;
}

.write input + label {}

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

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

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

.lst {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    border-top: 1px solid;
}

.lst > ul {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid;
}

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

.lst li {
    position: relative;
}

.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 .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 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: 30px;
    padding-left: 30px;
}

/* 프로필 사진 */
.lst img[alt=BlogIcon],
.lst .pro {
    display: none;
}

.profile .lst .pro {
    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 .reply {
    margin-left: 50px;
}

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

.morebox {
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    padding: 45px 0 0 0 !important;
}

.morebox > .title {
    font-size: 1.2em;
    letter-spacing: 5px;
    text-indent: 5px;
    text-align: center;
    margin-bottom: 45px;
    cursor: default;
    position: relative;
}

.morebox > .title:before {
    content: '';
    height: 1px;
    width: 30px;
    background-color: #444;
    background-color: var(--text);
    display: block;
    margin: 0 auto 15px;
}

.morebox a {
    display: block;
}

.morebox img {
    width: 100%;
}

/* 카테고리 글 더보기 갤러리형 */
#article #myo_gal ul {
    display: flex;
}

#article #myo_gal .item {
    width: calc((100% - 15px) / 4);
    margin-right: 5px;
    margin-bottom: 0;
}

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

#article #myo_gal .item .title {
    font-family: 'HSBombaram';
    font-size: 1.5em;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 42px;
    margin-bottom: 10px;
    word-break: keep-all;
}

/* 카테고리 글 더보기 목록형 */
#article #myo_bbs .item .info {
    justify-content: space-between;
}

#article #myo_bbs .item .date {
    display: block;
    font-size: .8em;
}

/* 공지 */
#tt-body-index #noti {
    max-width: 600px;
}

.notibox .tt_adsense_top,
.notibox .kakao_ad_area,
.notibox .tt_adsense_bottom,
.notibox .container_postbtn {
    display: none !important;
}

.notibox .text-item p,
.notibox .tt_article_useless_p_margin {
    margin: 0;
}

.entryNotice {
    position: relative;
    animation: notice 0.5s 0s ease both 1;
}

.notibox {
    max-width: 75%;
    min-width: 6.5%;
    padding: 10px;
    margin: 20px 0;
    background-color: #444;
    background-color: var(--text);
    color: #fff;
    color: var(--bg);
    position: relative;
    border-radius: 20px;
    transition-property: background, color;
    transition-duration: .5s;
    float: left;
    clear: both;
    -webkit-animation: pop 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) forwards;
    animation: pop 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) forwards;
}

.entryNotice:nth-child(odd) .notibox {
    float: right;
    clear: both;
}

.notibox a {
    color: #fff;
    color: var(--bg);
}

.notibox:before {
    border-color: #444;
    border-color: var(--text);
    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;
}

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

.entryNotice:nth-child(odd) .notibox .logo {
    left: auto;
    right: -60px;
    border-radius: 0 25px 25px 25px;
}

@-webkit-keyframes pop {
    from {
        opacity: 0;
        -webkit-transform: scale(0.66);
        transform: scale(0.66);
    }

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

@keyframes pop {
    from {
        opacity: 0;
        -webkit-transform: scale(0.66);
        transform: scale(0.66);
    }

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

/* ---------------
    태그 클라우드
--------------- */

#tagcloud ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

#tagcloud li {
    margin: 0 10px 5px 0;
    white-space: nowrap;
}

#tagcloud li .cloud1 {}

#tagcloud li .cloud2 {
    opacity: .8;
}

#tagcloud li .cloud3 {
    opacity: .6;
}

#tagcloud li .cloud4 {
    opacity: .4;
}

#tagcloud li .cloud5 {
    opacity: .2;
}

/* 페이지네이션 */
.pagination {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    line-height: 1;
}

.pagination i {
    vertical-align: middle;
}

.pagination a {
    margin: 0 7px;
    vertical-align: middle;
}

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

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

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

/* 부드러운 화면 전환 */
.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;
    }
}

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

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

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

/* 카피라이트 삭제 금지 */
.copy {
    font-family: 'Meddon', cursive;
    font-size: 6px;
}

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

    #content {
        padding-left: 71px;
    }

    #content #main #myo_bbs,
    #content #main #myo_web,
    #tt-body-guestbook #content {
        padding-top: 45px;
    }

    #content #main #myo_bbs,
    #content #main #myo_web,
    #tt-body-guestbook #content,
    #cover > section,
    #article {
        margin-left: auto;
        margin-right: auto;
    }

    #tt-body-page #content,
    #tt-body-tag #tagcloud {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    #tt-body-category #content #con,
    #tt-body-search #content #con {
        width: inherit;
        padding-top: 0;
    }

    #bar > div {
        padding: 40px 0;
    }

    #bar > div:first-child {
        max-width: 70px;
        width: 70px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #bar .title {
        transform: rotate(90deg);
    }
}

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

    body {
        background-image: none;
    }

    #content #main #myo_bbs,
    #content #main #myo_web,
    #tt-body-guestbook #content,
    #tt-body-tag #tagcloud,
    #cover > section:not(#c-slider),
    #article {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #nav {
        overflow: hidden;
    }

    #nav .scroll {
        width: calc(100% + 5px);
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    #content {
        margin: 0;
        display: block;
        padding: 54px 0;
    }

    #bar {
        max-width: 100%;
        width: 100%;
        padding: 10px 15px;
        border-right: 0;
        border-bottom: 1px solid;
        border-color: #f6f6f6;
        border-color: var(--line);
        height: auto;
    }

    #bar > div:first-child {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    #bar div > li:first-child {
        position: absolute;
        top: 0;
        left: 15px;
        line-height: 54px;
    }

    #bar .sns,
    #bar div > li:not(:first-child),
    #bar div > li.snsbox {
        display: none;
    }
	
    #content #myo_gal,
    #content #myo_port {
        padding: 0;
    }

    #content .myoskin,
    #tt-body-guestbook .cmt {
        width: 100%;
        overflow: hidden;
    }

    #tt-body-page #content {
        padding-top: 65px;
    }

    #tt-body-page #content .myoskin {
        padding: 15px;
    }

    .post-header {
        margin-top: 15px;
        margin-bottom: 3vh;
    }

    #myo_gal .item {
        width: calc((100% - 5px) /2) !important;
    }

    #myo_web .item .info {
        padding-top: 15px;
    }

    #myo_gal .item .title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }

    .article:after {
        display: none;
    }

    body:not(#tt-body-page) #article .post:first-child,
    #tt-body-guestbook {
        padding-top: 15px;
    }

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

    #cover > section {
        padding: 0 15px;
        overflow: hidden;
    }

    #c-slider {
        padding: 0 !important;
    }

    #c-slider .text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 51px;
    }

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

    #c-web .thumbox {
        border-radius: 0;
    }
	
		#cover + #con {
			display: none;		
		}
    }
/* - - - BGM 플레이어 관련 - - - */
.mm-bgm{
  position: fixed;
  bottom: 15px; /* 우측상단 원하면 bottom을 top 으로 변경 */
  right: 15px;
  z-index: 9999; /* 맨위로 */
  border: none;
}
/* - - - BGM 플레이어 끝 - - -*/
