@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url(//fonts.googleapis.com/earlyaccess/jejugothic.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;
}

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

/* 배경 */
html,
body {
    height: 100%;
}

body {
    background-color: var(--bg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* 전체 폰트 */
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: 'Lato', 'Jeju Gothic', sans-serif;
    color: #ccc;
    color: var(--text);
    line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

::-webkit-scrollbar-thumb {
    width: 5px;
    border-left: 1px solid;
    border-color: var(--scroll);
}

/* 컨테이너 */
#container {

    position: fixed;
    top: 50%;
    left: 50%;
    border: 1px solid;
    background: #fff;
    overflow: hidden;
}

#container.smooth-screen {
    display: none;
}

/* 헤더 */
#header {
    border-bottom: 1px solid;
    position: fixed;
    width: 1000px;
    z-index: 999;
    background: #fff;
    background: var(--bg);
}

#header .menu2 {
    text-align: center;
    position: relative;
    font-size: 10px;
    width: 250px;
    padding: 15px;
    border-right: 1px solid;
    display: inline-block;
    float: left;
}

#header .menu2 i {
    color: #D9889D;
    color: var(--point);
}

#header .menu2 span {
    margin-right: 5px;
}

#header .menu2 .admin {
    margin: 0;
}

/* 검색 */
#header .searchbox {
    position: absolute;
    top: 12px;
    right: 15px;
    clear: both;
}

#header .search input[type="text"] {
    border: none;
    background: none;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: all .25s ease-in .25s;
    color: transparent;
    font-size: .75rem;
    line-height: 25px;
}

#header .search input[type="text"]:hover {
    cursor: pointer;
}

#header .search input[type="text"]:hover:focus {
    cursor: text;
}

#header .search input[type="text"]:hover + span {
    background: rgba(255, 255, 255, 0.5);
}

#header .search input[type="text"]:focus {
    width: 94px;
    padding: 0 4px;
    outline: none;
    background: none;
    color: #ccc;
    color: var(--text);
}

#header .search input[type="text"]:focus + span {
    width: 100px;
}

#header .search input[type="text"]:focus + span::before {
    width: 2px;
    opacity: 0;
    transition: all .25s ease-in;
}

#header .search input[type="text"] + span {
    z-index: -1;
    position: absolute;
    border: 1px solid #ccc;
    border: 1px solid var(--text);
    top: 0;
    width: 18px;
    height: 18px;
    transition: all .25s ease-in .25s;
    border-radius: 25px;
    left: 0;
}

#header .search input[type="text"] + span::before {
    transition: all .25s ease-in .5s;
    transform-origin: left top;
    content: '';
    position: absolute;
    width: 8px;
    height: 1px;
    border-radius: 5px;
    background: #ccc;
    background: var(--text);
    transform: rotate(45deg) translate(22px, -1px);
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: var(--text) !important;
    background-color: #eee !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--text) inset;
    -webkit-box-shadow: 0 0 0px 1000px #eee inset;
    border-radius: 100px;
    background-image: none !important;
    color: #eee !important;
    color: var(--text) !important;
}

#header .search .submit {
    display: none;
}

/* 본문 카테고리 */
.searchList .title {
    font-size: 10px;
    padding: 15px;
    float: left;
    text-transform: uppercase;
}

/* 본문 영역 */
#content {
    position: relative;
    overflow: hidden;
    height: 100%;
}

#content:before {
    content: '';
    display: block;
    height: 48px;
    width: 100%;
}

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

/* 카테고리 영역 */
#content .catebox {
    width: 281px;
    position: fixed;
    padding: 15px;
    float: left;
    border-right: 1px solid;
    z-index: 1;
    height: 850px;
    box-sizing: border-box;
}

#content .catebox > ul {
    margin-top: 20px;
}

#content .catebox .logo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border: 1px solid;
    padding: 10px;
    border-radius: 100%;
}

#content .catebox .logo div {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
}

#content .catebox .title {
    font-size: 15px;
    margin: 10px 0;
    text-align: center;
}

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

#content .catebox .new {
    color: #D9889D;
    color: var(--point);
    margin-left: 5px;
    font-size: .8em;
}

/* 카테고리 */
#content .link_tit {
    display: none;
}

#content .tt_category {
    text-transform: uppercase;
}

#content .category_list > li {
    display: inline-block;
    position: relative;
    margin: 1%;
    width: 30.7%;
    text-align: center;
}

a.link_item {
    color: #D9889D;
    color: var(--point);
    border: 1px solid #ccc;
    border: 1px solid var(--text);
    display: block;
    position: relative;
}

a.link_item:hover:after {
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #D9889D;
    background: var(--point);
    opacity: 0.2;
}

#content .sub_category_list {
    position: absolute;
    z-index: 999;
    min-width: 100%;
    width: max-content;
    max-height: 0px;
    left: 0;
    overflow: hidden;
    transition: max-height linear 0.3s;
    background: #D9889D;
    background: var(--point);
}

#content .category_list > li:hover .sub_category_list {
    max-height: 200px;
}

#content .sub_category_list > li {
    text-align: left;
}

#content .sub_category_list > li:first-child {
    margin-top: 5px;
}

#content .sub_category_list > li:last-child {
    margin-bottom: 5px;
}

a.link_sub_item {
    color: #fff;
    color: var(--bg);
    padding: 5px;
}

/* 본문 영역 */
#content .main {
    margin-left: 281px;
    padding: 20px;
    height: calc(100% - 48px);
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* 갤러리형 */
#lst_gal .thumb {
    width: calc((100% - 4%) / 3);
    position: relative;
    float: left;
    margin: 0 2% 2% 0;
}

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

#lst_gal .thumb a {
    display: block;
    border: 1px solid;
    position: relative;
}

#lst_gal .thumb img {
    width: 90%;
    padding: 5%;
    vertical-align: top;
    z-index: 2;
    overflow: hidden;
    backface-visibility: hidden;
    transition-duration: 0.5s;
}

#lst_gal .thumb:hover img {
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    opacity: 0.5;
}

#lst_gal .thumb .title,
#lst_gal .thumb .info {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 5%;
}

#lst_gal .thumb .title {
    border-top: 1px solid;
    border-bottom: 1px solid;
}

#lst_gal .thumb .title:before {
    content: '\f186';
    font-family: fontAwesome;
    margin-right: 3px;
}

#lst_gal .thumb .info {
    font-size: 10px;
}

#lst_gal .thumb .info .cate {
    position: relative;
    margin-right: 5px;
    padding: 0 3px;
    text-transform: uppercase;
}

#lst_gal .thumb .info .cate:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D9889D;
    background: var(--point);
    opacity: 0.13;
}

#lst_gal .thumb .text {
    display: none;
}

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

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

/* 목록형 */
#lst_web .thumb,
#lst_web .secretlist {
    border-bottom: 1px solid;
    position: relative;
}

#lst_web .thumb:last-child,
#lst_web .secretlist:last-child {
    border: 0;
}

#lst_web .thumb a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    padding: 15px 0;
}

#lst_web .thumbox {
    display: none;
}

#lst_web .thumb .title {
    width: calc(100% - 180px) !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

#lst_web .thumb .info {
    float: right;
}

#lst_web .thumb .cate {
    margin-right: 30px;
}

#lst_web .thumb .date {
    display: inline-block;
    vertical-align: middle;
}

/* 본문 타이틀 */

.titleWrap {
    position: absolute;
    top: 50%;
    z-index: 999;
    max-width: 570px;
}

.titleWrap .title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.titleWrap .title a {
    color: #D9889D;
    color: var(--point);
}

.titleWrap .date,
.titleWrap .admin {
    font-size: 10px;
    margin-left: 5px
}

/* 본문 */
.article {
    padding-bottom: 15px;
    line-height: 1.8;
}

.article a:before,
.tx-link:before {
    content: "\e62d";
    font-family: 'themify';
    margin-right: 5px;
}

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

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

.article a {
    color: #D9889D;
    color: var(--point);
    transition: .5s;
}


.article a:hover {
    opacity: 0.5;
}

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

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

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

.article u {
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(to bottom, #ccc 0%, #ccc 100%);
    background-image: linear-gradient(to bottom, var(--text) 0%, var(--text) 100%);
    background-size: 100% 1px;
    background-position: center 100%;
    background-repeat: no-repeat;
    transition: .4s ease-out;
}

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

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

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

/* 링크 */
figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
    overflow: hidden;
    border-color: #D9889D;
    border-color: var(--point);
}

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,
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: #D9889D;
    color: var(--point);
}

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

/* 동영상 */
#tt-body-page figure[data-ke-type='video'][data-video-host] iframe {
    vertical-align: top;
}

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

/* 인용구 */
.tx-quote-tistory:before,
#tt-body-page blockquote[data-ke-style='normal']:before,
#tt-body-page blockquote[data-ke-style='style2']:before  {
    content: '\f186';
    font-family: FontAwesome;
    color: #D9889D;
    color: var(--point);
}

.tx-quote-tistory,
#tt-body-page blockquote[data-ke-style='normal'],
#tt-body-page blockquote[data-ke-style='style2'] {
    position: relative;
    height: auto;
    margin: 5px 0;
    padding: 10px;
    border: 1px solid;
}


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

#tt-body-page blockquote[data-ke-style='box'] a {}

/* 더보기 */
.btn_more,
.btn_less,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
    color: #D9889D;
    color: var(--point);
    font-size: inherit;
}

.btn_more:before,
.btn_less span:before,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:before {
    font-size: inherit;
    line-height: inherit;
    content: '\f107';
    font-family: FontAwesome;
    padding-right: 5px;
}

.btn_less:before {
    display: none;
}

.btn_less span {
    color: #D9889D;
    color: var(--point);
}

.btn_less:last-child span:before {
    content: '\f106';
    font-family: FontAwesome;
    padding-right: 5px;
}

.btn_less:first-child {
    margin: 0 0 10px;
}

.btn_less:last-child {
    margin: 10px 0 0;
}

.moreless_content,
.moreless-content {
    position: relative;
    height: auto;
    margin: 3px 0;
    padding: 10px;
    border: 1px solid;

}

/* 이미지 슬라이드 */
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;
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
    font-size: .9rem;
}

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

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

/* 공감 */
.container_postbtn {
    padding: 0 !important;
    margin-top: 35px;
}

.container_postbtn .postbtn_like,
.container_postbtn .btn_menu_toolbar {
    color: var(--text) !important;
}

.container_postbtn .postbtn_like {
    float: none !important;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.container_postbtn .postbtn_like > div,
.container_postbtn .btn_menu_toolbar > * {
    float: none;
    transition: .4s;
}

.container_postbtn .postbtn_like > div:hover,
.container_postbtn .btn_menu_toolbar:hover > * {
    border-color: #D9889D !important;
    border-color: var(--point) !important;
    color: #D9889D !important;
    color: var(--point) !important;
}

.container_postbtn .btn_post .txt_like {
    display: none !important;
}

.container_postbtn .postbtn_ccl {
    position: absolute !important;
    right: 0 !important;
    top: 0;
}

.container_postbtn .btn_post .ico_postbtn,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    background-image: none;
    position: relative;
    margin: 0 !important;
    height: 14px !important;
    text-indent: inherit !important;
    overflow: visible;
    vertical-align: middle;
}

.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
    height: 7px !important
}

.container_postbtn .btn_post .ico_postbtn:after,
.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e635";
    display: inline-block;
    font-family: 'themify';
    position: absolute;
    left: 0;
    font-size: 13px;
    vertical-align: middle;
    line-height: 1;
}

.container_postbtn .btn_post .empathy_up_without_ani .ico_postbtn:after {
    content: "\e634";
}

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

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

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

.container_postbtn .btn_menu_toolbar.following .ico_check_type1:after {
    content: "\e64c";
    line-height: inherit;
    margin-left: 3px;
}




/* 본문 태그¸ */
.tagTrail {
    color: transparent;
    padding-bottom: 20px;
    width: calc(100% - 20px) !important;
    display: inline-block;
    float: left;
}

.tagTrail a {
    color: #D9889D;
    color: var(--point);
}

.tagTrail a:before {
    content: "#";
}

/* 본문 댓글 */
.actionTrail {
    padding-bottom: 20px;
}

.actionTrail,
.actionTrail a {
    color: #D9889D;
    color: var(--point);
}

/* 신고 버튼 */
.container_postbtn .postbtn_like label:first-child {
    padding-left: 0 !important;
}

/* 댓글, 방명록 작성 */
.guestbook .title {
    position: fixed;
    top: 15px;
    z-index: 9999;
}

.cmt-write,
.guestWrite {
    margin-bottom: 30px;
}

.cmt-write:after,
.guestWrite:after {
    display: block;
    visibility: hidden;
    clear: both;
    content: ""
}

.cmt-write textarea,
.guestWrite textarea {
    width: 78%;
    resize: vertical;
    height: 80px;
    padding: 10px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    float: left;
    border: 1px solid;
    background: transparent;
    margin-right: 2%;
}

.cmt-write .info input,
.guestWrite .info input {
    width: 29.8%;
    padding: 5px;
    float: left;
    background: transparent;
    margin: 5px;
    margin-left: 0;
    border: 0;
    display: inline-block;
}

.cmt-write .submit,
.guestWrite .submit {
    float: right;
    width: 20%;
}

.cmt-write .submit input,
.guestWrite .submit input {
    height: 80px;
    width: 100%;
    cursor: pointer;
    background: transparent;
    border: 1px solid;
    text-transform: uppercase;
}

.secret {
    display: inline-block;
    padding: 5px;
    margin: 5px;
}

.checkbox {
    display: none;
}

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

.checkbox:checked + .secret-label:after {
    content: '\f023';
    font-family: fontAwesome;
    color: #D9889D;
    color: var(--point);
}

/* 댓글, 방명록 리스트 */
.commentList li,
.guestList li {
    position: relative;
}

.commentList .cmt-list,
.guestList .guest-listd {
    border-bottom: 1px solid;
}

.commentList .cmt-list:first-child,
.guestList .guest-list:first-child {
    padding-top: 0;
}


.commentList .name img[alt="BlogIcon"],
.commentList .nopro,
.guestList .name img[alt="BlogIcon"],
.guestList .nopro {
    display: none;
}

.profile .commentList .name img,
.profile .guestList .name img,
.profile .commentList .nopro,
.profile .guestList .nopro {
    left: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    display: inline-block;
}

.commentList .info,
.guestList .info {
    margin-left: 20px;
    padding: 10px 0;
}

.profile .commentList .info,
.profile .guestList .info {
    margin-left: 43px;
}

.commentList .fa-heart,
.guestList .fa-heart,
.commentList .fa-heart-o,
.guestList .fa-heart-o {
    position: absolute;
    left: 0;
    margin-top: 5px;
    color: #D9889D;
    color: var(--point);
}

.commentList .cmt-reply,
.guestList .reply {
    margin-left: 4%;
}

.commentList .name,
.guestList .name,
.commentList .name a,
.guestList .name a {
    padding-right: 5px;
    color: #D9889D;
    color: var(--point);
}

.commentList .date,
.guestList .date {
    padding-right: 5px;
    font-size: 6px;
    opacity: 0;
    transition-duration: 0.3s;
    color: #D9889D;
    color: var(--point);
}

.commentList .date a,
.guestList .date a {
    margin-right: 5px;
    visibility: hidden;
}

.commentList .date a:after,
.guestList .date a:after {
    content: "\f06a";
    font-family: FontAwesome;
    visibility: visible;
    color: #D9889D;
    color: var(--point);
}

.commentList .control,
.guestList .control {
    opacity: 0;
    transition-duration: 0.3s;
}

.commentList div:hover .control,
.guestList div:hover .control,
.commentList div:hover .date,
.guestList div:hover .date {
    opacity: 1;
}

.commentList .control a,
.guestList .control a {
    font-size: 6px;
    padding-left: 3px;
    color: #D9889D;
    color: var(--point);
}

.commentList .text,
.guestList .text {
    margin: 5px 0;
    transition-duration: 0.8s;
}

.commentList .rp_admin .name:before,
.guestList .guest_admin .name:before {
    content: '\f005';
    font-family: FontAwesome;
}

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

.commentList ol {
    display: flex;
    flex-direction: column;
}

.commentList .cmt-list:last-child,
.guestList .guest-list:last-child,
#tt-body-page.order .commentList .cmt-list:first-child {
    border: 0;
    padding-bottom: 0;
}

#tt-body-page.order .commentList .cmt-list:last-child {
    border-bottom: 1px solid;
}

/* 공지 */
.entryNotice {
    margin: 40px 0;
}

.entryNotice .title a {
    color: #D9889D;
    color: var(--point);
    margin-right: 5px;
}

.entryNotice .title:before {
    content: '\f186';
    font-family: fontAwesome;
    margin-right: 3px;
    color: #D9889D;
    color: var(--point);
}

.entryNotice .date {
    font-size: 10px;
}

.entryNotice .text {
    margin: 10px 0;
    margin-left: 3px;
    border-left: 1px solid;
    padding-left: 18px;
}

.entryNotice:first-child {
    margin-top: 0
}

/* 보호글 */
.entryProtected {
    margin: 40% auto;
    width: 230px;
}

.entryProtected p .post-secret,
.entryProtected p .post-submit {
    margin: 5px 0;
    padding: 10px;
}

.entryProtected p .post-secret {
    width: 100%;
    border: 0;
    border-bottom: 1px solid;
    background: transparent;
    box-sizing: border-box;
}

.entryProtected p .post-submit {
    font-family: fontAwesome;
    width: 100%;
    border: 1px solid;
    background: transparent;
    text-transform: uppercase;
}

.post-secret[required] + label {
    display: block;
    height: 48px;
    margin-top: -48px;
    margin-bottom: 0;
    pointer-events: none;
    line-height: 1;
    text-transform: uppercase
}

.post-secret[required] + label:before {
    content: attr(placeholder);
    position: absolute;
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding: 0 9px;
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
}

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

/* 페이징 */
.paging .num,
.no-more-prev,
.no-more-next {
    padding: 4px;
}

.paging .selected {
    color: #D9889D;
    color: var(--point);
}

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

/* ie */
#ie {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
    color: #fff;
    z-index: 9999999999999;
}

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

/* 모바일 영역 */
@media all and (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    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 {
        width: auto !important;
        height: auto !important;
        margin: 10px !important;
        border: 1px solid;
        min-height: unset;
        position: relative;
        padding: 0 !important;
        top: 0;
        left: 0;
    }

    /* 모바일 메뉴 버튼 */
    .hamburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-item-align: center;
        align-self: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
        position: fixed;
        z-index: 9999999;
        right: 11px;
        padding: 3px;
    }

    .hamburger div {
        -ms-flex-item-align: end;
        align-self: flex-end;
        height: 1px;
        width: 100%;
        background: #ccc;
        background: var(--text);
    }

    .hamburger .meat {
        width: 75%;
        -webkit-transition: all 200ms ease-in-out;
        transition: all 200ms ease-in-out;
    }

    .hamburger .bottom-bun {
        width: 50%;
        -webkit-transition: all 400ms ease-in-out;
        transition: all 400ms ease-in-out;
    }

    .hamburger:hover div {
        width: 100%;
    }

    .hamburger:hover .top-bun {
        -webkit-animation: burger-hover 1s infinite ease-in-out alternate;
        animation: burger-hover 1s infinite ease-in-out alternate;
    }

    .hamburger:hover .meat {
        -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
        animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    }

    .hamburger:hover .bottom-bun {
        -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
        animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    }

    @-webkit-keyframes burger-hover {
        0% {
            width: 100%;
        }

        50% {
            width: 50%;
        }

        100% {
            width: 100%;
        }
    }

    @keyframes burger-hover {
        0% {
            width: 100%;
        }

        50% {
            width: 50%;
        }

        100% {
            width: 100%;
        }
    }

    /* 모바일 메뉴 슬라이드 */
    #content .catebox {
        position: fixed;
        width: 0;
        top: 0;
        left: 0;
        height: 100% !important;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out 0.1s;
        -o-transition: all 0.3s ease-in-out 0.1s;
        transition: all 0.3s ease-in-out 0.1s;
        z-index: 999999;
        border: 0;
        padding: 0;
        overflow: hidden;
        background: #fff;
        background: var(--bg);
        float: none;
        border: 0;
    }

    #content .catebox.open {
        opacity: 1;
        width: 100%;
        overflow: scroll;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    body.scroll {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    /* 모바일 카테고리 영역 */
    #content .catebox > ul {
        margin: 30px 25%;
    }

    #content .catebox .logo {
        width: 100px;
        height: 100px;
        margin-top: 0px;
        padding: 5px;
    }

    /* 모바일 카테고리 */
    #content .category_list > li {
        display: block;
        margin: 2%;
        width: auto;
    }

    a.link_item:hover {
        background: rgba(217, 136, 157, 0.2);
    }

    #content .sub_category_list {
        position: static;
        max-height: unset;
        margin: 2% 0;
    }

    #content .sub_category_list > li {
        text-align: center;
    }

    a.link_sub_item {
        display: block;
    }

    /* 모바일 헤더 */
    #header {
        position: absolute;
        width: 100% !important;
        top: 0;
        left: 0;
    }

    #header .menu2 {
        border: 0;
        float: none;
        text-align: left;
    }

    /* 검색 */
    #header .searchbox {
        right: 30px;
    }

    /* 모바일 본문 영역 */
    #content .main {
        margin: 0;
    }

    /* 모바일 갤러리 */
    #lst_gal .thumb {
        width: calc((100% - 2%) / 2);
        margin: 0 2% 2% 0 !important;
    }

    #lst_gal .thumb:nth-child(2n) {
        margin-right: 0 !important;
    }

    #lst_gal .thumb a {
        margin: 10px;
    }

    #lst_gal .thumb .info .cate {
        display: none;
    }

    #lst_gal .thumb .info .date {
        position: relative;
        margin-right: 5px;
        padding: 0 3px;
        text-transform: uppercase;
    }

    #lst_gal .thumb .info .date:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #D9889D;
        background: var(--point);
        opacity: 0.13;
    }

    /* 모바일 목록형 */
    #lst_web .thumb .title {
        width: calc(100% - 151px) !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }

    #lst_web .thumb .info {
        float: right;
    }

    #lst_web .thumb .cate {
        margin-right: 10px;
    }

    /* 모바일 본문 타이틀 */
    .titleWrap {
        position: static;
        margin-top: 0 !important;
        margin-bottom: 10px;
    }

    /* 모바일 코멘트, 방명록 */
    .searchList,
    .guestbook .title {
        display: none;
    }

    .guestWrite .info input,
    .cmt-write .info input {
        max-width: 26.5%;
    }

    .copy {
        margin: 1vh 0;
        position: static;
        text-align: center;
    }
}
