@charset "utf-8";
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	background-color: var(--sub-color);
	border: 7px solid var(--bg-color);
}
::-webkit-scrollbar-thumb {
	height: 50px;
	width: 50px;
	background-color: var(--sub-color);
	border: 2px solid var(--bg-color);
	border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
	height: 50px;
	width: 50px;
	background-color: var(--point-color);
}
::selection {
	background: var(--bg-color);
}
* {
	word-wrap: 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 {
	--text-color: #2e2e2e;
	--sub-color: #d0c4bc;
	--border-color: #ebe5e0;
	--bg-color: #f8f5f3;
	--font-xs: 11px;
	--font-s: 12px;
	--font-m: 13px; /* 본문 */
	--font-l: 14px; /* 제목 */
	--line-height: 1.7;
}
html.mono {
	--point-color: #3e3e3e;
	--sub-color: #c7c7c7;
	--border-color: #eaeaea;
	--bg-color: #f6f6f6;
}
html.mono .profile-title span, html.mono .article-content a, html.mono .category_list a div span {
	color: var(--sub-color);
}
html.mono .paging a.prev:not(.no-more-prev), html.mono .paging a.next:not(.no-more-next) {
	color: var(--point-color);
}
body {
	line-height: 1;
	background: var(--bg-color);
	color: var(--text-color);
	font-family: 'Poppins', 'Noto Sans KR';
}
a {
	text-decoration: none;
	transition: color 0.3s ease;
}
img {
	max-width: 100%;
	height: auto!important;
	vertical-align: middle;
}
iframe {
	width: calc(100% + 40px);
	margin-right: -20px;
	margin-left: -20px;
}
#tt-body-page iframe, figure img, figure iframe {
	max-width: calc(100% + 40px);
}
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 var(--bg-color) inset !important;
	-webkit-text-fill-color: var(--sub-color);
}
input::placeholder, textarea::placeholder {
	color: var(--sub-color);
	letter-spacing: 0.05em;
}
.container {
	display: flex;
	width: var(--content-width);
	max-width: 640px;
	min-width: 340px;
	margin: 80px auto;
	position: relative;
}
.content {
	width: var(--content-width);
	max-width: 640px;
	min-width: 340px;
}
/* loader */
#loader {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--bg-color);
	overflow: hidden;
	position: fixed;
	z-index: 10000;
	top: 0;
	opacity: 1;
	visibility: visible;
}
#loader.hidden {
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
}
#loader.reveal {
	opacity: 1;
	visibility: visible;
	transition: all 0.2s ease;
}
.spinner {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 3px solid #fff;
	border-top-color: var(--point-color);
	border-radius: 50%;
	animation: spin 1s ease-in-out infinite;
}
#loader.reveal .spinner {
	opacity: 0;
}
@keyframes spin {
	to { -webkit-transform: rotate(360deg); }
}
/* profile */
.profile-header, nav, article, .list, #tt-body-search .list, .guest, .taglog, .paging, .absent_post,
#tt-body-category .list.simple.type-image-text .list-empty, #tt-body-category .list.simple.type-image .list-empty, #tt-body-category .list.simple.type-text .list-empty {
	width: 100%;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
	overflow: hidden;
	position: relative;
}
.profile-bg {
	height: 200px;
	background: var(--point-color);
	overflow: hidden;
}
.breakpoint .profile-bg, .breakpoint .article-header {
	height: 160px;
}
.profile-bg:before {
	height: 44px;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
	content: '';
}
.profile-bg img, .profile-avatar img, .author-avatar img, .list-img img {
	object-fit: cover;
	width: 100%;
	height: 100%!important;
}
.profile-content {
	display: flex;
	justify-content: space-between;
	height: 70px;
	padding: 0 20px;
	position: relative;
	background: #fff;
}
.profile-info {
	display: flex;
	align-items: flex-end;
	margin: 0 20px 20px 0;
	min-width: 0;
}
.profile-avatar {
	width: 100px;
	height: 100px;
	margin-right: 20px;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}
.profile-avatar:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	border: 1px solid rgb(0 0 0 / 5%);
	border-radius: 6px;
}
.profile-avatar:empty {
	background: var(--bg-color);
}
.profile-avatar:empty:before {
	border-color: transparent;
}
.profile-avatar:empty:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 16px;
	content: '\f030';
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	color: var(--sub-color);
}
.profile-title {
	overflow: hidden;
}
.profile-title a {
	display: block;
	padding-bottom: 2px;
	color: var(--text-color);
	font-size: var(--font-l);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.profile-title span {
	display: block;
	margin-top: 4px;
	margin-bottom: -1px;
	color: var(--point-color);
	font-size: var(--font-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.profile-action {
	display: flex;
	align-items: flex-end;
	margin-bottom: 20px;
}
button, .icon, .lock-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	background: #fff;
	color: var(--point-color);
	border: 1px solid var(--border-color);
	border-radius: 6px;
	font-family: 'Poppins', 'Noto Sans KR';
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}
button:hover, .lock-btn:hover, .gnb .menu-btn:hover, .icon:hover {
	border-color: var(--point-color);
}
button i, .sns i {
	color: var(--point-color);
	font-size: var(--font-l);
}
.btn_subscription {
	width: auto;
	margin-right: 10px;
	padding: 0 15px;
	background: var(--point-color);
	border: 0;
	color: #fff;
}
.btn_subscription:hover, .tt_more_preview_comments_wrap:hover, div[data-ke-type='moreLess'] .btn-toggle-moreless:hover, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:hover,
figure.fileblock a:hover, #tt-body-page figure.fileblock a:hover {
	opacity: 0.9;
}
.btn_subscription .txt {
	font-size: var(--font-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
}
.btn_subscription .txt:before {
	content: 'follow';
}
.btn_subscription.following .txt:before {
	content: 'following';
}
.btn_subscription.following:hover .txt:before {
	content: 'unfollow';
}
.menu-btn {
	padding: 5px;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 11;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
/* gnb */
.gnb {
	position: fixed;
	top: 0;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: space-between;
	width: inherit;
	height: 50px;
	padding: 0 15px 0 20px;
	background: #fff;
	border-bottom: 1px solid var(--border-color);
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}
.gnb.active {
	visibility: visible;
	opacity: 1;
}
.gnb .blog-title {
	margin-right: 20px;
	padding-bottom: 2px;
	color: var(--text-color);
	font-size: var(--font-l);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.gnb .menu-btn {
	position: initial;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--point-color);
	transition: all 0.3s ease;
}
/* menu */
.menu {
	position: absolute;
	left: calc(100% + 20px);
	z-index: 10;
	width: 160px;
	height: 100%;
	text-transform: uppercase;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	transition-property: opacity, visibility, transform;
}
.menu.active {
	opacity: 1!important;
	visibility: visible!important;
	transform: translateX(0);
}
.menu > div {
	position: sticky;
	top: 20px;
}
.menu > div::-webkit-scrollbar {
	display: none;
}
nav {
	margin-bottom: 20px;
	padding: 5px;
}
nav a {
	display: flex;
	padding: 10px 15px;
	border-radius: 6px;
	color: var(--text-color);
	font-size: var(--font-s);
	transition: background 0.3s ease;
	word-break: break-word;
}
nav > a {
	color: var(--point-color);
	font-size: var(--font-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
}
nav a:hover {
	background: var(--bg-color);
}
nav i, .article-menu ul i {
	width: 12px;
	margin-right: 10px;
	font-size: 10px;
	text-align: center;
	letter-spacing: 0;
}
.tt_category a {
	align-items: center;
	justify-content: space-between;
	letter-spacing: 0.05em;
}
.tt_category a div {
	display: flex;
	align-items: center;
}
.tt_category a div span {
	margin-left: 5px;
	color: var(--point-color);
	font-size: 10px;
	font-weight: 600;
}
.link_tit, .sub_category_list {
	display: none;
}
.c_cnt {
	flex-shrink: 0;
	margin-left: 10px;
	color: var(--sub-color);
	font-size: 10px;
	letter-spacing: 0.1em;
}
.link_sub_item {
	color: var(--sub-color);
}
/* article */
article, .paging, .absent_post, .list, .guest, .taglog {
	margin-top: 20px;
}
.article-header {
	height: 200px;
	position: relative;
}
.article-thumb {
	height: 100%;
	overflow: hidden;
	transition: all 0.3s ease;
}
.article-thumb:before {
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	left: 0px;
	z-index: 2;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
	content: '';
	transition: all 0.3s ease;
}
.thumb-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}
.article-info {
	display: flex;
	align-items: flex-start;
	width: 100%;
	padding: 20px;
	position: absolute;
	top: 0;
	z-index: 2;
}
.article-category {
	flex-shrink: 0;
	margin-right: 10px;
	padding: 5px 10px;
	background: var(--point-color);
	border-radius: 6px;
	color: #fff;
	font-size: var(--font-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article-title {
	flex: 1 1 auto;
	align-self: center;
	margin-right: 15px;
	color: #fff;
	font-size: var(--font-l);
	font-weight: 500;
	line-height: 20px;
	word-break: break-word;
}
.protected .article-title {
	margin-right: 0;
}
.article-title img, .tt_category img {
	display: none;
}
.more-btn {
	align-self: center;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
.more-btn i {
	line-height: 20px;
}
.article-menu {
	position: relative;
}
.article-menu ul {
	width: 120px;
	margin-top: 5px;
	padding: 5px;
	position: absolute;
	right: 0;
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-5px);
	transition: all 0.3s ease;
}
.article-menu ul.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.article-menu ul li a {
	display: flex;
	padding: 10px 15px;
	border-radius: 6px;
	color: var(--sub-color);
	font-size: var(--font-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: background 0.3s ease;
}
.article-menu ul li a:hover {
	background: var(--bg-color);
}
.article-author {
	display: flex;
	align-items: center;
	margin: 20px 20px 0;
}
.author-avatar, .comment-avatar, .list-img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}
.author-avatar:empty:after, .comment-avatar[style*=profile_default]:after, .list-img:empty:after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 12px;
	content: '\f007';
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%,-50%);
	color: var(--border-color);
}
.author-avatar:before, .comment-avatar:before, .list-img:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	border: 1px solid rgb(0 0 0 / 5%);
	border-radius: 50%;
}
.author-avatar:empty:before, .comment-avatar[style*=profile_default]:before, .list-img:empty:before {
	border: 1px solid var(--border-color);
}
.author-name, .list-name {
	flex: 1 1 auto;
}
.author-name div:first-child, .list-name div:first-child {
	margin-bottom: 6px;
	color: var(--sub-color);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.author-name div:last-child, .list-name div:last-child {
	font-size: var(--font-s);
	text-transform: capitalize;
	letter-spacing: 0.05em;
}
.article-date, .comment-date, .article-by {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	color: var(--sub-color);
	font-size: var(--font-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.article-date:before, .article-by:before {
	margin-right: 5px;
	font-family: 'Font Awesome 5 Free';
	font-size: 10px;
	letter-spacing: 0;
	content: '\f017';
}
.article-content {
	padding: 20px;
	font-size: var(--font-m);
	line-height: var(--line-height);
	position: relative;
}
.article-content a {
	color: var(--point-color);
	font-family: 'Poppins', 'Noto Sans KR';
	font-weight: 500;
}
.article-content a:after {
	display: inline-block;
	margin-left: 4px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	content: '\f35d';
}
.img-link:after {
	display: none!important;
}
.article-content a img {
	width: auto;
}
.article-content u {
	text-decoration: none;
	background-image: linear-gradient(transparent 60%, var(--border-color) 40%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s ease;
}
.article-content u:hover {
	background-size: 0% 100%;
}
.article-footer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px 20px;
}
.article-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.container_postbtn {
	display: none;
}
.comment-btn {
	margin-right: 10px;
}
.like-btn:before {
	color: var(--point-color);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	content: '\f004';
	transition: all 0.3s ease;
}
.like-btn.on:before {
	color: #d85a4e;
}
.like-btn.on:hover {
	border-color: #d85a4e;
}
.article-tags {
	margin-left: 20px;
	color: var(--sub-color);
	font-size: var(--font-xs);
	text-align: right;
	line-height: 1.4;
}
.article-tags a {
	display: inline-block;
	color: var(--sub-color);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	word-break: break-word;
}
.article-tags a:hover {
	color: var(--point-color);
}
.article-tags a:before {
	content: '#';
}
div[style*="padding: 50px 0;"] {
	padding: 0!important;
}
.absent_post {
	padding: 20px!important;
	background: #fff!important;
	color: var(--text-color)!important;
	font-size: 12px!important;
	font-weight: 400!important;
}
/* article type-text */
.type-text .article-header {
	height: auto;
}
.type-text .article-thumb {
	display: none;
}
.type-text .article-info {
	position: relative;
	border-bottom: 1px solid var(--border-color);
}
.type-text .article-title {
	color: var(--text-color);
}
.type-text .more-btn {
	color: var(--point-color);
}
/* related */
.another_category {
	display: none;
	margin: 20px 0 0!important;
	padding: 15px!important;
	background: var(--bg-color)!important;
	border: 0!important;
	border-radius: 6px!important;
}
.another_category h4 {
	padding: 0 0 10px!important;
	border-bottom: 1px solid var(--border-color)!important;
}
.another_category a {
	color: var(--text-color)!important;
	font-size: var(--font-s);
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.another_category th a.current {
	color: var(--text-color)!important;
}
.another_category a:after, .another_category th span {
	display: none;
}
.another_category tr {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.another_category th {
	display: flex;
	line-height: 1!important;
}
.another_category td {
	flex-shrink: 0;
	margin-left: 10px;
	padding: 0!important;
	width: auto!important;
	border: 0!important;
	color: var(--sub-color)!important;
	font-size: var(--font-xs)!important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
/* editor */
.imageblock:not(.normal), .imagegridblock, .contents_style > img, .article-content > img, .article-content p > img, .moreless-content > img {
	width: calc(100% + 40px)!important;
	max-width: calc(100% + 40px)!important;
	margin-right: -20px!important;
	margin-left: -20px!important;
}
.article-content img {
	opacity: 0;
}
.article-content img.loaded {
	animation-name: loaded;
	animation-duration: 0.6s;
	animation-delay: 0.3s;
	animation-fill-mode: forwards;
}
@keyframes loaded {
	from { opacity: 0; }
	to { opacity: 1; }
}
figure.imagegridblock .image-container > span {
	margin-top: 0!important;
}
figure.imageslideblock, figure[data-ke-type='video'] {
	max-width: calc(100% + 40px)!important;
	margin-right: -20px!important;
	margin-left: -20px!important;
	line-height: inherit!important;
}
figure.imageslideblock div.image-container {
	min-width: 300px;
}
.breakpoint figure.imageslideblock div.image-container {
	min-height: auto;
	height: 100%!important;
}
figure.imageslideblock div.mark + figcaption {
	padding-top: 0;
}
figure figcaption {
	min-height: auto;
	padding: 10px 20px 0;
	color: var(--sub-color)!important;
	font-size: var(--font-s)!important;
	letter-spacing: 0.05em;
}
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;
	color: #fff;
	font-size: var(--font-m);
	overflow: hidden;
}
figure.fileblock a, #tt-body-page figure.fileblock a {
	position: initial;
	display: flex;
	align-items: center;
	height: 30px;
	padding: 5px 10px;
	background: var(--point-color);
	border-radius: 6px;
	color: #fff!important;
	overflow: hidden;
	transition: opacity 0.3s ease;
}
figure.fileblock a:after, #tt-body-page figure.fileblock a:after {
	position: initial;
	width: auto;
	height: auto;
	margin-left: 10px;
	background-image: none;
	content: '\f019';
}
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: #fff;
	font-size: var(--font-m);
	overflow: hidden;
}
figure.fileblock .name, #tt-body-page figure.fileblock .name {
	max-width: 100%;
	height: auto;
	font-weight: 500;
	line-height: var(--line-height);
}
figure.fileblock .size, #tt-body-page figure.fileblock .size {
	flex-shrink: 0;
	height: auto;
	margin: 0 0 0 10px;
	color: #fff;
	font-family: inherit;
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph'] {
	margin: 0;
	background: var(--bg-color);
	border-radius: 6px;
	overflow: hidden;
}
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: 100px;
	border: 0;
	color: var(--text-color);
}
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 {
	display: block;
	width: 100px;
	height: 100px;
	position: relative;
	border: 0;
}
figure[data-ke-type='opengraph'] div.og-image:after {
	position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		content: '';
		border: 1px solid rgb(0 0 0 / 5%);
		border-radius: 0 6px 6px 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: 15px!important;
	position: initial;
	font-weight: 400;
}
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;
	padding-bottom: 2px!important;
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-m);
	font-weight: 500;
	line-height: 1;
}
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;
	color: var(--sub-color);
	font-family: inherit;
	font-size: var(--font-s);
	font-weight: 400;
	line-height: 1.5;
}
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(--sub-color);
	font-family: inherit;
	font-size: var(--font-xs);
	font-weight: 500;
	text-align: right;
	line-height: 1;
	letter-spacing: 0.1em;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
figure[data-ke-type='opengraph'] div.og-text p.og-host:before, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host:before {
	margin-right: 4px;
	font-family: 'Font Awesome 5 Free';
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
	content: '\f0c1';
}
.article-content figure, blockquote, .article-content :not(figure) > iframe {
	margin-top: 15px!important;
	margin-bottom: 15px!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: 15px!important;
}
.article-content figure:last-of-type + p, blockquote:last-of-type + p, div[data-ke-type='moreLess'] + p {
	padding-top: 15px!important;
}
h2, h2[data-ke-size] {
	font-size: 15px;
	font-weight: 700;
}
h3, h3[data-ke-size] {
	font-size: var(--font-l);
	font-weight: 700;
}
h4, h4[data-ke-size] {
	font-size: var(--font-m);
	font-weight: 700;
}
#tt-body-page h2[data-ke-size], #tt-body-page h3[data-ke-size], #tt-body-page h4[data-ke-size] {
	font-weight: 700;
}
#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;
	font-size: var(--font-m);
	line-height: var(--line-height)!important;
}
blockquote[data-ke-style='box'], #tt-body-page blockquote[data-ke-style='box'],
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'] {
	margin: 0;
	padding: 15px;
	background: var(--bg-color);
	border: none;
	border-radius: 6px;
}
blockquote[data-ke-style='style1'], #tt-body-page blockquote[data-ke-style='style1'] {
	padding: 0;
	background: none;
	color: var(--sub-color)!important;
	font-size: inherit;
	text-align: center;
}
blockquote[data-ke-style='style1']:before, #tt-body-page blockquote[data-ke-style='style1']:before {
	position: relative;
	top:-5px;
	padding-right: 5px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	content: '\f10d';
}
blockquote[data-ke-style='style1']:after, #tt-body-page blockquote[data-ke-style='style1']:after {
	position: relative;
	top:-5px;
	padding-left: 5px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	content: '\f10e';
}
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 {
	display: flex;
	align-items: center;
	height: 30px;
	padding: 5px 10px;
	background: var(--point-color);
	border-radius: 6px;
	color: #fff!important;
	font-family: inherit;
	font-size: var(--font-m);
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: opacity 0.3s ease;
}
.btn-toggle-moreless:after {
	margin-left: 8px!important;
	content:'\f067'!important;
}
.open .btn-toggle-moreless:after {
	content:'\f00d'!important;
}
.btn-toggle-moreless span {
	line-height: var(--line-height);
	overflow: hidden;
	text-overflow: ellipsis;
}
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 {
	padding: 5px 10px;
	border: 1px solid var(--border-color);
}
[data-ke-list-type] li {
	margin-left: 15px;
	list-style-type: circle!important;
}
[data-ke-list-type] ::marker {
	color: var(--sub-color);
	font-size: var(--font-xs);
}
hr[data-ke-style], #tt-body-page hr[data-ke-style] {
	cursor: default!important;
}
code {
	border-radius: 6px!important;
	font-family: 'consolas';
}
.twitter-tweet:first-child {
	margin-top: 0!important;
}
.twitter-tweet iframe {
	margin: 0;
}
/* comment */
.comment-count {
	display: none;
}
.comment {
	display: none;
	border-top: 1px solid var(--border-color);
}
.comment-form {
	display: flex;
	padding: 20px;
}
.comment-form label {
	width: 30px;
	height: 30px;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox] + .lock-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--point-color);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	cursor: pointer;
}
input[type=checkbox]:checked + .lock-btn {
	border: 1px solid var(--point-color);
}
input[type=checkbox] + .lock-btn:before {
	content: '\f13e';
}
input[type=checkbox]:checked + .lock-btn:before {
	content: '\f023';
}
.comment-write {
	width: calc(100% - 40px);
	margin-left: 10px;
	padding: 0 15px;
	background: var(--bg-color);
	border-radius: 6px;
	transition: all 0.3s ease;
}
.open .comment-write {
	padding: 15px;
}
.comment-input {
	display: none;
	margin-bottom: 10px;
}
.open .comment-input {
	display: flex;
}
.comment-input input {
	width: 50%;
	color: var(--sub-color);
	font-size: var(--font-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.comment-input input::placeholder {
	letter-spacing: 0.1em;
}
.comment-input input:first-child {
	padding-right: 10px;
}
.comment-submit {
	display: flex;
	align-items: center;
	height: 30px;
}
.open .comment-submit {
	align-items: flex-end;
	height: auto;
	min-height: calc(calc(var(--font-m) * var(--line-height)) * 3);
}
.comment-submit textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--text-color);
	font-family: inherit;
	font-size: var(--font-s);
	line-height: var(--line-height);
	resize: none;
	overflow: hidden;
}
.open .comment-submit textarea {
	align-self: flex-start;
	font-size: var(--font-m);
}
.comment-submit textarea::placeholder {
	font-size: var(--font-s);
}
.comment-submit button {
	width: auto;
	height: auto;
	margin-left: 10px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}
.comment-submit button i {
	color: var(--sub-color);
	transition: color 0.3s ease;
}
.comment-submit button:hover i {
	color: var(--point-color);
}
.comment-list {
	padding: 20px 20px 0;
}
.comment-list li {
	display: flex;
	flex-direction: column;
}
.comment-item {
	display: flex;
	align-items: flex-start;
	padding-bottom: 20px;
}
.comment-avatar[style*=profile_default] {
	background-image: none!important;
}
.comment-content {
	display: flex;
	flex-direction: column;
	min-width: 220px;
	max-width: calc(100% - 80px);
}
.comment-name {
	font-size: var(--font-s);
	letter-spacing: 0.05em;
}
.comment-name:empty:after {
	content: 'Guest';
}
.comment-name a {
	color: var(--text-color);
}
.rp_admin .comment-name a:after, .guest_admin .comment-name a:after, .article-btn:after {
	display: inline-block;
	margin-left: 4px;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	content: '\f058';
	color: var(--point-color);
}
.comment-bubble {
	margin-top: 10px;
	padding: 15px;
	background: var(--bg-color);
	border-radius: 6px;
}
.comment-bubble p {
	font-size: var(--font-m);
	line-height: var(--line-height);
}
.comment-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	font-size: var(--font-xs);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	position: relative;
}
.comment-date {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}
.comment-date.hidden {
	opacity: 0;
	visibility: hidden;
}
.comment-date a {
	display: none;
}
.comment-action {
	display: flex;
	position: absolute;
	right: 0;
}
.comment-action a {
	display: flex;
	overflow: hidden;
	margin-left: 10px;
	color: var(--sub-color);
	font-size: 10px;
	cursor: pointer;
}
.comment-action a:hover {
	width: auto;
}
.comment-action span {
	font-size: var(--font-xs);
	text-indent: -80px;
	opacity: 0;
	transition: all 0.6s ease;
}
.comment-action a:hover span {
	margin-left: 5px;
	text-indent: 0;
	opacity: 1;
}
.comment-reply .comment-item {
	flex-direction: row-reverse;
	align-self: flex-end;
}
.comment-reply .comment-avatar {
	display: none;
	margin: 0 0 0 10px;
}
.comment-reply .comment-name {
	text-align: right;
}
.comment-reply .comment-bubble {
	background: var(--point-color);
}
.comment-reply .comment-bubble p, .comment-reply .comment-date, .comment-reply .comment-action a {
	color: #fff;
}
.tt_more_preview_comments_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	margin: 0 40px 20px;
	padding: 5px 10px;
	background: var(--point-color);
	border-radius: 6px;
	color: #ffff;
	font-size: var(--font-m);
	font-weight: 500;
	transition: opacity 0.3s ease;
}
/* proteceted */
.password {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
}
.password input {
	width: 140px;
	height: 30px;
	margin-right: 10px;
	padding: 0 15px;
	background: var(--bg-color);
	border-radius: 6px;
	color: var(--sub-color);
	font-size: var(--font-s);
}
/* notice */
article .list-header {
	margin: 0;
}
.notice .imageblock:first-child, .notice .imagegridblock:first-child, .notice figure.imageslideblock:first-child, .notice figure[data-ke-type='video']:first-child,
.notice .contents_style > img:first-child, .notice .article-content p:first-child > img:first-child, .notice .contents_style > iframe:first-child, .notice .article-content p:first-child > iframe:first-child,
.list-header + .article-content > img:first-child, .list-header + .article-content p:first-child > img:first-child, .list-header + .article-content > iframe:first-child, .list-header + .article-content p:first-child > iframe:first-child {
	margin-top: -20px!important;
}
.sns {
	display: flex;
}
.sns .icon {
	margin-right: 10px;
}
.sns svg {
	width: 14px;
	height: 14px;
	fill: var(--point-color);
}
/* list */
.list-header, #tt-body-search .list-header {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
}
.search {
	display: flex;
	align-items: center;
	position: relative;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.search.active {
	background: var(--bg-color);
	cursor: text;
}
.search input {
	width: 0;
	height: 30px;
	padding-right: 30px;
	font-size: var(--font-s);
	transition: all 0.3s ease;
}
.search.active input {
	width: 140px;
	padding-left: 15px;
}
.search-btn {
	position: absolute;
	right: 0;
}
.search.active .search-btn {
	background: transparent;
	border: transparent;
	pointer-events: none;
}
.search.active .search-btn i {
	color: var(--sub-color);
}
.list-content, #tt-body-search .list-content {
	display: flex;
	flex-wrap: wrap;
	margin: 0 20px;
}
.list-item, #tt-body-search .list.simple.type-image-text .list-item, #tt-body-search .list.simple.type-image .list-item, #tt-body-search .list.simple.type-text .list-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 20px;
	background: var(--bg-color);
	border-radius: 6px;
	box-shadow: none;
	overflow: hidden;
	isolation: isolate;
	visibility: hidden;
}
.list-item:hover .thumb-img {
	transform: scale(1.1);
}
.list-item .article-info, #tt-body-search .list.simple.type-image-text .list-item .article-info, #tt-body-search .list.simple.type-image .list-item .article-info {
	padding: 15px;
}
.list-item .article-title {
	margin-right: 0;
}
.list-item.type-text .article-title, .list.type-text .article-title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.list-item.type-text .article-info, .list.type-text .article-info, #tt-body-search .list.simple.type-image-text .list-item.type-text .article-info, #tt-body-search .list.simple.type-image .list-item.type-text .article-info, #tt-body-search .list.simple.type-text .list-item .article-info {
	width: auto;
	margin: 0 15px;
	padding: 15px 0;
}
.article-btn {
	display: flex;
	align-items: center;
	align-self: center;
	flex-shrink: 0;
	color: var(--sub-color);
}
.article-btn:before {
	content: 'read';
	font-size: var(--font-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.locked .article-btn:before {
	content: 'locked';
}
.article-btn:after {
	margin-left: 5px;
	content: '\f105';
	color: var(--sub-color);
}
.locked .article-btn:after {
	content: '\f023';
}
.list-item .article-content, #tt-body-search .list.simple.type-image-text .list-item .article-content, #tt-body-search .list.simple.type-image .list-item .article-content, #tt-body-search .list.simple.type-text .list-item .article-content {
	display: flex;
	flex-direction: column;
	padding: 15px;
}
.article-summary {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
	color: var(--text-color);
	visibility: visible;
}
.article-summary:empty {
	display: none;
}
.list-item .article-footer {
	padding: 0;
	line-height: var(--font-xs);
}
.article-by {
	display: block;
	flex: 1 1 auto;
	margin: 0 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.article-by:before {
	content: '\f007';
}
.list-empty {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	font-size: 12px;
	text-align: center;
}
#tt-body-category .list.simple.type-image-text .list-empty, #tt-body-category .list.simple.type-image .list-empty, #tt-body-category .list.simple.type-text .list-empty {
	margin: 0;
	padding: 20px;
}
.list-empty i {
	margin-left: 5px;
	font-size: 12px;
}
/* list type */
.list.type-image .article-summary, .list.type-text .article-thumb,
.list.simple.type-image-text .list-header, .list.simple.type-image .list-header, .list.simple.type-text .list-header,
.list.type-gallery .article-btn, .list.type-gallery .article-content,
.list.type-card .article-thumb:before, .list.type-card .article-by, .list.type-card .article-summary,
.list.type-title .article-thumb, .list.type-title .article-by, .list.type-title .article-summary {
	display: none;
}
.list.simple.type-image-text, .list.simple.type-image, .list.simple.type-text {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: initial;
}
.list.simple.type-image-text .list-content, .list.simple.type-image .list-content, .list.simple.type-text .list-content,
.list.type-gallery .article-category, .list.type-card .article-category, .list.type-title .article-category {
	margin: 0;
}
.list.simple.type-image-text .list-item, .list.simple.type-image .list-item, .list.simple.type-text .list-item {
	background: #fff;
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
}
.list.simple.type-image-text .list-item:last-child, .list.simple.type-image .list-item:last-child, .list.simple.type-text .list-item:last-child {
	margin-bottom: 0;
}
.list.simple.type-image-text .article-info, .list.simple.type-image .article-info, .list.simple.type-text .article-info,
.list.simple.type-image-text .article-content, .list.simple.type-image .article-content, .list.simple.type-text .article-content {
	margin: 0;
	padding: 20px;
}
.list.type-gallery .list-content, .list.type-card .list-content, .list.type-title .list-content {
	margin: 0 12.5px;
}
.list.type-gallery .list-item {
	width: calc((100% - 45px) / 3);
	margin: 0 7.5px 20px;
	flex-direction: row;
}
.list.type-gallery .list-item:after {
	content: '';
	display: block;
	padding-bottom: 100%;
}
.list.type-gallery .article-header {
	width: 100%;
	height: 100%;
}
.list.type-gallery .type-text .article-header:before {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	content: '\f15c';
	color: var(--sub-color);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 16px;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
}
.list.type-gallery .type-text.locked .article-header:before {
	content: '\f023';
	font-size: 14px;
}
.list.type-gallery .type-text:hover .article-header:before {
	opacity: 0;
	visibility: hidden;
}
.list.type-gallery .article-thumb:after {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	border: 1px solid rgb(0 0 0 / 5%);
	border-radius: 6px;
}
.list.type-gallery .article-thumb:before {
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
}
.list.type-gallery .list-item:hover .article-thumb:before,
.list.type-gallery .list-item:hover .article-info {
	opacity: 1;
	visibility: visible;
}
.list.type-gallery .article-info {
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 15px;
	border: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.list.type-gallery .article-title, .list.type-title .article-title {
	flex: initial;
	align-self: initial;
	margin: 10px 0 0;
	font-size: var(--font-m);
	line-height: 1.5;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: initial;
	visibility: visible;
}
.list.type-card .list-item, .list.type-title .list-item {
	width: calc((100% - 30px) / 2);
	margin: 0 7.5px 20px;
}
.list.type-card .article-header {
	height: 120px;
}
.list.type-card .article-info {
	height: 100%;
	margin: 0;
	padding: 15px;
	border: 0;
}
.list.type-card .article-title {
	width: 100%;
	margin: 0;
	padding: 15px 15px 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateY(100%);
	color: var(--text-color);
	font-size: var(--font-m);
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.list.type-card .article-content {
	padding-top: calc(calc(var(--font-m) * var(--line-height)) + 25px);
}
.list.type-title .article-header {
	height: auto;
}
.list.type-title .article-info {
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 15px 15px 0;
	border: 0;
	position: relative;
}
.list.type-title .article-title {
	height: calc(calc(var(--font-m) * 1.5) * 2);
	color: var(--text-color);
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	visibility: visible;
}
.list.type-title .article-content {
	padding: 10px 15px 15px;
}
/* taglog */
.taglog ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 20px 20px 10px;
}
.taglog ul li {
	display: flex;
	overflow: hidden;
}
.taglog ul li a {
	display: flex;
	align-items: center;
	height: 26px;
	position: relative;
	overflow: hidden;
	margin: 0 10px 10px 0;
	padding: 0 26px 0 10px;
	background: var(--bg-color);
	border-radius: 3px 0 0 3px;
	color: var(--text-color);
	font-size: var(--font-m);
	text-transform: capitalize;
	transition: all 0.3s ease;
}
.taglog ul li a:before {
	width: 6px;
	height: 6px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.2);
	content: '';
}
.taglog ul li a:after {
	background: #fff;
	border-top: 13px solid transparent;
	border-bottom: 13px solid transparent;
	border-left: 10px solid var(--bg-color);
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	transition: all 0.3s ease;
}
.taglog ul li a:hover {
	background-color: var(--point-color);
	color: #fff;
}
.taglog ul li a:hover:after {
	border-left-color: var(--point-color);
}
.taglog ul li a span {
	line-height: var(--line-height);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* guestbook */
.guest header, .taglog header {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	padding: 20px;
	border-bottom: 1px solid var(--border-color);
	font-size: var(--font-l);
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.guest-btn, .taglog .search {
	position: absolute;
	right: 20px;
}
.guest .comment-form {
	border-top: 1px solid var(--border-color);
}
/* paging */
.paging {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	padding: 0 20px;
}
.prev i {
	margin-right: 10px;
	font-size: 10px;
}
.next i {
	margin-left: 10px;
	font-size: 10px;
	letter-spacing: 0;
}
.paging a {
	display: flex;
	align-items: center;
	color: var(--sub-color);
	font-size: var(--font-xs);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: var(--line-height);
}
.paging a.no-more-prev, .paging a.no-more-next {
	color: var(--border-color);
	cursor: default;
}
.numb {
	display: flex;
	flex-direction: row;
}
.numb a {
	color: var(--sub-color);
	font-weight: 400;
	pointer-events: none;
}
.numb a span:not(.selected) {
		display: none;
}
.numb a span.selected:before {
		content: 'Page'!important;
		margin: 0 5px 0 0!important;
}
.numb a:last-child span {
		display: block;
}
.numb a:last-child span:before {
		content: 'of';
		margin: 0 5px;
}
/* copyright */
.copyright {
	display: flex;
	align-items: center;
	width: 12px;
	height: 12px;
	color: var(--sub-color);
	font-size: 12px;
	position: fixed;
	left: 10px;
	bottom: 10px;
	z-index: 10;
	overflow: hidden;
}
.copyright:hover {
	width: auto;
}
.copyright a {
	padding-left: 5px;
	color: var(--sub-color);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.copyright:hover a {
	opacity: 1;
	visibility: visible;
}
/* toolbar */
.menu_toolbar * {
	font-family: 'Poppins', 'Noto Sans KR'!important;
}
.menu_toolbar .btn_menu_toolbar {
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%)!important;
}
.menu_toolbar .btn_menu_toolbar.btn_subscription, .tistoryProfileLayerTrigger {
	display: none!important;
}
.header_layer {
	border-radius: 6px!important;
	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%)!important;
}
.header_layer:after {
	display: none!important;
}
.inner_header_layer .info_profile, .inner_header_layer .wrap_list + .wrap_toolbar {
	border-color: var(--border-color)!important;
}
.inner_header_layer .txt_email, .inner_header_layer .link_setting_type2, .inner_header_layer .tit_list_type, .menu_toolbar .list_toolbar li:last-child .link_list {
	color: var(--sub-color)!important;
}
.inner_header_layer .txt_id, .inner_header_layer .info_profile_type1 .txt_id, .menu_toolbar .list_toolbar .link_list {
	color: var(--text-color)!important;
	font-size: var(--font-s)!important;
}
/* breakpoint */
.breakpoint {
	--font-xs: 10px;
	--font-s: 11px;
	--font-m: 12px;
	--font-l: 13px;
}
.breakpoint .profile-avatar {
	width: 70px;
	height: 70px;
}
.breakpoint .btn_subscription {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	background: #fff;
	border: 1px solid var(--border-color);
	color: var(--point-color);
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	letter-spacing: 0;
	opacity: 1;
	transition: border-color 0.3s ease;
}
.breakpoint .btn_subscription:hover {
	border: 1px solid var(--point-color);
}
.breakpoint .btn_subscription .txt:before {
	content: '\f234';
}
.breakpoint .btn_subscription.following .txt:before {
	content: '\f4fc';
}
.breakpoint .btn_subscription.following:hover .txt:before {
	content: '\f503';
}
.breakpoint .list.type-gallery .list-item {
	width: calc((100% - 30px) / 2);
}
.breakpoint .list.type-card .list-item, .breakpoint .list.type-title .list-item {
	width: 100%;
}
.breakpoint .list.type-card .article-by, .breakpoint .list.type-title .article-by {
	display: block;
}
/* mobile */
@media (max-width: 1024px) {
	.container {
		width: calc(var(--content-width) + 180px)!important;
		width: 720px!important; /* 태블릿 본문 폭 고정 */
		max-width: 720px;
		min-width: 520px;
		margin: 60px auto;
	}
	.content {
		width: 540px!important; /* 태블릿 본문 폭 고정 */
		max-width: 540px;
	}
	.menu {
		left: initial;
		right: 0;
	}
	.copyright {
		display: none;
	}
}
@media (max-width: 840px) {
	.container {
		width: calc(100% - 120px)!important; /* 태블릿 본문 폭 고정 */
	}
	.content {
		width: calc(100% - 180px)!important; /* 태블릿 본문 폭 고정 */
	}
}
@media (max-width: 767px) {
	body.active {
		overflow: hidden;
	}
	.breakpoint {
		--font-xs: 11px;
		--font-s: 12px;
		--font-m: 13px;
		--font-l: 14px;
	}
	.container, .content {
		width: 100%!important;
		max-width: 100%;
		min-width: auto;
		margin: 0;
	}
	.profile-header, nav, article, .list, #tt-body-search .list, .guest, .taglog, .paging, .absent_post,
	#tt-body-category .list.simple.type-image-text .list-empty, #tt-body-category .list.simple.type-image .list-empty, #tt-body-category .list.simple.type-text .list-empty,
	.list.simple.type-image-text .list-item, .list.simple.type-image .list-item, .list.simple.type-text .list-item {
		border-radius: 0;
	}
	.profile-header .menu-btn {
		top: 13px;
	}
	.profile-header .menu-btn.active {
		position: fixed;
		transform: translate3d(0, 0, 0);
		color: var(--point-color);
	}
	.gnb {
		display: flex;
	}
	.gnb .menu-btn {
		display: none;
	}
	.menu {
		position: fixed;
		left: initial;
		top: 0;
		right: 0;
		width: 100%;
		background: rgba(0, 0, 0, 0.2);
		transform: none;
	}
	.menu:before {
		position: absolute;
		top: 0;
		z-index: 2;
		width: 100%;
		height: 50px;
		content: '';
		background: #fff;
	}
	.menu > div {
		position: fixed;
		top: 0;
		width: 100%;
		margin-top: 50px;
		background: #fff;
		box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
		transform: translateY(-100%);
		transition: all 0.3s ease;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
	}
	.menu.active > div {
		max-height: calc(100% - 50px);
		overflow-y: auto;
		transform: translate(0);
		pointer-events: auto;
	}
	nav {
		margin: 0;
		padding: 10px 5px;
		box-shadow: none;
	}
	nav:last-child {
		border-top: 1px solid var(--border-color);
	}
	article, .paging, .absent_post, .list, .guest, .taglog {
		margin-top: 15px;
	}
	.list.simple.type-image-text .list-item, .list.simple.type-image .list-item, .list.simple.type-text .list-item {
		margin-bottom: 15px;
	}
}
