@charset "utf-8";
@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;
}
/* 배경 */
body {background: #efe8f5;}

/* 전체 폰트 */
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: 'Jeju Gothic', sans-serif;
	color: #888;
	line-height: 1.7;
}
a {
	color: #888;
	text-decoration: none;
}
a:hover {
	color: #ffd400;
	transition-duration: 0.5s;
}

/* 입력창 폰트 색상 */
::-webkit-input-placeholder { /* 크롬 4–56 */
	color: #888;
}
:-moz-placeholder { /* 파이어폭스 4–18 */
	color: #888;
}
::-moz-placeholder { /* 파이어폭스 19–50 */
	color: #888;
}
:-ms-input-placeholder { /* 인터넷 익스플로러 10+ */
	color:  #888;
}
::placeholder { /* 파이어폭스 51+, 크롬 57+ */
	color: #888;
}

/* 스크롤바 */
::-webkit-scrollbar {
	width:5px;
	height:5px;
	background:transparent;
}
::-webkit-scrollbar-thumb {
	width:5px;
	background: #EADDF4;
	border-radius:10px;
}

/* 컨테이너 */
#container {
	margin: 50px auto;
	width: 700px;
}

/* 헤더 */
#header {
	background-image: url("./images/bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 250px;
	position: relative;
	background-color: #EADDF4;
}
#header .m-button {
	color: #ffee73;
	font-size: 15px;
	cursor: pointer;
	display: inline-block;
	float: left;
	padding: 18px 21px;
	padding-right: 5px;
}
#header .title {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 3px;
	font-size: 16px;
	display: inline-block;
	z-index: 999;
	cursor: pointer;
	float: left;
	padding: 18px 10px;
}
#header .menu2 {
	position: absolute;
	top: 42px;
	left: 22px;
}
#header .menu2 i {
	color: #fff;
}
#header .logo {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-top: -58px;
	margin-left: -58px;
	border-radius: 100%;
	border: 8px solid #f6f6f6;
	background-color: #EADDF4;
}
#header .logo .front, #header .logo .back {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-o-transition: 0.4s;
	-ms-transition: 0.4s;
	transition: 0.4s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: absolute;
}
#header .logo .front {
	background-image: url(./images/logo.jpg);
}
#header .logo .back {
	background-image: url(./images/logo2.jpg);
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}
#header .logo:hover .back {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
}
#header .logo:hover .front {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
#header .cate {
	width: 78%;
	float: left;
	z-index: 10;
	padding: 21px 0;
}

/* 카테고리 */
#header .link_tit {
	display: none;
}
#header .category_list > li {
	display: inline-block;
	position: relative;
}
#header .sub_category_list {
	position: absolute;
	z-index: 999;
	text-align: left;
	max-height: 0px;
	overflow: hidden;
	transition: max-height linear 0.3s;
	background: #EADDF4;
}
#header .sub_category_list > li:first-child {
	margin-top: 5px;
}
#header .sub_category_list > li:last-child {
	margin-bottom: 5px;
}
#header .category_list > li:hover > .sub_category_list {
	display: block;
	max-height: 200px;
}
#header .cate a.link_sub_item {
	padding: 0 10px;
	white-space: nowrap;
	color: #fff;
	text-transform: uppercase;
}
#header .cate a.link_item {
	padding: 12px 5px;
	text-transform: uppercase;
	color: #fff;
}
#header .cate a.link_sub_item:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffee73;
}

/* 검색 */
#header .search {
	display: block;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
}
#header .search input[type="text"] {
	border: none;
	background: none;
	z-index: 1;
	width: 25px;
	height: 25px;
	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: 100px;
	padding: 0 4px;
	outline: none;
	background: none;
	color: white;
}
#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: 2px solid white;
	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: 2px;
	border-radius: 5px;
	background: white;
	transform: rotate(45deg) translate(22px, -1px);
}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
	background-color: #fff !important;
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	border-radius: 100px;
	background-image: none !important;
	color: #fff !important;
}
#header .search .submit {
	display: none;
}

/* 본문 영역 */
#content {
	background: #f6f6f6;
	padding: 70px;
}

/* 갤러리형 */
#lst_gal .thumb {
	float: left;
	width: 26.4%;
	margin: 2%;
	padding: 7px;
	background: #fff;
	position: relative;
	border: 1px solid #EADDF4;
}
#lst_gal .thumb .thumb-img {
	display: block;
	overflow: hidden;
	width: auto !important;
	height: 100%;
	border: 0 !important;
	white-space: nowrap;
	background: #EADDF4;
}
#lst_gal .thumb img {
	width: 100%;
	height: 100%;
	border: 0;
	transition-duration: 0.5s;
	vertical-align: top;
}
#lst_gal .thumb:hover img {
	opacity: 0
}
#lst_gal .thumb .info {
	height: 100% !important;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
}
#lst_gal .thumb .title {
	position: absolute;
	color: #fff;
	letter-spacing: 1px;
	top: 55%;
	left: 20%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	-moz-transform : translate(0%, -50%);
	-ms-transform : translate(0%, -50%);
	-o-transform : translate(0%, -50%);
	white-space: nowrap;
	max-width: 62%;
	text-overflow: ellipsis;
	overflow: hidden;
	opacity: 0;
	z-index: 10;
	transition-duration: 0.3s;
}
#lst_gal .thumb:hover .title {
	top: 46%;
	opacity: 1;
}
#lst_gal .thumb .title:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffee73;
	display: block;
}
#lst_gal .thumb .title:after {
	content: "";
	display: block;
	transform: translateY(-50%);
	height: 2px;
	width: 0px;
	background-color: #fff;
	transition: .3s ease-in-out;
	z-index: 2;
}
#lst_gal .thumb:hover .title::after {
	width: 100%;
}
#lst_gal .thumb .info .date {
	display: none;
}
.list_wrap:after {
	display: block;
	clear: both;
	content: ''
}

/* 목록형 */
#lst_web .article_skin {
	padding: 5px 0;
	height: 50px;
	border-bottom: 1px dotted #EADDF4;
}
#lst_web .article_skin:first-child {
	padding-top: 0;
}
#lst_web .thumb img {
	border-radius: 100px;
	float: right;
	width: 50px;
	height: 50px;
}
#lst_web .info {
	padding: 16px 0;
	position: relative;
	white-space: nowrap;
	display: block;
}
#lst_web .thumb .title {
	width: 75%;
	text-overflow: ellipsis;
	overflow: hidden;
	position: absolute;
}
#lst_web .thumb .date {
	margin-right: 5px;
	color: #fff;
	background-color: #EADDF4;
	font-size: 9px;
	padding: 4px 2px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#lst_web .thumb .date:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffee73;
}

/* 본문 상단 */
.titleWrap {
	height: 25px;
	width: 100%;
	position: relative;
	white-space: nowrap;
	display: inline-block;
	margin-bottom: 10px;
}
.titleWrap .title a {
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	max-width: 60%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	float: left;
}
.titleWrap .title:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffd400;
	margin-right: 5px;
	float: left;
}
.titleWrap .date {
	float: right;
	font-size: 9px;
}

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

/* 인용구 */
.tx-quote-tistory:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffd400;
	margin-right: 5px;
}
.tx-quote-tistory {
	position: relative;
	height: auto;
	margin: 5px 0;
	padding: 10px;
	border: 1px solid #EADDF4;
}

/* 더보기 */
.btn_more,
.moreless_fold {
	border-radius: 10px;
}
.moreless_content {
	position: relative;
	height: auto;
	margin: 3px 0;
	padding: 10px;
	border: 1px solid #EADDF4;
}
.btn_more:before,
.btn_less span:before,
.moreless_fold:before, .moreless_top:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffd400;
	padding-right: 3px;
}
.btn_less:first-child {
	margin-bottom: 10px;
}
.btn_less:last-child {
	margin-top: 10px;
}
.btn_more {
	display: block;
}
/* 본문 태그¸ */
.tagTrail {
	color: transparent;
	padding: 5px 0;
}
.tagTrail .tag {
	color: #888;
	width: 70px;
	font-weight: bold;
	display: inline-block;
}

/* 본문 댓글 */
.actionTrail {
	padding: 5px 0;
	margin-bottom: 10px;
}
.actionTrail .cnt {
	width: 70px;
	display: inline-block;
	font-weight: bold;
}

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

/* 댓글, 방명록 작성 */
.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 #EADDF4;
	background: transparent;
	margin-right: 2%;
}
.cmt-write .info input, .guestWrite .info input {
	width: 28.8%;
	padding: 5px;
	float: left;
	background: transparent;
	margin: 5px;
	margin-left: 0;
	border: 0;
	display: inline-block;
}
input[type="password" i] {
	font-family:sans-serif;
}
.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 #EADDF4;
	text-transform: uppercase;
}
.secret {
	display: inline-block;
	padding: 5px 0px;
	margin: 5px 0;
}
.secret i {
	vertical-align: middle;
	margin-left: 2px;
}
.checkbox {
	display: none;
}
.checkbox + .secret-label {
	outline: 0;
	display: block;
	width: 10px;
	height: 5px;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid;
	border-radius: 2em;
	padding: 2px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: inline-block;
	vertical-align: middle;
}
.checkbox + .secret-label:after {
	position: relative;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	left: 0;
	border-radius: 50%;
	border: 1px solid;
	margin-top: -1px;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
.checkbox + .secret-label:before {
	display: none;
}
.checkbox:checked + .secret-label:after {
	left: 40%;
	background: #888;
}
.checkbox:checked + .secret-label {
	background: #fff;
}

/* 댓글, 방명록 리스트 */
.commentList .box, .guestList .box {
	width: auto;
	margin: 5px auto;
}
.commentList li, .guestList li {
	position: relative;
	padding: 5px 0;
}
.commentList .cmt-list, .guestList .guest-list {
	padding: 20px 0;
	border-bottom: 1px solid #EADDF4;
}
.commentList .cmt-list:first-child, .guestList .guest-list:first-child {
	padding-top: 0;
}
.commentList img, .commentList .cmt-reply img, .guestList img, .guestList .reply img {
	left: 0px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;/* display: none; */
}
.commentList .info, .guestList .info {
	margin-left: 50px;
}
.commentList .cmt-reply, .guestList .reply {
	margin-left: 3%;
}
.commentList .name, .guestList .name {
	padding-right: 5px;
	font-weight: bold;
}
.commentList .date, .guestList .date {
	padding-right: 5px;
	font-size: 6px;
	float: right;
}
.commentList .date a, .guestList .date a {
	margin-right: 5px;
	visibility: hidden;
	float: left;
}
.commentList .date a:after, .guestList .date a:after {
	content: "\f06a";
	font-family: FontAwesome;
	visibility: visible;
	color: #EADDF4;
}
.commentList .control, .guestList .control, .commentList .date, .guestList .date {
	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: #EADDF4;
}
.commentList .text, .guestList .text {
	margin: 5px 0;
	transition-duration: 0.8s;
}
.commentList .info:hover .text, .guestList .info:hover .text {
	margin: 5px 0;
	color: #999;
}
.commentList .rp_admin .name, .guestList .guest_admin .name {
	padding: 2px;
}
.commentList .rp_admin .name:before, .guestList .guest_admin .name:before {
	content: '\f005';
	font-family: FontAwesome;
}
.commentList .hiddenComment .name:after, .guestList .hiddenComment .name:after {
	content: '게스트'
}
.commentList .cmt-list:last-child, .guestList .guest-list:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

/* 공지 */
.entryNotice {
	padding: 20px 0;
}
.entryNotice .date {
	display: table;
	color: #fff;
	background-color: #EADDF4;
	font-size: 9px;
	padding: 4px 7px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	position: relative;
	top: 3.5px;
	line-height: 1.2;
}
.entryNotice .date:before {
	content: '\f005';
	font-family: fontAwesome;
	color: #ffee73;
}

/* 보호글 */
.entryProtected {
	margin: 38% 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;
	font-weight: bold;
}
.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 {
	text-align: center;
	margin-top: 15px;
}
.no-more-prev, .no-more-next {
	color: #ffd400;
}
.paging .num {
	padding: 3px;
	color:#EADDF4;
}
.paging .num .selected {
	font-weight: bold;
	color:#888;
}

/* 탑버튼 */
#footer {
	margin-top: 20px;
}
#footer .top {
	text-align: center;
	font-size: 10px;
}
#footer .top a {
	color: #fff;
}

/* 카피라이트 */
.copy i {
	position: fixed;
	padding: 10px;
	bottom: 0px;
	left: 0;
	color: #fff;
}

/* 모바일 영역 */
@media all and (max-width: 768px) {
	::-webkit-scrollbar {
		width:0;
		height:0;
	}
	/* 모바일 컨테이너 */ 
	#container {
		width: auto;
		height: auto;
		overflow: hidden;
		position: relative;
		top: 0;
		left: 0;
		margin: 10px;
	}
	/* 모바일 메뉴 버튼 */
	#header .m-button {
		cursor: pointer;
		position: fixed;
		z-index: 999999;
		left: 33px;
		top: 26px;
		padding: 0;
	}
	/* 모바일 메뉴 슬라이드 */
	#header .catebox {
		position: fixed;
		width: 0;
		top: 0;
		left: 0;
		height: 100%;
		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: 100;
		overflow: hidden;
		background: #EADDF4;
		20%
	}
	#header .catebox.open {
		opacity: 1;
		width: 100%;
		overflow: scroll;
		overflow-y: scroll;
		overflow-x: hidden;
	}
	body.scroll {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	/* 모바일 카테고리 영역*/
	#header .title {
		margin-left: 45px;
		padding: 14px 5px;
	}
	#header .logo2 {
		width: 70px;
		height: 70px;
		position: static;
		margin-top: 0px;
		margin-left: 0px;
		border: 4px solid #f6f6f6;
	}
	#header .logo2 .front, #header .logo2 .back {
		width: 70px;
		height: 70px;
	}
	#header .catebox > ul {
		padding: 50px 25%;
	}
	#header .cate {
		padding-top: 0;
		width: 100%;
	}
	#header .menu2 {
		position: static;
		width: 100%;
		display: inline-block;
		padding: 0 10px;
	}
	#header .menu2 div {
		display: inline-block;
		padding-right: 5px;
	}
	/* 모바일 카테고리 */
	#header .category_list > li {
		display: block;
		position: relative;
	}
	#header .cate a.link_item {
		display: block;
		padding: 10px;
		border-bottom: 1px dotted;
	}
	#header .sub_category_list {
		position: static;
		max-height: none;
	}
	#header .sub_category_list:last-child {
		border-bottom: 1px dotted #fff
	}
	#header .cate a.link_sub_item {
		display: block;
	}
	/* 모바일 본문 영역 */
	#content {
		padding: 70px 20px;
	}
	/* 모바일 갤러리 */
	#lst_gal .thumb {
		width: 44.3%;
		padding: 1.5%;
		margin: 1%;
	}
	#lst_gal .thumb .title {
		text-align: center;
		top: 46%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform : translate(-50%, -50%);
		-ms-transform : translate(-50%, -50%);
		-o-transform : translate(-50%, -50%);
		max-width: 90%;
		opacity: 1;
		padding: 10px;
		text-shadow: 2px 0px 2px #EADDF4, -2px 0px 2px #EADDF4, 0px 2px 2px #EADDF4, 0px -2px 2px #EADDF4, 0 6px 10px #EADDF4;
	}
	#lst_gal .thumb img {
		opacity: 0.6;
	}
	/* 모바일 목록형 */
	#lst_web .thumb .title {
		width: 50%;
	}
	/* 모바일 본문 상단 */
	.titleWrap .title a {
		max-width: 45%;
	}
	/* 모바일 코멘트, 방명록 */
	.guestWrite .info input, .cmt-write .info input {
		max-width: 25%;
	}
}

@media (max-width: 338px) {
	#lst_gal .thumb {
		width: 41.8%;
	}
}

/* Tistory utility ------------------------------------------------ */ 
@media screen and (max-width: 767px) {
	.tt-span-1, .tt-span-2, .tt-span-3, .tt-span-4, .tt-span-5, .tt-span-6, .tt-span-7, .tt-span-8, .tt-span-9, .tt-span-10, .tt-span-11, .tt-span-12 {
		width: 100% !important;
	}
}
