@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Archivo+Black|Meddon');
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

fieldset,
img {
    border: 0;
}

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

iframe,
embed {
    width: 100%;
}

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

table {
    border-spacing: 1px 0;
}

button {
    background-color: transparent;
    border: 0;
}

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

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

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

/* 배경 */
body {
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

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

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    color: var(--point);
    transition: .8s;
}

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

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

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

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

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

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

::-webkit-scrollbar-thumb {
    width: 5px;
    background-color: var(--scroll);
}

/* 마우스 드래그 블럭 */
::selection {
    color: var(--point);
    background-color: var(--text);
}

::-moz-selection {
    color: var(--point);
    background-color: var(--text);
}

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

u:hover {
    color: var(--point);
    background-size: 100% 100%;
}

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

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

/* 전체 박스 */
#container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 왼쪽 영역 */
#header {
    flex: 0 0 18%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* 본문 영역 */
#content {
    background-color: var(--con);
    position: relative;
    padding: 100px 30px;
    overflow: hidden;
    flex-grow: 1;
}

#content #main {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
}

#content .mainbox {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
}

#content .mainbox .inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
}

#content .mainbox .inner > div {
    width: 100%;
    overflow: hidden;
}

#myo_gal:after {
    display: block;
    clear: both;
    content: '';
    overflow: auto;
}

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

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

.myoskin .item:hover img {
    opacity: 0.6;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

.noimg {
    display: none !important;
}

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

.myoskin .item .info .titleCnt {
    display: flex;
    align-items: center;
}

.myoskin .item .info .title {
    font-weight: bold;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.myoskin .item .info .cnt {
    font-weight: normal;
    font-size: .8em;
    padding-left: 5px;
}

.myoskin .item .text {
    display: none;
}

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

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

#myo_gal .item a {
    display: block;
}

#myo_gal .item:hover img {
    opacity: 0.6;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}

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

#myo_gal .item .info {
    text-align: center;
}

#myo_gal .item .info .titleCnt {
    justify-content: center;
    padding: 0 10px;
}

#myo_gal .item .info .title {
    font-weight: bold;
    letter-spacing: 2px;
}

#myo_gal .item .info .date {
    font-size: .8em;
    display: none;
}

#myo_gal .item .info .cate {
    display: none;
}

/* 목록형 */
#myo_bbs .item {
    position: relative;
}

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

#myo_bbs .item .title,
#myo_bbs .item .date {
    display: inline-block;
    vertical-align: middle;
}

#myo_bbs .item .title {
    width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

#myo_bbs .item:hover .title:before {
    content: '\f004  ';
    font-family: fontAwesome;
    font-size: .8em;
}

#myo_bbs .item .date {
    font-size: .8em;
    float: right;
    line-height: 18px;
}

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

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

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

#myo_web .item .thumbox {
    flex: 0 0 28%;
}

#myo_web .item .info {
    flex-grow: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#myo_web .item .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 54px;
    color: var(--text);
    margin: 5px 0;
}

#myo_web .item .cate {
    display: none;
}

#myo_web .item .date {
    font-size: .8rem;
    color: var(--text);
}

/* 보호글 */
.pass {
    height: 40vh;
    -ms-display: flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.pass form {
    width: 200px;
    margin: auto;
}

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

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

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

.pass button:hover {
    color: var(--point);
}

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

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

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

/* 본문 타이틀 */
body:not(#tt-body-page) .myoskin + list_wrap .entry {
    padding-top: 30px;
}

body:not(#tt-body-page) .entry {
    padding: 30px 0;
    border-bottom: 1px solid;
}

body:not(#tt-body-page) .entry:first-child {
    border-top: 1px solid;
    margin-top: 30px;
}

.entry {
    width: 100%;
    overflow: hidden;
}

.titleWrap {
    margin-bottom: 30px;
}

.titleWrap .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.3em;
    font-weight: bold;
}

.titleWrap2 .date,
.titleWrap2 .admin {
    font-size: .8em;
    font-style: italic;
}

.titleWrap2 {
    margin: 30px 0;
}

.titleWrap2 .admin {
    margin-left: 5px;
}

.titleWrap2 .admin a {
    padding: 0 3px;
}

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

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

.tx-link.imgblock:before {
    display: none;
}

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

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

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

/* 링크 */
.article a {
    color: var(--point);
    transition: .4s;
}

.article p a:hover {
    color: var(--text);
}

.article a .imageblock img {
    transition: .4s;
}

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

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

figure[data-ke-type='opengraph'] a::before,
#tt-body-page figure[data-ke-type='opengraph'] a::before {
    left: 50px;
}

figure[data-ke-type='opengraph'] div.og-text {
    left: 101px;
    padding: 10px 10px 0 10px;
}

figure[data-ke-type='opengraph'] div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
    font-weight: bold;
    font-size: 1.2em;
    color: var(--text);
    margin-bottom: 0 !important;
    transition: .4s;
}

figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title,
#tt-body-page figure[data-ke-type='opengraph'] a:hover div.og-text p.og-title {
    color: 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: 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: var(--point);
    margin-bottom: 0 !important;
    font-size: inherit;
    bottom: 10px;
    font-family: inherit;
    position: static;
}

/* 아이프레임 */
.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 figcaption,
figure[data-ke-type='video'] figcaption {
    font-size: .8rem;
    color: var(--point);
}

/* 인용구 */
.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: '\f005 ';
    font-family: fontAwesome;
}

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;
    margin: 5px 0;
    padding-left: 10px;
    border-left: 4px double;
    font-style: italic;
}

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

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

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

.btn_more,
.btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
div[data-ke-type='moreLess'] .btn-toggle-moreless {
    display: block;
    font-size: inherit;
    font-family: inherit;
    color: var(--point);
    height: auto;
    transition: .4s;
}

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

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

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

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

.btn_less:last-child {
    border-top: 1px solid;
    border-color: var(--text);
    padding-top: 10px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.moreless_content,
.moreless-content,
div[data-ke-type='moreLess'] .moreless-content,
#tt-body-page div[data-ke-type='moreLess'] .moreless-content {
    padding: 10px;
    line-height: inherit;
    border: 1px solid;
    border-color: var(--text);
}

/* 이미지 슬라이드 */
figure.imageslideblock div.image-container {
    width: auto !important;
    max-width: 100%;
    max-height: none;
    min-width: auto;
    min-height: auto;
}

/* 파일 첨부 */
figure.fileblock,
#tt-body-page figure.fileblock {
    background-color: transparent;
    border: 1px solid;
    border-color: var(--text);
    z-index: 1;
}

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

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
    color: var(--point);
    font-size: 11px;
}

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


.article .imageblock > a > img {
    display: none;
}

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

/* 공감 */
body .container_postbtn {
    padding: 25px 0 0;
}

body .container_postbtn .postbtn_like,
body .container_postbtn .btn_menu_toolbar {
    border: 1px solid;
    border-color: var(--text) !important;
    width: auto;
    height: 30px;
    line-height: inherit;
    font-family: inherit !important;
    padding: 0 10px;
}

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

body .container_postbtn .btn_menu_toolbar .txt_state {
    font-size: 11px !important;
}

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: inherit !important;
    vertical-align: middle;
}

body .container_postbtn .btn_post .ico_postbtn {
    background-image: none;
    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%;
    transform: translateY(-50%);
    font-size: 11px;
}

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

/* 본문 태그¸ */
.tagTrail {
    color: transparent;
    margin: 10px 0;
    font-size: .9em;
    cursor: default;
}

.tagTrail .tag {
    color: var(--text);
    width: 70px;
    font-weight: bold;
    display: inline-block;
}

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

/* 본문 댓글 */
.actionTrail {
    margin-top: 10px;
    font-size: .9em;
    cursor: default;
}

.actionTrail .cnt {
    display: inline-block;
    font-weight: bold;
    width: 70px;
}

.actionTrail a {
    cursor: pointer;
}

/* 방명록 작성 */
#rp > div {
    display: none;
}

#rp .cmt .write {
    margin-top: 30px;
}

.cmt .write textarea {
    width: 80%;
    resize: vertical;
    height: 80px;
    padding: 10px;
    border: 1px solid;
    background-color: transparent;
    transition: .8s;
}

.cmt .write textarea:focus {
    height: 150px;
}

.cmt .write .info input {
    padding: 5px 0;
    background-color: transparent;
    margin: 5px;
    margin-left: 0;
    border: 0;
    display: inline-block;
    font-size: .9em;
    max-width: 30%;
}

.cmt .write .submit {
    width: 18%;
    height: 80px;
    float: right;
    margin-right: 0;
    padding: 3px 10px;
    background-color: var(--text);
    color: var(--con);
    font-family: fontAwesome;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cmt .write .info {
    display: inline-block;
    width: calc(100% - 10px);
}

.cmt .secret {
    display: inline-block;
    padding: 10px 0;
}

.cmt .checkbox {
    display: none;
}

.cmt .checkbox + .secret-label:after {
    content: '\f13e';
    font-family: fontAwesome;
}

.cmt .checkbox:checked + .secret-label:after {
    content: '\f023';
    font-family: fontAwesome;
}

/* 댓글, 방명록 리스트 */
.commentList ol {
    display: flex;
    flex-direction: column;
}

.commentList li,
.guestList li {
    position: relative;
}

.cmt-list,
.guest-list {
    padding: 20px 0;
    border-bottom: 1px solid;
}

.cmt-list:last-child,
.guest-list:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cmt-list .cmt,
.guest-list .guest,
.reply {
    min-height: 60px;
    position: relative;
}

.cmt-list .pro,
.guest-list .pro {
    width: 60px;
    float: left
}

.cmt-list img[alt=BlogIcon],
.guest-list img[alt=BlogIcon],
.cmt .pro .nopro {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    display: none;
}

.cmt-list .name,
.guest-list .name {
    background-color: var(--text);
    width: 60px;
    height: 60px;
    color: var(--con);
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.cmt-list .name a,
.guest-list .name a {
    color: var(--con);
}

.cmt-list .info,
.guest-list .info {
    margin-left: 70px;
}

.cmt-list .text {
    margin: 5px 0;
}

.cmt-list .date,
.guest-list .date,
.cmt-list .control,
.guest-list .control {
    font-size: .8em;
    font-style: italic;
}

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

.cmt-list .date a:after,
.guest-list .date a:after {
    content: "\f06a";
    font-family: fontAwesome;
    visibility: visible;
}

.cmt-list .control,
.guest-list .control {
    margin-left: 5px;
}

.cmt-list .control a,
.guest-list .control a {
    margin: 0 5px
}

.reply {
    margin-left: 50px;
    margin-top: 20px;
}

.cmt-list .rp_admin .name,
.guest-list .guest_admin .name {
    border: 1px solid;
    background-color: transparent;
    color: unset;
}

.cmt-list .rp_admin .name a,
.guest-list .guest_admin .name a {
    color: unset;
}

.cmt-list .rp_admin .name:before,
.guest-list .guest_admin .name:before {
    content: '\f005 ';
    font-family: fontAwesome;
}

.hiddenComment .name:after {
    content: '\f023';
    font-family: fontAwesome;
}

/* 프로필 사진 */
.profile .cmt .pro .nopro,
.profile.cmt-list img[alt=BlogIcon],
.profile .guest-list img[alt=BlogIcon] {
    display: block;
}

.profile .cmt-list .name,
.profile .guest-list .name {
    margin-top: 70px;

}

.profile .cmt-list .info,
.profile .guest-list .info {
    min-height: 130px;
}

/* 공지 */
.entryNotice .titleWrap h2 {타이틀}
.entryNotice .titleWrap .date {날짜}
.entryNotice .article {공지 본문}

/* 페이징 */
.paging {
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: .8em;
    position: absolute;
}

.paging .no-more-prev,
.paging .no-more-next,
.paging .num {
    padding: 0 7px;
}

.paging .selected {
    font-weight: bold;
    border-bottom: 2px solid;
}

/* 중간 이미지 */
#content .right {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    flex: 0 0 100px;
    height: 500px;
    margin-left: 30px;
}

/* 카테고리 영역 */
#footer {
    flex: 0 0 18%;
    width: 18%;
    position: relative;
}

#footer .catebox {
    height: 100%;
    background-color: var(--footer);
    padding: 80px 30px;
}

#footer .logo {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

#footer .title {
    font-family: 'Archivo Black', 'Noto Sans KR', sans-serif;
    font-size: 1.3em;
}

#footer .text {
    margin-bottom: 20px;
}

/* 카테고리 */
.tt_category,
.catebox .cate {
    margin: 10px 0;
}

.link_tit,
.sub_category_list {
    display: none;
}

.mc .link_item:after {
    content: '\f107';
    font-family: 'fontAwesome';
    transition: .4s;
    display: inline-block;
    float: right;
}

.link_item:before,
.catebox .cate a:before,
.catebox .admin a:before {
    content: '\f0c8';
    font-family: fontAwesome;
    font-size: .8em;
}

.catebox .cate a:before,
.catebox .admin a:before {
    margin-right: 2px;
}

.link_sub_item:before {
    content: '\f096';
    font-family: fontAwesome;
    font-size: .8em;
}

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

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

    to {
        opacity: 0;
    }
}

/* sns */
.sns {
    margin-top: 10px;
}

.sns a {
    letter-spacing: 10px;
}

/* 검색 */
.search {
    position: absolute;
    bottom: 30px;
    border-bottom: 1px solid;
    width: 70%;
}

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

.search .search_input {
    width: 80%;
}

.search .submit {
    font-family: fontAwesome;
    float: right;
}

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

@media all and (min-width: 768px) and (max-width:1050px) {
    #content {
        padding: 120px 30px;
    }

    #content .right {
        display: none;
    }

    .search {
        width: 60%;
    }

    .search .search_input {
        width: 80%;
    }
}

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

    body {
        background-image: none;
    }

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

    body {
        display: block;
        padding: 15px !important;
    }

    #container {
        display: block;
        max-height: none !important;
    }

    #header {
        height: 150px;
    }

    #content {
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    #myo_gal .item .info {
        display: none;
    }

    #myo_gal .item img {
        vertical-align: top
    }

    #content .right {
        display: none;
    }

    .paging {
        position: static;
    }

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

    #footer {
        display: block;
        flex: 0;
    }

    html {
        height: 100%;
    }

    .hambox {
        position: fixed;
        width: 40px;
        height: 40px;
        top: 10px;
        right: 15px;
        background-color: rgba(255, 216, 217, 0.5);
        padding: 10px 8px;
    }

    .ham {
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }

    .ham .line {
        display: block;
        background-color: var(--con);
        width: 100%;
        height: 3px;
        position: absolute;
        left: 0;
        border-radius: 4px;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
    }

    .ham .line.line-1 {
        top: 0;
    }

    .ham .line.line-2 {
        top: 50%;
    }

    .ham .line.line-3 {
        top: 100%;
    }

    .ham:hover .line-1 {
        transform: translateY(10px) translateX(0) rotate(45deg);
        -webkit-transform: translateY(10px) translateX(0) rotate(45deg);
        -moz-transform: translateY(10px) translateX(0) rotate(45deg);
    }

    .ham:hover .line-2 {
        opacity: 0;
    }

    .ham:hover .line-3 {
        transform: translateY(-10px) translateX(0) rotate(-45deg);
        -webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
        -moz-transform: translateY(-10px) translateX(0) rotate(-45deg);
    }

    html {
        height: 100%;
    }

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

    .page_cover.open {
        display: block;
    }

    .page_cover {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0px;
        left: 0px;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 99;
        display: none;
    }

    #footer .catebox {
        width: 70%;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0px;
        left: -71%;
        margin: 0;
        z-index: 999999;
        background-color: var(--bg);
        transition: All 0.2s ease;
        -webkit-transition: All 0.2s ease;
        -moz-transition: All 0.2s ease;
        -o-transition: All 0.2s ease;
        padding: 0;
        line-height: 2;
    }

    #footer .catebox.open {
        left: 0;
    }

    #footer .catebox .scroll {
        width: 102%;
        height: 100%;
        overflow-y: auto;
    }

    #footer .catebox .scroll > ul {
        margin: 50px;
        position: relative;
    }

    .sub_category_list {
        padding-left: 12px;
    }

    .search {
        position: static;
        margin-top: 20px;
        width: 100%;
    }
}
