@charset "utf-8";
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: var(--point-color);
	border: 7px solid var(--bg-color);
}
::-webkit-scrollbar-thumb {
	height: 50px;
	width: 50px;
	background-color: var(--point-color);
	border: 2px solid var(--border-color);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
	height: 50px;
	width: 50px;
	background-color: var(--sub-color);
}
::selection {
	background: var(--bg-color);
}
* {
	word-wrap: break-word;
	word-break: break-word;
	outline: none;
	box-sizing: border-box;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	list-style: none;
}
html {
	--border-color: #2e2e2e;
	--text-color: #2e2e2e;
	--font-s: 12px;
	--font-m: 13px;
	--font-l: 14px;
	--line-height: 1.6;
	--width: 350px;
	--padding: 16px;
	--gutter: 16px;
	--margin: 20px;
	--shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}
html.blue {
	--point-color: #fff;
	--sub-color: #fff;
	--bg-color: #fef3f6;
	--border-color: #0252ee;
	--text-color: #0252ee;
}
html.blue .menu nav a:hover, html.blue .article-btn a:hover {
	background: var(--bg-color);
}
html.black {
	--point-color: #fff;
	--sub-color: #fff;
	--bg-color: #f5f5f5;
	--text-color: #515151;
	--border-color: #515151;
}
html.dark {
	--shadow: 4px 4px 0 var(--border-color);
}
html.dark .blog-title:hover, html.dark .date:hover, html.dark .comment button:hover, html.dark .paging a:hover, html.dark .all-btn:hover,
html.dark .list-item:hover .date, html.dark .list-item:hover .list-content, html.dark .list-item:hover .list-thumb,
html.dark .tt_more_preview_comments_wrap:hover, html.dark .menu_toolbar .btn_menu_toolbar:hover {
	transform: translate(2px, 2px)!important;
	box-shadow: 2px 2px 0 var(--border-color)!important;
}
body {
	line-height: 1;
	background: var(--bg-color);
	color: var(--text-color);
	font-family: 'Poppins', 'Pretendard';
	font-size: var(--font-m);
}
a {
	color: var(--text-color);
	text-decoration: none;
}
a :not(img) {
	pointer-events: none;
}
img {
	max-width: 100%;
	height: auto!important;
	vertical-align: middle;
	border-radius: 5px;
}
iframe {
	width: 100%;
	max-width: 100%!important;
	border-radius: 5px;
	vertical-align: bottom;
}
input {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--text-color);
	font-family: inherit;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 30px #fff inset !important;
	-webkit-text-fill-color: var(--text-color);
}
input::placeholder, textarea::placeholder {
	color: var(--text-color);
}
.container {
	max-width: calc(var(--width) + var(--padding) * 2 + 4px);
	position: relative;
	margin: 100px auto;
}
.shadow {
	border-radius: 15px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow);
}
/* header */
header {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.blog-img {
	display: flex;
	width: calc(120px + var(--margin));
	height: calc(120px + var(--margin));
	margin-right: var(--gutter);
	overflow: hidden;
	background: #fff;
	background-size: cover;
	background-position: center;
}
.blog-img[style*=default] {
	background-image: none!important;
}
.blog-img[style*=default]:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	-webkit-mask: no-repeat center url(./images/profile.svg);
	background: var(--border-color);
}
.menu {
	display: flex;
	flex-direction: column;
	width: 230px;
	width: calc(100% - 120px - var(--margin) - var(--gutter));
}
.blog-title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 0 8px;
	background: var(--point-color);
	font-size: var(--font-l);
	font-weight: 600;
	transition: all 0.3s ease;
}
.blog-title:hover, .date:hover, .comment button:hover, .paging a:hover, .all-btn:hover,
.list-item:hover .date, .list-item:hover .list-content, .list-item:hover .list-thumb,
.tt_more_preview_comments_wrap:hover, .menu_toolbar .btn_menu_toolbar:hover {
	transform: translateY(2px)!important;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2)!important;
}
.menu nav {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: var(--margin) 0;
	background: var(--sub-color);
}
.menu nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 4px;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.menu nav a:hover, .article-btn a:hover {
	background: rgba(0, 0, 0, 0.08);
}
a svg g, button svg g {
	stroke: var(--border-color)!important;
}
.close-btn, .more-btn, .view-btn, .password-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
.category {
	display: none;
	position: relative;
	width: 100%;
	margin-bottom: var(--margin);
	background: var(--sub-color);
	font-size: var(--font-l);
	font-weight: 600;
	text-transform: capitalize;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.active {
	opacity: 1!important;
}
.tt_category {
	padding: var(--padding);
}
.tt_category a {
	position: relative;
}
.tt_category a, .article-content :not(figure) > a:not(.btn-toggle-moreless), .article-category a, .comment-name a, .notice .article-content a {
	background-image: linear-gradient(currentcolor, currentcolor);
	background-repeat: no-repeat;
	background-size: 0% 2px;
	transition: background-size 0.3s ease;
	background-position: 100%;
}
.tt_category a:hover, .article-content :not(figure) > a:not(.btn-toggle-moreless):hover, .article-category a:hover, .comment-name a:hover, .notice .article-content a:hover {
	background-size: 100% 2px;
	background-position: 0;
}
.tt_category a span {
	display: block;
	position: absolute;
	top: 2px;
	right: -9px;
	width: 6px;
	height: 6px;
	background: var(--text-color);
	border-radius: 3px;
	animation-fill-mode: both;
	animation: blink 3s infinite;
}
@keyframes blink {
	0%, 50%, 100% {
		opacity: 1;
	}
	25%, 75% {
		opacity: 0;
	}
}
.category_list li {
	padding-top: 10px;
}
.sub_category_list a:before {
	content: '+ ';
}
.c_cnt, .tt_category img, .link_tit span, .list-title img {
	display: none!important;
}
.hidelist .link_tit {
	display: none;
}
.hidelist .category_list > li:first-child {
	padding-top: 0;
}
/* article */
article {
	position: relative;
	width: 100%;
}
.article-wrap {
	display: flex;
	width: 100%;
	margin-bottom: var(--margin);
	position: relative;
}
.article-side {
	position: absolute;
	top: 0;
	right: calc(100% + var(--gutter));
	height: 100%;
}
.date, .top, .search {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 60px;
	height: 60px;
	background: var(--point-color);
	font-size: var(--font-l);
	font-weight: 600;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: default;
}
.date {
	color: transparent;
}
.date div {
	color: var(--text-color);
}
.month, .day, .year {
	transition: all 0.3s ease;
}
.month {
	margin-bottom: 2px;
}
.date:hover .month, .date:hover .day, .year, .list-item:hover .month, .list-item:hover .day {
	visibility: hidden;
	opacity: 0;
}
.year {
	position: absolute;
}
.date:hover .year, .list-item:hover .year {
	visibility: visible;
	opacity: 1;
}
.article-btn {
	position: sticky;
	top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 60px;
	padding: 17px 0;
	margin-top: var(--margin);
	background: var(--sub-color);
}
.like-btn, .comment-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 4px 0;
	border-radius: 10px;
	transition: all 0.3s ease;
	cursor: pointer;
}
.like-btn.on svg path:first-child, .search svg path {
	fill: var(--border-color);
}
.like-btn.on svg path:last-child {
	stroke: var(--sub-color);
}
.article-main {
	display: flex;
	flex-direction: column;
	min-height: 214px;
	width: 100%;
	padding: var(--padding);
	background: #fff;
	position: relative;
	overflow: inherit!important;
}
.article-title {
	width: 100%;
	padding-right: 28px;
	padding-bottom: 10px;
	font-size: var(--font-l);
	font-weight: 600;
	line-height: 1.4;
}
.article-menu ul, .comment-menu ul {
	display: none;
	width: 80px;
	padding: 10px;
	position: absolute;
	top: 38px;
	right: 12px;
	z-index: 2;
	background: #fff;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	font-size: var(--font-s);
	font-weight: 600;
}
.article-menu ul li, .comment-menu ul li {
	margin-top: 10px;
}
.article-menu ul li:first-child, .comment-menu ul li:first-child {
	margin: 0;
}
.article-menu ul li a, .comment-menu ul li a {
	cursor: pointer;
}
.article-content {
	line-height: var(--line-height);
	flex-grow: 1;
}
.article-content a {
	font-weight: 600;
}
.article-category {
	display: inline-block;
	margin-top: 10px;
	font-size: var(--font-m);
	font-weight: 600;
	line-height: var(--line-height);
}
.article-category a:before {
	content: '#';
}
.container_postbtn, .another_category, .tistoryProfileLayerTrigger {
	display: none!important;
}
/* editor */
div[style*="padding: 50px 0;"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	padding: 0!important;
	background: #fff!important;
	border-radius: 15px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow);
}
.absent_post {
	padding: 0!important;
	background: transparent!important;
	color: var(--text-color)!important;
	font-size: var(--font-l)!important;
	font-weight: 600!important;
}
figure.imagegridblock .image-container > span {
	margin-top: 0!important;
}
figure.imageslideblock, figure[data-ke-type='video'] {
	margin: 0!important;
	line-height: inherit!important;
}
figure.imageslideblock div.image-container {
	width: 100%!important;
	height: auto!important;
	min-width: auto;
	min-height: auto;
	max-height: 100%;
	background-color: transparent;
}
figure.imageslideblock div.mark {
	height: auto;
}
figure.imageslideblock div.mark span {
	width: 8px;
	height: 8px;
	margin: var(--padding) 3px 10px;
	border-radius: 50%;
}
figure.imageslideblock div.mark + figcaption {
	padding-top: 0;
}
figure figcaption {
	min-height: auto;
	padding: 5px 0 0;
	color: var(--text-color)!important;
	font-size: var(--font-s)!important;
}
figure figcaption:empty {
	display: none;
}
figure.fileblock, #tt-body-page figure.fileblock {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: auto;
	height: auto;
	margin: 0;
	border: 0;
	font-size: var(--font-m);
	overflow: hidden;
}
figure.fileblock a, #tt-body-page figure.fileblock a {
	position: relative;
	display: flex;
	align-items: center;
	height: auto;
	padding-left: 26px;
	line-height: 24px;
	overflow: hidden;
}
figure.fileblock a:after, #tt-body-page figure.fileblock a:after {
	content: '';
	width: 24px;
	height: 24px;
	-webkit-mask: no-repeat center url(./images/download.svg);
	background: var(--border-color);
	position: absolute;
	top: 0;
	left: 0;
	right: initial;
}
figure.fileblock .image, #tt-body-page figure.fileblock .image {
	display: none;
}
figure.fileblock .desc, #tt-body-page figure.fileblock .desc {
	display: flex;
	align-items: center;
	position: initial;
	width: auto;
	height: auto;
	overflow: hidden;
}
figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
	height: auto;
	margin: 0;
	color: var(--text-color);
	font-size: var(--font-m);
	overflow: hidden;
}
figure.fileblock .name, #tt-body-page figure.fileblock .name {
	max-width: 100%;
	height: auto;
	line-height: var(--line-height);
}
figure.fileblock .size, #tt-body-page figure.fileblock .size {
	flex-shrink: 0;
	height: auto;
	margin: 0 0 0 6px;
	color: var(--text-color);
	font-family: inherit;
	font-size: 10px;
}
figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph'] {
	margin: 0;
}
figure[data-ke-type='opengraph'] a, #tt-body-page figure[data-ke-type='opengraph'] a {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	height: auto;
	background: var(--bg-color);
	border: 0;
	border-radius: 5px;
	overflow: hidden;
}
figure[data-ke-type='opengraph'] a:after, #tt-body-page figure[data-ke-type='opengraph'] a:after {
	display: none;
}
figure[data-ke-type='opengraph'] div.og-image {
	width: 100px;
	height: 100px;
	position: relative;
	border: 0;
}
figure[data-ke-type=opengraph] a div.og-image::before, #tt-body-page figure[data-ke-type=opengraph] a div.og-image::before, #tt-body-page .blogview_content figure[data-ke-type=opengraph] div.og-image::before {
	width: 100px;
	height: 100px;
}
figure[data-ke-type='opengraph'] div.og-text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: calc(100% - 100px);
	padding: 10px!important;
	position: initial;
}
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 {
	max-width: 100%;
	margin: 0!important;
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-m);
	line-height: var(--line-height);
}
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 {
	display: -webkit-box;
	max-height: calc(var(--font-s)*var(--line-height)*2);
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-s);
	font-weight: 400;
	line-height: 1.4;
}
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 {
	position: initial;
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-s);
	text-align: right;
	line-height: var(--line-height);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
figure[data-ke-type='video'] .video-wrap {
	padding-bottom: 0;
}
figure[data-ke-type='video'] > div.video-wrap > iframe {
	position: initial;
}
.article-content figure, blockquote, .article-content :not(figure) > iframe {
	margin-top: 10px!important;
	margin-bottom: 10px!important;
}
.article-content figure:first-child, .article-content figure + figure, blockquote:first-child, blockquote + blockquote, .article-content :not(figure) > iframe:first-child, .article-content :not(figure) > iframe + iframe {
	margin-top: 0!important;
}
.article-content figure:last-of-type, blockquote:last-of-type, .article-content :not(figure) > iframe:last-of-type {
	margin-bottom: 0!important;
}
.article-content figure:last-of-type + div[data-ke-type='moreLess'], blockquote:last-of-type + div[data-ke-type='moreLess'], div[data-ke-type='moreLess'] + div[data-ke-type='moreLess'], p + div[data-ke-type='moreLess'] {
	margin-top: 10px!important;
}
.article-content figure:last-of-type + p, blockquote:last-of-type + p, div[data-ke-type='moreLess'] + p {
	padding-top: 10px!important;
}
h2, h2[data-ke-size], h3, h3[data-ke-size], h4, h4[data-ke-size] {
	font-size: var(--font-l);
	font-weight: 600!important;
}
#tt-body-page p[data-ke-size='size18'], p[data-ke-size='size18'] {
	font-size: var(--font-m);
}
#tt-body-page p[data-ke-size='size14'], p[data-ke-size='size14'] {
	font-size: var(--font-s);
}
#tt-body-page blockquote {
	margin: 0 auto;
}
blockquote, blockquote p {
	color: var(--text-color)!important;
	line-height: var(--line-height)!important;
}
blockquote[data-ke-style='box'], #tt-body-page blockquote[data-ke-style='box'],
blockquote[data-ke-style='style1'], #tt-body-page blockquote[data-ke-style='style1'],
blockquote[data-ke-style='style2'], #tt-body-page blockquote[data-ke-style='style2'],
blockquote[data-ke-style='style3'], #tt-body-page blockquote[data-ke-style='style3'] {
	padding: 10px;
	margin: 0;
	border: none;
	background: var(--bg-color);
	font: inherit;
	text-align: left;
	border-radius: 5px;
}
blockquote[data-ke-style='style1'], #tt-body-page blockquote[data-ke-style='style1'] {
	border: 2px solid var(--border-color);
	background: transparent;
}
blockquote[data-ke-style='style2'], #tt-body-page blockquote[data-ke-style='style2'] {
	padding: 0 0 0 10px;
	border-left: 2px solid var(--border-color);
	background: transparent;
	border-radius: 0;
}
blockquote span, #tt-body-page blockquote span {
	font-family: inherit!important;
}
div[data-ke-type='moreLess'] {
	display: flex;
	flex-wrap: wrap;
}
div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
	padding-left: 26px;
	color: var(--text-color)!important;
	font-size: var(--font-m);
	font-family: inherit;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 24px;
	position: relative;
}
.btn-toggle-moreless:before {
	content: '';
	width: 24px;
	height: 24px;
	-webkit-mask: no-repeat center url(./images/more.svg);
	background: var(--border-color);
	position: absolute;
	top: 0;
	left: 0;
}
.open .btn-toggle-moreless:before {
	transform: rotate(180deg);
}
div[data-ke-type='moreLess'].open .moreless-content, #tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
	width: 100%;
	margin-top: 10px;
}
.contents_style table td {
	border: 2px solid var(--border-color);
	padding: 5px;
}
[data-ke-list-type] li {
	margin-left: var(--padding);
	list-style-type: circle!important;
}
hr[data-ke-style], #tt-body-page hr[data-ke-style] {
	cursor: default!important;
}
code {
	font-family: 'consolas';
}
.twitter-tweet:first-child {
	margin-top: 0!important;
}
.twitter-tweet iframe {
	margin: 0;
}
/* comment */
.comment {
	display: none;
	position: relative;
	width: calc(100% + 4px);
	padding-right: 4px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.comment-form {
	display: flex;
	margin-bottom: var(--margin);
}
.comment-write {
	width: calc(100% - 60px - var(--gutter));
	padding: var(--padding);
	background: #fff;
	position: relative;
}
.comment-input {
	display: flex;
}
.comment-input input {
	display: flex;
	width: 50%;
	height: calc(var(--font-l) + 10px);
	padding-bottom: 9px;
	font-size: var(--font-l);
	font-weight: 600;
}
.comment-input input:first-child {
	padding-right: var(--gutter);
}
.comment-input input:last-child {
	padding-right: 28px;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + .lock-btn {
	width: 24px;
	height: 24px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}
input[type=checkbox] + .lock-btn {
	-webkit-mask: no-repeat center url(./images/unlock.svg);
	background: var(--border-color);
}
input[type=checkbox]:checked + .lock-btn {
	-webkit-mask: no-repeat center url(./images/lock.svg);
}
.comment-write .comment-name {
	display: none;
	cursor: text;
	user-select: none;
}
.comment-write textarea {
	display: block;
	width: 100%;
	height: 62px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-m);
	line-height: var(--line-height);
	resize: none;
	overflow: hidden;
}
.comment button {
	width: 60px;
	height: 60px;
	margin: 0 0 0 var(--gutter);
	background: var(--point-color);
	transition: all 0.3s ease;
	cursor: pointer;
}
.comment-item {
	display: flex;
	margin-bottom: var(--margin);
	position: relative;
}
.comment-avatar {
	width: 60px;
	height: 60px;
	margin-right: var(--gutter);
	background: #fff;
	overflow: hidden;
}
.comment-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.comment-img[style*=default] {
	-webkit-mask: no-repeat center url(./images/profile.svg);
	background: var(--border-color)!important;
}
.comment-img img, .list-thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%!important;
}
.comment-reply .comment-avatar {
	visibility: hidden;
}
.comment-content {
	width: calc(100% - 60px - var(--gutter));
	padding: var(--padding);
	background: #fff;
	position: relative;
}
.rp_admin .comment-content, .guest_admin .comment-content {
	background: var(--sub-color);
}
.comment-name {
	padding-right: 28px;
	padding-bottom: 10px;
	font-size: var(--font-l);
	font-weight: 600;
}
.comment-name:empty:after {
	content: '익명';
}
.comment-content p {
	line-height: var(--line-height);
}
.comment-date {
	display: none;
}
.tt_more_preview_comments_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	margin: 0 0 var(--margin);
	padding: 0;
	background: var(--point-color);
	border-radius: 15px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow);
	color: var(--text-color);
	font-size: var(--font-l);
	font-weight: 600;
	transition: all 0.3s ease;
}
/* proteceted */
.password {
	position: relative;
	width: 100%;
	height: 60px;
	margin-bottom: var(--margin);
	background: #fff;
	overflow: hidden;
}
.password-btn {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
}
/* list */
.list-item {
	display: flex;
	width: 100%;
	margin-bottom: var(--margin);
	position: relative;
}
.list-item .date {
	position: absolute;
	top: 0;
	right: calc(100% + var(--gutter));
	pointer-events: none;
	background: #fff;
}
.list-item:hover .date {
	background: var(--point-color);
}
.hidedate .list-item .date {
	background: var(--point-color);
	visibility: hidden;
	opacity: 0;
}
.hidedate .list-item:hover .date, .hidedate .list-item .month, .hidedate .list-item .day {
	visibility: visible;
	opacity: 1;
}
.hidedate .list-item .year {
	visibility: hidden;
	opacity: 0;
}
.list-content {
	position: relative;
	flex-grow: 1;
	width: calc(100% - 120px - var(--margin) - var(--gutter));
	height: calc(120px + var(--margin));
	padding: var(--padding);
	background: #fff;
	transition: all 0.3s ease;
	transition-property: transform, box-shadow;
}
.list-title {
	padding-bottom: 10px;
	padding-right: 28px;
	font-size: var(--font-l);
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.list-summary {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	line-height: var(--line-height);
}
.list-thumb {
	flex-shrink: 0;
	width: calc(120px + var(--margin));
	height: calc(120px + var(--margin));
	margin-left: var(--gutter);
	background-color: #fff;
	overflow: hidden;
	transition: all 0.3s ease;
}
.list-thumb:empty, .type-title .list-thumb {
	display: none;
}
.list-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	margin-bottom: var(--margin);
	background: #fff;
	font-size: var(--font-l);
	font-weight: 600;
}
/* list style */
.type-text .list-item:not(.empty) {
	flex-wrap: wrap;
	height: calc(120px + var(--margin));
	transition: height 0.3s ease;
}
.type-text .list-item:not(.empty):hover {
	height: calc(calc(120px + var(--margin)) * 2 + var(--margin));
}
.type-text .list-item:not(.empty):hover .list-thumb {
	height: calc(120px + var(--margin));
	opacity: 1;
	visibility: visible;
}
.type-text .list-thumb {
	margin: var(--margin) 0 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}
.type-text .list-thumb, .type-text .list-content {
	width: 100%;
}
.type-title .list-content, .protected .list-content {
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0 var(--padding);
}
.type-title .list-title, .protected .list-title {
	padding-bottom: 0;
	line-height: 60px;
}
.type-title .list-summary, .protected .list-summary, .protected .view-btn svg {
	display: none;
}
.protected .view-btn {
	width: 24px;
	height: 24px;
	-webkit-mask: no-repeat center url(./images/lock.svg);
	background: var(--border-color);
}
/* guestbook */
#tt-body-guestbook .comment {
	display: block;
	opacity: 1;
}
/* paging */
.paging {
	display: flex;
	width: 100%;
}
.paging a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background: var(--point-color);
	font-size: var(--font-l);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.paging a.top, .paging a.search {
	background: var(--sub-color);
}
#tt-body-page .paging a:not([href]), .paging a.no-more-prev, .paging a.no-more-next {
	cursor: default;
}
.prev {
	flex-grow: 1;
	margin-left: var(--gutter);
}
.prev:after {
	content: 'Previous';
}
.next {
	width: calc(120px + var(--margin));
	margin-left: var(--gutter);
}
.next:after {
	content: 'Next';
}
.paging a.search, .searchbar, #tt-body-category .paging a.top, #tt-body-search .paging a.top {
	display: none;
}
#tt-body-category .paging a.search, #tt-body-search .paging a.search {
	display: flex;
}
.paging a.search g g {
	stroke-width: 0;
	fill: var(--border-color);
}
.searchbar {
	position: relative;
	width: 100%;
	height: 60px;
	margin-bottom: var(--margin);
	background: var(--sub-color);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.searchbar input, .password input {
	width: 100%;
	height: 100%;
	padding-right: 44px;
	padding-left: var(--padding);
	font-size: var(--font-l);
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.searchbar .close-btn, .password-btn, .type-title .view-btn, .protected .view-btn, .all-btn .view-btn {
	top: 50%;
	transform: translateY(-50%);
}
body:not(#tt-body-page) .page {
	display: none;
}
/* cover */
.notice {
	margin-bottom: var(--margin);
	padding: var(--padding);
	background: var(--sub-color);
	position: relative;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.notice:last-of-type, .main-img:last-of-type, .list:last-of-type .list-item:last-child {
	margin-bottom: 0;
}
.notice .article-title {
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.notice .article-title:empty:after {
	content: 'Notice';
}
.main-img {
	margin-bottom: var(--margin);
	background: #fff;
	overflow: hidden;
	position: relative;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.all-btn {
	position: relative;
	display: flex;
	align-items: center;
	height: 60px;
	margin-top: var(--margin);
	padding-left: var(--padding);
	background: var(--point-color);
	font-size: var(--font-l);
	font-weight: 600;
	transition: all 0.3s ease;
}
/* copyright */
.copyright {
	color: var(--text-color);
	font-size: 12px;
	font-weight: 600;
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 10;
}
.copyright a {
	display: block;
	width: 8px;
	height: 12px;
	position: relative;
	overflow: hidden;
	transition: width 0.3s ease;
}
.copyright a:hover {
	width: 36px;
}
.copyright a:hover span.aam {
	visibility: visible;
	opacity: 1;
}
.copyright a span {
	position: absolute;
}
span.b {
	width: 8px;
}
span.aam {
	left: 8px;
	width: 28px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}
/* toolbar */
.menu_toolbar * {
	font-family: 'Poppins', 'Pretendard'!important;
}
.menu_toolbar .btn_menu_toolbar {
	background: var(--point-color)!important;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow)!important;
	transition: all 0.3s ease;
}
.menu_toolbar .btn_menu_toolbar.btn_subscription {
	padding: 0 16px!important;
}
.menu_toolbar .txt_tool_id, .menu_toolbar .txt_state {
	color: var(--text-color)!important;
	font-weight: 600!important;
}
.menu_toolbar .txt_tool_id, .menu_toolbar .header_layer:after {
	display: none!important;
}
.menu_toolbar .header_layer {
	right: 0!important;
	border-radius: 15px;
	border: 2px solid var(--border-color);
	box-shadow: var(--shadow);
}
.inner_header_layer .info_profile {
	padding: 16px 86px 16px 16px!important;
}
.inner_header_layer .txt_id {
	line-height: 1!important;
	color: var(--text-color)!important;
}
.inner_header_layer .txt_email {
	padding: 10px 0 0!important;
	line-height: 1!important;
}
.inner_header_layer .link_setting {
	right: 16px!important;
}
.inner_header_layer .link_setting_type2 {
	bottom: 16px!important;
	height: auto!important;
	line-height: 1!important;
}
.inner_header_layer .wrap_list {
	min-height: auto!important;
}
.inner_header_layer .tit_list_type {
	padding: 16px 16px 10px!important;
	line-height: 1!important;
}
.inner_header_layer .info_profile_type1 {
	padding: 0px 86px 10px 16px!important;
}
.inner_header_layer .info_profile_type1:last-child {
	margin-bottom: 6px!important;
}
.inner_header_layer .link_edit {
	right: 43px!important;
}
.menu_toolbar .list_toolbar {
	padding: 16px 0 6px!important;
}
.menu_toolbar .list_toolbar .link_list {
	height: auto!important;
	padding: 0 0 10px 16px!important;
	line-height: 1!important;
	color: var(--text-color)!important;
}
.menu_toolbar .list_toolbar li:last-child .link_list {
	color: #909090!important;
}
.menu_toolbar .layer_tool {
	height: 116px!important;
}
/* mobile */
@media (max-width: 1024px) {
	.copyright {
		display: none;
	}
}
@media (max-width: 569px) {
	.container {
		max-width: 100%;
		margin: var(--gutter) var(--gutter) var(--margin);
	}
	.article-side, .list-item .date {
		display: none;
	}
	.comment {
		display: block;
		opacity: 1;
	}
	.prev:after {
		content: 'Prev';
	}
}
@media (max-width: 417px) {
	.menu nav a:last-child {
		display: none;
	}
}
