@charset "utf-8";
/* reset css */
@import url(./images/reset.css);


/* 웹폰트 */
@import url('//fonts.googleapis.com/css?family=Racing+Sans+One|Kosugi+Maru|Meddon');
@import url(//fonts.googleapis.com/earlyaccess/jejugothic.css);

/* 기본 설정 */
body {
    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;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* 전체 폰트 */
html,
body,
th,
td,
input,
select,
textarea,
button,
body blockquote,
body blockquote p,
body figure figcaption,
code {
    font-family: 'Jeju Gothic', 'Kosugi Maru', sans-serif;
    line-height: 1.7;
    font-size: 11px;
    color: #bbb;
    color: var(--text);
}

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

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

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

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

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

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

a:hover {
    color: #f6c4c4;
    color: var(--pink);
}

/* 마우스 드래그 블럭 */
::selection {
    color: #fff;
    color: var(--pinktext);
    background-color: #f6c4c4;
    background-color: var(--pink);
}

::-moz-selection {
    color: #fff;
    color: var(--pinktext);
    background-color: #f6c4c4;
    background-color: var(--pink);
}


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

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

/* 전체 박스 */
#container {
    width: 100%;
    max-height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

/* 헤더 */
#header {
    border-radius: 20px 20px 0 0;
    border: 3px solid #eee;
    border: 3px solid var(--line);
    padding: 7px;
    display: flex;
    align-items: center;
    font-family: 'Racing Sans One', 'Jeju Gothic', 'Kosugi Maru', cursive;
    flex: 0 0 38px;
}

#header .title {
    flex-grow: 1;
    margin-left: 10px;
}

#header .dotbox {
    display: flex;
}

#header .dotbox .dot {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    margin: 0 5px;
    cursor: pointer;
    background-color: #add3f7;
    background-color: var(--blue);
}

#header .dotbox > div:nth-child(1) .dot {
    -webkit-animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.3s both;
    animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.3s both;
}

#header .dotbox > div:nth-child(2) .dot {
    background-color: #f6c4c4;
    background-color: var(--pink);
    -webkit-animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.5s both;
    animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.5s both;
}

#header .dotbox > .dot {
    -webkit-animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.7s both;
    animation: grow 0.3s cubic-bezier(0.36, -0.04, 0.15, 1.64) 0.7s both;
}

@-webkit-keyframes grow {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

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

@keyframes grow {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

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

/* 툴팁 */
[tooltip] {
    position: relative;
}

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    font-size: .9rem;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    z-index: 1001;
}

[tooltip]::after {
    content: attr(tooltip);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 7px;
    border-radius: 7px;
    z-index: 1000;
    color: #fff;
    color: var(--bluetext);
    background-color: #f6c4c4;
    background-color: var(--pink);
}

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: calc(100% + 2px);
    border-bottom-width: 0;
    border-top-color: #f6c4c4;
    border-top-color: var(--pink);
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 7px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -10px);
}

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

.menudot[tooltip]::after {
    background-color: #add3f7;
    background-color: var(--blue);
}

.menudot[tooltip]:not([flow])::before,
.menudot[tooltip][flow^="up"]::before {
    border-top-color: var(--blue);
}

/* 말풍선 메뉴 */
#header .dotbox > div {
    position: relative;
}

#header .dotbox .sub {
    position: absolute;
    padding-top: 3px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: none;
    z-index: 9;
}

#header .dotbox .sub > ul {
    margin-top: 10px;
    padding: 5px 0;
    border: 2px solid var(--line);
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    background-color: #f6c4c4;
    background-color: var(--pink);
}

#header .dotbox .sub > ul:after,
#header .dotbox .sub > ul:before {
    content: '';
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
    left: 50%;
    transform: translateX(-50%);
}

#header .dotbox .sub > ul:after {
    border-width: 0 7px 7px;
    border-color: #f6c4c4 transparent;
    border-color: var(--pink) transparent;
    display: block;
    width: 0;
    z-index: 1;
    top: -6px;
}

#header .dotbox .sub > ul:before {
    border-width: 0 9px 9px;
    z-index: 0;
    top: -9px;
    border-color: #eee transparent;
    border-color: var(--line) transparent;
}

/* 말풍선 메뉴, 카테고리 */
.catebox .category_list > li,
.catebox .catemenu li,
.blogmenu li {
    padding: 0 5px;
}

.catebox .category_list > li,
.catebox .cate,
.catebox .sns,
.catebox .catemenu li,
.blogmenu li {
    transition: background-color .5s;
}

.catebox .category_list > li:hover,
.catebox .cate:hover,
.catebox .sns:hover,
.catebox .catemenu li:hover,
.blogmenu li:hover {
    background-color: #add3f7;
    background-color: var(--blue);
}

.catebox .link_item:after {
    content: '\f0d7';
    font-family: fontAwesome;
    font-size: .8rem;
    margin-left: 3px;
}

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

.catebox .cate a,
.catebox .link_item,
.catebox .link_sub_item,
.catebox .catemenu a,
.blogmenu a {
    display: block;
    color: #fff;
    color: var(--bluetext);
}

.catebox .cate:hover a,
.catebox .catemenu a:hover,
.catebox .sns a:hover,
.blogmenu a:hover {
    color: #f6c4c4;
    color: var(--pink);
}

.catebox .sub_category_list {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.catebox .sub_category_list.open,
.catebox .category_list > li:hover .sub_category_list.open {
    max-height: 500px;
    transition: 1.5s;
}

.catebox .link_tit {
    display: none;
}

/* sns */
.catebox .catebox .sns {
    cursor: default;
}

.catebox .sns a {
    padding: 4px 4px 0;
    display: inline-block;
    color: #fff;
    color: var(--bluetext);
}

.catebox .sns a:first-child {
    padding-left: 8px;
}

.catebox .sns a:last-child {
    padding-right: 8px;
}

.blogmenu i {
    font-size: .8rem;
}

/* 메인 영역 */
#content {
    border-left: 3px solid #eee;
    border-left: 3px solid var(--line);
    border-right: 3px solid #eee;
    border-right: 3px solid var(--line);
    flex: 0 0 calc(100% - 38px - 62px);
    padding: 7px;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

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

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

/* 목록 공통 */
.myoskin ol {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.myoskin .item {
    width: 100%;
}

.myoskin .item a {
    display: flex;
    align-items: center;
    padding-right: 15%;
}

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

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

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

/* 말풍선 공통 */
.bb:not(:last-child) {
    position: relative;
    margin-bottom: 8px;
}

.bb .cnt {
    padding-left: 5px;
    font-size: .8em;
    color: #f6c4c4;
    color: var(--pink);
}

.bb .cnt:empty {
    display: none;
}

.bl {
    padding-right: 10px;
    flex: 0 0 60px;
    width: 60px;
}

.bl img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.br {
    flex-grow: 1;
    flex: 0 0 calc(100% - 60px);
}

.bt {
    border: 1px solid transparent;
    background-color: #add3f7;
    background-color: var(--blue);
    color: #fff;
    color: var(--bluetext);
    border-radius: 0 15px 15px 15px;
    padding: 7px;
    line-height: 1.3;
    display: inline-block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    transition: .5s;
    -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;
}

.bb:hover .bt {
    border: 1px solid #add3f7;
    border: 1px solid var(--blue);
    color: #add3f7;
    color: var(--blue);
    background-color: transparent;
}

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

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

.bb:nth-child(even) {
    text-align: right;
    justify-content: flex-end;
    float: right;
}

.bb:nth-child(even) a {
    flex-direction: row-reverse;
    margin-right: 0;
    padding: 0 0 0 15%;
}

.bb:nth-child(even) .bl {
    padding: 0 0 0 10px;
}

.bb:nth-child(even) .br {
    text-align: right;
}

.bb:nth-child(even) .title-cnt {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}

.bb:nth-child(even) .cnt {
    padding: 0 5px 0 0;
    color: #add3f7;
    color: var(--blue);
}

.bb:nth-child(even) .bt {
    border-radius: 15px 0 15px 15px;
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
    text-align: right;
}

.bb:nth-child(even):hover .bt {
    border: 1px solid #f6c4c4;
    border: 1px solid var(--pink);
    color: #f6c4c4;
    color: var(--pink);
    background-color: transparent;
}

/* 갤러리형, 목록형, 카테고리 글 더보기 */
#myo_gal .item .text,
#myo_gal .item .date,
#myo_bbs .item .text,
#myo_bbs .item .date,
#myo_bbs .item .thumbox {
    display: none;
}

#myo_bbs .item:nth-child(even) .info {
    padding: 0;
}

/* 웹진형 */
#myo_web .item {
    margin: 0 -10px;
    width: calc(100% + 20px);
    padding: 10px;
    position: relative;
}

#myo_web .item:not(:last-child) {
    border-bottom: 1px solid #f6c4c4;
    border-bottom: 1px solid var(--pink);
}

#myo_web .item:first-child {
    padding-top: 0;
}

#myo_web .item a {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    text-align: left !important;
}

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

#myo_web .item .info {
    text-align: left;
}

#myo_web .item .title-cnt {
    max-width: calc(100% - 100px);
    display: inline-block;
    vertical-align: middle;
}

#myo_web .item .info .title {
    font-weight: bold;
    display: inline-block;
    color: #add3f7;
    color: var(--blue);
    border: 0;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    line-height: inherit;
    -webkt-animation: none;
    animation: none;
    text-align: left !important;
}

#myo_web .item .info .date {
    font-size: .8rem;
    color: #add3f7;
    color: var(--blue);
    display: inline-block;
    float: right;
    vertical-align: middle;
}

#myo_web .item .info .text {
    font-size: .8rem;
    text-align: left;
}

/* 갤러리형 masonry */
.sizer {
    width: 0;
}

/* 보호글 */
.pass {
    width: 100%;
}

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

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

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

.pass button {
    width: 100%;
    border: 0;
    letter-spacing: 3px;
    padding: 10px;
    font-family: 'Racing Sans One', cursive;
}

.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;
    font-family: 'Racing Sans One', cursive;
}

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

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

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

body:not(#tt-body-page) .myoskin + #article .post:first-child {
    border-top: 1px solid;
    border-color: #eee;
    border-color: var(--line);
    margin-top: 30px;
    padding-top: 30px;
}

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

/* 본문 타이틀 영역 */
.titlebox {
    margin: 10px 0 17px;
    max-width: none;
    display: flex;
    align-items: flex-start;
}

.titlebox .thumbox > div {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 7px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.titlebox .in {
    max-width: calc(100% - 57px);
}

.titlebox .title {
    margin-bottom: 3px;
}

.titlebox .date {
    font-size: .8rem;
}

.titlebox .admin a {
    margin-left: 5px;
    font-size: .8rem;
}

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

.text-item u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, #f6c4c4 0%, #f6c4c4 100%);
    background-image: linear-gradient(to right, var(--pink) 0%, var(--pink) 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(--pinktext);
    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: #f6c4c4 !important;
    border-color: var(--pink) !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: #bbb;
    border-color: var(--text);
    border-spacing: 0;
}

.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;
    background-color: #f6c4c4;
    background-color: var(--pink);
    width: 17px;
    height: 17px;
    text-align: center;
    color: #fff;
    color: var(--pinktext);
    transition: .4s;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.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 {
    background-color: #add3f7;
    background-color: var(--blue);
    color: #fff;
    color: var(--bluetext);
}

.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: #f6c4c4;
    border-color: var(--pink);
}

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

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: #f6c4c4;
    color: var(--pink);
    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: #bbb;
    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: #bbb;
    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: #bbb;
    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: #f6c4c4;
    color: var(--point);
}

.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;
    color: inherit;
    line-height: 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,
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;
    padding: 20px 0 0 7%;
    font-style: italic;
}

/* 인용구2 */
blockquote[data-ke-style='box'],
#tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='style3'],
#tt-body-page blockquote[data-ke-style='style3'] {
    padding: 10px;
    border: 0;
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
    border-radius: 15px;
}

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

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

/* 더보기 */
.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;
    transition: .4s;
    margin: 0;
    width: auto;
    height: inherit;
    cursor: pointer;
    background-color: #add3f7;
    background-color: var(--blue);
    color: #fff;
    color: var(--bluetext);
    border-radius: 0 15px 15px;
    padding: 7px;
    line-height: 1.3;
    display: inline-block;
    vertical-align: middle;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -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;
}

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

.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: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-radius: 0 15px 15px 16px;
    background-color: #add3f7;
    background-color: var(--blue);
    color: #fff;
    color: var(--bluetext);
    padding: 10px;
    margin: 5px 0 10px;
}

.text-item .moreless_content .more-txt a,
.text-item .moreless-content a,
div[data-ke-type='moreLess'] .moreless-content a,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content a {
    color: #fff;
    color: var(--bluetext);
}

.btn_more:before,
.btn_less span:before,
.moreless_fold span:before,
.moreless_top span:before,
.moreless_bottom span:before,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:before {
    content: "\f107";
    font-family: 'fontAwesome';
    margin-right: 5px;
}

.btn_less:last-child span:before,
.moreless_bottom span:before {
    content: "\f106";
}

.btn_more,
.btn_less {
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
}

.text-item .btn_less:first-child,
.text-item .moreless_bottom span,
#tt-body-page div[data-ke-type='moreLess'].open .btn-toggle-moreless,
div[data-ke-type='moreLess'].open .btn-toggle-moreless {
    border-radius: 15px 15px 15px 0;
}

.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 {
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
}

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

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

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

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    color: #f6c4c4;
    color: var(--pink);
    transition: .4s;
    font-size: inherit;
}

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

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

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

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

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

body .container_postbtn {
    line-height: normal;
    padding: 0;
    margin-top: 25px;
    white-space: nowrap;
    text-align: left;
}

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

body .bb:nth-child(even) .container_postbtn .postbtn_like,
body .bb:nth-child(even) .container_postbtn .btn_menu_toolbar {
    background-color: #add3f7;
    background-color: var(--blue);
}

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

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;
    color: var(--pinktext) !important;
}

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

body .container_postbtn .btn_post:hover .txt_like,
body .container_postbtn .btn_post:hover .ico_postbtn:after,
body .container_postbtn .btn_menu_toolbar:hover .txt_state {
    color: #f6c4c4 !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: #fff;
    color: var(--pinktext);
    transition: .4s;
}

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

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

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

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

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

body .container_postbtn .link_ccl {
    padding: 0;
}

/* 본문 하단 태그 */
.tags {
    color: transparent;
    margin: 17px 0;
}

.tags a {
    display: inline-block;
    border-radius: 15px;
    margin-right: 5px;
    line-height: 1;
    margin-bottom: 3px;
    color: #f6c4c4;
    color: var(--pink);
}

.tags a:hover {
    color: #add3f7;
    color: var(--blue);
}

.tags a:before {
    content: '#';
}

.tabs {
    margin-top: 17px;
}

.tabs .tabbox {
    position: relative;
    width: 100%;
    margin-bottom: 1vh;
    text-align: center;
}

.tabs .tabbox:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f6c4c4;
    background-color: var(--pink);
    z-index: -1;
}

.tabs .tab {
    line-height: 1;
    font-weight: bold;
    border-radius: 15px;
    border: 1px solid;
    color: #add3f7;
    color: var(--blue);
    text-transform: uppercase;
    text-align: center;
    padding: 9px 20px;
    margin: 0 5px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: inline-block;
    transition: color 250ms ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    background-color: #fff;
    background-color: var(--bluetext);
    vertical-align: top;
}

.tabs .tab:hover {
    color: #f6c4c4;
    color: var(--point);
}

.tabs .tab.active {
    border-color: #f6c4c4;
    border-color: var(--pink);
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
}

.tabs2 .tabtext {
    display: none;
}

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

/* 댓글, 방명록 작성 */
.write textarea {
    width: calc(100% - 75px);
    height: 80px;
    min-height: 80px;
    min-width: calc(100% - 75px);
    max-width: calc(100% - 75px);
    background-color: #f6c4c4;
    background-color: var(--pink);
    border-radius: 15px;
    padding: 7px;
    color: #fff;
    color: var(--pinktext);
    vertical-align: top;
}

.write button {
    width: 70px;
    height: 80px;
    border-radius: 15px;
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
    position: relative;
    overflow: hidden;
    float: right;
}

.write input {
    font-family: 'Racing Sans One', 'Jeju Gothic', 'Kosugi Maru', sans-serif;
    margin-top: 5px;
}

.write .secret {
    display: inline-block;
    float: right;
    margin-top: 5px;
}

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

.write input[name="secret"]:after {
    content: "\f13e";
    font-family: 'fontAwesome';
    transition: .4s;
    visibility: visible;
}

.write input[name="secret"]:checked:after {
    content: "\f023";
    color: #add3f7;
    color: var(--blue);
}

/* 댓글, 방명록 목록 */
:not(#tt-body-guestbook) .lst {
    display: flex;
    flex-direction: column;
}

:not(#tt-body-guestbook).order .lst {
    flex-direction: column-reverse;
}

:not(#tt-body-guestbook).order .lst ul:not(:only-child):not(:first-child) {
    border-bottom: 1px solid #f6c4c4;
    border-bottom: 1px solid var(--pink);
}

body:not(.order) .lst ul:not(:only-child):not(:last-child) {
    border-bottom: 1px solid #f6c4c4;
    border-bottom: 1px solid var(--pink);
}

.lst li {
    position: relative;
    clear: both;
    margin: 15px 0;
}

.lst .text {
    border-radius: 0 15px 15px 15px;
    padding: 7px;
    display: inline-block;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -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;
    margin-bottom: 5px;
    background-color: #add3f7;
    background-color: var(--blue);
    color: #fff;
    color: var(--bluetext);
    border: 1px solid transparent;
    transition: .5s;
}

.lst .text:hover {
    background-color: transparent;
    border: 1px solid #add3f7;
    border: 1px solid var(--blue);
    color: #add3f7;
    color: var(--blue);
}

.lst .text:hover a {
    color: #add3f7;
    color: var(--blue);
}

.lst .text a {
    color: #fff;
    color: var(--bluetext);
}

.lst .text a:hover {
    color: #f6c4c4;
    color: var(--pink);
}

.lst .name {
    font-weight: bold;
}

.lst .name img {
    display: none;
}

.lst .date {
    display: none;
}

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

.lst .rp_admin,
.lst .guest_admin {
    text-align: right;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    border-radius: 15px 0 15px 15px;
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
}

.lst .rp_admin .text:hover,
.lst .guest_admin .text:hover,
.lst .rp_admin .text:hover a,
.lst .guest_admin .text:hover a {
    border-color: #f6c4c4;
    border-color: var(--pink);
    color: #f6c4c4;
    color: var(--pink);
    background-color: transparent;
}

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

.lst .rp_admin .text a:hover,
.lst .guest_admin .text a:hover {
    color: #add3f7;
    color: var(--blue);
}

.rp_admin .name:before,
.guest_admin .name:before,
.rp_secret .name:before,
.guest_secret .name:before,
.hiddenComment .name:before {
    content: "\f023";
    font-family: 'fontAwesome';
    margin-right: 3px;
    font-weight: normal;
}

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

.lst .blank {
    clear: both;
}

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

/* 프로필 사진 */
.profile .lst li {
    padding-right: 60px;
}

.profile .lst .name img,
.profile .lst .nopro {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 100%;
    display: inline-block;
}

.profile .cmt li {
    padding-left: 60px;
}

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

.profile .lst .rp_admin img,
.profile .lst .rp_admin .nopro,
.profile .lst .guest_admin img,
.profile .lst .guest_admin .nopro {
    left: auto;
    right: 0;
}

.profile li.rp_admin,
.profile li.guest_admin {
    padding: 0 60px;
    text-align: right;
}

/* 공지 */
.noti {
    max-width: 80%;
    clear: both;
}

.noti:nth-child(even) {
    float: right;
}

.noti .text .imageblock {
    width: auto !important;
}

.noti .text a,
.noti:nth-child(even) .text a:hover {
    color: #fff;
    color: var(--bluetext);
}

.noti:hover .text a {
    color: #add3f7;
    color: var(--blue);
}

.noti .text a:hover,
.noti:nth-child(even):hover .text a {
    color: #f6c4c4;
    color: var(--pink);
}

.noti:nth-child(even) .text a {
    color: #fff;
    color: var(--pinktext);
}

/* 페이지네이션 */
.pagination {
    flex: none;
    margin-top: 7px;
    text-align: center;
    font-size: .8rem;
    font-family: 'Racing Sans One', cursive;
    cursor: default;
}

.pagination a {
    margin: 0 3px;
}

.pagination .selected {
    color: #f6c4c4;
    color: var(--pink);
}

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

.pagination .more-btn {
    margin: 0;
    padding: 7px;
    border: 1px solid;
    color: #f6c4c4;
    color: var(--pink);
    border-radius: 15px;
    display: inline-block;
    line-height: 1;
    transition: background .5s;
}

.pagination .more-btn:hover {
    background-color: #f6c4c4;
    background-color: var(--pink);
    color: #fff;
    color: var(--pinktext);
    border-color: #f6c4c4;
    border-color: var(--pink);
}

/* 푸터 */
#footer {
    border: 3px solid #eee;
    border: 3px solid var(--line);
    border-radius: 0 0 20px 20px;
    padding: 7px 17px;
    display: flex;
    flex: 0 0 62px;
}

/* 검색 */
#footer input {
    flex-grow: 1;
    padding: 10px 10px 10px 0;
    font-family: 'Racing Sans One', 'Jeju Gothic', 'Kosugi Maru', cursive;
}

#footer button,
.pass button {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    margin-bottom: 4px;
    background-color: #f6c4c4;
    background-color: var(--pink);
    box-shadow: 4px 4px #add3f7;
    box-shadow: 4px 4px var(--blue);
    color: #fff;
    color: var(--pinktext);
}

/* 무지개 공통 */
.rainbow {
    width: 150%;
    height: auto;
    top: 100%;
    left: -25%;
    position: absolute;
    opacity: 0.5;
    transition: 1000ms transform cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) rotate(45deg);
}

button:hover .rainbow,
.tab:hover .rainbow {
    transform: translateY(-150%) rotate(45deg);
}

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

/* 부드러운 화면 전환 */

.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: #f6c4c4;
    color: var(--point);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
}

@keyframes animated-cursor {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* ie */
#ie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 1.3em;
    padding: 5px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    z-index: 9999999999999;
    text-align: center;
}

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

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

@media screen and (max-height: 620px) {
    #container {
        height: 95%;
    }

    [tooltip]:hover::before,
    [tooltip]:hover::after {
        display: none;
    }
}

/* 모바일 영역 */
@media screen and (max-width: 768px) {
    body {
        display: block;
        padding: 15px;
        min-height: 100%;
        background-image: none;
        padding: 15px !important;
    }

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

    #container {
        position: static;
        transform: none;
        max-width: 100% !important;
        height: calc(100vh - 30px) !important;
        max-height: calc(100% - 30px);
    }

    [tooltip]:hover::before,
    [tooltip]:hover::after {
        display: none;
    }

    #header .dotbox .sub {
        line-height: 2.3;
    }

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