@charset "utf-8";

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

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

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

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

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

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

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

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

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

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

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

/* 마우스 드래그 블럭 */
::selection {
    color: #fff;
    color: var(--conbg);
    background: #8393BB;
    background: var(--point);
}

::-moz-selection {
    color: #fff;
    color: var(--conbg);
    background: #8393BB;
    background: var(--point);
}

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

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

/* 전체 박스 */
#container {
    margin: auto;
    padding: 10vh 0 5vh;
}

.con-bg {
    border-radius: 20px;
    padding: 15px;
    background-color: #fff;
    background-color: var(--conbg);
    margin-bottom: 10px;
}

.mbtn {
    display: none;
}

/* 헤더 */
#header {
    position: relative;
}

#header .con-bg {
    min-height: 145px;
}

#header .left {
    position: absolute;
    top: 0;
    z-index: 9;
}

#header .right {
    padding-left: 150px;
}

/* 검색창 */
#header .search {
    text-align: right;
    padding-left: 160px;
    margin-bottom: 10px;
}

#header .search span {
    background-color: #fff;
    background-color: var(--conbg);
    border-radius: 20px;
    overflow: hidden;
    line-height: 1;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    max-width: 170px;
}

#header .search input {
    padding: 5px 10px;
    line-height: 1;
    height: 24px;
    width: calc(100% - 35px);
}

#header .search button {
    padding: 5px 10px;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    line-height: 1;
    height: 24px;
    vertical-align: top;
}

/* 로고 */
#header .logo {
    display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 20px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

#header .logo:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8393BB;
    background-color: var(--point);
    opacity: 0;
    transition: .4s;
}

#header .logo:hover:after {
    opacity: 0.25;
}

/* 타이틀 */
#header .title {
    font-size: 1.5rem;
    font-weight: bold;
}

#header .title a {}

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

#header .intro {
    font-size: .9rem;
    line-height: 1.4;
    min-height: 47px;
}

/* 카테고리 */
.btnbox {
    background-color: #8393BB;
    background-color: var(--point);
    border-radius: 20px;
    overflow: hidden;
    transition: .5s;
}

.cate-btn {
    text-align: center;
    color: #fff;
    color: var(--conbg);
    padding: 5px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: .5s;
    font-weight: bold;
}

.cate-btn:hover {
    letter-spacing: 4px;
}

.catebox {
    text-align: center;
    display: none;
    padding-bottom: 5px;
    line-height: 2;
}

.category_list > li,
.catebox .cate {
    transition: background .5s;
}

.blogmenu a,
.cate a,
.link_item,
.link_sub_item,
.link_item .new {
    color: #fff;
    color: var(--conbg);
    transition: .5s;
    cursor: pointer;
}

.sub_category_list {
    padding-bottom: 5px;
    font-size: .9rem
}

.blogmenu li:hover,
.category_list > li:hover,
.catebox .cate:hover {
    background-color: #fff;
    background-color: var(--conbg);
}

.category_list > li:hover .link_item {
    font-weight: bold;
}

.blogmenu li:hover a,
.category_list > li:hover .link_item,
.category_list > li:hover .link_item .new,
.category_list > li:hover .link_sub_item,
.cate:hover a {
    color: #8393BB;
    color: var(--point);
}

.blogmenu a:hover,
.cate a:hover,
.link_item:hover,
.link_sub_item:hover {
    letter-spacing: 2px;
}

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

.link_tit,
.sub_category_list {
    display: none;
}

/* sns */
.sns {
    padding-top: 11px;
    cursor: default;
}

.sns a {
    letter-spacing: 5px;
    color: #8393BB;
    color: var(--point);
}

.sns a:hover {
    color: inherit;
}

/* 메인 영역 */
#content {}

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

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

/* 목록 없음 */
.myoskin .empty {
    margin: 0;
    width: 100%;
}

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

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

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

.myoskin .item .thumbox .titlecmt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    color: #fff;
    color: var(--conbg);
    opacity: 0;
    transition: opacity .5s;
    z-index: 1;
}

.myoskin .item.you .thumbox .titlecmt {
    display: none;
}

.myoskin .item:not(.you) .thumbox:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8393BB;
    background-color: var(--point);
    opacity: 0;
    transition: .4s;
    border-radius: 20px;
}

.myoskin .item:hover .thumbox .titlecmt {
    opacity: 1
}

.myoskin .item:hover .thumbox:after {
    opacity: 0.25;
}

.myoskin .item.you .framebox {
    padding-bottom: 100%;
}

.myoskin .item .thumbox .titlecmt i {
    margin-right: 10px;
}

.myoskin .item .cnt:not(:empty):before {
    content: '+';
    margin-right: 5px;
}

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

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

.myoskin .item .title.protected:after {
    content: '\f023';
    font-family: 'fontAwesome';
    padding-left: 3px;
}

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

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

#myo_gal .item {
    position: relative;
}

#myo_gal .item .thumbox {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

#myo_gal .item .cnt:not(:empty):before {
    content: '\f0e5';
    font-family: 'fontAwesome';
    font-size: .8em;
}

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

#myo_gal .item .title {
    font-weight: bold;
    font-size: 1.3rem;
    color: #8393BB;
    color: var(--point);
}

#myo_gal .item .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
    margin-top: 5px;
    word-break: keep-all;
}

#myo_gal .item .cate,
#myo_gal .item .date,
#myo_gal .item .info .title-cnt .cnt,
#myo_gal .item .text:empty {
    display: none;
}

/* 갤러리형 1열 */
#myo_gal.n1 .item {
    width: 100%;
    margin: 0 0 10px;
}

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

/* 갤러리형 2열 */
#myo_gal.n2 .item {
    margin: 0 10px 10px 0;
    width: calc((100% - 10px) /2);
}

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

#myo_gal.n2 .item:nth-last-child(-n+2):nth-child(2n+1),
#myo_gal.n2 .item:nth-last-child(-n+1):nth-child(2n+2) {
    margin-bottom: 0;
}

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

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

#myo_gal.n3 .item:nth-last-child(-n+3):nth-child(3n+1),
#myo_gal.n3 .item:nth-last-child(-n+2):nth-child(3n+2),
#myo_gal.n3 .item:nth-last-child(-n+1):nth-child(3n+3) {
    margin-bottom: 0;
}

#myo_gal.n3 .item .thumbox .titlecmt {
    font-size: 1rem;
}

#myo_gal.n3 .item .title-cnt {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

#myo_gal.n3 .item .info {
    padding-top: 10px;
}

#myo_gal.n3 .item .title {
    font-size: 1rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
}

#myo_gal.n3 .item .text {
    display: none;
}

/* 갤러리형 masonry */
body.masonry #myo_gal.move .item {
    margin: 0 0 10px !important;
}

body.masonry #myo_gal.move .sizer {
    width: 10px;
}

/* 갤러리형 형태 변경 */
body.masonry #myo_gal.form {
    padding-bottom: 5px;
}

#myo_gal.form {
    padding: 15px;
    background-color: #fff;
    background-color: var(--conbg);
    border-radius: 20px;
}

#myo_gal.form .item {
    padding: 0;
    background-color: transparent;
}

#myo_gal.form .item:not(:last-child) {
    margin-bottom: 10px;
}

#myo_gal.form .item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    color: var(--conbg);
    opacity: 0;
    z-index: 1;
    transition: .5s;
    padding: 10px;
    text-align: center;
}

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

#myo_gal.form .item .title {
    color: #fff;
    color: var(--conbg);
}

#myo_gal.form.n2 .item .title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 52px;
}

#myo_gal.form.n3 .item .title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 60px;
}

#myo_gal.form .item .cnt {
    position: absolute;
    bottom: 5px;
    right: 10px;
    background-color: var(--point);
    padding: 0 5px;
    border-radius: 10px;
    font-size: .8em;
}

/* 목록형 */
#myo_bbs .item {
    padding: 0;
    width: 100%;
    margin: 0 0 10px;
}

#myo_bbs .item a {
    padding: 15px;
}

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

#myo_bbs .item .info {
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#myo_bbs .item .title-cnt {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding-right: 15px;
}

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

#myo_bbs .item .title:before {
    content: '\f15c';
    width: 20px;
    font-family: fontAwesome;
    display: inline-block;
    color: #8393BB;
    color: var(--point);
}

#myo_bbs .item .title.protected:before {
    content: '\f023';
}

#myo_bbs .item .title.protected:after {
    display: none;
}

#myo_bbs .item .cnt,
#myo_bbs .item .date {
    color: #8393BB;
    color: var(--point);
}

#myo_bbs .item .cnt {
    padding-left: 5px;
    font-size: .8em;
}

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

/* 웹진형 */
#myo_web .item {
    min-height: 160px;
    width: 100%;
    margin: 0 0 10px;
}

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

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

#myo_web .item .thumbox {
    flex: 0 0 130px;
    width: 130px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#myo_web .item .cnt:not(:empty):before {
    content: '\f0e5';
    font-family: 'fontAwesome';
    font-size: .8em;
}

#myo_web .item .info {
    padding-right: 15px;
    flex-grow: 1;
}

#myo_web .item .title {
    font-size: 1.3rem;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 52px;
    color: #8393BB;
    color: var(--point);
}

#myo_web .item .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 77px;
    max-height: 77px;
    margin-bottom: 5px;
}

#myo_web .item .date,
#myo_web .item .cate {
    color: #8393BB;
    color: var(--point);
    display: inline-block;
    vertical-align: middle;
}

#myo_web .item .cate:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 8px;
    background-color: #8393BB;
    background-color: var(--point);
    margin: 0 5px;
}

#myo_web .item .title-cnt .cnt {
    display: none;
}

body.galR #myo_web .item .thumbnail {
    padding-top: 100%;
}

body.galR #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%);
}

body.galR #myo_web .item .thumbnail .centered img,
body.galR #myo_web .item.you .framebox iframe {
    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%);
}

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

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

/* 보호글 */
.pass {
    width: 100%;
    height: 200px;
    -ms-display: flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
}

.pass .protected_form {
    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;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    border-radius: 20px;
}

.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;
    color: #8393BB;
    color: var(--point);
}

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

/* ---------------
    본문 영역
--------------- */
body:not(#tt-body-page) #myo_gal.form + #article .post:first-child {
    margin-top: 30px;
}

body:not(#tt-body-page) #article .post:first-child {
    margin-top: 10px;
}

body:not(#tt-body-page) #article .post:not(:last-child) {
    margin-bottom: 30px;
}

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

.titlebox .cate {
    font-size: .8rem;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    display: inline-block;
    border-radius: 10px;
    padding: 0 7px;
    margin-bottom: 10px;
}

.titlebox .title {
    font-size: 1.3rem;
    color: #8393BB;
    color: var(--point);
    margin-bottom: 5px;
}

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

.titlebox .admin a:after {
    content: '';
    display: inline-block;
    height: 7px;
    width: 1px;
    background-color: #8393BB;
    background-color: var(--point);
    margin: 0 5px;
}

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

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

.text-item u:hover {
    color: #fff;
    color: var(--conbg);
    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: #8393BB !important;
    border-color: var(--point) !important;
    background-image: none;
}

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

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

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

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

.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: #5D5D5D;
    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%;
    border-radius: 20px;
    overflow: hidden;
}

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

.text-item p a,
.text-item span a,
.text-item .tx-link,
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: #8393BB;
    color: var(--point);
    transition: .5s;
}

.text-item p a:hover,
.text-item span a:hover,
.text-item .tx-link:hover,
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 {
    letter-spacing: 1px;
}

.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: .5s;
}

.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: #8393BB;
    border-color: var(--point);
}

figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    height: 100px;
    border: 1px solid;
    border-color: #8393BB;
    border-color: var(--point);
    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: #8393BB;
    color: var(--point);
    margin-bottom: 0 !important;
    transition: .5s;
}

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: #5D5D5D;
    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: #5D5D5D;
    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: #5D5D5D;
    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: #8393BB;
    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;
    line-height: inherit;
    color: inherit;
}

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
    line-height: inherit;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    border-radius: 15px;
    padding: 10px;
    margin: 5px 0 10px;
    border: 0;
}

.text-item .moreless_content .more-txt a:before,
.text-item .moreless-content a:before,
div[data-ke-type='moreLess'] .moreless-content a:before,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content a:before,
.lst .rp_admin .text a:before,
.lst .guest_admin .text a:before {
    background-color: #fff;
    background-color: var(--conbg);
    color: #8393BB;
    color: var(--point);
}

.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,
.lst .rp_admin .text a,
.lst .guest_admin .text a {
    color: #fff;
    color: var(--conbg);
}

/* 이미지 슬라이드 */
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: #8393BB;
    background-color: var(--point);
    border-radius: 15px;
    border: 0;
}

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: #fff;
    color: var(--conbg);
    transition: .5s;
}

figure.fileblock:hover .name,
#tt-body-page figure.fileblock:hover .name {
    letter-spacing: 1px;
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
    color: #fff;
    color: var(--conbg);
    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;
    margin-top: 25px;
    padding: 0;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    width: auto;
    height: 30px;
    line-height: inherit;
    padding: 0 10px;
    border: 1px solid;
    border-color: #8393BB;
    border-color: var(--point);
}

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 .5s;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;    
    color: #8393BB;
    color: var(--point);
}

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: .5s;
    color: #8393BB !important;
    color: var(--point) !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: #E9E9E9 !important;
    color: var(--bg) !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: #8393BB;
    color: var(--point);
    transition: .5s;
}

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

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

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

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

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

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

.tags a {
    color: #fff;
    color: var(--conbg);
    background-color: #8393BB;
    background-color: var(--point);
    border: 1px solid #8393BB;
    border: 1px solid var(--point);
    padding: 3px 6px;
    border-radius: 10px;
    transition: background .5s;
    margin-bottom: 2px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px 2px 0;
    line-height: 1;
}

.tags a:hover {
    color: #8393BB;
    color: var(--point);
    background-color: transparent;
}

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

.morebox {
    overflow: hidden;
}

.morebox > .title {
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.morebox > .title span {
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    display: inline-block;
    padding: 0 7px;
    border-radius: 10px;
}

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

.morebox a {
    display: block;
}

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

#article #myo_gal .item {
    width: calc((100% - 30px) / 4);
    margin-right: 10px;
}

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

#article #myo_gal .item .thumbox:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: #8393BB;
    background-color: var(--point);
    opacity: 0;
    transition: .5s;
}

#article #myo_gal .item:hover .thumbox:after {
    opacity: 0.25;
}

#article #myo_gal .item .info {
    padding-top: 10px;
}

#article #myo_gal .item .title {
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 40px;
    font-size: 1rem;
}

/* 카테고리 글 더보기 목록형 */
#article #myo_bbs .item:not(:last-child) {
    margin-bottom: 10px;
}

#article #myo_bbs .item .title {
    padding-right: 10px;
}

/* 댓글 오픈 */
.opencmt {
    font-size: 1.5rem;
    margin-top: 25px;
}

.opencmt span {
    color: #8393BB;
    color: var(--point);
    /* padding-left: 5px; */
}

.opencmt .cnt:not(:empty):before {
    content: '+';
    margin-right: 5px;
}

/* 댓글, 방명록 작성 */
.write > div {
    display: flex;
    justify-content: space-between
}

.write textarea {
    flex-grow: 1;
    color: #fff;
    color: var(--conbg);
    background-color: #8393BB;
    background-color: var(--point);
    border-radius: 15px;
    height: 100px;
    min-height: 100px;
    padding: 7px;
    vertical-align: top;
    transition: height .5s;
}

.write textarea:focus {
    height: 130px;
}

.write button {
    margin-left: 10px;
    width: 23%;
    min-width: 50px;
    max-width: 100px;
    height: 100px;
    background-color: #8393BB;
    background-color: var(--point);
    border-radius: 15px;
    float: right;
    color: #fff;
    color: var(--conbg);
    transition: .5s;
}

.write button:hover {
    color: inherit;
}

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

.write button,
.write .inputbox input,
.write .secret {
    padding: 5px;
}

.write .inputbox input,
.write .secret {
    margin-right: 5px;
}

.write .inputbox input {
    max-width: 30%;
    width: 100%;
}

.write .secret {
    position: relative;
    height: 30px;
    padding: 0;
}

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

.write input[name="secret"]:after {
    content: "\f13e";
    font-family: 'fontAwesome';
    transition: .4s;
    visibility: visible;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.lst a {
    color: #8393BB;
    color: var(--point);
}

.lst a:hover {
    color: inherit;
}

.lst .con-bg:only-child,
.lst .con-bg:last-child {
    margin-bottom: 0;
}

.lst li {
    position: relative;
}

.lst .name {
    font-weight: bold;
    font-size: 1.1rem;
}

.lst .date {
    float: right;
    font-size: .8rem;
    color: #8393BB;
    color: var(--point);
}

.lst .date a {
    float: left;
    margin-right: 10px;
    visibility: hidden;
}

.lst .date a:after {
    content: '\f05e';
    font-family: fontAwesome;
    visibility: visible;
}

.lst .text {
    margin: 10px 0;
    word-break: keep-all;
    word-wrap: break-word;
}

.lst .admin a {
    margin-right: 15px;
}

.lst .admin a span {
    font-size: .8rem;
}

.lst .reply {
    margin-top: 30px;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    padding: 10px;
    border-radius: 20px;
}

.lst .rp_admin .text a,
.lst .guest_admin .text a {
    transition: .5s;
}

.lst .rp_admin .text a:hover,
.lst .guest_admin .text a:hover {
    letter-spacing: 1px;
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before,
.lst .rp_secret .name:before,
.lst .guest_secret .name:before,
.lst .hiddenComment .name:before {
    font-family: 'fontAwesome';
    margin-right: 3px;
}

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

.lst .rp_admin .name:before,
.lst .guest_admin .name:before {
    content: '\f005';
    color: #8393BB;
    color: var(--point);
}

.lst .pro,
.lst img[alt=BlogIcon] {
    display: none;
}

/* 프로필 사진 */
.profile .lst .pro {
    display: inline-block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 20px;
}

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

/* 공지 */
.noti a {
    color: #8393BB;
    color: var(--point);
}

.noti a:hover {
    color: inherit;
}

.noti .title {
    color: #8393BB;
    color: var(--point);
    font-size: 1.3rem;
    font-weight: bold;
}

.noti .text-item {
    margin-top: 7px;
}

#tt-body-index .container_postbtn {
    margin: 20px 0 0;
}

/* 태그 클라우드 */
#tagcloud .title {
    font-size: 1.3em;
    font-weight: bold;
    color: #8393BB;
    color: var(--point);
    margin-bottom: 10px;
}

#tagcloud li {
    display: inline-block;
    margin: 0 1px 5px 0;
}

#tagcloud a {
    padding: 3px 5px;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    border-radius: 7px;
    border: 1px solid;
    border-color: #8393BB;
    border-color: var(--point);
    transition: .4s;
}

#tagcloud a:hover {
    background-color: transparent;
    color: #8393BB;
    color: var(--point);
}

/* 페이지네이션 */
.pagination {
    cursor: default;
    text-align: center;
    margin-top: 30px;
}

.pagination a span,
.pagination .prev,
.pagination .next {
    margin: 0 3px;
    display: inline-block;
    background-color: #8393BB;
    background-color: var(--point);
    border-radius: 30px;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    line-height: 1;
    font-size: 6px;
    transition: .5s;
    color: transparent;
}

.pagination a:hover span,
.pagination .prev,
.pagination .next {
    background-color: #fff;
    background-color: var(--conbg);
}

.pagination .prev,
.pagination .next {
    margin: 0 10px;
}

.pagination .prev:hover,
.pagination .next:hover {
    background-color: #8393BB;
    background-color: var(--point);
}

.pagination a:hover span,
.pagination .selected {
    width: 24px;
}

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

.pagination .more-btn {
    padding: 10px 15px;
    display: inline-block;
    border: 1px solid #8393BB;
    border: 1px solid var(--point);
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    line-height: 1;
    border-radius: 20px;
    letter-spacing: 2px;
    transition: .5s;
}

.pagination .more-btn:hover {
    background-color: transparent;
    color: #8393BB;
    color: var(--point);
}

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

/* 부드러운 화면 전환 */
.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: #8393BB;
    color: var(--point);
    margin-left: 5px;
    font-size: .8em;
    animation: animated-cursor 1500ms steps(30, end) infinite;
    font-weight: normal;
    vertical-align: middle;
    letter-spacing: 0 !important;
}

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

    to {
        opacity: 0;
    }
}

/* 탑버튼 */
.top {
    position: fixed;
    right: 15px;
    bottom: 50px;
    font-size: 1.8rem;
    color: #fff;
    color: var(--conbg);
    background-color: #8393BB;
    background-color: var(--point);
    padding: 5px;
    border-radius: 13px;
    display: none;
    line-height: 1;
}

.top:hover {
    color: inherit;
}

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

.copy a {
    color: #8393BB;
    color: var(--point);
}

/* ---------------
    커버 영역
--------------- */
#cover {
    display: flex;
    flex-wrap: wrap;
}

#cover section {
    width: 100%;
    overflow: hidden;
    margin: 0;
}

#cover section:not(:last-child) {
    margin-bottom: 10px;
}

#cover section > .con-bg {
    margin: 0;
}

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

#cover section > .title {
    text-align: center;
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

#cover section > .title:empty {
    display: none;
}

#cover section:not(#c-slider3) #myo_gal .item .thumbox .titlecmt {
    font-size: inherit;
}

#cover section:not(#c-slider3) #myo_gal .item .info .title {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 슬라이드 공통 */
section:not(#c-slider) .slick-slide {
    margin: 0 5px;
}

section:not(#c-slider) .slick-list {
    margin: 0 -5px;
}

.slick-prev,
.slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    outline: none;
    z-index: 9999999;
    opacity: 0;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    color: #8393BB;
    color: var(--point);
    transition: .4s;
    width: 22px;
    height: 22px;
    overflow: hidden;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'themify';
    font-size: .8rem;
    display: inline-block;
    transition: .4s;
    color: #fff;
    color: var(--conbg);
}

.slick-prev:after,
.slick-next:after {
    width: 22px;
    height: 22px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #8393BB;
    background-color: var(--point);
    opacity: .5;
}

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

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

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

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

.slick-dots {
    text-align: center;
}

.slick-dots li {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 5px;
}

.slick-dots li button {
    text-indent: -9999px;
    padding: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    background: var(--conbg);
    border-radius: 10px;
    opacity: .5;
    transition: .5s;
    cursor: pointer;
}

.slick-dots li.slick-active button {
    background-color: #8393BB !important;
    background-color: var(--point) !important;
    cursor: pointer;
    background: #8393BB;
    background: var(--point);
    opacity: 1;
    width: 20px;
}

.slick-dots li button:hover {
    opacity: 1;
    width: 20px;
}

/* 슬라이드1 */
#c-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#c-slider > ul {
    flex-grow: 1;
    height: 50vh;
    max-height: 500px;
}

#c-slider > ul div {
    height: 100%;
}

#c-slider > div {
    position: relative;
    overflow: hidden;
}

#c-slider .slick-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity .4s;
    opacity: 0;
}

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

#c-slider .item {
    vertical-align: top;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
}

#c-slider .item .thumbox {
    width: 100%;
    height: 100%;
    transition: opacity .4s;
}

#c-slider .thum,
#c-slider .noimg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

#c-slider .info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: .4s;
}

#c-slider .item.you .info {
    opacity: 0;
}

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

#c-slider .item:not(.you) .info:after,
#cover #myo_gal.over .item .info:after {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8393BB;
    background-color: var(--point);
    opacity: 0.25;
    position: absolute;
    z-index: -1;
}

#c-slider .info .title {
    font-size: 1.3rem;
    line-height: 1;
    color: #fff;
    color: var(--conbg);
    width: 100%;
}

/* 커버 - 슬라이더2, 슬라이더3, 공지 */
#c-slider2 #myo_gal .item {
    margin-bottom: 10px !important;
    vertical-align: top;
}

#c-slider2 #myo_gal .slick-slide > div:last-child .item {
    margin-bottom: 0 !important;
}

#cover #c-slider2 #myo_gal .item .title,
#cover #c-slider3 #myo_gal .item .title {
    font-size: inherit;
    text-align: center;
}

#c-slider3 .slick-dots,
#c-notice .slick-dots {
    margin-top: 10px;
}

#c-slider3 .slick-dots li button,
#c-notice .slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 10px;
    height: 10px;
    background: #8393BB;
    background: var(--point);
}

#c-slider3 .slick-dots li.slick-active button,
#c-slider3 .slick-dots li button:hover,
#c-notice .slick-dots li.slick-active button,
#c-notice .slick-dots li button:hover {
    width: 20px;
}

#c-slider3 .slick-dots li button:hover,
#c-notice .slick-dots li button:hover {
    background-color: #5D5D5D;
    background-color: var(--text);
}

/* 커버 - 슬라이더3, 갤러리형2  */
#cover #myo_gal.over .item,
#cover #c-ins .item {
    vertical-align: top;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

#c-slider3 .slick-prev,
#c-slider3 .slick-next {
    display: none !important;
}

#cover #myo_gal.over .item .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: #fff;
    color: var(--conbg);
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

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

#cover #myo_gal.over .item .title {
    color: #fff;
    color: var(--conbg);
}

#cover #myo_gal.over .item .cnt {
    position: absolute;
    bottom: 5px;
    right: 10px;
    background-color: #8393BB;
    background-color: var(--point);
    padding: 0 5px;
    border-radius: 10px;
    font-size: .8em;
}

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

#c-notice .tab {
    border: 1px solid #8393BB;
    border: 1px solid var(--point);
    color: #8393BB;
    color: var(--point);
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: .5s;
    cursor: pointer;
    height: 24px;
}

#c-notice .tab.active {
    background-color: #8393BB;
    background-color: var(--point);
    color: #fff;
    color: var(--conbg);
    font-size: 1.1rem;
    font-weight: bold;
}

#c-notice .tab:nth-child(2) {
    float: right;
}

#c-notice .title {
    margin-bottom: 15px;
}

#c-notice .textbox img {
    margin-bottom: 15px;
    border-radius: 20px;
}

#c-notice .textbox a {
    color: #8393BB;
    color: var(--point);
    letter-spacing: 3px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    transition: .4s;
}

#c-notice .textbox a:hover {
    letter-spacing: 5px;
}

#c-notice .textbox a:not([href^='http']) {
    display: none;
}

#c-notice .c-twt {
    height: 40vh;
    max-height: 500px;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 20px;
}

#c-notice .c-twt::-webkit-scrollbar {
    background-color: #fff;
    background-color: var(--conbg);
}

#c-notice .slick-prev {
    left: 5px;
}

#c-notice .slick-next {
    right: 5px;
}

/* 커버 인스타그램 */
#c-ins #myo_gal .item .thumbnail {
    padding-top: 100%;
}

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

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

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

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

/* 모바일 영역 */
@media screen and (max-width: 425px) {
    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;
    }
	
    #content {
        flex: auto;
    }

    #header {
        z-index: 9999;
    }

    .mbtn {
        position: fixed;
        top: 15px;
        right: 15px;
        background-color: #8393BB;
        background-color: var(--point);
        color: #fff;
        color: var(--conbg);
        width: 34px;
        height: 34px;
        text-align: center;
        border-radius: 100%;
        z-index: 9;
    }

    .mbtn .linebox {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mbtn .line {
        margin: auto;
        display: block;
        width: 18px;
        height: 2px;
        background: #fff;
        background: var(--conbg);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .mbtn .line::before,
    .mbtn .line::after {
        display: block;
        position: absolute;
        content: "";
        z-index: -1;
        width: 18px;
        height: 2px;
        background: #fff;
        background: var(--conbg);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

    .mbtn .line::before {
        top: -5px;
    }

    .mbtn .line::after {
        top: 5px;
    }

    .mbtn.open .linebox .line {
        background: none;
    }

    .mbtn.open .linebox .line::before,
    .mbtn.open .linebox .line::after {
        top: 0;
    }

    .mbtn.open .linebox .line::before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .mbtn.open .linebox .line::after {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .catebox.scroll {
        position: fixed;
        width: 70%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #8393BB;
        background-color: var(--point);
        line-height: 2.5;
    }

    .catebox.scroll .scroll {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .catebox.scroll .blogmenu,
    .catebox.scroll .cate,
    .catebox.scroll .tt_category {
        width: 100%;
    }

    html.open {
        overflow: hidden;
    }

    .page_cover.open {
        background-color: #8393BB;
        background-color: var(--point);
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        top: 0;
        left: 0;
        opacity: 0.2;
    }

    #myo_gal.n2 .item .info,
    #myo_gal.form.n2 .item .info,
    #myo_gal.form.n3 .item .info {
        padding-top: 10px;
    }

    #myo_gal.n2 .item .title,
    #myo_gal.form.n2 .item .title,
    #myo_gal.form.n3 .item .title {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        max-height: 40px;
    }

    #myo_gal.form.n2 .item .text,
    #myo_gal.form.n3 .item .text {
        display: none;
    }

    #myo_gal.n3 .item,
    #article #myo_gal .item {
        margin: 0 10px 10px 0 !important;
        width: calc((100% - 10px) /2);
    }

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

    #myo_gal.n3 .item:nth-last-child(-n+2):nth-child(2n+1),
    #myo_gal.n3 .item:nth-last-child(-n+1):nth-child(2n+2),
    #article #myo_gal .item:nth-last-child(-n+2):nth-child(2n+1),
    #article #myo_gal .item:nth-last-child(-n+1):nth-child(2n+2) {
        margin-bottom: 0 !important;
    }

    .top {
        right: 13px;
        bottom: 10px;
    }

    .copy {
        margin-top: 20px;
        position: static;
        text-align: center;
        justify-content: center;
    }
}
