@charset "utf-8";

/* 웹폰트 */
@import url('https://fonts.googleapis.com/css?family=Shrikhand|Meddon');

@font-face {
    font-family: 'Binggrae-Bold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Binggrae-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TDTDTadakTadak';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/TDTDTadakTadak.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html,
body,
input,
textarea,
button,
code {
    -webkit-text-size-adjust: 100%;
    font-weight: 400;
    font-family: 'TDTDTadakTadak';
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    color: var(--text);
}

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

button,
input[type=submit],
input[type=reset],
input[type=button] {
    overflow: visible;
    cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea {
    -webkit-appearance: none;
}

input,
select,
textarea,
button {
    font-size: 100%;
    border-radius: 0;
    background: transparent;
    border: 0;
    outline: none;
}

ul,
li {
    list-style: none;
}

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

hr {
    display: none;
}

iframe,
embed {
    width: 100%;
    vertical-align: top;
}

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

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

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

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

a:hover,
a:focus {
    color: #FFF29F;
    color: var(--point2);
}

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

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

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

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

/* 마우스 드래그 블럭 */
::selection {
    color: #D8C7F3;
    color: var(--point1);
    background-color: #FFF29F;
    background-color: var(--point2);
}

::-moz-selection {
    color: #D8C7F3;
    color: var(--point1);
    background-color: #FFF29F;
    background-color: var(--point2);
}

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

::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-left: 2px solid;
    border-color: #B799E9;
    border-color: var(--point3);
}

html {
    position: relative;
    overflow-x: hidden;
}

body {
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.border {
    background-color: #D8C7F3;
    background-color: var(--point1);
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 99999999999;
}

.border.border-top,
.border.border-bottom {
    min-height: 10px;
}

.border.border-top {
    top: 0;
}

.border.border-bottom {
    bottom: 0;
}

.border.border-left,
.border.border-right {
    width: 10px;
    height: 100vh;
}

.border.border-right {
    right: 0;
    left: auto;
}

/* 밑줄 */
u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to right, rgba(255, 242, 159, 0.3) 0%, rgba(255, 242, 159, 0.4) 60%, rgba(255, 242, 159, 0.4) 60%, rgba(255, 242, 159, 0.6) 85%, rgba(255, 242, 159, 0.8) 100%);
    background-image: linear-gradient(to right, rgba(var(--point2-rgb), 0.3) 0%, rgba(var(--point2-rgb), 0.4) 60%, rgba(var(--point2-rgb), 0.4) 60%, rgba(var(--point2-rgb), 0.6) 85%, rgba(var(--point2-rgb), 0.8) 100%);
    border-radius: 100px 100px/100px 200px;
    background-repeat: no-repeat;
    transition: .4s ease-out;
    padding: 2px 5px;
}

u:hover {
    color: #B799E9;
    color: var(--point3);
}

s,
strike {
    text-decoration: none;
    position: relative;
    background: linear-gradient(45deg, #B799E9, #B799E9);
    background: linear-gradient(45deg, var(--point3), var(--point3));
    background-size: 100% 2px;
    background-position: 100% 60%;
    background-repeat: repeat-x;
}

/* 부드러운 화면 전환 */
.smooth-screen #container,
.smooth-screen .copy {
    display: none;
    animation: fadein 2000ms ease-out;
    -moz-animation: fadein 2000ms ease-out;
    -webkit-animation: fadein 2000ms ease-out;
    -o-animation: fadein 2000ms ease-out;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
    }
}

/* ★ 전체 박스 */
#container {
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 110px;
}

/* ★ 헤더 */
#header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: fixed;
    width: 250px;
    height: 100%;
    top: 0;
    padding: 110px 0;
}

#header .side-wrap {
    -webkit-flex-grow: 1;flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 100%;
}

/* 타이틀 */
#header .blog-title > a {
    position: relative;
    width: 100%;
    display: inline-block;
}

#header .blog-title > a > span {
    font-size: 4em;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    word-break: keep-all;
    position: relative;
    line-height: 1;
    display: inline-block;
    color: #D8C7F3;
    color: var(--point1);
    width: 100%;
}

#header .blog-title img {
    max-width: 250px;
    max-height: 60px;
}

#header .intro {
    word-break: keep-all;
    word-wrap: break-word;
    font-size: 0.85em;
    color: #D8C7F3;
    color: var(--point1);
    margin-top: 12%;
}

/* 카테고리 */
.catebox {
    font-size: .9em;
    white-space: nowrap;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    color: #D8C7F3;
    color: var(--point1);
    line-height: 2.5;
    counter-reset: item;
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.catebox .blogmenu li a:before,
.catebox a.link_item:before,
.catebox .cate a:before,
#header .search:before {
    content: counter(item, decimal-leading-zero) " ";
    counter-increment: item;
    margin-right: 5px;
}

.catebox a,
#header .search button {
    color: #D8C7F3;
    color: var(--point1);
    transition: color .4s;
}

.catebox a:hover,
#header .search button:hover,
#header .search input {
    color: #B799E9;
    color: var(--point3);
}

.category_list > li.mc .link_item:after {
    display: inline-block;
    content: '\f0a4 ';
    font-family: 'fontAwesome';
    padding-left: 6px;
    opacity: 0;
    transition: all 1s;
}

.category_list > li.mc:hover .link_item {
    color: #B799E9;
    color: var(--point3);
}

.category_list > li.mc:hover .link_item:after,
.category_list > li.mc:focus .link_item:after {
    opacity: 1;
    padding-left: 12px;
}

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

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

    .blogmenu,
    .tt_category,
    .cate {
        display: -webkit-flex;
        display: flex;
    }

    .sub_category_list {
        position: absolute;
        top: 0;
        left: calc(100% + 15px);
        text-align: center;
    }
}

.sub_category_list > li {
    background-color: #B799E9;
    background-color: var(--point3);
    border-radius: 20px;
    margin-bottom: 5px;
}

a.link_sub_item {
    color: #FFF;
    color: var(--bg);
    padding: 0 15px;
}

.sub_category_list > li:hover a.link_sub_item {
    color: #FFF29F;
    color: var(--point2);
}

.catebox a,
.mc,
button {
    position: relative;
}

.catebox a:hover > .particle,
.category_list > li.mc:hover > .particle,
button:hover > .particle {
    opacity: 0;
    position: absolute;
    -webkit-animation: confetti 3s ease-in infinite;
    animation: confetti 3s ease-in infinite;
}

.catebox a > .particle.c1,
.category_list > li.mc > .particle.c1,
button > .particle.c1 {
    background-color: #B799E9;
    background-color: var(--point3);
}

.catebox a > .particle.c2,
.category_list > li.mc > .particle.c2,
button > .particle.c2 {
    background-color: #B8F8BD;
    background-color: var(--point4);
    color: #B8F8BD;
    color: var(--point4);
}

@-webkit-keyframes confetti {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0%) rotate(0deg);
        transform: translateY(0%) rotate(0deg);
    }

    10% {
        opacity: 0.5;
    }

    35% {
        -webkit-transform: translateY(-800%) rotate(270deg);
        transform: translateY(-800%) rotate(270deg);
    }

    80% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000%) rotate(1440deg);
        transform: translateY(2000%) rotate(1440deg);
    }
}

@keyframes confetti {
    0% {
        opacity: 0;
        -webkit-transform: translateY(0%) rotate(0deg);
        transform: translateY(0%) rotate(0deg);
    }

    10% {
        opacity: 0.5;
    }

    35% {
        -webkit-transform: translateY(-800%) rotate(270deg);
        transform: translateY(-800%) rotate(270deg);
    }

    80% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000%) rotate(1440deg);
        transform: translateY(2000%) rotate(1440deg);
    }
}

.new {
    color: #D8C7F3;
    color: var(--point1);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
}

.newpost a.link_item .new {
    animation: none;
}

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

    to {
        opacity: 0;
    }
}

.link_tit,
.sub_category_list {
    display: none;
}

/* 검색 */
#header .search,
#header .sns {
    margin-top: 15%;
}

#header .search {
    width: 100%;
    overflow: hidden;
}

#header .search input {
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    max-width: calc(100% - 50px);
}

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

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

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

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

#header .search button {}

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

.sns:empty {
    display: none;
}

.sns a {
    width: 30px;
    height: 30px;
    -webkit-display: inline-flex;
    display: inline-flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    vertical-align: middle;
    background-color: #D8C7F3;
    background-color: var(--point1);
    border-radius: 100%;
    text-align: center;
    color: #B799E9;
    color: var(--point3);
    margin-right: 5px;
    transition: .4s;
}

.sns a:hover {
    color: #FFF29F;
    color: var(--point2);
    background-color: #B799E9;
    background-color: var(--point3);
}

/* ★ 콘텐츠 */
#content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-grow: 1;flex-grow: 1;
}

#content #main {
    /* flex-grow:1; */
}

/* 목록 공통 */
.myoskin .item {
    transition: all .4s;
    border-bottom: 1px solid;
    border: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    background-color: #FFF;
    background-color: var(--con-bg);
    position: relative;
    top: 0;
    left: 0;
    box-shadow: 5px 5px 0 rgba(216, 199, 243, 0.3);
    box-shadow: 5px 5px 0 rgba(var(--point1-rgb), 0.3);
}

.myoskin .item:hover {
    top: 5px;
    left: 5px;
    box-shadow: 0 0 0 rgba(216, 199, 243, 0.3);
    box-shadow: 0 0 0 rgba(var(--point1-rgb), 0.3);
}

.myoskin .item a {
    display: block;
}

.myoskin .item .thumbox {
    overflow: hidden;
}

.myoskin .item .thumbox img {
    width: 100%;
}

.myoskin .item .title {
    color: #B799E9;
    color: var(--point3);
    transition: color .4s;
}

.myoskin .item:hover .title {
    color: #D8C7F3;
    color: var(--point1);
}

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

.myoskin .item .cnt {
    background-color: #FFF;
    background-color: var(--con-bg);
    line-height: 1;
    border-radius: 20px;
    font-size: .6em;
    color: #D8C7F3;
    color: var(--point1);
    font-family: 'Shrikhand', cursive;
    display: inline-block;
    vertical-align: middle;
}

.myoskin .item .cnt:before {
    content: '\f075';
    margin-right: 5px;
    font-family: fontAwesome;
}

.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-archive .empty .archive,
#tt-body-tag .empty .tag {
    display: block;
}

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

#myo_gal .item {
    margin: 0 3% 3% 0;
}

#myo_gal .item a {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

#myo_gal .item .datebox {
    font-family: 'Shrikhand', cursive;
    letter-spacing: 5px;
    color: #D8C7F3;
    color: var(--point1);
    font-size: .6em;
    line-height: 1;
    padding: 10px;
    border-bottom: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    white-space: nowrap;
}

#myo_gal .item .thumbox {
    -webkit-order: 1;
    order: 1;
    border-top: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
}

#myo_gal .item .info {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

#myo_gal .item .title {
    overflow: hidden;
    word-break: keep-all;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    font-family: 'Binggrae-Bold', cursive;
    border-radius: 5px;
    position: relative;
    padding: 10px;
    line-height: 1;
}

#myo_gal .item .title img {
    padding: 0 !important;
    margin-left: 5px;
}

#myo_gal .item .date {
    order: -1;
    font-family: 'Shrikhand', cursive;
    font-size: .6em;
    letter-spacing: 5px;
}

#myo_gal .item .cnt {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px;
}

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

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

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

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

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

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

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

/* 목록형 */
#myo_bbs .item {
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
}

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

#myo_bbs .item .cate,
#myo_bbs .item .date {
    display: inline-block;
    margin-right: 20px;
    font-size: .6em;
    color: #D8C7F3;
    color: var(--point1);
}

#myo_bbs .item .thumbox,
#myo_bbs .item .datebox,
#myo_bbs .item .text,
#myo_bbs .item .info div > p > .cnt {
    display: none;
}

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

#myo_web .item a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

#myo_web .item .thumbox {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
}

#myo_web .item .thumbnail {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    border: 1px solid;
    border-color: #E8E8E8;
    border-color: var(--con-border);
}

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

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

#myo_web .item .info {
    -webkit-flex-grow: 1;flex-grow: 1;
    display: -webkit-flex;
    display: flex;
    padding-left: 20px;
}

#myo_web .item .info > div {
    -webkit-flex: 0 0 30%;
    flex: 0 0 30%;
    padding-right: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

#myo_web .item .title {
    font-size: 1.3em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 105px;
    word-break: keep-all;
    word-wrap: break-word;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    margin-bottom: 10px;
}

#myo_web .item .cate,
#myo_web .item .date {
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    font-size: 0.6em;
    color: #D8C7F3;
    color: var(--point1);
}

#myo_web .item .cnt {
    justify-self: flex-end;
    margin-top: 15px;
}

#myo_web .item .text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    max-height: 162px;
    overflow: hidden;
    word-break: keep-all;
    word-wrap: break-word;
    padding: 0 15px;
    color: #777;
    color: var(--text);
}

#myo_web .item .info > div > p > .cnt,
#myo_web .item .datebox {
    display: none;
}

/* 보호글 */
.pass {
    min-height: 40vh;
}

.pass .box {
    -ms-display: flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: calc(35px * 7 - 1px);
    height: calc(var(--line) * 7 - 1px);
}

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

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

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

.pass button,
.more-btn,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    width: 100%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    text-decoration: none;
    font-size: inherit;
    font-weight: 600;
    padding: 1.25em 2em;
    color: #FFF29F;
    color: var(--point2);
    background-color: #D8C7F3;
    background-color: var(--point1);
    border: 2px solid;
    border-color: #B799E9;
    border-color: var(--point3);
    border-radius: 0.75em;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
    letter-spacing: 0;
}

.pass button::before,
.more-btn:after,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:after,
div[data-ke-type='moreLess'] .btn-toggle-moreless:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #B799E9;
    background-color: var(--point3);
    border-radius: inherit;
    z-index: -1;
    box-shadow: 0 0 0 2px #FFF29F, 0 0.625em 0 0 rgba(216, 199, 243, 0.2);
    box-shadow: 0 0 0 2px var(--point2), 0 0.625em 0 0 rgba(var(--point1-rgb), 0.2);
    -webkit-transform: translate3d(0, 7px, -1em);
    transform: translate3d(0, 7px, -1em);
    transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), box-shadow 150ms cubic-bezier(0, 0, 0.58, 1), -webkit-transform 150ms cubic-bezier(0, 0, 0.58, 1);
}

.pass button:hover,
.more-btn:hover,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
div[data-ke-type='moreLess'] .btn-toggle-moreless:hover {
    background-color: #FFF29F;
    background-color: var(--point2);
    color: #D8C7F3;
    color: var(--point1);
    border-color: #D8C7F3;
    border-color: var(--point1);
    -webkit-transform: translate(0, 0.25em);
    transform: translate(0, 0.25em);
}

.pass button:hover::before,
.more-btn:hover:after,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess']:hover:after .btn-toggle-moreless:hover:after {
    box-shadow: 0 0 0 2px #FFF29F, 0 0.5em 0 0 rgba(216, 199, 243, 0.2);
    box-shadow: 0 0 0 2px var(--point2), 0 0.5em 0 0 rgba(var(--point1-rgb), 0.2);
    -webkit-transform: translate3d(0, 0.5em, -1em);
    transform: translate3d(0, 0.5em, -1em);
}

.pass button:active,
.more-btn:active,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:active,
div[data-ke-type='moreLess'] .btn-toggle-moreless:active {
    -webkit-transform: translate(0em, 0.75em);
    transform: translate(0em, 0.75em);
}

.pass button:active::before,
.more-btn:active:after,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:active:after,
div[data-ke-type='moreLess'] .btn-toggle-moreless:active:after {
    box-shadow: 0 0 0 2px #FFF29F, 0 0 rgba(216, 199, 243, 0.2);
    box-shadow: 0 0 0 2px var(--point2), 0 0 rgba(var(--point1-rgb), 0.2);
    -webkit-transform: translate3d(0, 0, -1em);
    transform: translate3d(0, 0, -1em);
}

.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: .9em;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    color: #D8C7F3;
    color: var(--point1);
}

.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);
    color: #FFF29F;
    color: var(--point2);
}

/* 본문 영역 */
.box {
    border: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    background-color: #FFF;
    background-color: var(--con-bg);
    position: relative;
}

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

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

body:not(#tt-body-page) .myoskin + #article .post:first-child {
    border-top: 2px dashed;
    border-color: #D8C7F3;
    border-color: var(--point1);
    margin-top: 70px;
    padding-top: 70px;
}

body:not(#tt-body-page) #article .post {
    padding: 70px 0;
    border-bottom: 2px dashed;
    border-color: #D8C7F3;
    border-color: var(--point1);
}

.post {
    position: relative;
}

.clip:before {
    content: "\e647";
    font-family: 'themify';
    font-size: 120px;
    color: #B799E9;
    color: var(--point3);
    position: absolute;
    line-height: 1;
    left: 0;
    -webkit-transform: translate(0%, -50%) rotate(150deg);
    transform: translate(0%, -50%) rotate(150deg);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.clip:after {
    display: inline-block;
    width: 110px;
    height: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate(35%, 0) rotate(-40deg);
    transform: translate(35%, 0) rotate(-40deg);
    background-color: rgba(216, 199, 243, 0.5);
    background-color: rgba(var(--point1-rgb), 0.5);
    background-image: radial-gradient(circle, #B799E9 20%, transparent 20%), radial-gradient(circle, #B799E9 20%, transparent 20%);
    background-image: radial-gradient(circle, var(--point3) 20%, transparent 20%), radial-gradient(circle, var(--point3) 20%, transparent 20%);
    background-size: 10px 10px, 10px 10px;
    background-position: 0 0, 5px 5px;
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 98;
}

/* 본문 타이틀 영역 */
.titlebox {
    overflow: hidden;
    text-align: center;
    line-height: 35px;
    line-height: var(--line);
}

.titlebox p:first-child {
    padding-top: calc(35px * 2);
    padding-top: calc(var(--line) * 2);
}

.titlebox p:last-child {
    padding-bottom: 35px;
    padding-bottom: var(--line);
}

.titlebox .title {
    font-size: 2.5em;
    font-weight: bold;
    color: #D8C7F3;
    color: var(--point1);
    font-family: 'Binggrae-Bold', cursive;
    text-shadow: 3px 2px 0 #B799E9;
    text-shadow: 3px 2px 0 var(--point3);
    padding: 0 0 35px;
    padding: 0 0 var(--line);
}

.titlebox .title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(35px * 2);
    min-height: calc(var(--line) * 2);
    max-height: calc(35px * 4);
    max-height: calc(var(--line) * 4);
    word-break: keep-all;
    word-wrap: break-word;
    line-height: calc(35px * 2);
    line-height: calc(var(--line) * 2);
    padding: 0 15px;
}

.titlebox .cate {}

.titlebox .date {
    letter-spacing: 10px;
    text-indent: 10px;
    color: #D8C7F3;
    color: var(--point1);
    font-family: 'Shrikhand', cursive;
}

.titlebox .admin {}

.post .titlebox .admin a {
    color: #777 !important;
    color: var(--text) !important;
}

.post .titlebox .admin a:hover {
    color: #D8C7F3 !important;
    color: var(--point1) !important;
}

/* 본문 */
.titlebox p,
.text-item p,
.text-item li,
.text-item h1,
.text-item h2,
.text-item h3,
.text-item h4,
.btn_more,
.btn_less,
div[data-ke-type='moreLess'],
#tt-body-page div[data-ke-type='moreLess'],
blockquote[data-ke-style='normal'],
blockquote[data-ke-style='style2'],
#tt-body-page blockquote[data-ke-style='normal'],
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'],
figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'],
figure.fileblock,
#tt-body-page figure.fileblock,
figure[data-ke-type='video'] figcaption,
.tags,
body .container_postbtn,
.moreless_content,
figure figcaption,
figure[data-ke-type='video'] figcaption,
.morebox,
.pass .box {
    background-image: repeating-linear-gradient(0deg, #E8E8E8, #E8E8E8 1px, transparent 0, transparent 35px);
    background-image: repeating-linear-gradient(0deg, var(--con-border), var(--con-border) 1px, transparent 0, transparent var(--line));
    min-height: 35px;
    min-height: var(--line);
    padding: 0 15px;
    line-height: 35px;
    line-height: var(--line);
    background-repeat: no-repeat;
}

.text-item br {
    height: 35px;
    height: var(--line);
    line-height: 35px;
    line-height: var(--line);
}

.text-item h1,
.text-item h2,
.text-item h3,
.text-item h4,
.morebox > .title {
    padding: 0 15px;
    height: calc(35px * 2);
    height: calc(var(--line) * 2);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    text-shadow: 2px 2px 0 #B799E9;
    text-shadow: 2px 2px 0 var(--point3);
    color: #D8C7F3;
    color: var(--point1);
    position: relative;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
}

.another_category h4 {
    text-shadow: inherit;
    font-family: inherit;
    height: inherit;
    background-image: none;
}

.another_category h4:before {
    display: none;
}

.text-item {
    word-break: break-word;
    word-wrap: break-word;
}

.text-item h1:before,
.text-item h2:before,
.text-item h3:before,
.text-item h4:before {
    content: '✔';
    margin: 0 15px 0 0;
    font-size: 1.1em;
}

.text-item .footnotes a:before {
    display: none;
}

.text-item sup {
    vertical-align: top;
    font-size: 0.6em;
    position: relative;
}

.text-item sup a {
    position: absolute;
    top: -150%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #B799E9 !important;
    color: var(--point3) !important;
}

.text-item p > a[href^="http"]:not(.imgblock):before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 3px;
    font-size: .8em;
    vertical-align: top;
}

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

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

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

/* 링크 */
.text-item a {
    color: #D8C7F3;
    color: var(--point1);
    transition: .4s;
    position: relative;
    margin: 0 !important;
}

.text-item a:hover {
    color: #B799E9;
    color: var(--point3);
}

.tag a,
.box p > a:not(.ribbon-text),
.box p > span > a,
.lst .name .lst-etc {
    white-space: nowrap;
    transition: .4s;
    position: relative;
    padding: 0 5px;
    z-index: 1;
}

.tag a:after,
.box p > a:not(.ribbon-text):after,
.box p > span > a:after,
.pagination a .selected:after,
.lst .name .lst-etc:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    background-color: rgba(255, 242, 159, 0.5);
    background-color: rgba(var(--point2-rgb), 0.5);
    border-radius: 100px 100px/100px 200px;
    width: 100%;
    height: 60%;
    z-index: -1;
    transition: .4s;
}

.text-item p > a:after,
.text-item p > span > a:after {
    width: 0 !important;
}

.text-item p > a:hover:after,
.text-item p > span > a:hover:after {
    width: 100% !important;
}

.box p > a:not(.ribbon-text) {
    color: #D8C7F3;
    color: var(--point1);
}

.box p > a:not(.ribbon-text):hover {
    color: #B799E9;
    color: var(--point3);
}

.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;
    height: calc(35px * 4) !important;
    height: calc(var(--line) * 4) !important;
}

figure[data-ke-type='opengraph'] div.og-image {
    width: calc(35px * 3);
    width: calc(var(--line) * 3);
    border-right: 2px solid;
    border-color: #B799E9;
    border-color: var(--point3);
    transition: .4s;
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    height: calc(35px * 3);
    height: calc(var(--line) * 3);
}

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: calc(35px * 3) !important;
    left: calc(var(--line) * 3) !important;
    padding: 0 15px !important;
    line-height: 1.8;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
}

figure[data-ke-type='opengraph'] div.og-text > p {
    background-image: none;
    line-height: inherit;
    min-height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    padding: 0;
}

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: #FFF29F;
    color: var(--point2);
    margin-bottom: 0 !important;
    transition: .4s;
    max-width: none;
    font-family: 'Binggrae-Bold', cursive;
    line-height: inherit;
}

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,
figure[data-ke-type='opengraph'] a:hover div.og-text p.og-desc,
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-desc,
figure[data-ke-type='opengraph'] a:hover div.og-text p.og-host,
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-host,
figure.fileblock:hover .name,
#tt-body-page figure.fileblock:hover .name,
figure.fileblock:hover .size,
#tt-body-page figure.fileblock:hover .size,
figure.fileblock:hover .image:after,
#tt-body-page figure.fileblock:hover .image:after,
figure.fileblock:hover a::after,
#tt-body-page figure.fileblock:hover a::after {
    color: #D8C7F3;
    color: var(--point1);
}

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: #FFF29F;
    color: var(--point2);
    font-size: inherit;
    font-family: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    transition: color .4s;
}

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: #FFF29F;
    color: var(--point2);
    margin-bottom: 0 !important;
    font-size: inherit;
    font-family: inherit;
    position: static;
    transition: color .4s;
}

/* 아이프레임 */
.framebox {
    position: relative;
    height: 0;
    margin: 0;
    padding-bottom: 56.25%;
}

.framebox.ver {
    padding-bottom: 177.77%;
}

.framebox iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: top;
}

figure[data-ke-type='video'][data-ke-style='alignCenter'] {
    margin: 0;
    height: auto;
    padding: 0;
}

/* 이미지, 동영상 설명글 */
figure figcaption,
figure[data-ke-type='video'] figcaption {
    font-size: .8rem;
    color: #D8C7F3;
    color: var(--point1);
    font-family: 'Binggrae-Bold', cursive;
    padding: 0 15px;
    min-height: 35px;
    min-height: var(--line);
    line-height: 35px;
    line-height: var(--line);
}

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

body .text-item .pa {
    padding: 0 !important;
}

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

figure.imageblock,
#tt-body-page figure.imageblock {
    display: block;
    padding: 0;
    margin-bottom: 0 !important;
}

/* 인용구 */
.tx-quote-tistory:before,
blockquote[data-ke-style='normal']:before,
#tt-body-page blockquote[data-ke-style='normal']:before,
blockquote[data-ke-style='style2']:before,
#tt-body-page blockquote[data-ke-style='style2']:before {
    content: "\e67f";
    font-family: 'themify';
    position: absolute;
    left: 5%;
    top: 0;
    display: inline-block;
}

.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: 5%;
    bottom: 0;
}

blockquote,
blockquote p {
    font-style: italic;
    font-size: inherit;
    color: inherit;
}

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

.tx-quote-tistory p,
blockquote[data-ke-style='normal'] p,
#tt-body-page blockquote[data-ke-style='normal'] p,
blockquote[data-ke-style='style2'] p,
#tt-body-page blockquote[data-ke-style='style2'] p {
    padding: 0 10%;
}

.tx-quote-tistory p:first-child,
blockquote[data-ke-style='normal'] p:first-child,
#tt-body-page blockquote[data-ke-style='normal'] p:first-child {
    padding-top: 35px;
    padding-top: var(--line);
}

.tx-quote-tistory p:last-child,
blockquote[data-ke-style='normal'] p:last-child,
#tt-body-page blockquote[data-ke-style='normal'] p:last-child,
blockquote[data-ke-style='style2'] p:last-child,
#tt-body-page blockquote[data-ke-style='style2'] p:last-child {
    padding-bottom: 35px;
    padding-bottom: var(--line);
}

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'] {
    padding: 35px 10%;
    padding: var(--line) 10%;
    word-break: normal;
}

/* 인용구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'] {
    background-color: transparent;
    border: 0;
    border-color: #777;
    border-color: var(--text);
    color: inherit;
    font-size: inherit;
    position: relative;
    padding: 0 30px;
    word-break: normal;
    z-index: 1;
}

blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='style3']:after,
#tt-body-page blockquote[data-ke-style='style3']:after {
    left: 15px !important;
    width: calc(100% - 30px) !important;
}

/* 더보기 */
div[data-ke-type='moreLess'] .btn-toggle-moreless,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: inline-block;
    width: auto;
    padding: 0 15px;
    min-height: calc(35px - 4px);
    min-height: calc(var(--line) - 4px);
    line-height: calc(35px - 4px);
    line-height: calc(var(--line) - 4px);
    margin: calc((35px - 4px) / 2) 0 !important;
    margin: calc((var(--line) - 4px) / 2) 0 !important;
    letter-spacing: 0;
}

.btn_less::before,
.btn_more::before {
    display: none;
}

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

.more-btn:before,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:before,
div[data-ke-type='moreLess'] .btn-toggle-moreless:before {
    content: "\e65f";
    font-family: 'themify';
    margin-right: 5px;
    display: inline;
    line-height: 35px;
    line-height: var(--line);
}

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

.btn_more,
.btn_less {
    margin: 0;
    padding: 0 15px;
    min-height: calc(35px * 2);
    min-height: calc(var(--line) * 2);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.more-btn {
    display: inline-block;
    width: auto;
    padding: 0 10px;
}

.more-btn:after,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:after,
div[data-ke-type='moreLess'] .btn-toggle-moreless:after {
    box-shadow: none;
}

.moreless_content .btn_more,
.moreless_content .btn_less {
    padding: 0;
    background-image: none;
}

.more-txt {
    position: relative;
    top: 0;
}

.more-txt:after,
div[data-ke-type='moreLess'].open .moreless-content:after,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content:after,
blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='style3']:after,
#tt-body-page blockquote[data-ke-style='style3']:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    border-radius: 5px;
    box-sizing: border-box;
}

blockquote[data-ke-style='box']:after,
#tt-body-page blockquote[data-ke-style='box']:after,
blockquote[data-ke-style='style3']:after,
#tt-body-page blockquote[data-ke-style='style3']:after {
    width: calc(100% - 30px) !important;
    left: 15px;
}

.more-txt p {
    background-image: none;
}

.moreless_content,
.moreless-content,
div[data-ke-type='moreLess'] .moreless-content,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content {
    line-height: inherit;
    border-color: transparent;
    word-break: normal;
}

div[data-ke-type='moreLess'].open .moreless-content,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
    position: relative;
    z-index: 1;
}

div[data-ke-type='moreLess'].open .moreless-content > p,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content > p {
    padding: 0 15px;
    background-image: none;
}

/* 이미지 슬라이드 */
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,
figure[data-ke-type='opengraph'],
#tt-body-page figure[data-ke-type='opengraph'] {
    background-color: transparent;
    z-index: 1;
    margin: 0;
    width: auto;
    height: calc(35px * 3);
    height: calc(var(--line) * 3);
    border-radius: 0;
    border: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

figure.fileblock a,
#tt-body-page figure.fileblock a,
figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    min-width: 60%;
    display: inline-block;
    position: relative;
    border: 2px solid;
    border-color: #B799E9;
    border-color: var(--point3);
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    -webkit-transition: all 1s;
    transition: all 1s;
    color: #FFF29F;
    color: var(--point2);
    border-radius: 0.75em;
    background-color: #D8C7F3;
    background-color: var(--point1);
    overflow: hidden;
}

figure.fileblock a:hover,
#tt-body-page figure.fileblock a:hover,
figure[data-ke-type='opengraph'] a:hover,
#tt-body-page figure[data-ke-type='opengraph'] a:hover {
    border-color: #D8C7F3;
    border-color: var(--point1);
    background-color: #FFF29F !important;
    background-color: var(--point2) !important;
}

figure[data-ke-type='opengraph'] a:hover div.og-image {
    border-color: #D8C7F3;
    border-color: var(--point1);
}

figure.fileblock a,
#tt-body-page figure.fileblock a {
    height: calc(35px * 2);
    height: calc(var(--line) * 2);
}

@-webkit-keyframes halftone {
    100% {
        background-size: 2.375em 2.375em, 0.1em 0.1em;
    }
}

@keyframes halftone {
    100% {
        background-size: 2.375em 2.375em, 0.1em 0.1em;
    }
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    line-height: inherit;
    height: auto;
    max-width: none;
    font-family: 'Binggrae-Bold', cursive;
    color: #FFF29F;
    color: var(--point2);
    transition: .4s;
}

figure.fileblock .image,
#tt-body-page figure.fileblock .image {
    background-image: none;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0;
    margin: 0;
    width: calc(35px * 2);
    width: calc(var(--line) * 2);
    height: 100%;
}

figure.fileblock .image:after,
#tt-body-page figure.fileblock .image:after {
    content: '\f07b';
    font-family: 'fontAwesome';
    font-size: 2em;
    transition: .4s;
}

figure.fileblock .desc,
#tt-body-page figure.fileblock .desc {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    line-height: 1.7;
}

figure.fileblock .filename,
#tt-body-page figure.fileblock .filename {
    margin: 0;
    height: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    font-family: inherit;
    margin: 0;
    height: auto;
    color: #FFF29F;
    color: var(--point2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .4s;
}

figure.fileblock a::after,
#tt-body-page figure.fileblock a::after {
    background-image: none;
    content: '\f063';
    font-family: 'fontAwesome';
    font-size: 1.5em;
    line-height: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    transition: .4s;
}

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

.text-item .imageblock > a:before {
    content: "\e6a7";
    font-family: 'themify';
    margin-right: 5px;
    vertical-align: top;
    font-size: .8em;
}

/* 공감 */
body .container_postbtn {
    padding: 35px 15px;
    padding: var(--line) 15px;
    line-height: normal;
    height: calc(35px * 3);
    height: calc(var(--line) * 3);
    z-index: 98;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    border: 1px solid;
    width: auto;
    height: 29px;
    line-height: inherit;
    font-family: inherit !important;
    padding: 0 10px;
    border-color: #D8C7F3;
    border-color: var(--point1);
    margin-top: 3px !important;
}

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

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
    color: #D8C7F3;
    color: var(--point1);
}

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;
    vertical-align: middle;
    color: #D8C7F3 !important;
    color: var(--point1) !important;
    padding-left: 2px;
    font-family: 'TDTDTadakTadak' !important;
    transition: color .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;
}

body .container_postbtn .btn_post .ico_postbtn:after {
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 11px;
    color: #D8C7F3;
    color: var(--point1);
    transition: color .4s;
}

body .container_postbtn .btn_post:hover .ico_postbtn:after,
body .container_postbtn .btn_post:hover .txt_like {
    color: #B8F8BD !important;
    color: var(--point4) !important;
}

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 .postbtn_ccl {
    text-align: right;
    padding: 0;
}

.container_postbtn .bundle_ccl {
    display: flex !important;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 35px;
    height: var(--line);
}

/* 카테고리 더보기 플러그인 */
body .text-item .another_category {
    margin: 0 !important;
    border: 0 !important;
    padding: 10px !important;
    border-bottom: 1px solid !important;
    border-color: #E8E8E8 !important;
    border-color: var(--con-border) !important;
    color: #E8E8E8;
    color: var(--con-border);
}

/* 본문 하단 태그 */
.tags {
    padding-bottom: 35px;
    padding-bottom: var(--line);
}

.tags .tag {
    color: transparent !important;
    cursor: default;
}

.tag a:before {
    content: '#';
    margin-right: 1px;
}

.tag a {
    color: #777;
    color: var(--text);
}

.tag a:hover:after,
.titlebox .admin a:hover:after {
    height: 110%;
}

/* 댓글 오픈 */
.ribbon {
    margin: 70px auto 0;
    max-width: calc(60% - 60px);
    min-width: 240px;
    width: 100%;
    padding-bottom: 20px;
    position: relative;
}

.ribbon:before,
.ribbon:after,
.ribbon-text:before,
.ribbon-text:after {
    bottom: 0;
    content: '';
    height: 0;
    position: absolute;
    width: 0;
}

.ribbon:before,
.ribbon:after {
    border: 20px solid transparent;
    width: 10px;
    z-index: -1;
    border-color: #B799E9;
    border-color: var(--point3);
}

.ribbon:before {
    left: -30px;
    border-left-color: transparent;
}

.ribbon:after {
    right: -30px;
    border-right-color: transparent;
}

.ribbon-text:before,
.ribbon-text:after {
    border: solid transparent;
    border-top-color: #B799E9;
    border-top-color: var(--point3);
    filter: brightness(85%);
}

.ribbon-text:before {
    border-width: 20px 0 0 20px;
    left: 0;
}

.ribbon-text:after {
    border-width: 20px 20px 0 0;
    right: 0;
}

.ribbon-text {
    background-color: #B799E9;
    background-color: var(--point3);
    display: block;
    padding: 12px;
    line-height: 1;
    text-align: center;
}

#opencmt a {
    white-space: nowrap;
    font-family: 'Shrikhand', cursive;
    transition: .4s;
    letter-spacing: 7px;
    color: #FFF29F;
    color: var(--point2);
}

#opencmt a:hover {
    text-shadow: 2px 2px 0 #B799E9, 3px 3px 0 #FFF29F;
    text-shadow: 2px 2px 0 var(--point3), 3px 3px 0 var(--point2);
}

/* 댓글, 방명록 작성 */
body.cmtopen #opencmt {
    display: none;
}

#rp > div {
    display: none;
}

.write {
    margin-top: 30px;
}

.bubble {
    position: relative;
    border-radius: 25px;
    background-color: #FFF29F;
    background-color: var(--point2);
    overflow: hidden;
    padding: 10px;
}

.bubble:before {
    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: auto;
    width: 18px;
    z-index: -1;
    border-color: #FFF29F;
    border-color: var(--point2);
    left: -33px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.write .textarea {
    margin-bottom: 10px;
}

.write textarea {
    height: 100px;
    min-height: 100px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    position: relative;
    z-index: 100;
    display: block;
    vertical-align: top;
}

.write textarea::-webkit-scrollbar {
    background-color: transparent;
}

.write textarea::-webkit-scrollbar-thumb {
    background-color: #D8C7F3;
    background-color: var(--point1);
}

.write textarea::-webkit-resizer {
    background-color: #D8C7F3;
    background-color: var(--point1);
    border-radius: 10px 10px 0 10px;
}

.write button {
    line-height: 1;
    padding: 8px 20px;
    border-radius: 25px;
    width: 100%;
    transition: .4s;
    color: #B799E9;
    color: var(--point3);
    font-family: 'Shrikhand', cursive;
    text-shadow: 1px 1px 0 #FFF29F, 2px 2px 0 #B799E9;
    text-shadow: 1px 1px 0 var(--point2), 2px 2px 0 var(--point3);
}

.write button:hover {
    text-shadow: 1 0 0 #FFF29F, 0 0 0 #B799E9;
    text-shadow: 1 0 0 var(--point2), 0 0 0 var(--point3);
}

.write .input + button {
    width: inherit;
}

.write .inputbox {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 5px;
}

.write .inputbox .input {
    -webkit-flex-grow: 1;flex-grow: 1;
}

.write .input input {
    display: inline-block;
    margin-right: 15px;
    max-width: 36%;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    padding: 3px 10px;
    width: 100%;
    height: 35px;
    height: var(--line);
    font-size: .8em;
}

.write .input input::-webkit-input-placeholder {
    color: #B799E9;
    color: var(--point3);
}

.write .input input:-moz-placeholder {
    color: #B799E9;
    color: var(--point3);
}

.write .input input:-ms-input-placeholder {
    color: #B799E9;
    color: var(--point3);
}

.write .input input::placeholder {
    color: #B799E9;
    color: var(--point3);
}

.write .input .secret {
    margin-right: 0;
    -webkit-display: inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.write .input label {
    width: 35px;
    width: var(--line);
    height: 35px;
    height: var(--line);
    line-height: 35px;
    line-height: var(--line);
    text-align: center;
    display: none;
}

.write .inputbox input[name="secret"] {
    width: inherit;
    height: inherit;
    margin-right: 0;
    vertical-align: middle;
    border: 0;
    background-color: transparent;
    visibility: hidden;
}

.write input[name="secret"]:after {
    content: "\f13e";
    font-family: 'fontAwesome';
    transition: color .4s;
    line-height: 1;
    visibility: visible;
    color: #B799E9;
    color: var(--point3);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

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

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

.lst > ul,
.lst li {
    position: relative;
}

.lst > ul,
#rp.order .lst > ul:last-child {
    padding: 50px 0;
    border-bottom: 4px dotted;
    border-color: #D8C7F3;
    border-color: var(--point1);
}

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

#rp:not(.order) .lst > ul:first-child,
#rp.order .lst > ul:last-child {
    border-top: 4px dotted;
    border-color: #D8C7F3;
    border-color: var(--point1);
}

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

.lst > ul,
.lst > ul > ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.lst > ul > li,
.lst > ul > ul > li {
    align-self: flex-start;
    align-self: flex-start;
    min-width: 20%;
    max-width: calc(100% - 80px);
}

.lst .rp_admin,
.lst .guest_admin {
    -webkit-align-self: flex-end;
    align-self: flex-end;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.lst .name a:before,
.lst .rp_admin .name a:before,
.lst .guest_admin .name a:before {
    font-family: "themify";
    font-size: .8em;
    margin-right: 3px;
}

.lst .rp_admin .name a:before,
.lst .guest_admin .name a:before {
    content: "\e642";
}

.lst .rp_secret .name a:before,
.lst .guest_secret .name a:before,
.lst .hiddenComment .name a:before {
    content: "\e62b";
}

.lst .name .lst-etc {
    margin-right: 5px;
}

.lst .name a {
    font-weight: bold;
    cursor: default;
    transition: .4s;
}

.lst .name .tistoryProfileLayerTrigger {
    background-image: none;
    width: auto;
    margin: 0;
    position: relative;
}

.lst .name .tistoryProfileLayerTrigger:after {
    content: '\f2bd';
    font-family: 'fontAwesome';
    font-size: .6em;
    color: inherit;
    transition: .4s;
}

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

.lst .text {
    word-break: normal;
    word-wrap: break-word;
    padding: 10px 15px;
    margin: 0 0 5px 0;
    display: inline-block;
}

.lst .name:hover a,
.lst .name:hover .tistoryProfileLayerTrigger,
.lst .text a {
    color: #B799E9;
    color: var(--point3);
}

.lst .text a:hover {
    color: #D8C7F3;
    color: var(--point1);
}

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

.lst .rp_admin .text:before,
.lst .guest_admin .text:before {
    border-color: #D8C7F3;
    border-color: var(--point1);
    left: auto;
    right: -33px;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    transform: rotateY(0);
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    background-color: #D8C7F3;
    background-color: var(--point1);
    color: #FFF29F;
    color: var(--point2);
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.lst .rp_admin .text a,
.lst .guest_admin .text a {}

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

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

.lst .info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.lst .info .cmt-btn {
    position: relative;
    font-size: .8rem;
}

.lst .info .cmt-btn i {
    display: inline-block;
    transition: .4s;
    margin-left: 10px;
}

.lst .info .cmt-btn:hover i,
.lst .info .cmt-btn.open i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.lst .info .cmt-btn > ul {
    position: absolute;
    left: 0;
    top: 130%;
    max-height: 0;
    opacity: 0;
    white-space: nowrap;
    text-align: center;
    background-color: #B799E9;
    background-color: var(--point3);
    z-index: 1;
    padding: 5px 0;
    line-height: 2;
    border-radius: 5px;
    color: #FFF;
    color: var(--bg);
    transition: .4s;
}

.lst .rp_admin .info .cmt-btn > ul,
.lst .guest_admin .info .cmt-btn > ul {
    left: auto;
    right: 0;
}

.lst .info .cmt-btn:hover > ul,
.lst .info .cmt-btn:active > ul,
.lst .info .cmt-btn.open > ul {
    max-height: 150px;
    opacity: 1;
}

.lst .info .cmt-btn > ul > li {
    padding: 0 10px;
}

.lst .info .cmt-btn > ul a {
    color: #FFF;
    color: var(--bg);
}

.lst .info .cmt-btn > ul a:hover {
    color: #FFF29F;
    color: var(--point2);
}

.lst .info .cmt-btn i {
    vertical-align: middle;
    cursor: pointer;
}

.lst .date {
    cursor: default;
}

.lst .date a {
    visibility: hidden;
    font-size: 0;
}

.lst .date a:after {
    content: '신고하기';
    visibility: visible;
    font-size: .8rem;
    display: block;
}

.reply > li {
    margin-top: 50px;
}

/* 프로필 사진 */
.profile .lst .name img[alt=BlogIcon],
.profile .lst .nopro {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 0;
    left: 0;
    border-radius: 100%;
    display: inline-block;
    background-color: #D8C7F3;
    background-color: var(--point1);
}

.profile .lst > ul > li,
.profile .lst .reply > li {
    padding-left: 80px;
}

.profile .rp_admin .name img[alt=BlogIcon],
.profile .guest_admin .name img[alt=BlogIcon],
.profile .rp_admin .nopro,
.profile .guest_admin .nopro {
    left: auto;
    right: 0;
}

.profile .lst li.rp_admin,
.profile .lst li.guest_admin {
    padding: 0 80px 0 0;
}

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

.morebox {
    padding-bottom: 35px;
    padding-bottom: var(--line);
}

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

.morebox > .title {
    font-size: 1.5em;
    letter-spacing: 5px;
    text-indent: 5px;
    cursor: default;
    padding: 0;
    -webkit-justify-content: center;
    justify-content: center;
}

.morebox > .title > span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.morebox img {
    width: 100%;
}

/* 카테고리 글 더보기 갤러리형 */
#more_gal ul {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: calc((35px - 4px) / 2) 0;
    margin: calc((var(--line) - 4px) / 2) 0;
    height: calc(35px * 5);
    height: calc(var(--line) * 5);
}

#more_gal .item {
    float: left;
    margin-right: 2%;
    width: 23.5%;
    border: 2px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    border-radius: 10px;
    overflow: hidden;
    transition: .4s;
}

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

#more_gal .item:hover {
    -webkit-transform: translate(0, 0.25em);
    transform: translate(0, 0.25em);
}

#more_gal .item .info {
    border-top: 2px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    background-color: #FFF;
    background-color: var(--con-bg);
}

#more_gal .item .title {
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Binggrae-Bold', cursive;
    color: #D8C7F3;
    color: var(--point1);
}

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

/* 카테고리 글 더보기 목록형 */
#more_bbs .item {
    line-height: 35px;
    line-height: var(--line);
    height: 35px;
    height: var(--line);
    transition: .4s;
}

#more_bbs ul:hover .item {
    opacity: .5;
}

#more_bbs ul .item:hover {
    opacity: 1;
}

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

#more_bbs .item .info {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    overflow: hidden;
}

#more_bbs .item .info .title {
    padding-left: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    color: #B799E9;
    color: var(--point3);
    transition: color .4s;
}

#more_bbs .item .info .date:before {
    content: "\f0da";
    font-family: 'fontAwesome';
    font-size: 0.8em;
    color: #B799E9;
    color: var(--point3);
    width: 20px;
    display: inline-block;
}

#more_bbs .item:hover .date:before {
    content: "\f0a4";
}

#more_bbs .item .info .date {
    color: #D8C7F3;
    color: var(--point1);
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    font-size: .6em;
    white-space: nowrap;
}

/* 공지 */
.noti {
    margin: 10px 0;
}

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

.noti .title {
    margin: 0;
}

.noti .date {
    display: none;
}

/* 태그 클라우드 */
#tagcloud {
    clear: both;
}

#tagcloud .title {
    font-size: 2em;
    color: #D8C7F3;
    color: var(--point1);
    text-align: center;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    margin-bottom: 10px;
}

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

#tagcloud li {
    margin: 0 5px 5px 0;
}

#tagcloud li a:before {
    display: none;
}

#tagcloud li .cloud1 {
    color: #B799E9;
    color: var(--point3);
    font-weight: bold;
}

#tagcloud li .cloud2 {
    color: #B8F8BD;
    color: var(--point4);
    font-weight: bold;
}

#tagcloud li .cloud3 {
    color: #B799E9;
    color: var(--point3);
}

#tagcloud li .cloud4 {
    color: #D8C7F3;
    color: var(--point1);
}

/* 페이지네이션 */
.pagination {
    cursor: default;
    text-align: center;
    font-family: 'Shrikhand', cursive;
    font-size: 0.7em;
    margin-top: 50px;
}

.pagination .num > a > span,
.pagination > a {
    padding: 0 10px;
    color: #D8C7F3;
    color: var(--point1);
}

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

.pagination a .selected {
    color: var(--point3) !important;
    position: relative;
}

/* 사이드바 */
#side {
    margin: 15% 0;
    -webkit-flex-grow: 1;flex-grow: 1;
}

#side .calendar {
    margin: 0;
    width: auto;
}

#aside {
    position: fixed;
    width: 230px;
    background-image: linear-gradient(#F5F5F5 1px, transparent 1px), linear-gradient(90deg, #F5F5F5 1px, transparent 1px);
    background-image: linear-gradient(var(--bg-line) 1px, transparent 1px), linear-gradient(90deg, var(--bg-line) 1px, transparent 1px);
    background-size: 15px 15px, 15px 15px, 2px 2px, 2px 2px;
    background-color: #FFF;
    background-color: var(--bg);
    top: 0;
    right: -230px;
    height: 100vh;
    border: 10px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    z-index: 9999;
    transition: 1s;
    display: none;
}

#aside.myo-side {
    display: block;
}

#aside.myo-side:hover,
#aside.myo-side:focus,
#aside.myo-side:active {
    right: 0;
}

#aside .side-btn {
    position: absolute;
    background-color: #D8C7F3;
    background-color: var(--point1);
    height: 80px;
    width: 25px;
    border-radius: 10px 0px 0px 10px;
    top: 50%;
    left: -35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#aside .scroll {
    padding: 100px 20px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

#aside .side > ul {
    background-color: #FFF;
    background-color: var(--bg);
}

.side {
    margin-bottom: 20px;
    z-index: 9;
    position: relative;
}

.side > p.title:empty {
    display: none;
}

.side > p.title {
    display: inline-block;
    border: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    color: #B799E9;
    color: var(--point3);
    background-color: #FFF;
    background-color: var(--con-bg);
    line-height: 1;
    padding: 5px;
    position: relative;
    left: 10px;
    cursor: default;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
    font-size: 0.9em;
}

.side > p.title:after {
    position: absolute;
    top: 3px;
    left: 3px;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #D8C7F3;
    background-color: var(--point1);
    z-index: -1;
}

.side > ul {
    padding: 15px 10px 10px;
    border: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    position: relative;
    top: -10px;
    font-size: .85em;
    z-index: -2;
    color: #D8C7F3;
    color: var(--point1);
    line-height: 2;
    cursor: default;
}

.side > ul a {
    color: #D8C7F3;
    color: var(--point1);
}

.side > ul a:hover {
    color: #B799E9;
    color: var(--point3);
}

.side > ul > li {
    overflow: hidden;
}

.side > ul > li a,
.side.counter li {
    display: list-item;
    list-style: inside circle;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side > ul > li .cnt,
.side.counter li span {
    float: right;
}

.side.myo-side-thum .item a {
    display: block;
}

.side.myo-side-thum ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 20px;
}

.side.myo-side-thum .item {
    margin: 0 4% 4% 0;
    width: calc((100% - 4%) / 2);
    display: block;
    transition: .4s;
    border: 1px solid;
}

.side.myo-side-thum .item:nth-child(2n) {
    margin-right: 0 !important;
}

.side.myo-side-thum .item img {
    width: 100%;
}

.side.myo-side-thum .item .thumbox + .info {
    display: none;
}

.side.myo-side-thum .item:hover {
    opacity: .5;
}

.side ul:after {
    content: '';
    clear: both;
    display: block;
}

.side .archive ul {
    color: #B799E9;
    color: var(--point3);
}

.side .tag a {
    margin: 0 5px 5px 0;
    display: inline-block;
}

.side.counter .today {
    color: #B799E9;
    color: var(--point3);
}

/* 사이드바 달력 */
#side-top .calendar {
    width: 200px;
    margin: 0 0 50px auto;
}

.calendar {
    font-size: 0.6em;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
}

.calendar table thead tr th {
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #D8C7F3;
    border-color: var(--point1);
    color: #D8C7F3;
    color: var(--point1);
}

.calendar table th,
table td {
    width: 28px;
    height: 28px;
}

/* 달력 월 표시 */
.cal_month {
    margin-bottom: 10px;
    cursor: default;
    padding: 0px 8px;
    font-family: 'Shrikhand', 'Binggrae-Bold', cursive;
}

.cal_month .prev {
    float: left;
    color: #D8C7F3;
    color: var(--point1);
}

.cal_month .next {
    float: right;
    color: #D8C7F3;
    color: var(--point1);
}

.cal_month .month {
    color: #B799E9;
    color: var(--point3);
}

/* 달력 요일 표시(th 영역) */
.cal_week1 {
    padding: 2px 0 0;
}

/* 달력 일요일 표시(th 영역) */
.calendar table thead tr th.cal_week2 {
    color: #B799E9;
    color: var(--point3);
    padding: 2px 0 0;
}

/* 달력 Day(td 영역) */
.cal_day {
    text-align: center;
    cursor: default;
    padding: 0 !important;
    color: #D8C7F3;
    color: var(--point1);
}

/* 달력 Day, 일요일 (td 영역) */
.cal_day_sunday {
    color: #B799E9;
    color: var(--point3);
}

.cal_day_sunday a {
    color: #D8C7F3;
    color: var(--point1);
}

/* 달력 지난 달 날짜 표시(td) */
.cal_day1 {}

/* 달력 다음 달 날짜 표시(td) */
.cal_day2 {}

/* 달력 이번 달 날짜 표시(td) */
.cal_day3 {}

/* 달력 오늘 날짜 표시(td) */
.cal_day4 {
    color: #B8F8BD !important;
    color: var(--point4) !important;
    position: relative;
    z-index: 1;
}

/* 달력 글쓴 날 링크 스타일 */
a.cal_click {
    position: relative;
    width: 100%;
}

a.cal_click:link:after,
a.cal_click:visited:after {
    background-color: #FFF29F;
    background-color: var(--point2);
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 100%;
    opacity: 0.5;
}

a.cal_click:hover {
    color: #D8C7F3 !important;
    color: var(--point1) !important;
}

/* 탑버튼 */
a.top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    font-size: 1.5rem;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: #D8C7F3;
    background-color: var(--point1);
    border-radius: 100%;
    color: #FFF29F;
    color: var(--point2);
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

a.top:hover {
    color: #B799E9;
    color: var(--point3);
}

.holo a.top {
    background-image: url(./images/holo.jpg) !important;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-name: fluid;
    background-size: 500%;
}

/* 홀로그램 */
.hologram,
.holo .text-item b,
.holo figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page.holo figure[data-ke-type='opengraph'] div.og-text p.og-title,
.holo figure.fileblock a .name,
#tt-body-page.holo figure.fileblock a .name,
.holo .pagination a .selected,
.holo .pass input[required] + label:before,
.holo a.cal_click,
.holo #myo_bbs .item .title,
.holo #myo_web .item .title,
.holo .blogmenu a,
.holo .cate a,
.holo a.link_item,
.holo #header .search,
.holo #header .search button i,
.holo .side > p.title span,
.holo #tagcloud .title,
.holo .morebox > .title,
.holo #c-slider .info .title,
.holo .sns a {
    background-image: url(./images/holo.jpg) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-name: fluid;
    background-size: 500%;
    position: relative;
    text-shadow: none !important;
}

@keyframes bg {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 10000px;
    }
}

.hologram:before,
.holo #tagcloud .title:before {
    text-shadow: 4px 2px 1px #B799E9, 2px 2px 10px #D8C7F3;
    text-shadow: 4px 2px 1px var(--point3), 2px 2px 10px var(--point1);
    content: attr(data-text);
    position: absolute;
    display: inline;
    z-index: -10;
    top: auto !important;
    left: auto !important;
}

@keyframes fluid {
    from {
        background-position: top;
    }

    to {
        background-position: bottom;
    }
}

/* 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 {
    font-size: 8px;
    font-family: 'Meddon', cursive;
    text-align: center;
    margin-top: 70px;
}

.copy a {
    color: #D8C7F3;
    color: var(--point1);
}

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

    #content,
    #footer {
        padding-left: 320px;
    }
}

@media screen and (max-width: 768px) {
    .copy {
        margin: 5vh;
        position: static;
        text-align: center;
    }
}

/* 모바일 영역 */
@media screen and (min-width: 769px) {
    body:not(#tt-body-page) #article.n2 {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    body:not(#tt-body-page) #article.n2 .post:nth-child(2) {
        border-top: 2px dashed;
        border-color: #D8C7F3;
        border-color: var(--point1);
        margin-top: 70px;
    }

    body:not(#tt-body-page) #article.n2 .post {
        width: calc((100% - 2%) / 2);
        margin-right: 2%;
        border-bottom: 2px dashed;
        border-color: #D8C7F3;
        border-color: var(--point1);
    }

    body:not(#tt-body-page) #article.n2 .post:nth-child(2n) {
        margin-right: 0;
    }

    body:not(#tt-body-page) :not(.myoskin) + #article.n2 .post:nth-child(2) {
        margin-top: 0;
        border-top: 0;
        padding-top: 0;
    }

    #article.n2 .post .clip:before {
        font-size: 5em;
    }

    .m {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    html {
        min-height: 100vh;
    }

    body {
        background-image: none;
    }

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

    #container {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        margin: 0;
        padding: 20px !important;
    }

    #header {
        position: static;
        padding: 20px 0;
    }

    #header .blog-title > a > span {
        font-size: 2rem;
    }

    #header .blog-title a span:before {
        top: 2px !important;
        left: 2px !important;
    }

    #side-top {
        display: none;
    }

    #content {
        padding-top: 10px;
    }

    .clip:before {
        font-size: 3em;
    }

    #myo_gal.n4 .item,
    #myo_gal.n5 .item {
        width: calc((100% - 3%) / 2);
        margin: 0 3% 3% 0 !important;
    }

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

    #myo_web .item {
        padding: 0;
    }

    #myo_web .item a {
        display: block;
    }

    #myo_web .item .thumbnail {
        border: 0;
        border-bottom: 1px solid;
        border-color: #D8C7F3;
        border-color: var(--point1);
    }

    #myo_web .item .thumbox img {
        height: 22vh;
        -o-object-fit: cover;
        object-fit: cover;
    }

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

    #myo_web .item .info > div {
        padding-right: 20px;
        -webkit-flex: 0 0 40%;
        flex: 0 0 40%;
    }

    #myo_web .item .text {
        padding: 0;
    }

    figure.fileblock a,
    #tt-body-page figure.fileblock a,
    figure[data-ke-type='opengraph'] a,
    #tt-body-page figure[data-ke-type='opengraph'] a {
        width: 100%;
    }

    .titlebox p:first-child {
        padding-top: 35px;
        padding-top: var(--line);
    }

    .titlebox .title span {
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
    }

    figure.imageblock.floatRight,
    figure.imageblock.floatleft {
        float: none;
        margin: 0;
    }

    figure.imageblock.floatRight img,
    figure.imageblock.floatleft img {
        width: 100%;
    }

    .write .inputbox .input {
        -webkit-flex: 0 0 70%;
        flex: 0 0 70%;
        width: 70%;
    }

    .top {
        right: 15px;
        bottom: 15px;
        width: 30px;
        height: 30px;
        line-height: 32px;
        font-size: 1.4rem;
        position: fixed;
        display: none;
    }

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

    .page_cover.open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #FFF;
        background-color: var(--bg);
        opacity: 0.8;
        z-index: 999 !important;
        margin: 0 !important;
    }

    .side-wrap #side {
        display: none;
    }

    #aside .scroll {
        padding: 20px;
    }

    .btn {
        position: fixed;
        top: 37px;
        right: 25px;
        width: 30px;
        height: 30px;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        align-items: center;
        z-index: 9999999999999999999999;
    }

    .btn.open {
        background-color: rgba(216, 199, 243, .5);
        background-color: rgba(var(--point1-rgb), .5);
        border: 1px solid;
        border-color: #D8C7F3;
        border-color: var(--point1);
    }

    .btn > div {
        position: relative;
        width: 17px;
        height: 17px;
    }

    .btn span {
        position: absolute;
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        display: block;
        background-color: #B799E9;
        background-color: var(--point3);
        transition: .5s;
    }

    .btn span:first-child {
        top: 3px;
    }

    .btn span:last-child {
        top: 14px;
    }

    .btn:hover {
        cursor: pointer;
    }

    .btn.open span {
        opacity: 0;
        top: 50%;
    }

    .btn.open span:first-child {
        opacity: 1;
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }

    .btn.open span:last-child {
        opacity: 1;
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }

    #header .catebox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #FFF;
        background-color: var(--bg);
        overflow: hidden;
        display: none;
        z-index: 999;
    }

    #header .catebox .scroll {
        width: calc(100% + 5px);
        height: 100%;
        overflow-y: scroll;
        padding: 20px 60px 20px 20px;
    }

    #header .catebox .blog-title {
        padding: 20px 0;
    }

    #header .catebox .scroll .cate-wrap {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-flex-grow: 1;flex-grow: 1;
    }

    .tt_category,
    .category_list {
        display: block;
        width: 100%;
    }

    .category_list > li.mc .link_item:after {
        opacity: 1;
        padding: 0;
    }

    .category_list > li.mc .link_item:after,
    #header .search button {
        float: right;
    }

    .category_list > li.mc:hover .link_item:after {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        padding: 0;
        margin: 0;
    }

    .sub_category_list {
        padding: 10px 0;
        position: static;
    }

    .profile .lst .name img[alt=BlogIcon],
    .profile .lst .nopro {
        width: 40px;
        height: 40px;
    }

    .profile .lst > ul > li,
    .profile .lst .reply > li {
        padding-left: 50px;
        max-width: calc(100% - 50px);
    }

    .profile .lst li.rp_admin,
    .profile .lst li.guest_admin {
        padding: 0 50px 0 0;
    }
}

@media screen and (max-width: 375px) {
    .write .inputbox .input {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .write .inputbox .input input {
        max-width: calc(100% - 50px);
    }

    .write .inputbox button {
        height: 70px;
    }
}
