@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Righteous');

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;
    background-color :transparent;
    border: 0;
}

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

* {
    box-sizing: border-box;
}

/* 배경 */
body {
    background-color: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

/* 전체 폰트 */
html,
th,
td,
input,
select,
textarea,
button {
    font-size: 10px;
    font-family: 'Calibri', 'Noto Sans KR', sans-serif;
    color: #444;
    line-height: 1.7;
}

a {
    color: #444;
    text-decoration: none;
    transition: color .5s;
}

a:hover {
    color: #ffdee0;
}

/* 입력창 폰트 색상 */
::-webkit-input-placeholder {
    color: #444;
}

:-moz-placeholder {
    color: #444;
}

::-moz-placeholder {
    color: #444;
}

:-ms-input-placeholder {
    color: #444;
}

::placeholder {
    color: #444;
}

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

::-webkit-scrollbar-thumb {
    background: #ffdee0;
}

/* 전체 박스 */
#container {
    max-width: 600px;
    margin: auto;
    position: relative;
    padding: 10vh 0;
}

/* 카테고리 영역 */
#header {
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 15vh;
    opacity: 0;
    transition-duration: .3s;
    z-index: 999;
    visibility: hidden;
}

#header .scroll {
    padding: 10vh 2vh 5vh;
}

#header .title {
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: bold;
}

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

#header .intro {
    width: calc(100% - 15px);
    white-space: initial;
}

/* 카테고리 */
.catebox {
    margin: 10px 0;
    line-height: 2;
    border-top: 1px solid #ffdee0;
    padding-top: 5px;
}

.link_tit {
    display: none;
}

.catebox .cate a:before,
a.link_item:before {
    margin-right: 10px;
    font-weight: bold;
}

.catebox .cate.notice a:before {
    content: '00';
}

.category_list > li:nth-child(1) a.link_item:before {
    content: '01';
}

.category_list > li:nth-child(2) a.link_item:before {
    content: '02';
}

.category_list > li:nth-child(3) a.link_item:before {
    content: '03';
}

.category_list > li:nth-child(4) a.link_item:before {
    content: '04';
}

.category_list > li:nth-child(5) a.link_item:before {
    content: '05';
}

.category_list > li:nth-child(6) a.link_item:before {
    content: '06';
}

.category_list > li:nth-child(7) a.link_item:before {
    content: '07';
}

.category_list > li:nth-child(8) a.link_item:before {
    content: '08';
}

.category_list > li:nth-child(9) a.link_item:before {
    content: '09';
}

.category_list > li:nth-child(10) a.link_item:before {
    content: '10';
}

.catebox .cate.guest a:before {
    content: '11';
}

.sub_category_list {
    margin-left: 5px;
    margin-bottom: 0;
    padding-left: 17px;
    border-left: 1px solid;
}

@media screen and (min-width: 769px) {
    .sub_category_list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s;
    }

    .category_list > li:hover .sub_category_list {
        max-height: 500px;
        margin-bottom: 1vh;
        transition: max-height 2s;
    }
}

/* sns */
.sns {
    margin: 10px 0;
}

.sns span {
    margin-right: 5px;
}

/* 검색 */
.search {
    margin-top: 20px;
}

.search input {
    max-width: 100px;
    background: transparent;
    border: 1px solid;
    padding: 2px 4px;
}

.search button {
    display: none;
}

/* 카테고리 오픈 */
#header.open {
    opacity: 1;
    visibility: visible;
}

#content.open {
    margin-left: 15vh;
}

html.open {
    overflow: hidden;
}

.page_cover.open {
    display: block;
}

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

/* 본문 영역 */
#content {
    position: relative;
    transition-property: margin-left;
    transition-duration: .5s;
    padding-left: 50px;
    width: 100%;
}

#content:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 100%;
    background: #ffdee0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

#content .logo {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #ffdee0;
    top: 10vh;
    position: fixed;
    margin-left: -50px;
    transform: translate(-50%, -5px);
    border: 5px solid #fff;
    z-index: 999;
    transition: .5s;
}

#content .logo span {
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: inline-block;
    border-radius: 100%;
    transition: .5s;
}

#content .logo:hover {
    padding: 5px;
}

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

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

/* 점 */
.item:before,
.noti:before,
.cmt .lst > li:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background: #ffdee0;
    top: 50%;
    transform: translate(-50%, -50%);
    left: -50px;
    z-index: 10;
    transition: .5s;
}

.item:hover:before,
.noti:hover:before,
.cmt .lst > li:hover:before {
    background: #ffdee0;
}

/* 커버 */
#content section {
    padding: 5vh 0;
    position: relative;
    border-bottom: 1px solid #ffdee0;
}

#content section h2 {
    margin-bottom: 1vh;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

/* 커버 공지 */
#c-notice img {
    max-width: 100%
}

/* 커버 목록 */
section#myo_bbs .item:last-child {
    margin-bottom: 0;
}

#myo_bbs .info .date {
    color: #ffdee0;
}

/* 커버 웹진 */
#myo_web .more {
    background: #ffdee0;
    border: 1px solid #ffdee0;
    display: inline-block;
    padding: 0 4px;
    transition-property: background;
    transition-duration: .5s;
    color: #fff;
}

#myo_web .more:hover {
    background: transparent;
    color: #ffdee0;
}

/* 갤러리형 */
#myo_gal .item {
    position: relative;
    margin-bottom: 1vh;
}

#myo_gal .item img {
    width: 100%;
    vertical-align: top;
    transition-property: opacity;
    transition-duration: .5s;
}

#myo_gal .item .info {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition-property: opacity;
    transition-duration: .5s;
    padding: 3vh;
}

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

#myo_gal .item:hover img {
    opacity: 0.3;
}

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


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

/* 목록형, 카테고리 글 더보기 목록형 */
#myo_bbs .item {
    margin-bottom: 3vh;
    position: relative;
}

#myo_bbs .item a,
.more_bbs .morebox a {
    display: block;
}

#myo_bbs .item .info .cate {
    color: #ffdee0;
}

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

#myo_bbs .item .info .title,
.more_bbs .morebox .title {
    max-width: calc(100% - 110px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 2px;
    font-weight: bold;
}

#myo_bbs .item .info .date,
.more_bbs .morebox .date {
    float: right;
}

#myo_bbs .item img,
#myo_bbs .item .info .text,
.more_bbs .morebox img {
    display: none !important;
}

/* 웹진형 */
#myo_web .item img {
    vertical-align: top;
    transition-property: opacity;
    transition-duration: .5s;
    width: 100%;
}

#myo_web .item {
    position: relative;
    margin-bottom: 3vh;
}

#myo_web .item .info {
    padding-top: 1vh;
}

#myo_web .item .info .cate,
#myo_web .item .info .title {
    display: inline-block;
    vertical-align: middle;
}

#myo_web .item .info .cate {
    color: #ffdee0;
    margin-right: 10px;
}

#myo_web .item .info .title {
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

#myo_web .item .info .text {
    margin: 1vh 0;
}

#myo_web .item:hover img {
    opacity: 0.5;
}

/* 보호글 */
.pass {
    width: 15vh;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    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: 0;
    background: #ffdee0;
    color: #fff;
    letter-spacing: 3px;
    padding: 10px;
}

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

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

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

/* 본문 타이틀 */
.titlebox {
    margin-bottom: 3vh;
}

.titlebox .cate {
    color: #ffdee0;
    letter-spacing: 3px;
}

.titlebox .title {
    margin: 5px 0;
    letter-spacing: 2px;
    font-size: 1.5rem;
    font-weight: bold;
}

.titlebox .admin a {
    margin: 0 3px
}

/* 본문 */
.article {
    font-family: 'Noto Sans KR', sans-serif;
}

.text-item a {
    color: #ffdee0;
}

.text-item a:hover {
    color: #444;
}

/* 더보기 */
.btn_more,
.btn_less,
.moreless_fold,
.moreless_top,
.moreless_bottom {
    color: #ffb3b7;
    position: relative;
    display: inline-block;
    padding: 5px 0 !important;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.btn_less {
    color: inherit;
}

.btn_more:hover,
.moreless_fold:hover,
.moreless_top:hover,
.moreless_bottom:hover {
    color: #444;
}

.btn_more:after,
.moreless_fold:after,
.tags a:after {
    position: absolute;
    z-index: -1;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #ffdee0;
    display: inline-block;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.btn_less:focus:after,
.btn_less:hover:after,
.moreless_fold:focus:after,
.moreless_fold:hover:after,
.tags a:focus:after,
.tags a:hover:after {
    width: 100%;
}

.btn_more:before,
.btn_less span:before,
.moreless_fold:before,
.moreless_top:before,
.moreless_bottom:before {
    content: "\f107";
    font-family: 'fontAwesome';
    margin-right: 5px;
}

.btn_less:last-child span:before,
.moreless_bottom:before {
    content: "\f106 ";
}
.btn_less:first-child {
	margin-bottom: 10px;
}

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

.btn_more {
    display: block;
}

.moreless_content {
    position: relative;
    height: auto;
    background: #ffffff;
    padding: 7px;
}

.moreless_content a {
    transition-property: color;
    transition-duration: .5s;
    color: inherit;
}

.btn_less:hover, 
.moreless_content a:hover {
    color: #fff;
}

/* 링크 */
.text-item .tx-link:before {
    content: "\f0c1";
    font-family: 'fontAwesome';
    margin-right: 5px;
}

/* 파일 첨부 */
.text-item .imageblock a img {
    display: none;
}

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

/* 신고 버튼 */
.container_postbtn {
    padding: 10px 0 !important;
}

.container_postbtn .postbtn_like {
    border: 0 !important;
}

.container_postbtn .postbtn_like label:first-child {
    padding-left: 0 !important;
}

/* 분문 하단 태그 */
.tags {
    color: transparent;
    margin: 3vh 0;
}

.tags a {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    margin-right: 5px;
    letter-spacing: 1px;
    color: #ffdee0;
}

.tags a:hover {
    color: #444;
}

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

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

.more-item {
    margin: 3vh 0;
    overflow: hidden;
}

.more-item:after {
    content: '';
    display: block;
    clear: both;
    overflow: hidden;
}

.more-item a {
    display: block;
}

/* 더보기 갤러리형 */
.more_gal .cate {
    display: none;
}

.more_gal .morebox {
    float: left;
    margin-right: 1%;
    width: 24.25%;
    position: relative;
    overflow: hidden;
}

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

.more_gal .morebox .info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    -ms-display: flexbox;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .5s;
    color: #444;
    overflow: hidden;
}

.more_gal .morebox .info .title {
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 33px;
    text-overflow: ellipsis;
    font-weight: bold;
    letter-spacing: 1px;
}

.more_gal .morebox img {
    width: 100%;
    transition: .5s;
    vertical-align: top;
    transition-property: opacity;
    transition-duration: .5s;
}

.more_gal .morebox:hover img {
    opacity: 0.2;
}

.more_gal .morebox:hover .info {
    opacity: 1;
}

.more_gal .morebox .date {
    display: none;
}

/* 더보기 목록형 */
.more_bbs .cate {
    border-bottom: 1px solid;
    padding-bottom: 10px;
    color: #ffdee0;
    font-weight: bold;
    letter-spacing: 3px;
}

.more_bbs .cate h3,
.more_bbs .cate a {
    display: inline-block;
    vertical-align: middle;
}

.more_bbs .cate a {
    float: right;
    font-size: .8rem;
    color: #ffdee0;
}

.more_bbs .morebox {
    padding: 10px 0;
    border-bottom: 1px solid #ffdee0;
}

.more_bbs .morebox .title {
    letter-spacing: 1px;
}

.more_bbs .morebox .date {
    color: #ffdee0;
}

/* 댓글 열기 */
.opencmt {
    margin-top: 3vh;
}

.opencmt a {
    color: #ffdee0;
    font-size: 1.3rem;

}

.opencmt i {
    margin-right: 5px;
}

.opencmt .num {
    margin: 0 10px;
}

/* 댓글, 방명록 작성 */
#tt-body-page .cmt .write {
    margin-top: 3vh;
}

.cmt {
    font-family: 'Noto Sans KR', sans-serif;
}

.cmt .write {
    position: relative;
}

.cmt .write textarea {
    border: 1px solid #ffdee0;
    background: transparent;
    width: 100%;
    height: 90px;
    padding: 7px;
    transition-property: height;
    transition-duration: .5s;
}

.cmt .write textarea:hover,
.cmt .write textarea:focus {
    height: 130px;
}

.cmt .write button {
    border: 0;
    background: transparent;
    float: right;
}

.cmt .write .input,
.cmt .write button {
    display: inline-block;
}

.cmt .write .input {
    width: calc(100% - 15px);
}

.cmt .write .input input {
    border: 0;
    background: transparent;
    vertical-align: middle;
    width: 30%;
    min-width: 70px;
}

.cmt .write .secret {
    display: inline-block;
    float: right;
    margin-right: 10px;
    white-space: nowrap;
}

.cmt .write .secret input {
    display: none;
}

.cmt .write input + label:after {
    content: "\f13e";
    font-family: 'fontAwesome';
}

.cmt .write input:checked + label:after {
    content: "\f023";
    font-family: 'fontAwesome';
}

/* 댓글, 방명록 목록 */
.cmt .lst > li:before {
    top: 25px;
}

.cmt .lst > li {
    border-bottom: 1px solid #ffdee0;
    position: relative;
    padding: 4vh 0;
}

.cmt .lst > li:last-child {
    border: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cmt .lst > li:last-child li:last-child {
    margin-bottom: 0;
}

.cmt li {
    /* margin: 4vh 0; */
}

.cmt .guest,
.cmt .reply {
    position: relative;
}

.cmt .nopro {
    z-index: -1;
    display: none;
}

.cmt .info {
    clear: both;
}

.cmt .text {
    margin-bottom: 10px;
}

.cmt .name,
.cmt .name a {
    font-weight: bold;
    color: #ffdee0;
}

.cmt .date,
.cmt .admin {
    font-size: .9rem;
    margin: 0 5px;
    color: #ffdee0;
}

.cmt .date a {
    margin-left: 5px;
    color: #ffdee0;
}

.cmt .admin a {
    margin-right: 5px;
    color: #ffdee0;
}

.cmt .name a:hover,
.cmt .date a:hover,
.cmt .admin a:hover {
    color: #444;
}

.cmt .reply {
    margin-left: 60px;
    margin-top: 4vh;
}

.cmt .reply .admin a {
    margin-right: 0;
    margin-left: 5px;
}

.rp_admin .name:before,
.guest_admin .name:before {
    content: "\e642";
    font-family: 'themify';
    margin-right: 3px;
}

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

/* 공지 */
.noti {
    padding: 3vh 0;
    position: relative;
}

.noti:before {
    top: 3.65vh;
}

.noti:last-child {
    padding-bottom: 0;
}

.noti .title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffdee0;
    margin-bottom: 5px;
}

/* 페이지네이션 */
.pagination {
    margin-top: 30px;
    color: #ffdee0;
    font-family: 'Calibri', sans-serif;
}

.pagination a {
    margin: 0 3px;
    color: #ffdee0;
}

.pagination a:hover {
    color: #444;
}

.pagination .next,
.pagination .prev {
    letter-spacing: 1px;
}

.pagination .selected {
    font-weight: bold;
    color: #444;
}

.pagination .selected:hover {
    color: #ffdee0;
}

.pagination .current {
    display: none;
}

/* 탑버튼 */
.top {
    position: fixed;
    color: #ffdee0;
    bottom: 3vh;
    right: 3vh;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
}

.top:hover {
    color: #444;
}

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

/* 와이드 버전 */
.wide.open {
    overflow: auto;
}

.wide #container {
    max-width: 750px;
}

.wide #header {
    width: 200px;
    opacity: 1;
    visibility: visible;
}

.wide #content {
    width: calc(100% - 200px);
    margin-left: 200px;
}

.wide .page_cover {
    display: none;
}

/* 프로필 사진 */
.guest-pro .cmt img {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    border-radius: 100%;
}

.guest-pro .cmt .guest,
.guest-pro .cmt .reply {
    padding-left: 60px;
}

.guest-pro .cmt .nopro {
    display: inline-block;
}

/* 모바일 영역 */
@media screen and (max-width: 768px) {
    #container {
        margin: 0 15px;
        padding-top: 90px;
    }

    #content .logo {
        left: 10px;
        transform: none;
        top: 15px;
        margin: 0;
        z-index: 99;
    }

    #content {
        padding-left: 0;
    }

    #content:before {
        display: none;
    }

    .item:before {
        display: none;
    }

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

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

    #content.open,
    .wide #content.open {
        overflow: hidden;
        margin-left: 24vh;
    }

    #header {
        width: 25vh;
        overflow: hidden;
        height: 100%;
        position: fixed;
        top: 0px;
        left: -26vh;
        transition: All 0.2s ease;
        -webkit-transition: All 0.5s ease;
        -moz-transition: All 0.5s ease;
        -o-transition: All 0.5s ease;
        opacity: 1;
        background: #fff;
    }

    #header.open {
        left: 0;
    }

    #header .scroll {
        width: 26vh;
        height: 100%;
        overflow-y: auto;
        padding-top: 90px;
    }

    .sub_category_list {
        margin-bottom: 1vh;
        display: none;
    }

    .category_list > li .link_item:after {
        content: '\f107';
        font-family: fontAwesome;
        vertical-align: middle;
        float: right;
    }

    .category_list > li .link_item:only-child:after {
        content: '';
    }

    .copy {
        margin-top: 5vh;
        position: static;
    }

    /* 와이드 버전 */
    .wide #container {
        max-width: auto;
    }

    .wide #header {
        width: 25vh;
    }

    .wide #content {
        width: 100%;
        margin-left: 0;
    }

    .wide .page_cover.open {
        display: block;
    }
}
