@charset "utf-8";

:root {
	--transition: 0.5s;
	--base-color: #f9f9f9;
	--base-color2: #eaeaea;
	scroll-behavior: smooth;
}

/*
────────────────────────────────────────────────────
apricot skin #4
Edited by salgu
────────────────────────────────────────────────────

01 RESET
02 툴팁
03 레이아웃 (공통, 2단형)
04 네비게이션바
05 헤더 (타이틀, 인포, 검색창, 카테고리)
06 커버 (공통, 웹진, 라인, 갤러리, 공지, 태그 클라우드)
07 카테고리 화면 (공통, 심플1, 심플2, 갤러리1, 갤러리2, 웹진)
08 본문 (공통, TOC, 에디터, 관련글, 본문 태그)
09 비밀글
10 공지사항 (공통, 공지형)
11 포스트 버튼
12 태그 클라우드
13 댓글 & 방명록
14 푸터
15 페이징
16 스크롤바
17 드래그
18 드래그
19 라운드 테마
20 반응형 (태블릿, 모바일)

────────────────────────────────────────────────────
*/



/* ───────────────────────────────────────────────────────── */
/* reset inline style */
/* ───────────────────────────────────────────────────────── */

* {
	box-sizing: border-box;

	margin: 0;
	padding: 0;
}

[hidden] {
	display: none;
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,u,ul,var,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: inherit;
	vertical-align: baseline;
}

table,tbody,td,tfoot,th,thead,time,tr,tt {
	font-size: inherit;
	vertical-align: baseline;	
}

a {
	color: inherit;
	transition: all var(--transition);
}

a:where(:link, :visited, :hover, :active) {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

ol, ul, li {
	list-style: none;
}

:focus {
	outline: 0;
}

:focus-visible {
	outline: 2px solid var(--base-color4);
}

input:focus-visible {
	outline: 0;
}

textarea:focus-visible {
	outline: 0;
}

button {  
	appearance: none;
	border:0;
	padding: 0;
	outline: none;
	background: none;

	font-size:inherit;
	font-family: inherit;
	color: inherit;
	line-height: inherit;

	cursor: pointer;  
}

input, textarea {
	border: 0;
	border-radius: 0;
	outline: none;
	background: none;

	font-size:inherit;
	font-family: inherit;

	resize: none;
}

input[type="submit"] {
	cursor: pointer;
}

/* ───────────────────────────────────────────────────────── */
/* Start */
/* ───────────────────────────────────────────────────────── */


body {
	background-color: var(--background-color);
	overflow-y: scroll;

	font-size: var(--font-size);
	font-family: "Pretendard";
	color: var(--font-color);
	line-height: 1.7;
}

.type_grayscale img {
	filter: grayscale(1);
}

.type_grayscale img:hover {
	filter: grayscale(0);
}

.type_grayscale .lb-outerContainer img {
	filter: grayscale(0);
}

/* ───────────────────────────────────────────────────────── */
/* 툴팁 */
/* ───────────────────────────────────────────────────────── */

.tooltip {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	opacity: 0;

	position: fixed;
	z-index: 999;
	
	margin-left: 5px;
	padding: 1px 0px 0px 0px;
	background-color: var(--background-color);
	
	font-size: 11px;
	font-family: "Poppins", "Pretendard";
	text-transform: uppercase;
	line-height: 1;

	transition: opacity 0.5s;
}

.tooltip:empty {
	padding: 0;
}

/* ───────────────────────────────────────────────────────── */
/* 레이아웃 */
/* ───────────────────────────────────────────────────────── */

.wrap {
	opacity: 0;

	position: relative;

	width: var(--skin-width);
	margin: 100px auto;

	transition: opacity 1.5s /* 화면전환 속도 */;
}

.container {
	position: relative;

	width: 100%;
}

/* 2단형 */

.layout_2 {
	--skin-width2: calc( var(--sidebar-width) + var(--content-width) + var(--skin-gutter) );
}

.layout_2 .wrap {
	width: var(--skin-width2);
}

.layout_2 .top-nav {
	width: 100%;
	padding: 10px 20px;
}

.layout_2 .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.layout_2 .header {
	position: sticky;
	top: 80px;

	width: var(--sidebar-width);
}

.layout_2 .content {
	width: var(--content-width);
}

.layout_2 .search-list {
	padding-top: 0;
}

.layout_2 .article:first-of-type .article-info {
	padding-top: 0;
}

.layout_2 .footer {
	width: var(--content-width);
	margin-left: auto;
}

.layout_2.type_line :is(.cover-box:first-child) {
	padding-top: 0;
}

.layout_2 .notice-info {
	border-top: 1px solid var(--point-color);
}

.layout_2 .taglog {
	padding: 0;
}

.layout_2 .guestbook-img-box { 
	margin-top: 0;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 네비게이션 바 */
/* ───────────────────────────────────────────────────────── */

.top-nav {
	display: flex;
	align-items: center;
	visibility: hidden;
	opacity: 0;

	position: fixed;
	z-index: 999;
	top: 0;
	left: 50%;
	transform: translate(-50%, -100%);

	gap: 15px;
	width: calc(var(--skin-width) + 2px);
	padding: 15px;
	background: var(--background-color-b);

	transition: opacity var(--transition), transform var(--transition);
}

.scroll .top-nav {
	visibility: visible;
	opacity: 1;

	transform: translate(-50%, 0%);

	transition: opacity 1s, transform 1s;
}

.top-img {
	width: 35px;
	height: 35px;
	border-radius: 100%;

	transition: all 1s;

	cursor: pointer;
}

.type_grayscale .scroll .top-nav:hover .top-img {
	filter: grayscale(0);
}

.top-title {
	display: flex;
	align-items: center;

	position: relative;
	
	gap: 10px;

	font-size: calc(var(--font-size) - 2px);
	font-family: "noto serif KR";
	font-weight: 600;
	font-style: italic;
	color: var(--font-color);
}

.nav-menu-btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-menu-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	color: var(--font-color);

	transition: transform var(--transition);
}

.on .nav-menu-icon {
	transform: rotate(-90deg);
}

.nav-menu {
	visibility: visible;

	position: absolute;
	left: calc(100% + 10px);

	padding: 3px 9px;
	background-color: var(--point-color);

	color: #fff;

	transition: opacity var(--transition);
}

.nav-menu:not(.opacity-1) {
	opacity: 0;
	visibility: hidden;
}

.follow-btn::before {
	content: "Subscribe";
}

.follow-btn.following::before {
	content: "Unsubscribe";
}

.nav-indicator {
	position: absolute;
	top: 0;
	left: 0;

	width: 0%;
	height: 2px;
	background-color: var(--point-color);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 헤더 */
/* ───────────────────────────────────────────────────────── */

.header-title {
	border-bottom: 2px solid var(--point-color);
	padding-bottom: 50px;

	font-size: calc(var(--font-size) + 9px);
}

.header-img-wrap {
	display: none;
}

.header-img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;

	transition: filter 2s ease;
}

.header-info-wrap {
	display: flex;
	flex-wrap: wrap;
	
	margin-bottom: 20px;
	border-bottom: 1px solid var(--point-color);
	padding: 30px 0;
}

.info-title {
	flex-shrink: 0;

	cursor: pointer;
}

.info-data {
	margin-left:20px;
}

.header-user {
	font-weight: bold;
	cursor: pointer;
}

.menu-item:not(:first-child):before {
	content:"|";
	
	margin-left: 5px;
	margin-right: 5px;
}


/* 검색창 */

.header-search {
	display: flex;

	width: min(70%, 400px);
	margin-left: auto;
	padding: 10px 0;

	color: var(--point-color);
}

.search-desc {
	border: 1px solid var(--point-color);
	padding: 4px 10px;

	font-size: calc(var(--font-size) - 1px);
	color: var(--point-color);

	cursor: default;
}

.search-input {
	flex-grow: 1;

	border: 1px solid var(--point-color);
	border-right: 0;
	padding-left: 10px;

	font-size: calc(var(--font-size) - 1px);
	font-style: italic;
}

.header-search.style2 {
	width: 100%;
	margin-top: -20px;
	border-bottom: 1px solid var(--point-color);
}

.header-search.style2 .search-input {
	border: 0;

	font-style: normal;
}

.header-search.style2:focus-within .search-desc {
	color: #aaa;
}

.header-search.style2 .search-input::placeholder {
	opacity: 0;
}

.header-search.style2 .search-desc {
	order: -1;

	border: 0;
	padding: 0;

	transition: color var(--transition);
}


/* 카테고리 */

.header-category {
	border-bottom: 1px solid var(--point-color);
	padding-bottom: 30px;
}

.category-wrap {
	width: min(70%, 400px);
	margin-left: auto;
}

.no-cnt.category-wrap {
	width: min(70%, 300px);
}

.category-title {
	display: flex;
	justify-content: space-between;

	margin-top: 20px;
	margin-bottom: 10px;
}

.title-cell {
	display: block;

	width: 26px;

	font-weight: 600;
	text-align: center;
}

.title-item {
	flex-grow: 1;
	padding-left: 10px;

	text-align: left;
}

.no-cnt .title-item {
	text-align: right;
}

.title-cnt {
	width: 30px;
	text-align: center;
}

.no-cnt .title-cnt {
	display: none;
}

.category img {
	display: none;
}

.all-hide .link_tit {
	display: none;
}

.tt_category li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	position: relative;

	counter-increment: list-number;
}

.tt_category li::before {
	content: counter(list-number);
	
	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 0;
	left: 0;

	width: 26px;
	height: 26px;

	text-align: center;
}

.tt_category > li::before {
	content: none;
}

.link_tit::before {
	content: "/";

	display: flex;
	justify-content: center;
	align-items: center;

	width: 26px;
	padding-right: 10px;
}

.c_cnt {
	display: inline-block;
	order: 3;

	width: 30px;
	margin-left: auto;

	text-align: center;
}

.category_list {
	width: 100%;

	counter-reset: list-number;
}

.has-sub {
	display: flex;
	
  gap: 5px;
	width: 100%;
}

.sub-hide .has-sub .link_item {
	gap: 5px;
}

.sub-hide .has-sub .sub-open-btn {
	display: flex;
	align-items: center;

	flex-shrink: 0;
	
	padding: 0 5px;
}

.sub-hide .has-sub .open-icon {
	transform: translateZ(0);

	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	color: var(--font-color);

	transition: transform var(--transition);
}

.sub-hide .on .has-sub .open-icon {
	transform: rotate(-180deg) translateZ(0);
}

.category :where(.link_tit, .link_item, .link_sub_item), .other-link {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;

	flex-grow: 1;
	padding-left: 35px;

	text-transform: none;
	line-height: 2;
}

.category .link_tit {
	justify-content: space-between;

	width: 100%;
	padding-left: 0;
}

.no-cnt .category :where(.link_item, .link_sub_item), .other-link {
	justify-content: flex-end;
}

.sub-hide .no-cnt .has-sub .sub-open-btn {
	order: -1;
}

.sub_category_list {
	width: 100%;
}

.sub-hide .category .sub_category_list {
	display: none;
	
	background-color: var(--form-color);

	color: var(--font-color);
}

.category .link_sub_item::before {
	content: "‐ ";

	margin-right: 4px;
}

.category .new-icon::before {
	content: "*";

	display: block;

	height: 100%;
	margin-left: 5px;

	font-size: calc(var(--font-size) - 2px);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 커버 */
/* ───────────────────────────────────────────────────────── */

.cover {
	position: relative;
}

.cover-headline {
	display: block;

	font-size: calc(var(--font-size) + 2px);
	font-weight: 500;
	color: var(--point-color);
}

.cover-box {
	opacity: 0;
	transform: translateZ(0);
}

.cover-box:not(:first-child) {
	border-top: 1px solid var(--point-color);
}

.cover-img {
	transform: translateZ(0);
}

.cover-noimg {
	display: none;
}

/* 커버 - 웹진 */

.cover-webzine {
	padding-top: 30px;
}

.cover-webzine + .cover-box {
	padding-top: 45px;
}

.cover-webzine .cover-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;

	gap: 60px;
	width: 100%;
	padding: 30px 0;
}

.cover-webzine .cover-thumb {
	order: 1;
	flex-shrink: 0;
	position: relative;

	width: min(150px, 40%);
	aspect-ratio: 1/1;
}

.cover-webzine .empty-item .cover-thumb {
	display: none;
}

.cover-webzine .cover-item:not(:first-child) {
	border-top: 1px solid var(--point-color);
}

.cover-webzine :where(.cover-img, .empty-img) {
	position: relative;
	z-index: 2;
	transform: scale(1.01) translateZ(0);

	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: all var(--transition);
}

.cover-webzine .cover-item:hover :where(.cover-img, .empty-img) {
	transform: scale(1.03) translateZ(0);

	box-shadow: 2px 4px 4px #ddd;

	filter: grayscale(0);
}

.cover-webzine .cover-noimg {
	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.cover-webzine .cover-noimg .cover-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.cover-webzine .cover-img + .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.cover-webzine .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.cover-webzine .cover-title {
	width: 100%;

	font-weight: 600;
}

.cover-webzine .cover-date {
	display: inline-flex;
	align-items: center;

	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins", "Pretendard";
	color: var(--font-color);
}

.cover-webzine .cover-cate {
	display: inline-flex;
	align-items: center;

	margin-left: 10px;

	font-size: calc(var(--font-size) - 1px);
	color: var(--font-color);
}

.cover-webzine .cover-cate::before {
	content: "─";
	display: block;

	margin-right: 10px;

	color: var(--font-color);
}

.cover-webzine .cover-sum {
	display: -webkit-box;

	width: 100%;
	margin-top: 15px;
	overflow: hidden;

	line-height: 1.5;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


/* 커버 - 라인 */

.cover-line {
	width: 100%;
	padding: 30px 0;
	overflow: hidden;
}

.cover-line + .cover-box {
	border-top: 0;
}

.cover-line .cover-headline {
	margin-bottom: 30px;
}

.cover-line .cover-container {
	display: grid;
	grid-template-columns: repeat(var(--cover-thumb2), minmax(0, 1fr));

	border: 1px solid var(--point-color);
	border-top: 0;
}

.cover-line .cover-item {
	position: relative;

	width: 100%;
	border-top: 1px solid var(--point-color);
	border-right: 1px solid var(--point-color);
	padding: 40px 30px 40px 30px;
}

.cover-line .cover-thumb {
	position: relative;

	width: calc(100% - 30px);
	aspect-ratio: var(--cover-ratio2);
	margin: 0 auto 30px auto;
}

.cover-line .cover-img {
	display: block;

	position: relative;
	z-index: 2;
	transform: scale(1.01) translateZ(0);

	width: 100%;
	height: 100%;
	object-fit: cover;

	image-rendering: -webkit-optimize-contrast;

	transition: transform var(--transition), filter var(--transition);
}

.cover-line .cover-item:hover .cover-img {
	transform: scale(1.02) translateZ(0);

	filter: none;
}

.cover-line .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.cover-line .cover-noimg .cover-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.cover-line .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.cover-line .cover-info {
	text-align: center;
	line-height: 1;
}

.cover-line .cover-title {
	display: block;

	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	border-radius: 5px 5px 5px 0;
	padding: 3px 4px;

	font-weight: 600;
	line-height: 1.2;
}

.cover-line .cover-date {
	display: inline-block;

	margin-top: -2px;
	border-radius: 0px 5px 5px 5px;
	padding: 4px;

	font-size: calc(var(--font-size) - 3px);
	line-height: 1.2;
}


/* 커버 - 갤러리 */

.cover-gallery {
	padding: 30px 0;
	overflow: hidden;
}

.cover-gallery .cover-headline {
	margin-bottom: 30px;
}

.cover-gallery .cover-container {
	display: grid;
	grid-template-columns: repeat(var(--cover-thumb), minmax(0, 1fr));
	
	gap: var(--cover-gutter);
}

.cover-gallery .cover-item {
	position: relative;

	aspect-ratio: var(--cover-ratio);
	border: 0;
	padding: 0;
	overflow: hidden;
}

.cover-gallery .cover-info {
	display:flex;
	visibility: hidden;
	opacity: 0;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;

	position: absolute;
	z-index: 3;
	bottom: 0;
	transform: translateY(30px);

	width: 100%;
	padding: 20px;
	background-color: transparent;

	color: #fff;
	line-height: 1.3;

	transition: opacity var(--transition), transform var(--transition);
}

.cover-gallery .cover-item:hover .cover-info {
	visibility: visible;
	opacity: 1;

	transform: translateY(0px);

	transition: opacity var(--transition) 0.2s, transform var(--transition) 0.2s;
}

.cover-gallery .cover-title {
	display: -webkit-box;

	width: 100%;
	overflow: hidden;

	font-family: "Poppins", "Pretendard";
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.cover-gallery .cover-date {
	font-size: calc(var(--font-size) - 2px);
}

.cover-gallery .cover-thumb {
	position: relative;

	aspect-ratio: var(--cover-ratio);

	overflow: hidden;
}

.cover-gallery .cover-img {
	display: block;

	position: relative;
	z-index: 2;
	transform: scale(1.2) translateY(-10px) translateZ(0);

	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform 1s, filter 1s;
}

.cover-gallery .cover-item:hover .cover-img {
  transform: scale(1.2) translateY(0px) translateZ(0);
	
	filter: grayscale(0) brightness(0.7) saturate(1.4);
}

.cover-gallery .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.cover-gallery .cover-noimg .cover-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.cover-gallery .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}



/* 커버 - 공지 */

.cover-notice {
	width: 100%;
	padding: 30px 0;
}

.cover-notice .cover-headline {
	width: 100%;
	margin-bottom: 30px;
}

.cover-notice .cover-item + .cover-item {
	margin-top: 30px;
	border-top: 1px solid var(--point-color);
	padding-top: 30px;
}

.cover-notice .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
}

.cover-notice .cover-thumb {
	display: flex;

	position: relative;

	width: 40%;
}

.cover-notice .cover-item:hover .cover-img {
	filter: grayscale(0);
}

.cover-notice .empty-sum .cover-thumb {
	width: 100%;
}

.cover-notice .cover-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;

	transition: filter var(--transition);
}

.cover-notice .cover-noimg {
	display: none;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.cover-notice .cover-noimg .cover-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.cover-notice .cover-img + .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.cover-notice .empty-sum .cover-headline {
	display: none;
}

.cover-notice .cover-sum {
	width: 55%;
	margin-left: auto;
}

.cover-notice .empty-img .cover-sum {
	width: 100%;
}

.cover-notice .cover-title {
	display: block;

	margin-bottom: 10px;

	font-family: "Poppins", "Pretendard";
	font-weight: 600;
}

.cover-notice .cover-sum a {
	display: inline-flex;
	align-items: center;

	margin-right: 15px;
}

.cover-notice .cover-sum a::before {
	content: "";
	display: inline-flex;

	width: 10px;
	height: 1px;
	margin-right: 5px;
	background-color: var(--font-color);

	transition: margin-right var(--transition);
}

.cover-notice .cover-sum a:hover::before {
	margin-right: 10px;
}


/* 커버 - 태그 클라우드 */

.cover-tag {
	padding: 50px 0;
}

.cover-tag .cover-headline {
	margin-bottom: 30px;
}

.cover-tag .cover-container {
	display: flex;
	flex-wrap: wrap;
	
	gap: 15px;
}

.cover-tag .cover-item {
	display: inline-flex;
	align-items: center;

	position: relative;

	background-image: linear-gradient(var(--font-color), var(--font-color));
	background-size: 100% 0.9px;
	background-position: 100% 95%;
	background-repeat: no-repeat;

	line-height: 1.3;
}

.cover-tag .cover-item:hover {
	background-size: 0% 0.9px;

	color: var(--font-color);
}

.cover-tag .cover-item::before {
  content: "#";
	display: inline-block;

	margin-right: 3px;

	font-size: calc(var(--font-size) - 2px);
}

.cover-tag .cover-item.tag-more::before {
  content: none;
}

.cover-tag .cloud1 {
	font-weight: 600;
	color: var(--point-color);
}

.cover-tag .cloud1 {
	background-image: linear-gradient(var(--point-color), var(--point-color));
}


/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 카테고리 화면 */
/* ───────────────────────────────────────────────────────── */

/* EMPTY */
.list-empty {
	margin-top: 15px;
}

/* 카테고리 - 공통 */
.search-list {
	padding: 30px 0;
}

.list-category {
	margin-bottom: 35px;

	font-size: calc(var(--font-size) + 2px);
	font-weight: 700;
	text-transform: capitalize;
}

#tt-body-search .list-category::before {
	content: "‘";
}

#tt-body-search .list-cnt::before {
	content: "’ 검색 결과";

	margin-right: 5px;
}

#tt-body-tag .list-category {
	display: inline-block;

	position: relative;

	line-height: 1.3;
}

#tt-body-tag .list-category::before {
	content: "#";

	margin-right: 2px;
}

#tt-body-tag .list-category {
	background-image: linear-gradient(var(--font-color), var(--font-color));
	background-size: 100% 0.9px;
	background-position: 100% 95%;
	background-repeat: no-repeat;

	transition: background-size var(--transition);
}

#tt-body-tag .list-category:hover {
	background-size: 0% 0.9px;
}

.list-cnt::before {
	content:"+";

	margin-right: 4px;
	margin-left: 5px;
}

.list-item { 
	display: block;
}

.list-noimg {
	display: none;
}

.list-title {
	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;
}

.search-list .new-icon {
	vertical-align: middle;
}

.search-list .new-icon::before {
	content: "new";

	text-transform: uppercase;
}

.search-list .list-item-cnt {
	display: inline-block;
	
	margin-left: 5px;

	font-size: calc(var(--font-size) - 1px);
	color: #aaa;
}

.search-list .list-item-cnt:not(:empty)::before {
	content: "+"
}


/* 카테고리 - 심플 */

.list-simple .list-category {
	margin-bottom: 15px;
}

.list-simple .list-item {
	padding: 20px 0;
}

.list-simple .list-item:not(:last-child) {
	border-bottom: 1px solid var(--point-color);
}

.list-simple .list-info {
	display: flex;
	justify-content: space-between;
	align-items: center;

	gap: 25px;
}

.list-simple .list-title {
	display: flex;
	align-items: center;
	order: 1;

	flex-grow: 1;
	min-width: 0;
}

.list-simple .title-content {
	display: inline-block;

	overflow: hidden;

	font-weight: 500;
	text-overflow: ellipsis;
  white-space: nowrap;
}

.list-simple .secret-icon {
	width: calc(var(--font-size) - 1px);
	height: calc(var(--font-size) - 1px);
	margin-right: 4px;
	color: var(--point-color);
}

.list-simple .list-date {
	min-width: 50px;
	
	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins", "Pretendard";
}

.list-simple :where(.list-img, .list-sum) {
	display: none;
}

.list-simple .new-icon {
	display: inline-block;

	margin-left: 10px;
	border: 1px solid var(--font-color);
	border-radius: 10px;
	padding: 3px 5px;

	font-size: calc(var(--font-size) - 3px);
	line-height: 1.1;
}


/* 카테고리 - 심플2 */

.list-simple2 .list-category {
	margin-bottom: 15px;
}

.list-simple2 .list-item {
	padding: 30px 0;
}

.list-simple2 .list-item:not(:last-child) {
	border-bottom: 1px solid var(--point-color);
}

.list-simple2 .list-item:first-child {
	padding: 20px 0 30px 0;
}

.list-simple2 .list-thumb {
	position: relative;

	width: 100%;
	height: 250px;
	margin-bottom: 20px;
}

.list-simple2 .type-secret .list-thumb {
	display: none;
}

.list-simple2 .empty-item .list-thumb {
	display: none;
}

.list-simple2 .list-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	margin-bottom: 20px;
	object-fit: cover;

	transition: filter var(--transition);
}

.list-simple2 .list-item:hover .list-img {
	filter: grayscale(0);
}

.list-simple2 .list-noimg {
	display: none;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.list-simple2 .list-noimg .list-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.list-simple2 .list-img + .list-noimg {
	display: inline-flex;

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.list-simple2 .list-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.list-simple2 .list-title {
	display: flex;
	align-items: center;

	flex-grow: 1;
	min-width: 0;
}

.list-simple2 .title-content {
	display: inline-block;

	overflow: hidden;

	font-weight: 700;
	text-overflow: ellipsis;
  white-space: nowrap;
}

.list-simple2 .secret-icon {
	width: calc(var(--font-size) - 1px);
	height: calc(var(--font-size) - 1px);
	margin-right: 4px;
	color: var(--point-color);
}

.list-simple2 .list-date {
	width: 100%;
	
	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins", "Pretendard";
}

.list-simple2 .list-sum {
	display: -webkit-box;

	width: 100%;
	margin-top: 20px;
	overflow: hidden;

	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.list-simple2 .new-icon {
	display: inline-block;

	margin-left: 10px;
	border: 1px solid var(--font-color);
	border-radius: 10px;
	padding: 3px 5px;

	font-size: calc(var(--font-size) - 3px);
	line-height: 1.1;
}


/* 카테고리 - 갤러리 */

.list-gallery .list-container {
	display: grid;
	grid-template-columns: repeat(var(--gallery-thumb), minmax(0, 1fr));
	
	gap: var(--gallery-gutter);
}

.list-gallery .list-item {
	position: relative;

	border: 0;
	padding: 0;
	aspect-ratio: var(--gallery-ratio);
	overflow: hidden;
}

.list-gallery .list-thumb {
	display: block;

	position: relative;

	width: 100%;
	aspect-ratio: var(--gallery-ratio);

	overflow: hidden;
}

.list-gallery .list-img {
	display: block;

	position: relative;
	z-index: 2;
	transform: scale(1.1) translateZ(0);

	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform 1.2s, filter 1.2s;
}

.list-gallery .list-item:hover .list-img {
  transform: scale(1.3) translateZ(0);
	
	filter: grayscale(0) brightness(0.7) saturate(1.4);
}

.list-gallery .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.list-gallery .list-noimg .list-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.list-gallery .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-gallery .list-secret {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	transition: opacity var(--transition);
}

.list-gallery .secret-icon {
	width: calc(var(--font-size) + 7px);
	height: calc(var(--font-size) + 7px);
	color: #fff;
}

.list-gallery .list-item:hover .list-secret {
	opacity: 0;
}

.list-gallery .list-info {
	opacity: 0;

	position: absolute;
	z-index: 3;
	bottom: 10px;
	left: 10px;

	margin-right: 10px;
	padding: 12px;

	line-height: 1.3;

	transition: opacity var(--transition);
}

.list-gallery .list-item:hover .list-info {
	opacity: 1;
}

.list-gallery .list-title {
	display: -webkit-box;

	position: relative;

	width: 100%;
	overflow: hidden;

	font-family: "Poppins", "Pretendard";
	font-weight: 700;
	color: #fff;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.list-gallery .list-date {
	display: block;

	margin-top: 5px;
	
	font-size: calc(var(--font-size) - 2px);
	color: #fff;
}

.list-gallery :where(.list-sum) { 
	display: none;
}

.list-gallery .new-icon {
	opacity: 0;

	position: absolute;
	top: 22px;
	left: 22px;

	border: 1px solid #fff;
	border-radius: 10px;
	padding: 3px 8px;
	
	font-size: calc(var(--font-size) - 3px);
	color: #fff;
	line-height: 1.1;

	transition: opacity var(--transition);
}

.list-gallery .list-item:hover .new-icon {
	opacity: 1;
}


/* 카테고리 - 갤러리2 */

.list-gallery2 .list-container {
	position: relative;

	margin: calc(var(--gallery-gutter2) / 2 * -1);
	overflow: hidden;

	transition: all var(--transition);
}

.list-gallery2 .list-item {
  opacity: 1;

  position: absolute;

	width: calc(100% / var(--gallery-thumb2));
	overflow: hidden;

	transition: all var(--transition);
}

.list-gallery2 .list-item:not(.active) {
  opacity: 0;
}

.list-gallery2 .list-thumb {
	display: flex;
	
	position: relative;

	min-height: 100px;

	margin: calc(var(--gallery-gutter2) / 2);
}

.list-gallery2 .list-img {
	position: relative;
	z-index: 2;

  width: 100%;
  height: 100%;

	transition: filter var(--transition);
}

.list-gallery2 .list-item:hover .list-img {
	filter: grayscale(0) brightness(0.6);
}

.list-gallery2 .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	background-color: var(--base-color);
}

.list-gallery2 .list-noimg .list-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.list-gallery2 .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-gallery2 .list-secret {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	transition: opacity var(--transition);
}

.list-gallery2 .secret-icon {
	width: calc(var(--font-size) + 7px);
	height: calc(var(--font-size) + 7px);
	color: #fff;
}

.list-gallery2 .list-item:hover .list-secret {
	opacity: 0;
}

.list-gallery2 .list-info {
	display: flex;
	opacity: 0;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;

	position: absolute;
	z-index: 3;
	top: 0px;

	gap: 7px 10px;
	width: 100%;
	height: 100%;
	padding: 20px;

	color: #fff;
	text-align: center;

	transition: opacity var(--transition);
}

.list-gallery2 .list-item:hover .list-info {
	opacity: 1;
}

.list-gallery2 .list-title {
	opacity: 0;

	transform: translateY(30px);

	padding: 0px 10px;
	overflow: visible;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Poppins", "Pretendard";
	white-space: normal;
	letter-spacing: 1px;
	line-height: 1.6;

	transition: opacity var(--transition), transform var(--transition);
}

.list-gallery2 .list-item:hover .list-title {
	opacity: 1;

	transform: translateY(0%);

	transition: opacity var(--transition) 0.1s, transform var(--transition) 0.1s;
}

.list-gallery2 .list-item .list-date {
	opacity: 0;

	transform: translateY(30px);

	width: 100%;

	font-size: calc(var(--font-size) - 2px);

	transition: opacity var(--transition), transform var(--transition);
}

.list-gallery2 .list-item:hover .list-date {
	opacity: 1;

	transform: translateY(0%);

	transition: opacity var(--transition) 0.25s, transform var(--transition) 0.25s;
}

.list-gallery2 :where(.list-sum) { 
	display: none;
}

.list-gallery2 .new-icon {
	opacity: 0;

	position: absolute;
	top: 20px;
	left: 50%;
	transform: translate(-50%, -30%);

	border: 1px solid #fff;
	border-radius: 10px;
	padding: 4px 8px 3px 8px;
	
	font-size: calc(var(--font-size) - 3px);
	color: #fff;
	line-height: 1.1;

	transition: opacity var(--transition), transform var(--transition);
}

.list-gallery2 .list-item:hover .new-icon {
	opacity: 1;
	transform: translate(-50%, 0%);

	transition: opacity 0.9s 0.2s, transform 0.9s 0.2s;
}


/* 카테고리 - 웹진 */

.list-webzine .list-category {
	margin-bottom: 15px;
}

.list-webzine .list-item {
	display: flex;

	position: relative;

	gap: 50px;
	padding: 20px 0;
}

.list-webzine .list-item:not(:last-child) {
	border-bottom: 1px solid var(--point-color);
}

.list-webzine .list-thumb {
	flex-shrink: 0;

	position: relative;

	width: min(220px, 40%);
	min-height: 138px;
}

.list-webzine .empty-item .list-thumb {
	display: none;
}

.list-webzine .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: filter var(--transition);
}

.list-webzine .list-item:hover .list-img {
	filter: grayscale(0);
}

.list-webzine .list-img + .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;

	width: 100%;
	height: 100%;
	background-color: var(--base-color);
}

.list-webzine .list-noimg .list-icon {
	display: block;
	width: 20px;
	height: 20px;
	color: var(--point-color);
}

.list-webzine .list-info {
	display: flex;
	flex-direction: column;

	gap: 5px 0;
	flex-grow: 1;
	min-width: 0;
}

.list-webzine .list-title {
	display: flex;
	align-items: center;
	
	width: -moz-available;
	width: -webkit-fill-available;
	padding-right: 30px;

	font-size: calc(var(--font-size) + 3px);
}

.list-webzine .title-content {
	display: inline-block;

	font-weight: 600;

	overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-webzine .secret-icon {
	width: calc(var(--font-size) - 1px);
	height: calc(var(--font-size) - 1px);
	margin-right: 4px;
	color: var(--point-color);
}

.list-webzine .list-date {
	margin-top: -5px;
	
	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins", "Pretendard";
}

.list-webzine .list-sum {
	display: -webkit-box;

	width: 100%;
	margin-top: auto;
	overflow: hidden;

	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.list-webzine .new-icon {
	display: inline-block;

	margin-left: 10px;
	border: 1px solid var(--font-color);
	border-radius: 10px;
	padding: 3px 5px;

	font-size: calc(var(--font-size) - 3px);
	line-height: 1.1;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 본문 */
/* ───────────────────────────────────────────────────────── */

.article-info {
	position: relative;

	border-bottom: 1px solid var(--point-color);
	padding: 20px 0;
}

.article:not(:first-child) .article-info {
	border-top: 1px solid var(--point-color);
}

.info-item {
	display: flex;
	justify-content: space-between;

	word-break: keep-all;
}

.article-sort {
	word-break: keep-all;
}

.article-sort::after {
	content:":";
}

.article-title {
	flex-grow: 1;

	font-weight: bold;

	text-align: right;
}

.article-date {
	display: inline-flex;
}

.article-cate {
	display: inline-flex;
	align-items: center;
}

.info-more {
	width: 20px;
	margin-left: auto;
	padding: 0 10px;
}

.admin-btn {
	cursor: pointer;
}

.admin-btn-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	color: #aaa;
}

.article-admin {
	display: none;
	opacity: 0;

	position: absolute;
	z-index: 1;
	right: 0;
	
	width: max-content;
	border: 1px solid var(--point-color);
	padding: 10px;
	background-color: var(--background-color);
	overflow: hidden;
}

.admin-item {
	display: block;

	transition: opacity var(--transition);
}

.admin-item:hover {
	opacity: 0.5;
}

.article-content-wrap {
	position: relative;
}

.article-content {
	padding: 50px 0;

	font-family: "Pretendard";
}

.article-toc-wrap { 
	opacity: 0;
	visibility: hidden;

	position: absolute;
	top: 0px;
	left: calc(100% + 20px);

	height: 100%;
	margin-top: 50px;
	padding: 0 20px;

	transition: opacity var(--transition);
} 

.scroll .article-toc-wrap {
	opacity: 1;
	visibility: visible;
}

.toc-icon {
	transform: rotate(45deg);

	width: var(--font-size);
	height: var(--font-size);
	color: var(--font-color);

	transition: transform var(--transition);
}

.open .toc-icon {
	transform: none;
}

.article-toc { 
	position: sticky;
	top: 110px;

	width: 230px;

	transition: all var(--transition);
}

.toc-btn + .toc-list:not(.opacity-1) {
	opacity: 0;
}

.toc-list-item { 
	position: relative;
} 

.toc-list-item::before {
	content: "→";

	position: absolute;
	
	color: #999;
}

.toc-link {
	display: block;

	margin-bottom: 10px;
	padding-left: 20px;
	overflow: hidden;

	color: #999;
	word-break: break-all;
}

.toc-list-item > .toc-list {
	padding-left: 18px;
}

.toc-link.is-active-link {
	color: var(--font-color);
}

.toc-link:not(.is-active-link) {
	color: #999;
}


/* 본문 에디터 */

.article-content p>a {
	font-style: italic;
}

.article-content p>a::before {
	content:"→";

	padding-right: 4px;

	font-style: normal;
}

h2, h2[data-ke-size], h3, h3[data-ke-size] {
	font-weight: normal;
}

:is(.notice-content, .article-content) .contents_style figure a {
	display: flex;

	position: unset;

	margin: unset;
	border: unset;
	border-radius: unset;
	padding: unset;

	font-weight: unset;
}

:is(.notice-content, .article-content) .contents_style figure a::before {
	content: none;
}


/* 본문 이미지 */

.imageblock span {
	display: flex;
}

.imageblock span {
	background-color: var(--base-color);

	transition: background-color var(--transition);
}

.imageblock span:has(.lazyloaded) {
	background-color: transparent;
}

.article-content figure.imageblock span, .article-content figure.imagegridblock span {
	display: flex;
}

.article-content figure.imageblock span img, .article-content figure.imagegridblock span img {
	opacity: 0;
}

.article-content figure.imageblock span img.lazyloaded, .article-content figure.imagegridblock span img.lazyloaded {
	opacity: 1;
	transition: all 0.3s ease;
}

.article-content img, .notice-content img {
	max-width: 100%;
	height: auto;
}

#tt-body-page figure.imagegridblock + figure.imagegridblock {
	margin-top: -20px;
}

figure.imagegridblock .image-container > span {
	margin-top: 10px !important;
}


/* 이미지 주석 */

figure.imageslideblock div.image-container {
	min-width: 100%;
}

article :is(figure figcaption, figure.imageslideblock figcaption) {
	padding-top: 5px;

	font-size: 12px ;
	color: #aaa;
}


/* 인용 */

:is(#tt-body-index, #tt-body-search, #tt-body-tag, #tt-body-page, #tt-body-category) :where(blockquote, blockquote p) {
	margin: 20px auto 0;

	font-size: inherit;
}


/* 인용1 */

:is(#tt-body-index, #tt-body-search, #tt-body-tag, #tt-body-page, #tt-body-category) blockquote[data-ke-style='style1'] {
	padding: 15px 0 0 0;
	background: url(https://t1.daumcdn.net/keditor/dist/0.4.9/image/blockquote-style1.svg) no-repeat 50% 0;
	background-size: 15px;

	font-size: inherit;
	line-height: inherit;
	letter-spacing: -0.5px;
	text-align: center;
}


/* 인용2 */

:is(#tt-body-index, #tt-body-search, #tt-body-tag, #tt-body-page, #tt-body-category) blockquote[data-ke-style='style2'] {
	border-left: 5px double var(--point-color);
	padding-left: 15px;

	font-size: inherit;
}


/* 인용3 */

blockquote[data-ke-style='box'], #tt-body-page blockquote[data-ke-style='box'], blockquote[data-ke-style='style3'], #tt-body-page blockquote[data-ke-style='style3'] {
	border: 3px double var(--point-color);
	background: none;

	font-size: inherit;
	color: var(--point-color);
}


/* 더보기 */

div[data-ke-type='moreLess'] .btn-toggle-moreless, #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
	display: block;

	width: -moz-fit-contnet;
	width: fit-content;
	margin: 15px 0;
	padding: 10px 12px;
	background-color: var(--point-color);

	font-size: inherit;
	font-weight: bold;
	color: #fff;
	line-height: 1;

	transition: none;
}

div[data-ke-type='moreLess'].open .moreless-content, #tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
	margin-bottom: 15px;
 	border-top: 1px solid var(--point-color);
	border-bottom: 1px solid var(--point-color);
  padding: 20px 0;
}

.btn-toggle-moreless::before {
	content: "＋";

	margin-right: 6px;

	line-height: 1;
	font-family: "Pretendard";
}

.open .btn-toggle-moreless::before {
	content: "－";
}


/* 리스트 */

:is(ol, ul)[data-ke-list-type] {
	padding-left: 15px;
}


/* 링크 열기 */

figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph'] {
	margin-top: 5px;
}

figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph'] a:hover :is(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) {
	color: var(--point-color);
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) a {
	display: flex;
	justify-content: space-between;
	align-items: center;

	z-index: 0;

	width: min(400px, 85%);
	height: auto;
	border: 0;
	padding: 15px;
	background-color: var(--link-background-color);
	overflow: hidden;	
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-image {
	flex-shrink: 0;

	position: static;

	width: 100px;
	height: 100%;
	aspect-ratio: 1/1;
	border-right: 1px solid #ddd;

	transition: filter var(--transition);
}

.type_grayscale :is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-image {
	filter: grayscale(1);
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) a:hover .og-image {
	filter: grayscale(0);
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-text {
	display: flex;
	flex-wrap: wrap;
	align-content: center;

	position: static;

	flex: 1;
	width: min(100px, 100%);
	height: auto;
	padding: 0px 20px;
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-text p.og-title {
	width: 100%;
	margin: 0 !important;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Pretendard";
	font-weight: 600;

	transition: color var(--transition);
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-text p.og-desc {
	width: 100%;

	font-size: inherit;
	font-family: "Pretendard";
}

:is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-text p.og-host {
	display: flex;

	position: static;

	width: 100%;

	font-size: inherit;
	font-family: "Poppins", "Pretendard";
}

:is(figure[data-ke-type=opengraph] a, #tt-body-page figure[data-ke-type=opengraph] a, #tt-body-page .blogview_content figure[data-ke-type=opengraph]) div.og-image::before {
	content: none;
}


/* 파일 다운로드 */

figure.fileblock, #tt-body-page figure.fileblock {
	width: -moz-fit-content;
	width: fit-content;
	height: auto;
	border: 3px double var(--point-color);
}

figure.fileblock:hover, #tt-body-page figure.fileblock:hover {
	border-color: var(--point-color);
}

:is(.article-content, .notice-content) figure.fileblock a, #tt-body-page :is(.article-content, .notice-content) .contents_style figure.fileblock a {
	display: flex;
	align-items: center;

	gap: 15px;
	height: auto;
	padding: 15px 20px;
	overflow: hidden;
}

.fileblock-icon {
	flex-shrink: 0;

	width: 23px;
	height: 23px;
	color: var(--point-color);
}

figure.fileblock .image, #tt-body-page figure.fileblock .image {
	display: none;
}

figure.fileblock .desc, #tt-body-page figure.fileblock .desc {
	position: static;

	flex: 1;
	overflow: hidden;

	text-overflow: ellipsis;
	white-space: nowrap;
}

figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
	height: auto;
	margin: 0;

	font-size: inherit;
	font-weight: 500;
	color: var(--point-color);
}

figure.fileblock .size, #tt-body-page figure.fileblock .size {
	height: auto;
	margin: 0;

	font-size: 11px;
	font-family: inherit;
}

figure.fileblock a::after, #tt-body-page figure.fileblock a::after {
	content: none
}


/* 글감 */

:is(.notice-content, .article-content) .contents_style figure[data-ke-type='contentSearch'] {
	border: 1px solid var(--point-color);
	box-shadow: none;
	overflow: hidden;
}

/* 코드블럭 */

:is(.article-content, .notice-content) pre[data-ke-type="codeblock"] {
	position: relative;

	padding: 0;

	font-family: "Poppins", "Pretendard";
	white-space: pre-wrap;
}

:is(.article-content, .notice-content) pre .copy-btn {
	position: absolute;
	right: 20px;
	bottom: 15px;

	padding: 5px 8px;
	background-color: var(--point-color);

	font-size: 11px;
	font-family: "Pretendard";
	color: #fff;
	line-height: 1;
}

:is(.article-content, .notice-content) .codeblock {
	max-height: 500px;
	margin: 3px;
	padding: 10px;
	overflow-y: scroll;

	font-family: "Poppins", "Pretendard";
}

:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar {
	width: 4px;
}

:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-track {
	background-color: transparent;
}

:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-thumb {
	border-radius: 20px;
}

:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-button:vertical:start:decrement,
:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-button:vertical:start:increment {
	display: block;
	height: 5px;
}

:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-button:vertical:end:decrement,
:is(.article-content, .notice-content) .codeblock::-webkit-scrollbar-button:vertical:end:increment {
	display: block;
	height: 5px;
}

:is(.article-content, .notice-content) .codeblock-line {
	display: flex;

	gap: 15px;

	counter-increment: line-index;
}

:is(.article-content, .notice-content) .codeblock-line::before {
  content: counter(line-index);

	opacity: 0.5;

	flex-shrink: 0;
}


/* 반응형 동영상*/

iframe:not(.instagram-media, [data-ke-type='map']) {
	width: 100%;
	height: 100%;
	border-radius: var(--img-round);
}

.article-author {
	display: flex;
	align-items: center;

	gap: 15px;
}

.article-author-img {
	width: 30px;
	height: 30px;
	border-radius: 100%;
}


/* 본문 - 관련글 */

.article-related {
	margin-bottom: 20px;
	padding: 20px;
	background-color: var(--related-background-color);
}

.related-headline {
	display: flex;
	justify-content: space-between;
	align-items: center;

	padding-bottom: 20px;
}

.related-more {
	margin-left: 5px;

	font-size: calc(var(--font-size) - 1px);
	font-weight: 500;
	text-transform: uppercase;
	color: #777;
}

.related-container {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));

	gap: 20px;
}

.related-item {
	position: relative;

	overflow: hidden;
}

.related-img-box {
	display: flex;

	overflow: hidden;
}

:where(.related-item.text_type, .related-item.type_secret) .related-img-box {
	display: flex;
	justify-content: center;
	align-items: center;

	aspect-ratio: 1/1;
	background-color: var(--related-empty-color);
}

.related-item.thumb_type:not(.type_secret) .related-icon {
	display: none;
}

:is(.related-item.text_type, .related-item.type_secret) .related-info {
	visibility: visible;
	opacity: 1;

	color: var(--font-color);
}

.related-icon { 
	width: calc(var(--font-size) + 9px);
	height: calc(var(--font-size) + 9px);
	margin-top: 30px;
	color: var(--point-color);
}

.related-img {
	transform: scale(1.01) translateZ(0);

	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;

	transition: transform var(--transition), filter var(--transition);
}

.related-item:hover .related-img {
	transform: scale(1.2) translateZ(0);

	filter: grayscale(0) brightness(0.7);
}

.related-info {
	opacity: 0;

	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	padding: calc(var(--skin-width) * 0.02);

	color: #fff;

	transition: opacity var(--transition);
}

.related-item:hover .related-info {
	opacity: 1;
}

.related-title {
	width: 100%;
	overflow: hidden;

	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.related-date {
	font-size: calc(var(--font-size) - 3px);
	font-family: "Pretendard";
}


/* 본문 - 태그 */

.article-tag {
	margin-bottom: 20px;
	padding: 10px 0;
}

.tag-title {
	word-break: keep-all;
}

.tag-title::after {
	content:":";
}

.article-tag a {
	position: relative;

	margin-right: 5px;
	
	line-height: 1.3;
}

.article-tag a:not(:first-child) {
	margin-left: 4px;
}

.article-tag a:hover {
	color: var(--point-color);
}

.article-tag a {
	background-image: linear-gradient(var(--font-color), var(--font-color));
	background-size: 100% 0.9px;
	background-position: 100% 95%;
	background-repeat: no-repeat;

  transition: background-size var(--transition), background-image var(--transition);
}

.article-tag a:hover {
	background-image: linear-gradient(var(--point-color), var(--point-color));
	background-size: 0% 0.9px;
}

.article-tag a::before {
	content: "#";

	margin-right: 3px;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 비밀글 */
/* ───────────────────────────────────────────────────────── */

.protected {
	border-bottom: 1px solid var(--point-color);
	padding: 120px 60px;
	overflow: hidden;

	text-align: center;
}

.protected-alert {
	display: block;
}

.protected-icon {
	width: var(--font-size);
	height: var(--font-size);
	color: var(--point-color);
}

.protected-title {
	margin-bottom: 20px;

	font-size: calc(var(--font-size) + 5px);
	font-weight: bold;
}

.protected-input {
	width: 200px;
	height: 40px;
	margin-bottom: 5px;
	border: 1px solid var(--point-color);
	padding: 0px 10px;
}

.protected-submit {
	display: block;

	width: 200px;
	height: 40px;
	margin: 0 auto;
	border: 1px solid var(--point-color);

	font-weight: 700;
	color: var(--point-color);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 공지사항 */
/* ───────────────────────────────────────────────────────── */


/* 공지 - 공통*/

.notice:not(:last-child) {
	border-bottom: 1px solid var(--point-color);
}

.notice-info {
	display: flex;
	align-items: center;

	gap: 20px;
	border-bottom: 1px solid var(--point-color);
	padding: 20px 0;
}

.notice-img {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 100% 100% 0 0;
	
	transition: filter var(--transition);
}

.notice-info:hover .notice-img {
	filter: grayscale(0);
}

.notice .info-box {
	align-self: flex-end;

	line-height: 1.2;
}

.notice-title {
	width: 100%;

	font-weight: 600;
}

.notice-date {
	display: inline-flex;

	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins", "Pretendard";
	color: #777;
}

.notice-content {
	padding: 20px 0;
}

.notice-content a {
	display: inline-flex;
	align-items: center;

	margin-right: 5px;
}

.notice-content a:not(.btn-toggle-moreless)::before {
	content: "";

	display: inline-flex;

	width: 10px;
	height: 0.5px;
	margin-right: 5px;
	background-color: var(--font-color);

	transition: margin-right var(--transition);
}

.notice-content a:not(.btn-toggle-moreless):hover::before {
	margin-right: 10px;
}

/* 공지 - 공지 */
.type_notice .notice-page :where(.header-search, .header-category, .footer) {
	display: none;
}

.type_notice .notice-info {
	justify-content: space-between;

	gap: 70px;
	border-bottom: 0;
}

.layout_2 .notice:first-child .notice-info {
	border-top: 0;
	padding-top: 0;
}

.layout_2 .notice-info {
	border-top: 0;
}

.type_notice .notice-page .info-more {
	position: absolute;
	right: 20px;
}

.type_notice .notice-img {
	width: 70%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.type_notice .notice-title {
	font-size: calc(var(--font-size) + 4px);
	font-weight: normal;
	color: var(--point-color);
	text-align: right;
}

.type_notice .notice-date {
	display: block;

	margin-top: 50px;
	
	text-align: right;
}

.type_notice .notice-content {
	padding: 40px 0;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 포스트 버튼 */
/* ───────────────────────────────────────────────────────── */

.article-post-btn {
	display: flex;
	align-items: center;

	gap: 10px;
	margin: 10px 0 20px 0;
}

.notice-post-btn {
	display: flex;
	align-items: center;

	gap: 10px;
	padding: 10px 0 20px 0;
}

.article-rp, .article-report, .notice-report {
	display: inline-flex;
}

.rp-btn {
	width: 15px;
	height: 15px;
	stroke-width: 2px;
	color: var(--font-color);

	cursor: pointer;
}

.report-btn {
	display: inline-flex;
	align-items: center;

	height: 100%;
	border: 0;
}

.report-btn-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	stroke-width: 1.5px;
	color: var(--font-color);

	vertical-align: middle;
}

/* RESET */

.container_postbtn {
	display: flex;
	width: 100%;
	
	padding: unset;
}

.container_postbtn::after {
	content: none;
}

.container_postbtn .postbtn_like {
	display: flex;
	align-items: stretch;

	float: unset;

	padding: unset;

	font-size: inherit !important;
}

.container_postbtn .postbtn_like .wrap_btn {
	display: flex;
	align-items: stretch;

	float: unset;
}

.container_postbtn .btn_post {
	height: unset;
	border: unset;
	border-radius: unset;
	padding: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_post.uoc-icon .uoc-icon {
	display: flex;
	align-items: center;

	position: relative;
}

.container_postbtn .btn_post .ico_like {
	display: none;

	max-width: unset;
	width: unset;
	height: unset;
	margin: unset;
	background: none;

	text-indent: unset;
}

.container_postbtn .btn_post .txt_like {
	margin: unset;
    
	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_post .ico_share {
	display: none;

	margin: unset;
	background: none;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .layer_post {
	border: unset;
	box-shadow: unset;
	padding: unset;
	background: unset;
}

.container_postbtn .layer_post .ico_arrbt {
	display: none;
}

.container_postbtn .layer_post .btn_mark {
	padding: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
	color: inherit;
}

.container_postbtn .btn_post .ico_statistics {
	display: none;

	width: unset;
	height: unset;
	margin: unset;
	background: none;

	text-indent: unset;
}

.btn_post, .btn_menu_toolbar {
	outline: none !important;
}

.btn_post, .btn_menu_toolbar:focus-visible {
	outline: 2px !important;
}

.container_postbtn .postbtn_ccl {
	display: none;
}

.container_postbtn .ico_postbtn.ico_etc {
	display: none;
}

.container_postbtn .btn_menu_toolbar, .container_postbtn button.tt-btn-support {
	width: -moz-fit-content;
	width: fit-content;
	height: unset;
	margin: unset;
	border: unset;
	border-radius: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_menu_toolbar .txt_state {
	display: none;
}

.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
	display: none;
}


/* 메인 박스 */
.container_postbtn {
	justify-content: space-between;

	gap: 25px;
}

.container_postbtn .postbtn_like { 
	gap: 15px;
	border: 0;
}

/* 공유 */
.container_postbtn .wrap_btn_share {
	display: none !important;
}

/* 통계 */
.container_postbtn .wrap_btn:nth-of-type(3):not(.wrap_btn_etc) {
	display: none !important;
}

/* 더보기 */
.container_postbtn .wrap_btn_etc {
	display: none !important;
}

/* 구독 버튼 */

.container_postbtn .postbtn_like + .btn_menu_toolbar.btn_subscription {
	display: none;
}

/* 응원하기 버튼 */

div[data-tistory-react-app="SupportButton"] {
	display: flex;
	align-items: stretch;
}

.container_postbtn button.tt-btn-support {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	background-color: transparent;

	font-size: var(--font-size) !important;
	font-weight: 500;
	color: var(--font-color) !important;
}

.notice .container_postbtn .btn_menu_toolbar {
	display: none !important;
}

.notice div[data-tistory-react-app="SupportButton"] {
	display: none;
}

div[data-tistory-react-app="SupportButton"]:empty {
	display: none;
}

/* 공감 버튼 */
.ico_postbtn.ico_like {
	display: none;
}

button.btn_post.uoc-icon {
	display: inline-flex;
	align-items: stretch;
}

.container_postbtn .btn_post.uoc-icon .uoc-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	gap: 6px;
}

.like_on .like-btn {
	border-color: var(--point-color);
}

.like-iconbox {
	display: inline-flex;
	align-items: center;
}

.article-like, .notice-like {
	display: none;
}

.like-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);

	color: transparent;
	stroke: var(--font-color);
	stroke-width: 1.5px;

	transition: color var(--transition);
}

.like_on .like-icon {
	color: var(--point-color);
	stroke: none;
}

.like-count::before {
	content: "이 게시글을 ";
}

.like-count::after {
	content: "명이 좋아합니다.";
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 태그 클라우드 */
/* ───────────────────────────────────────────────────────── */

.taglog {
	display: flex;
	flex-wrap: wrap;

	gap: 15px;
	padding: 40px 0;
}

.tag-category {
	width: 100%;
	margin-bottom: 15px;

	font-size: calc(var(--font-size) + 2px);
	text-transform: capitalize;
}

.tag-category::before {
	content: "#";
}

.tag-item {
	position: relative;

	line-height: 1.3;
}

.tag-item:hover {
	border-color: var(--point-color);

	color: var(--point-color);
}

.tag-item {
	background-image: linear-gradient(var(--font-color), var(--font-color));
	background-size: 100% 0.9px;
	background-position: 100% 95%;
	background-repeat: no-repeat;

  transition: background-image var(--transition), background-size var(--transition);
}

.tag-item:hover {
	background-image: linear-gradient(var(--point-color), var(--point-color));
	background-size: 0% 0.9px;
}

.tag-item::before {
	content: "#";
}

.taglog .cloud1 {
	font-weight: bold;
	color: var(--point-color);
}

.taglog .cloud2 {
	color: var(--point-color);
}

.taglog .cloud1 {
	background-image: linear-gradient(var(--point-color), var(--point-color));
}

.taglog .clou2 {
	background-image: linear-gradient(var(--point-color), var(--point-color));
}

.taglog .cloud3 {
	font-weight: bold;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 댓글 & 방명록 */
/* ───────────────────────────────────────────────────────── */


/* reset */

body .tt-wrap-cmt .tt-link-user, .tt-box-write .tt-xe-label, .tt-btn-cancel, .tt-item-reply .tt_cmt_info .tt_txt_g, .tt-item-reply, .tt-item-reply .tt-list-reply-comment, .tt-area-write .tt-box-account input, .tt-wrap-cmt .tt_desc, .tt-btn_register, .tt-txt-mention, .tt-wrap-cmt .tt_date, .tt-link-comment .tt_txt_g, .tt-wrap-cmt .tt-link-comment, .tt-box-total .tt_txt_g, .tt-box-total .tt_num_g, .tt-wrap-cmt .tt-wrap-link-comment, .tt-area-reply, .tt-item-reply .tt_cmt_info, .tt-link-comment .tt_num_g, .tt-box-textarea textarea, .tt-box-textarea div, .tt-box-textarea .tt_txt_user { 
	margin: 0;
	border: 0;
	padding: 0;

	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}

/* start */

.tt-comment-cont {
	display: flex;
	flex-wrap: wrap;

	margin-top: 20px;
}

.article-comment .tt-comment-cont {
	margin-top: 0;
}


/* 코멘트 - 헤더 */

.tt-box-total {
	order: 1;

	width: 100%;
	border-top: 2px solid var(--point-color);
	border-bottom: 1px solid var(--point-color);
	padding: 20px 0;

	font-weight: bold;
}

.tt-box-total .tt_num_g {
	padding-left: 10px;

	font-size: calc(var(--font-size) - 2px);
}


/* 코멘트 - 리스트 스타일 */

.tt-comment-cont .tt-area-reply {
	position: relative;
	order: 3;

	width: 100%;
}

.tt-list-reply > .tt-item-reply.has-fixed {
	order: 1;
}

.tt-list-reply > .tt-item-reply.has-fixed .tt-wrap-cmt {
	border-top: 0;
	border-bottom: 1px solid var(--point-color);
}

.tt-list-reply > .tt-item-reply.has-fixed .tt_desc {
	font-weight: bold;
}

.tt-list-reply > .tt-item-reply.has-fixed .tt-box-thumb > a {
	border-color: var(--point-color);
}

.tt-list-reply > .tt-item-reply.has-fixed .tt-wrap-cmt .tt-link-user {
	color: var(--point-color);
}

.tt-list-reply > .tt-item-reply.has-fixed .tt_desc {
	color: var(--point-color);
}

.tt-list-reply > .tt-item-reply.has-fixed .tt_ico_fixed {
	background-color: var(--point-color);
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed {
	width: var(--font-size);
	height: var(--font-size);
	margin-right: 5px;
	margin-bottom: 0;
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 3V5H17V11L19 14V16H13V23H11V16H5V14L7 11V5H6V3H18Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--point-color);
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
	color: var(--point-color);
}

.tt-list-reply > .tt-item-reply:first-child:not(.has-fixed) > .tt-wrap-cmt {
	border-bottom: 1px solid var(--point-color);
}

.tt-list-reply > .has-fixed + .tt-item-reply > .tt-wrap-cmt {
	border-bottom: 1px solid var(--point-color);
}

.tt-list-reply > .has-fixed + .tt-item-reply .tt-list-reply-comment .tt-item-reply:first-of-type .tt-wrap-cmt {
	border-top: 0;
}

.tt-list-reply > .tt-item-reply:last-child > .tt-wrap-cmt {
	border-top: 0;
}

.tt-item-reply .tt_cmt_info {
	width: -moz-fit-content;
	width: fit-content;
	margin: 25px 30px -10px 0px;
	
	font-style: italic;
}

.tt_ico_fixed {
	width: var(--font-size);
	height: var(--font-size);
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8273 1.68994L22.3126 10.1752L20.8984 11.5894L20.1913 10.8823L15.9486 15.125L15.2415 18.6605L13.8273 20.0747L9.58466 15.8321L4.63492 20.7818L3.2207 19.3676L8.17045 14.4179L3.92781 10.1752L5.34202 8.76101L8.87756 8.0539L13.1202 3.81126L12.4131 3.10416L13.8273 1.68994ZM14.5344 5.22548L9.86358 9.89631L7.0417 10.4607L13.5418 16.9608L14.1062 14.1389L18.7771 9.46812L14.5344 5.22548Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--font-color);
}

.tt_btn_prev_more {
	border-top:1px solid var(--point-color);
	background-color: transparent;

	color: var(--font-color);
}

.tt_btn_prev_more {
	border-bottom: 1px solid var(--point-color);
}

/****/

.tt-list-reply {
	display: flex;
  flex-direction: column-reverse;

	border: 0;
}

.tt-wrap-cmt {
	flex-wrap: nowrap;

	gap: 15px;
	border-top: 1px solid var(--point-color);
	padding: 25px 0;
}

.tt-list-reply-comment .tt-item-reply {
	padding-left: 0;
}

.tt-list-reply-comment .tt-item-reply::before {
	top: 40px;
	border-color: var(--point-color);
}

.tt-list-reply .tt-list-reply-comment .tt-wrap-cmt {
	border-top: 1px solid var(--point-color);
	padding-left: 70px;
}

.tt-list-reply-comment .tt-item-reply::before {
	border-color: var(--point-color);
}

.tt-item-reply .tt-list-reply-comment {
	border-color: var(--point-color);
}

.tt-list-reply-comment .tt-item-reply:last-child {
	padding-bottom: 0;
}


/* 코멘트 - 썸네일*/

.tt-box-thumb {
	margin-right: 0;
}

.rp-form .tt-box-thumb {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	left: 50%;
}

.tt-area-reply .tt-box-thumb {
	left: 20px;
}

.tt-thumb-wrap {
	display: inline-block;

	border: 1.5px solid var(--point-color);
	border-radius: 100%;
}

.tt-box-thumb > a {
	display: inline-block;

	border: 1.5px solid var(--font-color);
	border-radius: 100%;
}

.tt-list-reply-comment .tt-wrap-cmt .tt-box-thumb > a {
	border-color: var(--point-color);
}

.tt-thumbnail {
	width: 35px;
	height: 35px;
}

.tt-area-reply + .rp-form .tt-thumbnail {
	width: 50px;
	height: 50px;
}

.type_grayscale .tt-thumbnail {
	filter: grayscale(1);

	transition: filter var(--transition);
}

.type_grayscale :is(.tt-wrap-cmt, .tt-area-write):hover .tt-thumbnail {
	filter: none;
}

.type_line .tt-thumbnail {
	border: 3px solid var(--background-color);
}


/* 코멘트 - 유저 정보 & 내용 */

.tt-wrap-cmt .tt-link-user {
	font-weight: 600;
	color: var(--font-color);
}

.tt-comment-cont .tt-wrap-desc {
	margin: 8px 0;
}

.tt-wrap-cmt .tt_desc {
	color: var(--font-color);
}

.tt-wrap-info {
	gap: 8px;
	margin-top: 10px;
}

.tt-wrap-cmt .tt_date {
	margin-right: 7px;

	font-weight: 500;
}

.tt-wrap-cmt .tt-wrap-link-comment {
	display: inline-flex;
	align-items: center;
}

.tt-wrap-cmt .tt-link-comment {
	display: inline-flex;
	align-items: center;
}

.tt-link-comment .tt_num_g {
	margin-left: 5px;
}

.tt-area-reply .tt-list-reply .tt-list-reply-comment :is(.tt-wrap-cmt .tt-txt-mention, .tt-link-user, .tt_desc) {
	color: var(--point-color);
}

.tt-wrap-cmt .tt-button-modify:hover, .tt-wrap-cmt .tt-box-modify.tt-box-modify-open .tt-button-modify {
	background-color: var(--form-color);
}

.tt-wrap-cmt .tt-list-modify {
	border: 1px solid var(--point-color);
	border-radius: 0;
	box-shadow: none;
	padding: 0;
	background-color: var(--background-color);
}

.tt-wrap-cmt .tt-list-modify li:not(:last-child) {
	border-bottom: 1px solid var(--point-color);
}

.tt-wrap-cmt .tt-list-modify a {
	color: var(--point-color);
}

.tt-wrap-cmt .tt-list-modify a:hover {
	background-color: var(--point-color);

	color: #fff;
}


/* 코멘트 - 멘션 */

.tt-area-reply .tt-list-reply .tt-txt-mention {
	margin: 0 6px 2px -2px;
	padding: 2px 3px;
	background-color: transparent;
	
	font-weight: bold;
	color: var(--font-color);
	text-decoration: underline;
}

.tt-txt-mention::before {
	content: none;
}


/* 코멘트 - 비밀 댓글 아이콘 */

.tt_ico_lock {
	width: var(--font-size);
	height: var(--font-size);
	margin-left: 6px;
	background-size: 90px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 8V7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V8H20C20.5523 8 21 8.44772 21 9V21C21 21.5523 20.5523 22 20 22H4C3.44772 22 3 21.5523 3 21V9C3 8.44772 3.44772 8 4 8H6ZM19 10H5V20H19V10ZM11 15.7324C10.4022 15.3866 10 14.7403 10 14C10 12.8954 10.8954 12 12 12C13.1046 12 14 12.8954 14 14C14 14.7403 13.5978 15.3866 13 15.7324V18H11V15.7324ZM8 8H16V7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7V8Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--font-color);
}

.tt-list-reply-comment .tt_ico_lock {
	background-color: var(--point-color);
}


/* 코멘트 입력창 */

.rp-form {
	width: 100%;
	background-color: var(--form-color);
}

.tt-area-reply .rp-form {
	border-top: 1px solid var(--point-color);
	padding: 30px 30px 30px 70px;
}

#tt-body-guestbook .tt-box-total ~ .rp-form {
	display: none;

	border-bottom: 1px solid var(--point-color);
	padding: 30px;
}

#tt-body-guestbook .tt-area-reply + .rp-form {
	border-bottom: 0;
}

.tt-area-reply + .rp-form {
	border-top: 2px solid var(--point-color);
	padding: 30px;
}

.tt-area-write {
	position: relative;

	gap: 10px;
	padding-top: 60px;
}

.tt-area-reply + .rp-form .tt-area-write {
	padding-top: 100px;
}

.tt-box-write {
	gap: 0px;
}

.tt-area-write .tt-box-account {
	flex-wrap: wrap;
}

.tt-area-reply + .rp-form .tt-area-write .tt-box-account {
	margin-top: -20px;
}

.tt-box-write .tt-xe-label {
	margin-left: auto;
}

.secret-btn {
	display: inline-flex;
	align-items: center;

	gap: 5px;
	height: 35px;
	margin-right: 10px;
	border-radius: var(--radius-px);
	box-shadow: inset 3px 3px 4px var(--form-shadow-bright), 3px 3px 4px var(--form-shadow-dark);
	padding: 2px 13px;

	color: var(--point-color);
}

.tt-xe-label.checked .secret-btn {
	box-shadow: inset 3px 3px 4px var(--form-shadow-dark), 3px 3px 4px var(--form-shadow-bright);
}

.secret-btn .secret-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	color: var(--point-color);
}

.tt-box-write .tt-xe-input-helper {
	display: none; 
}

.tt-area-reply :is(.tt-box-write .tt-xe-label .secret-btn) {
	box-shadow: none;
	padding: 0;
	background-color: transparent;
}

.tt-area-reply .tt-area-write .tt-btn-cancel {
	min-width: unset;
	width: 68px;
	height: 30px;
	margin-left: 10px;
	border: 1px solid var(--point-color);
	border-right: 0;

	font-weight: normal;
	color: var(--point-color);
}

.tt-area-write .tt-box-account input {
	width: 100%;
	padding: 6px 15px;

	font-size: var(--font-size);

	transition: all var(--transition);
}

.tt-area-write .tt-box-account input[type="password"] {
	border-top: 0;
}

.tt-area-reply .tt-box-account input {
	width: 50%;
}

.tt-box-textarea .tt-inner-g, .tt-area-write .tt-box-account input {
	border: 0;
	border-bottom: 1px solid var(--point-color);
	border-radius: 0;
	padding: 10px 0px;

	color: var(--point-color);

	transition: all var(--transition);
}

.tt-area-write .tt-box-account input:focus, .tt-area-write .tt-box-account input:hover, .tt-box-textarea:hover .tt-inner-g {
	border-color: var(--point-color);
}

.tt_wrap_write > div:first-child.tt-box-textarea .tt-inner-g {
	border: 1px solid var(--point-color);
	padding: 15px;
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before {
	content: "내용을 입력하세요.";
}

.tt-box-textarea .tt_txt_user {
	color: var(--point-color);
	line-height: 1;
}

.tt-area-reply .tt-box-textarea .tt_txt_user {
	display: flex;
	align-items: center;

	position: absolute;
	top: 0;
	left: 55px;

	height: 35px;

	font-weight: 600;
	color: var(--point-color);
	line-height: 1;
}

.tt-area-reply + .rp-form .tt-box-textarea .tt_txt_user {
	display: flex;
	align-items: center;

	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
}

.tt-box-textarea textarea, .tt-box-textarea div {
	color: var(--point-color);
}

.tt-btn_register:disabled {
	border: 1px solid var(--point-color);
	background-color: var(--point-color);

	color: #fff;
}

.tt-btn_register {
	border: 1px solid var(--point-color);
	border-radius: 0px;
	background-color: var(--point-color);

	font-size: var(--font-size);

	transition: all var(--transition);
}

.tt-btn_register:hover, .tt-btn_register:focus {
	background-color: var(--point-color);
	border-color: var(--point-color);
} 

/****/

.guestbook {
	margin-bottom: 30px;
}

.guestbook-img-box {
	position: relative;

	margin-top: 20px;
}

.guest-write-btn {
	position: absolute;
	z-index: 2;
	top: 20px;
	right: 20px;

	padding: 5px 12px;
	background-color: var(--point-color);

	color: #fff;
}

.guest-write-btn::before {
	content: "+";

	margin-right: 6px;
}

.guestbook-img {
	width: 100%;

	transition: all var(--transition);
}

.guestbook-img-box:hover .guestbook-img {
	filter: grayscale(0);
}

.tt_box_cheers {
	display: none;
}

div[class*="tt_card_cheers_level"], .tt_list_cheers_select .tt-xe-label input:checked + .tt_card_cheers.div[class*="tt_card_cheers_level"] {
	margin: 0;
	border: 0;
	padding: 0;
	background-color: transparent !important;
}

/* ───────────────────────────────────────────────────────── */

/* 네임카드 */

.content .tt_box_namecard {
	display: none;
}




/* ───────────────────────────────────────────────────────── */
/* 푸터 */
/* ───────────────────────────────────────────────────────── */

.footer {
	opacity: 0;
	
	position: relative;

	transition: opacity var(--transition);
}

.footer-ps {
	margin-bottom: 40px;
	padding-top: 30px;

	font-style: italic;
	text-align: right;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 페이징 */
/* ───────────────────────────────────────────────────────── */

#tt-body-guestbook .paging {
	display: none;
}

:is(#tt-body-index, #tt-body-search, #tt-body-category, #tt-body-tag) .article-paging {
	display: none;
}

.article-paging { 
	opacity: 0;
}

.paging, .article-paging {
	display: flex;

	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	border-top: 1px solid var(--point-color);
	border-bottom: 1px solid var(--point-color);
	padding: 15px 0;
}

.paging-category {
	font-size: calc(var(--font-size) - 1px);
	font-family: "Poppins", "Pretendard";
	color: #999;
	text-transform: uppercase;
}

.paging-link { 
	display: flex;
	align-items: center;
}

.empty-paging, .empty-paging .paging-icon {
	color: #ccc;
}

body:not(#tt-body-page) .paging-prev::after {
	content: "PREV";
}

body:not(#tt-body-page) .paging-next::before {
	content: "NEXT"
}

.article-paging .paging-prev .paging-link::after {
	content: "PREV";
}

.article-paging .paging-next .paging-link::before {
	content: "NEXT"
}


/*페이징 넘버*/

.paging-num {
	text-align: center;
}

.num-item {
	display: inline-block;
	
	margin-right: 5px;
}

.paging .selected {
	font-weight: bold;
	color: var(--point-color);
}

.paging-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	color: var(--font-color);
}

.no-more-prev.paging-prev.paging-link, .no-more-next.paging-next.paging-link {
	color: #ccc;
}

:where(.no-more-prev.paging-link, .no-more-next.paging-link) .paging-icon {
	color: #ccc;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 스크롤바 */
/* ───────────────────────────────────────────────────────── */

::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	border-radius: 0;
	background: none;
}

::-webkit-scrollbar-thumb {
	background-color: var(--point-color);
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--point-color);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 드래그 */
/* ───────────────────────────────────────────────────────── */

::selection {
	background: var(--font-color);
	color: #FFF;
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 메뉴바 */
/* ───────────────────────────────────────────────────────── */

.img_common_tistory.ico_tistory_sign {
	display: none;
}

.toolbar-icon {
	width: 15px;
	height: 15px;
	color: #aaa;
}

.menu_toolbar * {
	font-family: "Poppins", "Pretendard";
}

.header_layer {
	border: 1px solid var(--point-color);
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	box-shadow: none;
	background-color: var(--background-color);
}

.type_line :is(.inner_header_layer .info_profile, .inner_header_layer .tit_list_type, .inner_header_layer .info_profile_type1, .menu_toolbar .list_toolbar .link_list) {
	padding-right: 0;
	padding-left: 0;
}

.type_line .inner_header_layer .link_edit {
	right: 33px;
}

.type_line .inner_header_layer .link_setting {
	right: 5px;
}

.header_layer::after {
	content: none;
}

.inner_header_layer .info_profile, .inner_header_layer .wrap_list + .wrap_toolbar {
	border-color: var(--point-color);
}

.inner_header_layer .txt_id, .menu_toolbar .list_toolbar .link_list {
	color: var(--font-color);
}

/* ───────────────────────────────────────────────────────── */




/* ───────────────────────────────────────────────────────── */
/* 라운드 테마 */
/* ───────────────────────────────────────────────────────── */

.type_round body {
	background-color: var(--background-color);
}


/* 라운드 테마 - 공통 */
.type_round :is(.header, .article-entry, .protected, .notice, .taglog, :where(.list-webzine, .list-simple2, .list-gallery2) .list-item, .list-empty, .article-paging, .paging, .tt-area-reply, .guestbook-img-box) {
	margin-bottom: 20px;
	border: 0;
  border-radius: var(--radius-px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 30px;
  background-color: var(--content-background-color);
}

/*******************************************************************/

/* 라운드 테마 - 네비게이션 바 */

.type_round .nav-menu {
	border-radius: var(--radius-px);
}

/*******************************************************************/

/* 라운드 테마 - 헤더 */
.type_round .header-info-wrap {
	border-color: var(--round-border-color);
}

.type_round .header-title {
	border-bottom: 0;
	padding-bottom: 0;

	font-size: calc(var(--font-size) + 4px);
}

.type_round .header-img {
	border-radius: calc(var(--radius-px) - 5px);
}

.type_round .header-search {
	width: min(calc(70% + 14px), calc(400px + 14px));
	margin-top: 0;
	margin-right: -7px;
	border: 0;
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color) inset;
	padding: 5px 10px;
	background-color: var(--input-background-color);
}

.type_round .header-search.style2 {
	padding: 10px 15px;
}

.type_round :is(.search-input, .search-desc) {
	border: 0;
	padding: 4px 10px;

	color: var(--point-color);

	-webkit-appearance: none;
}

.type_round.layout_2 .header-search.style1 .search-desc {
	display: none;
}

.type_round .header-category {
	border-top: 0;
	border-bottom: 0;
	padding-bottom: 0;
}

.type_round .category .sub_category_list {
	border-radius: 10px;
}

/*******************************************************************/

/* 라운드 테마 - 커버 공통 */

.type_round .cover-box {
  margin-bottom: 20px;
	border-top: 0;
  border-radius: var(--radius-px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 30px;
  background-color: var(--content-background-color);
}

.type_round .cover-box:last-child {
	margin-bottom: 0;
}


/* 라운드 테마 - 커버 - 공지 */

.type_round .cover-notice :is(.cover-img, .cover-noimg) {
	border-radius: var(--radius-px);
}

.type_round .cover-notice .cover-item + .cover-item {
	border-color: var(--round-border-color);
}


/* 라운드 테마 - 커버 - 태그 클라우드 */

.type_round .cover-tag .cover-item {
	border: 1px solid var(--font-color);
  padding: 3px 9px;
  border-radius: var(--radius-px);
	background: none;
}

.type_round .cover-tag .cover-item.cloud1 {
	border-color: var(--point-color);
}

.type_round .cover-tag .cover-item:hover {
	border-color: var(--point-color);
	
	color: var(--point-color);
}


/* 라운드 테마 - 커버 - 웹진 */

.type_round .cover-webzine :is(.cover-img, .cover-noimg) {
	border-radius: calc(var(--radius-px) - 5px);
}

.type_round .cover-webzine .cover-item:not(:first-child) {
	border-color: var(--round-border-color);
}


/* 라운드 테마 - 커버 - 갤러리 */

.type_round .cover-gallery .cover-item {
	border-radius: calc(var(--radius-px) - 5px);
}


/* 라운드 테마 - 커버 - 라인 */

.type_round .cover-line .cover-container {
	border: 0;
	border-radius: calc(var(--radius-px) - 5px);
	background-color: var(--cover-background-color2);
}

.type_round .cover-line .cover-item {
	border: 0;
	padding: 30px 20px;
}

.type_round .cover-line :is(.cover-img, .cover-noimg) {
	border-radius: calc(var(--radius-px) - 5px);
}

/*******************************************************************/


/* 라운드 테마 - 카테고리 - 공통 */

.type_round .search-list {
	padding: 0px;
}

.type_round .search-list .list-empty {
	margin-bottom: 0px;
	padding: 200px 30px;

	text-align: center;
}

.type_round .list-category {
	margin-bottom: 20px;
	border: 0;
  border-radius: calc(var(--radius-px) - 5px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 10px 30px;
  background-color: var(--content-background-color);
}

.type_round #tt-body-tag .list-category {
	background-size: 0;
}

.type_round .list-img, .type_round .list-noimg {
	border-radius: calc(var(--radius-px) - 5px);
}


/* 라운드 테마 - 카테고리 - 심플 */

.type_round .list-simple {
	margin-bottom: 20px;
	border: 0;
  border-radius: calc(var(--radius-px) - 5px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 10px 30px;
  background-color: var(--content-background-color);
}

.type_round .list-simple .list-category {
	margin-top: 20px;
	box-shadow: none;
	padding: 0;
	background-color: transparent;
}

.type_round .list-simple .list-item {
	border-color: var(--round-border-color);
	padding: 20px 0px;
}


/* 라운드 테마 - 카테고리 - 심플2 */

.type_round .list-simple2 .list-item:first-child {
	padding: 30px;
}

.type_round .list-simple2 .list-item:not(:last-child) {
	border: 0;
}


/* 라운드 테마 - 카테고리 - 갤러리 */

.type_round .list-gallery {
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 30px;
	background-color: var(--content-background-color);
}

.type_round .list-gallery .list-category {
	box-shadow: none;
	padding: 0px 0px 10px 0;
}

.type_round .list-gallery2 .list-category {
	padding: 10px 20px;
}

.type_round .list-gallery .list-item {
	margin-bottom: 0;
	border-radius: var(--radius-px);
	padding: 0;
}

.type_round .list-gallery2 .list-item {
	margin-bottom: 0;
	box-shadow: none;
	padding: 0 ;
	background: none;
}

.type_round .list-gallery2 .list-thumb {
	border: var(--gallery-gutter2) solid #fffdfa;
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	background-color: var(--content-background-color);
}

.type_round .list-gallery2 .new-icon {
	top: 30px;
}


/* 라운드 테마 - 카테고리 - 웹진 */

.type_round .list-webzine .list-item:not(:last-child) {
	border-bottom: 0;
}

.type_round .list-webzine .list-title {
	top: 30px;
}

.type_round .list-webzine .list-date {
	top: 55px;
}

/*******************************************************************/


/* 라운드 테마 - 본문 */

.type_round .article-content {
	padding: 30px 0;
}

.type_round .article-admin {
	border: 0;
  border-radius: calc(var(--radius-px) - 5px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 10px;
  background-color: var(--content-background-color);
}

.type_round .related-item {
	border-radius: calc(var(--radius-px) - 5px);
}

.type_round .related-img-box {
	border-radius: calc(var(--radius-px) - 10px);
}

.type_round :is(.article-post-btn, .notice-post-btn) {
	margin-bottom: 0;
	padding-bottom: 0;
}

.type_round .article-info {
	border-bottom: 1px solid var(--round-border-color);
	padding-top: 0;
	padding-right: 10px;
}

.type_round .article:not(:first-child) .article-info {
	border-top: 0;
}

.type_round .article-toc-wrap {
	left: calc(100% + 40px);
}

/* 라운드 테마 - 본문 - 글감 */

.type_round .notice-content .contents_style figure[data-ke-type='contentSearch'] {
	border-color: var(--round-border-color);
	border-radius: calc(var(--radius-px) - 5px);
}

/* 라운드 테마 - 본문 - 2단 */

.type_round.layout_2 .article-info {
	border-top: 0;
}

.type_round .article-related {
	border-radius: var(--radius-px);
}


/* 라운드 테마 - 본문 - 링크 열기 */

.type_round :is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) a {
	border-radius: var(--radius-px);
}

.type_round :is(figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph']) div.og-image {
	border-right: 0;
	border-radius: calc(var(--radius-px) - 5px);
}


/* 라운드 테마 - 본문 - 파일 다운로드 */

.type_round :is(figure.fileblock, #tt-body-page figure.fileblock) {
	border-radius: 80px;
}

.type_round :is(figure.fileblock, #tt-body-page figure.fileblock) a {
	padding: 10px 20px;
}

/* 라운드 테마 - 본문 - 더보기 */

.type_round div[data-ke-type='moreLess'] .btn-toggle-moreless, .type_round #tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
	border-radius: var(--radius-px);
}

.type_round div[data-ke-type='moreLess'].open .moreless-content, .type_round #tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
	border-color: var(--round-border-color);
}

/* 라운드 테마 - 본문 - 코드블럭 */

.type_round :is(.article-content, .notice-content) pre[data-ke-type="codeblock"], .type_round :is(.article-content, .notice-content) pre .copy-btn {
	border-radius: var(--radius-px);
}

/*******************************************************************/


/* 라운드 테마 - 태그 클라우드 */

.type_round .tag-item {
	border: 1px solid var(--font-color);
  padding: 3px 9px;
  border-radius: var(--radius-px);
	background: none;
}

.type_round .tag-item.cloud1, .tag-item.cloud2 {
	border-color: var(--point-color);
}

.type_round .tag-item:hover {
	border-color: var(--point-color);
}

/*******************************************************************/

/* 라운드 테마 - 공지 */

.type_round .notice-info {
	border-color: var(--round-border-color);
	padding-top: 0;
	padding-right: 10px;
}


/* 라운드 테마 - 공지 - 공지형 */
.type_round.type_notice .notice-page .header-info-wrap {
	margin-bottom: 0;
}


/* 라운드 테마 - 공지 - 2단 */
.type_round.layout_2 .notice-info {
	border-top: 0;
}

/*******************************************************************/


/* 라운드 테마 - 비밀글 */

.type_round .protected {
	padding: 120px 60px !important;
}

.type_round .protected-input {
	border: 1px solid var(--box-shadow-color);
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color) inset;
	padding: 5px 10px;
	background-color: var(--input-background-color);

	-webkit-appearance: none
}

.type_round .protected-submit {
	border: 1px solid var(--box-shadow-color);
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 5px 10px;
	background-color: var(--input-background-color);
}


/*******************************************************************/


/* 라운드 테마 - 리플 & 방명록 */
.type_round .article-comment {
	margin-bottom: 20px;
}

.type_round.layout_2 .tt-comment-cont {
	margin-top: 20px;
}

.type_round .tt-area-reply + .rp-form {
	margin-bottom: 20px !important;
	border: 0;
  border-radius: var(--radius-px);
  box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 30px;
}

.type_round .tt-box-total {
	display: none;
}

.type_round .tt-area-reply {
	margin-bottom: 0;
}

.type_round .tt-area-reply:empty {
	margin-top: 0;
	padding: 0;
}

.type_round .tt-area-reply .rp-form {
	background-color: transparent;
}

.type_round .tt-wrap-cmt {
	padding: 25px 0px;
}

.type_round #tt-body-guestbook .tt-area-reply + .rp-form {
	border-color: var(--round-border-color);
}

.type_round .tt-area-reply .rp-form {
	border-color: var(--round-border-color);
	padding: 30px 0px 30px 70px;
}

.type_round .tt-item-reply .tt_cmt_info .tt_txt_g {
	color: var(--point-color);
}

.type_round .tt-item-reply .tt_cmt_info .tt_ico_fixed {
	background-color: var(--point-color);
}

.type_round .tt-wrap-cmt {
	border-color: var(--round-border-color);
}

.type_round .tt-list-reply > .tt-item-reply.has-fixed {
	border-top: 0;
}

.type_round body .tt-list-reply .tt-list-reply-comment .tt-wrap-cmt {
	border-color: var(--round-border-color);
}

.type_round .tt-list-reply .tt-list-reply-comment .tt-wrap-cmt {
	border-color: var(--round-border-color);
}

.type_round .tt-list-reply > .has-fixed + li:nth-child(2) {
	border: 0;
}

.type_round .tt-list-reply > li:first-child:not(.has-fixed) {
	border: 0;
}

.type_round .tt-list-reply > .tt-item-reply.has-fixed .tt-wrap-cmt {
	border-color: var(--round-border-color);
}

.type_round .tt-list-reply > .has-fixed + .tt-item-reply > .tt-wrap-cmt {
	border-color: var(--round-border-color);
	border-bottom: 0;
}

.type_round .tt-list-reply > .tt-item-reply:last-child > .tt-wrap-cmt {
	border-top: 0;
	padding-top: 0;
}

.type_round .tt-list-reply > .tt-item-reply:first-child:not(.has-fixed) > .tt-wrap-cmt {
	border: 0;
}

.type_round .tt-list-reply > .tt-item-reply.has-fixed ~ .tt-item-reply:last-child > .tt-wrap-cmt {
	border-top: 1px solid var(--round-border-color);
	padding-top: 25px;
}

.type_round .tt-list-reply > .tt-item-reply:last-child > .tt-wrap-cmt .tt-button-modify {
	top: -20px;
}

.type_round .tt-list-reply > .tt-item-reply.has-fixed ~ .tt-item-reply:last-child > .tt-wrap-cmt .tt-button-modify {
	top: 0px;
}

.type_round .tt-item-reply .tt_cmt_info {
	margin: 0px 30px -10px 0px;
}

.type_round .tt-wrap-cmt .tt-list-modify {
	border: 0;
	border-radius: calc(var(--radius-px) - 10px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	padding: 0;
	background-color: var(--content-background-color);
	overflow: hidden;
}

.type_round .tt-wrap-cmt .tt-list-modify li:not(:last-child) {
	border-bottom: 1px solid var(--round-border-color);
}

.type_round .tt_btn_prev_more {
	border-color: var(--round-border-color);
}

.type_round #tt-body-guestbook .tt_btn_prev_more {
	border-bottom: 0;
}

.type_round .tt-area-write .tt-box-account {
	flex-wrap: nowrap;
	gap: 5px;
}

.type_round .tt-area-write .tt-box-account input {
	border: 0;
	border-radius: var(--radius-px);
	padding: 10px 20px;
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color) inset;
	background-color: var(--input-background-color);

	-webkit-appearance: none;
}

.type_round .tt-comment-cont form .tt-box-textarea .tt-inner-g {
	border: 0;
	border-radius: var(--radius-px);
	padding: 10px 20px;
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color) inset;
	background-color: var(--input-background-color);
}

.type_round .tt-thumbnail {
	border: 3px solid var(--content-background-color);
}

.type_round .guestbook-img {
	margin-top: 0;
	border-radius: calc(var(--radius-px) - 10px);
}

.type_round .guest-write-btn {
	top: 50px;
	right: 50px;

	border-radius: 20px;
}

.type_round .tt-area-reply + .rp-form {
	border-top: 0;
	padding: 30px !important;
}

.type_round .tt-box-write {
	gap: 10px;
}

.type_round .tt-area-reply .tt-area-write .tt-btn-cancel {
	border: 1px solid var(--point-color);
	border-radius: 20px;
}

.type_round .tt-btn_register {
	border-radius: 20px;
}

/*******************************************************************/


/* 라운드 테마 - 페이징 */

.type_round :is(.article-paging, .paging) {
	border: 0 !important;
	border-radius: calc(var(--radius-px) + 10px) !important;
	padding: 15px 30px !important;
}

/*******************************************************************/


/* 라운드 테마 - 푸터 */

.type_round .footer {
	margin-top: 20px;
}

.type_round .footer-ps {
	margin-bottom: 20px;
	padding-top: 20px;
}


/****************************************************************/


/* 라운드 테마 - 메뉴바 */

.type_round .menu_toolbar .btn_menu_toolbar {
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
}

.type_round .header_layer {
	border: 0;
	border-radius: var(--radius-px);
	box-shadow: 0px 2px 3px 0px var(--box-shadow-color);
	background-color: var(--content-background-color);
}

.type_round :is(.inner_header_layer .info_profile, .inner_header_layer .wrap_list + .wrap_toolbar) {
	border-color: var(--round-border-color);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 반응형 */
/* ───────────────────────────────────────────────────────── */


/* 태블릿 */

@media only screen and (max-width : 1400px) {

	.type_round {
		width: 100%;
		overflow-x: hidden;
	}

	body {
		overflow-x: hidden;

		font-family:"Pretendard" !important;
	}

	.wrap {
		width: 92%;
		margin: 4% auto;
	}

	.top-nav {
		width: 100%;
	}

	* {
		-webkit-tap-highlight-color: transparent
	}

	.cover-line .cover-img {
		width: 100%;
	}

	.list-webzine .list-title, .list-webzine .list-date {
		position: static;
	}

	.list-webzine .list-title {
		display: block;
		width: 100%;
	}

	.list-webzine .title-content {
		display: inline;
	}	

	.type_notice .notice-info {
		gap: 20px;
	}

	.type_notice .notice-img {
		width: 60%;
	}

	.type_round .article-toc-wrap {
		left: unset;
	}

	.type_round .article-toc {
		border-radius: var(--radius-px);
	}

	.article-toc-wrap {
		position: fixed;
		z-index: 99;
		top: 100px;
		right: 20px;
		left: unset;

		height: unset;
		margin-top: 0;
		padding: 0;
	}

	.article-toc {
		box-sizing: content-box;

		width: 180px;
		border: 1px solid #ddd;
		padding: 10px;
		background-color: #fffc;

		transition: width var(--transition);
	}

	.article-toc.open {
		width: 60px;
	}

	.tpye_round .article-toc {
		border-radius: var(--radius-px);
	}

	.toc-btn {
		display: flex;
		align-items: center;

		gap: 10px;
	}

	.toc-btn::after {
		content: "목차";
	}

	.toc-icon {
		transform: none;
	}
	
	.open .toc-icon {
		transform: rotate(45deg);
	}

	.article-toc > .toc-list {
		display: none !important;
		opacity: 0 !important;
	}

	.article-toc:not(.open) > .toc-list {
		display: block !important;
		opacity: 1 !important;
	}

	.paging {
		align-items: center;

		position: relative;
		left: 0;

		gap: 10px;
		margin-top: 10px;
	}
	
	.num-item {
		display: inline-block;
	}

	.num-item:not(:last-child) {
		margin-right: 8px;
	}

	:is(.cover-tag .cover-item, .taglog .tag-item, #tt-body-tag .list-category, .article-tag-container a) {
		background-size: 100% 1px;
	}

	.layout_2 .wrap {
		width: 92%;
		margin: 4% auto;
	}

	.layout_2 .top-nav {
		padding: 10px;
	}

	.layout_2 .container {
		display: block;

		width: 100%;
	}

	.layout_2 .header {
		position: unset;
		width: 100%;
	}

	.layout_2 .content {
		width: 100%;
	}

	.layout_2 .search-list {
		padding: 30px 0;
	}

	.layout_2 .footer {
		width: 100%;
		margin-left: auto;
	}

	.layout_2 .article:first-of-type .article-info {
		padding-top: 20px;
	}
	
	.tooltip {
		display: none !important;
	}

}


/* 모바일 */

@media only screen and (max-width : 600px) {
	.copyright {
		display: none;
	}

	.header-search {
		width: 100%;
	}

	.search-input {
		width: 100%;
	}

	.category-wrap {
		width: 100%;
	}

	.cover-notice .cover-headline {
		margin-bottom: 20px;
	}

	.cover-notice .cover-thumb {
		width: 100%;
	}

	.cover-notice .cover-thumb + .cover-sum {
		width: 100%;
		margin-top: 20px;
	}

	.cover-notice .empty-img .cover-sum {
		margin-top: 0;
	}

	.cover-gallery .cover-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.cover-line .cover-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		
		border-top: 1px solid var(--point-color);
	}

	.cover-line .cover-item {
		border-top: 0;
	}

	.cover-line .cover-item:first-child {
		border-bottom: 1px solid var(--point-color);
	}

	.cover-line .cover-item:nth-child(2n) {
		border-right: 0;
	}

	.cover-line .cover-item:nth-child(2n) {
		border-bottom: 1px solid var(--point-color);
	}

	.cover-line .cover-item:nth-child(3) {
		border-right: 1px solid var(--point-color) !important;
	}

	.cover-line .cover-item:nth-child(odd) {
		border-bottom: 1px solid var(--point-color);
	}

	.cover-line .cover-item:nth-last-child(-n + 2)  {
		border-bottom: 0;
	}

	.list-gallery .list-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.cover-gallery .cover-img {
		transform: scale(1.2) translateY(-5px) translateZ(0);
	}

	.cover-tag {
		padding: 30px 0;
	}

	.list-gallery2 .list-item {
		width: calc(100%/ 2);
	}

	.list-webzine .list-item {
		gap: 30px;
	}

	.list-webzine .list-thumb {
		width: 30%;
	}

	.related-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.type_round :is(.header, .article-entry, .protected, .notice, .taglog, .search-list .list-item, .list-empty, .article-paging, .paging, .tt-area-reply, .tt-area-reply + .rp-form, .guestbook-img-box) {
		padding: 20px;
	}

	.type_round :is(.cover-box) {
		padding: 20px;
	}

	.type_round :is(.cover-line .cover-item):nth-child(odd):not(:last-child) {
		border-bottom: 0;
	}

	.type_round :is(.cover-line .cover-item):first-child {
		border-bottom: 0;
	}

	.type_round :is(.cover-line .cover-item):nth-child(2n) {
		border-bottom: 0;
	}

	.type_round :is(.cover-line .cover-item):nth-child(3) {
		border-right: 0 !important;
	}

	.type_round .cover-line .cover-item:nth-child(3) {
		border-right: 0 !important;
	}

	.type_round :is(.list-gallery .list-item) {
		padding: var(--gallery-gutter);
	}

	.type_round :is(.list-gallery2 .list-item) {
		padding: 0;
	}

	.type_round body :where(.article-paging, .paging) {
		padding: 15px 20px !important;
	}

	.type_round :is(.guest-write-btn) {
		top: 40px;
		right: 40px;
	}
}

.opacity-1 {
	opacity: 1 !important;

	transition: opacity 1s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}


/* 카피라이트 */
.copyright-btn g{stroke:#dfd2bd}.copyright-btn path{fill:#fff;transition:all var(--transition)}.copyright:hover{transform:translate(-4px,-4px)}.copyright:hover path{stroke:var(--point-color);fill:var(--point-color)}