@charset "UTF-8";
*:focus {
	outline:0;
}
/* 요소에 포커스가 있을 때 아웃라인 제거 */
@keyframes rotateEffect {
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotateEffect2 {
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 회전 효과 애니메이션 정의 */
body, html {
	font-family:"Noto sans KR", sans-serif;
	font-weight: 400;
	color:#3A4954;
	scroll-behavior:smooth;
	letter-spacing:0.2px;
	min-width:320px;
	-webkit-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	-ms-tap-highlight-color: transparent;
}
/* 기본 폰트 설정과 스크롤 동작, 최소 너비 및 탭 하이라이트 색상 제거 */
::-webkit-scrollbar {
	-webkit-appearance:none;
	width: 8px;
	height: 8px
}
/* 웹킷 브라우저에서 스크롤바 스타일 설정 */
::-webkit-scrollbar-track {
	background: transparent
}
::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.15); 
	border-radius: 3px; 
}
::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0.2); 
}
/* 스크롤바 트랙과 핸들 스타일 설정 */
#content {
	opacity: 0;
}
#content.show {
	opacity: 1 !important;
	transition: opacity 0.4s ease-in;
}
/* 컨텐츠의 투명도 설정 및 show 클래스 추가 시 트랜지션 적용 */
i {
	margin:0px 5px 0px 0px;
}
/* i 태그에 기본 마진 설정 */
.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
	margin-top:16px
}
/* 특정 버튼 스타일 설정 */
article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
	display:block
}
/* HTML5 요소의 기본 디스플레이 설정 */
body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, input, legend, li, ol, p, select, table, td, textarea, th, ul {
	margin:0;
	padding:0
}
/* 기본 요소의 마진과 패딩 제거 */
body, button, input, select, textarea {
	color:inherit;
	font-family:inherit;
}
/* 폼 요소의 기본 폰트와 색상 상속 설정 */
nav div, #container, #header_wrap #header_gnb {
	max-width:100% !important
}
/* 특정 요소의 최대 너비 설정 */
button, input {
	border:0;
	border-radius:0;
	background-color: transparent;
}
/* 버튼과 인풋의 기본 스타일 설정 */
img {
	border-style: none;
	box-sizing: border-box;
}
/* 이미지의 기본 스타일 설정 */
ol, ul {
	list-style:none
}
/* 리스트 스타일 제거 */
address, em {
	font-style:normal
}
/* 주소와 이탤릭 요소의 기본 스타일 설정 */
a {
	cursor:pointer;
	color:inherit;
	text-decoration:none !important;
}
/* 앵커 태그의 기본 스타일 설정 */
.blind {
	position:absolute;
	overflow:hidden;
	clip:rect(0 0 0 0);
	margin:-1px;
	width:1px;
	height:1px
}
/* 접근성 향상을 위한 스타일 설정 */
.index_wrap {
	position:relative;
	background-color:inherit;
	overflow:hidden;
}
/* 인덱스 랩의 기본 스타일 설정 */
.thumnail img {
	border-radius:10px;
}
/* 썸네일 이미지의 테두리 반경 설정 */
.list_detail_wrap {
	overflow:hidden;
	text-decoration:none;
}
/* 리스트 디테일 랩의 기본 스타일 설정 */
.list_detail_wrap .post_title {
	margin-bottom:10px;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	overflow:hidden;
	font-weight:600;
	line-height:150%;
	font-size:17px;
}
/* 포스트 제목의 스타일 설정 */
.list_detail_wrap .post_text {
	position: relative;
	color:var(--color-alpha-80);
	font-size:15px;
	max-height:50px;
	overflow:hidden;
	margin-bottom:10px;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	line-height:1.7;
}
/* 포스트 텍스트의 스타일 설정 */
.list_detail_wrap .post_line_bar {
	display:inline-block;
	width:1px;
	height:9px;
	margin:0 5px;
	background:#ccd0d7
}
/* 포스트 라인 바 스타일 설정 */
.post_list {
	color:var(--color-alpha-80);
	font-size:13px;
	display: inline-block;
}
/* 포스트 리스트 스타일 설정 */
.post_category {
	display:inline-block;
}
/* 포스트 카테고리 스타일 설정 */
.post_date {
	display:inline-block;
}
/* 포스트 날짜 스타일 설정 */
.post_comment {
	margin-left:5px;
	display:inline-block;
}
/* 포스트 댓글 스타일 설정 */
.list_content {
	position:relative;
	overflow:hidden;
}
/* 리스트 컨텐츠의 기본 스타일 설정 */
.list_content:hover .post_title {
	color:#3ea2ff;
	transition:.3s;
}
/* 리스트 컨텐츠에 호버 시 포스트 제목 스타일 변경 */
.list_content:hover .thumnail img {
	-webkit-transition-duration:.3s;
	transition-duration:.3s;
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
}
/* 리스트 컨텐츠에 호버 시 썸네일 이미지 확대 효과 */
#paging {
	margin:20px auto;
	text-align:center;
}
/* 페이징의 기본 스타일 설정 */
#paging .page-icon {
	font-size: 21px;
	vertical-align: middle;
}
/* 페이지 아이콘의 기본 스타일 설정 */
#paging .pagination li {
	display:inline-block
}
/* 페이지네이션 리스트 아이템의 스타일 설정 */
#paging .pagination li a {
    position: relative;
    display: block;
    padding: 10px 0;
    color: #555;
    min-width: 30px;
}
/* 페이지네이션 앵커 태그의 스타일 설정 */
#paging .pagination li a:hover {
	color:#000;
	font-weight:600;
}
/* 페이지네이션 앵커 태그에 호버 시 스타일 변경 */
#paging .pagination li .selected {
	color:#000;
	font-weight:600;
	border-bottom: 1px solid;
}
/* 선택된 페이지네이션 아이템 스타일 설정 */
#paging .prevpage {
	width:inherit !important
}
/* 이전 페이지 버튼 스타일 설정 */
#paging .nextpage {
	width:inherit !important
}
/* 다음 페이지 버튼 스타일 설정 */
.paging-line {
	border-bottom: 15px solid #f9f9f9;
	margin: 25px auto;
	display: none;
}
/* 페이징 라인의 기본 스타일 설정 */
.module-tag li a {
	display:inline-block;
	overflow:hidden;
	max-width:200px;
	white-space:nowrap;
	text-overflow:ellipsis;
	padding: 2px 4px;
  border-radius: 3px;
}
/* 모듈 태그의 앵커 태그 스타일 설정 */
.module-tag li a:hover {
	background:var(--color-alpha-70);
	color:#fff !important;
	transition:.3s
}
/* 모듈 태그의 앵커 태그에 호버 시 스타일 변경 */
.category_list .module-category .sub_category_list li {
	display:block;
}
/* 서브 카테고리 리스트 아이템 스타일 설정 */
.module-category .sub_category_list li a {
	color:var(--color-alpha-80) !important;
	-webkit-transition:color .3s;
	-moz-transition:color .3s;
	-ms-transition:color .3s;
	-o-transition:color .3s;
	transition:color .3s
}
/* 서브 카테고리 리스트 앵커 태그의 기본 스타일 설정 */
.module-category .sub_category_list li:hover a {
	color:#3ea2ff !important
}
/* 서브 카테고리 리스트 앵커 태그에 호버 시 스타일 변경 */
.module-category .sub_category_list li:first-child {
	margin-top:1px
}
/* 서브 카테고리 리스트의 첫 번째 아이템 스타일 설정 */
.module-category .sub_category_list li:last-child {
	border:0
}
/* 서브 카테고리 리스트의 마지막 아이템 스타일 설정 */
.module-category .link_tit {
	display:none;
}
/* 모듈 카테고리 링크 타이틀 스타일 설정 */
#sidebar .module {
	margin-bottom:20px;
	padding-bottom:10px;
}
/* 사이드바 모듈의 기본 스타일 설정 */
#sidebar .module-content {
	padding:0px 5px 0px 15px;
}
/* 사이드바 모듈 컨텐츠의 패딩 설정 */
#sidebar .module-tag .module-content {
	padding: 0px 5px 0px 10px;
}
/* 사이드바 모듈 태그 컨텐츠의 패딩 설정 */
#sidebar .module .module-title {
	font-weight:600;
	line-height:10px;
	padding: 8px 10px 15px 15px;
	margin-bottom:10px;
	border-bottom:1px solid #dadce0;
}
/* 사이드바 모듈 타이틀의 기본 스타일 설정 */
.module-notice ul li {
	font-size:14px
}
/* 모듈 공지사항 리스트 아이템 스타일 설정 */
.module-notice ul li a {
	display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 3px 0px;
}
/* 모듈 공지사항 리스트 앵커 태그 스타일 설정 */
.module-category .tt_category {
	position:relative;
}
/* 모듈 카테고리의 기본 스타일 설정 */
.module-category .c_cnt {
	font-size:12px;
	float:none;
	text-indent:0px;
	padding:0px 6px;
	line-height:normal;
	margin-top:5px;
}
/* 모듈 카테고리 카운트 스타일 설정 */
.module-category .category_list>li {
	position:relative;
	font-size:14px;
	line-height:30px;
}
/* 모듈 카테고리 리스트 아이템 스타일 설정 */
.module-category .category_list>li:last-child {
	border-bottom:none;
}
/* 모듈 카테고리 리스트의 마지막 아이템 스타일 설정 */
.module-category .category_list>li a {
	display:inline-block;
}
/* 모듈 카테고리 리스트 앵커 태그 스타일 설정 */
.module-category .category_list li ul a {
	margin-left:0;
	padding-left:12px;
}
/* 모듈 카테고리 서브 리스트 앵커 태그 스타일 설정 */
.module-category .category_list li:hover a {
	color:#3ea2ff;
	transition:color .3s;
}
/* 모듈 카테고리 리스트 앵커 태그에 호버 시 스타일 변경 */
.module-category .sub_category_list li:first-child:before {
	top:auto;
	bottom:auto;
}
/* 모듈 카테고리 서브 리스트 첫 번째 아이템의 before 스타일 설정 */
.module-category .sub_category_list:before {
	border-left: 2px solid #dadce0;
  content: '';
  display: block;
  height: calc(100% - 40px);
  left: 4px;
  position: absolute;
  width: 1px;
	bottom:4px
}
/* 모듈 카테고리 서브 리스트의 before 스타일 설정 */
.module-category .sub_category_list>li {
	line-height:28px;
	font-size:14px;
	position:relative;
}
/* 모듈 카테고리 서브 리스트 아이템 스타일 설정 */
.module-tag ul li {
	font-size:14px;
	display:inline-block;
	line-height:22px
}
/* 모듈 태그 리스트 아이템 스타일 설정 */
.module-tag .tag-list li {
	font-size:15px;
	line-height:25px
}
/* 모듈 태그 리스트 아이템 스타일 설정 */
#taglog .module-tag .tag-list {
	margin-top: 10px;
}
/* 태그로그 모듈 태그 리스트의 마진 설정 */
#taglog .hd {
	margin-top: -8px;
}
/* 태그로그 헤더의 마진 설정 */
.ad-module {
	text-align:center;
	margin-left:-2px;
	margin-bottom:5px
}
/* 광고 모듈의 기본 스타일 설정 */
#wrap {
	width:100%;
	position:relative;
	min-height:100vh;
	margin-top: 92px;
  display: inline-block;
}
/* 랩 요소의 기본 스타일 설정 */
#wrap #container {
	width:1200px;
	flex:1;
	margin:0 auto;
	min-height:100vh;
}
/* 컨테이너 요소의 기본 스타일 설정 */
#gnb {
	margin:2px 20px 40px 20px;
}
/* GNB 요소의 기본 스타일 설정 */
#gnb .header-blog-menu {
	border-top:1px solid #dadce0;
	margin-bottom:10px;
}
/* GNB 헤더 블로그 메뉴의 기본 스타일 설정 */
#gnb ul {
	display:flex;
	white-space:nowrap;
	border-bottom:1px solid #dadce0;
	overflow-x:auto;
	scrollbar-width:none;
	-ms-overflow-style:none;
}
/* GNB 리스트의 기본 스타일 설정 */
#gnb ul::-webkit-scrollbar {
	display:none;
}
/* GNB 리스트의 웹킷 스크롤바 스타일 제거 */
#gnb ul li {
	flex:0 0 auto;
}
/* GNB 리스트 아이템의 플렉스 설정 */
#gnb ul li a {
	position: relative;
	display:block;
}
/* GNB 리스트 앵커 태그의 기본 스타일 설정 */
#gnb ul li a:hover:before {
    width: 105%;
}
/* GNB 리스트 앵커 태그에 호버 시 before 스타일 변경 */
#gnb ul li a:before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: -2px;
    right: 0;
    width: 0px;
    height: 2px;
    margin: auto;
    background-color: #b5d5e8;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
/* GNB 리스트 앵커 태그의 before 스타일 설정 */
header>.tt-search-inner {
	position:absolute;
	right:70px;
	top:20px;
	z-index:0
}
/* 헤더 검색 인풋의 위치 설정 */
header>.tt-search-inner input {
	background:0 0 !important;
	border-bottom:1px solid #fff;
	color:#fff !important;
	padding:10px;
	font-size:15px;
	width:280px;
	outline:0
}
/* 헤더 검색 인풋의 스타일 설정 */
header>.tt-search-inner input::placeholder {
	color:#fff
}
/* 헤더 검색 인풋의 placeholder 스타일 설정 */
header {
	position:relative;
}
/* 헤더의 기본 스타일 설정 */
#header_wrap #header_gnb #header-title {
	padding-left:25px;
	margin-right: auto;
}
/* 헤더 GNB 타이틀의 패딩과 마진 설정 */
#header_wrap #header_gnb #header-title a {
	font-size:19px;
	font-weight:600;
}
/* 헤더 GNB 타이틀 앵커 태그의 폰트 설정 */
#header_wrap {
	width:100%;
	background-color:rgba(255,255,255,.9);
	z-index:99;
	position:fixed;
	backdrop-filter:blur(4px);
	-webkit-backdrop-filter:blur(4px);
	top:0px;
	left:0px;
	line-height:85px;
	min-width:300px;
	transition: line-height 0.5s ease-out;
}
/* 헤더 랩의 기본 스타일 설정 */
#header_wrap.shrink {
  line-height: 50px;
	box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}
/* 헤더 랩의 축소 시 스타일 변경 */
#header_wrap #header_gnb {
	width:1200px;
	margin:auto;
	position:relative;
	margin-top:5px;
	display:flex;
	align-items:center;
}
/* 헤더 GNB의 기본 스타일 설정 */
.progress-bar {
	height:3px;
	background:#b5d5e880;
	width:0%;
	position:fixed;
	z-index:9999;
}
/* 프로그레스 바의 기본 스타일 설정 */
#header-ico .btn_topMenu {
	background:none;
	cursor:pointer;
}
/* 헤더 아이콘의 버튼 스타일 설정 */
.menu-icon {
	width: 24px;
	height: 5px;
	border-bottom: 3px solid #666;
}
/* 메뉴 아이콘의 기본 스타일 설정 */
.menu-icon:nth-child(2) {
	border-bottom: 3px solid #4682B4;
}
/* 메뉴 아이콘의 두 번째 자식 스타일 설정 */
#header-ico .btn_topMenu:hover .menu-icon:nth-child(2) {
	animation: rotateEffect 0.2s linear forwards;
}
/* 헤더 아이콘의 버튼에 호버 시 애니메이션 적용 */
#header-ico {
  padding-right: 20px;
}
/* 헤더 아이콘의 패딩 설정 */
.header-home {
	float:left;
	line-height:51px;
	margin-right:15px
}
/* 헤더 홈의 기본 스타일 설정 */
.header-home:hover {
	color:#3f99fe
}
/* 헤더 홈에 호버 시 색상 변경 */
#search-bar {
	background-color: rgba(0, 0, 0, 0.025);
	border-radius: 10px;
	display: flex;
	padding: 5px 10px;
	margin: 0 10px 3px 10px;
}
/* 검색 바의 기본 스타일 설정 */
#search-bar.active {
	background-color: #f9f9f9;
	border-radius: 10px;
	position: absolute;
	right: 9px;
	transition: 0.3s;
}
/* 검색 바가 활성화된 경우 스타일 변경 */
#search-bar.active .input-text, #search-bar.active .search-close-icon {
	display:block;
}
/* 검색 바가 활성화된 경우 인풋 텍스트와 닫기 아이콘 표시 */
#search-bar .search-icon {
	vertical-align: middle;
	cursor: pointer;
}
/* 검색 아이콘의 기본 스타일 설정 */
#search-bar .search-close-icon {
	cursor: pointer;
	padding-bottom: 4px;
	color:#777;
	font-size: 14px;
	font-weight: 600;
	display: none;
}
/* 검색 닫기 아이콘의 기본 스타일 설정 */
#search-bar .btn_search {
	cursor:pointer;
	position:absolute;
	top:15px;
	left:20px;
}
/* 검색 버튼의 기본 스타일 설정 */
#search-bar .input-text {
	text-indent: 10px;
	padding-bottom: 2px;
}
/* 검색 인풋 텍스트의 기본 스타일 설정 */
.menu_toolbar .txt_tool_id {
	color:#000 !important;
}
/* 메뉴 툴바 텍스트 ID의 색상 설정 */
.btn_site {
	background:#0072ff;
	color:#fff !important;
	padding:12px;
	margin:10px;
	display:block;
}
/* 사이트 버튼의 기본 스타일 설정 */
.btn_close {
	cursor:pointer;
	position:absolute;
	z-index:3;
	top:20px;
	right:18px;
}
/* 닫기 버튼의 기본 스타일 설정 */
.btn_close .close-icon {
	font-size: 35px;
	font-weight:600;
	color: #ffffff;
}
/* 닫기 버튼 아이콘의 기본 스타일 설정 */
.btn_close .close-icon:hover {
  animation: rotateEffect 0.2s linear forwards;
}
/* 닫기 버튼 아이콘에 호버 시 애니메이션 적용 */
#container nav {
	min-width:280px;
}
/* 컨테이너 내비게이션의 최소 너비 설정 */
#container nav ul li {
	line-height:50px;
	display:inline-block;
	padding:0 25px 0 10px;
	font-size: 15px;
}
/* 컨테이너 내비게이션 리스트 아이템의 기본 스타일 설정 */
#container #main #content {
	flex:2.85;
	overflow:hidden;
	position:relative;
}
/* 컨테이너 메인 컨텐츠의 기본 스타일 설정 */
#container #main #sidebar {
	flex:1;
	max-width:302px;
	min-width:302px;
	height: fit-content;
}
/* 컨테이너 메인 사이드바의 기본 스타일 설정 */
#container #main #sidebar.left {
	margin-left:0px;
	margin-right:45px;
}
/* 컨테이너 메인 사이드바 왼쪽의 마진 설정 */
#container #main #sidebar.right {
	margin-left:45px;
	margin-right:0px;
}
/* 컨테이너 메인 사이드바 오른쪽의 마진 설정 */
.thumnail {
	position:relative;
	display:block;
	float:right;
	overflow:hidden;
	margin-left:15px;
	border-radius:6px;
	text-align:center;
}
/* 썸네일의 기본 스타일 설정 */
.thumnail a {
	display:block
}
/* 썸네일 앵커 태그의 기본 스타일 설정 */
.not-found {
	display:block;
	width:100%;
	margin-bottom:35px;
	text-align:left;
}
/* 찾을 수 없음의 기본 스타일 설정 */
.not-found li {
	position:relative;
	padding-left:10px;
	line-height:2;
}
/* 찾을 수 없음 리스트 아이템의 기본 스타일 설정 */
.not-found li:before {
	content:"-";
	position:absolute;
	bottom:26px;
	left:0;
	width:2px;
	height:2px;
}
/* 찾을 수 없음 리스트 아이템의 before 스타일 설정 */
.not-found .tag, .not-found .category, .not-found .archive {
	display:none;
}
/* 찾을 수 없음 태그, 카테고리, 아카이브의 기본 스타일 설정 */
#tt-body-index .h-entry:after, #tt-body-category .h-entry:after, #tt-body-search .h-entry:after, #tt-body-tag .h-entry:after {
	display:block;
	border-bottom:1px solid #dadce0;
	width:100%;
	content:"";
	margin:20px 0px 20px 0px;
}
/* 인덱스, 카테고리, 검색, 태그 항목의 기본 스타일 설정 */
#tt-body-index .index_s_list, #tt-body-category .index_s_list {
	padding-bottom:0px;
	margin-bottom:10px;
}
/* 인덱스, 카테고리 리스트의 기본 스타일 설정 */
#tt-body-page figure.fileblock, figure.fileblock {
	border-radius: 7px;
	width:350px;
	background: #f6f6f6;
  border: 0;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
}
/* 페이지 파일 블록의 기본 스타일 설정 */
#tt-body-page figure figcaption {
	padding-top:0px;
}
/* 페이지 파일 블록 캡션의 패딩 설정 */
#tt-body-page .h-entry {
	background:inherit;
}
/* 페이지 항목의 기본 스타일 설정 */
#tt-body-page .h-entry {
	max-width:100%;
	width:100%;
	margin:0 auto;
}
/* 페이지 항목의 너비 설정 */
#tt-body-page .notice .sub-info .meta-cate .txt {
	display:none
}
/* 페이지 공지사항 서브 인포의 기본 스타일 설정 */
#tt-body-tag .not-found ul, #tt-body-category .not-found ul, #tt-body-archive .not-found ul {
	display:none;
}
/* 태그, 카테고리, 아카이브 항목 찾을 수 없음의 리스트 스타일 설정 */
#tt-body-tag .not-found .tag, #tt-body-category .not-found .category, #tt-body-archive .not-found .archive {
	display:block;
}
/* 태그, 카테고리, 아카이브 항목 찾을 수 없음의 기본 스타일 설정 */
hr[data-ke-style=style5] {
	height:5px !important
}
/* 특정 스타일의 수평선 높이 설정 */
#tt-body-page .hd {
	border-bottom: 2px dotted #dadce0;
}
/* 페이지 헤더의 기본 스타일 설정 */
.hd .hd-heading .p-category {
	display:inline-block;
	border-radius:50px;
	color:#3ea2ff
}
/* 헤더의 카테고리 스타일 설정 */
.hd .hd-heading {
	display:inline-block;
	margin-top:5px;
	margin-bottom:10px;
	font-size:1.5rem;
}
/* 헤더의 기본 스타일 설정 */
.hd .sub-info .c_cnt {
	color:#3ea2ff
}
/* 서브 인포 카운트의 색상 설정 */
.hd .sub-info {
	color:var(--color-alpha-80);
	font-size:14px;
	position:relative;
	margin-right: 5px;
	margin-left: 2px;
}
/* 서브 인포의 기본 스타일 설정 */
.hd .sub-info abbr {
	text-decoration:none;
}
/* 서브 인포 약어의 텍스트 장식 제거 */
.hd .sub-info .icon {
	margin-left:3px;
	margin-right:3px;
	font-size:13px;
}
/* 서브 인포 아이콘의 기본 스타일 설정 */
.hd .sub-info .admin-menu a {
	font-size:13px;
	background:#f6f6f6;
	padding:2px 6px;
}
/* 서브 인포 관리자 메뉴 앵커 태그의 기본 스타일 설정 */
.hd .sub-info .admin-menu a:hover {
	font-weight:600;
}
/* 서브 인포 관리자 메뉴 앵커 태그에 호버 시 폰트 굵기 변경 */
.hd .sub-info a {
	color:inherit;
}
/* 서브 인포 앵커 태그의 색상 상속 설정 */
.hd .sub-info .wide-button-wrap {
	display:none;
	position:absolute;
	right:0;
}
/* 서브 인포 와이드 버튼 랩의 기본 스타일 설정 */
.hd .wide-button-wrap .wide-icon {
	font-size:24px;
	vertical-align:middle;
}
/* 와이드 버튼 아이콘의 기본 스타일 설정 */
.post-content {
	max-width:100%;
	padding-bottom:0;
	font-size:16px;
	margin-top:20px;
}
/* 포스트 컨텐츠의 기본 스타일 설정 */
.post-content iframe {
	margin:0;
	padding:0;
	border:0;
	width:100%;
}
/* 포스트 컨텐츠의 아이프레임 스타일 설정 */
.post-content .adsbygoogle, .post-content .kakao_ad_area {
	box-sizing: border-box;
	background: #C9D6FF80;
	background: -webkit-linear-gradient(to left, #E2E2E280, #C9D6FF80);
	background: linear-gradient(to left, #E2E2E280, #C9D6FF80);
	overflow: hidden;	
	border: 1px solid #C9D6FF80 !important;
	border-radius: 10px;
}
/* 포스트 컨텐츠의 광고 영역 스타일 설정 */
.ads-wrap {
	margin-top: 3px;
	max-width: 100%;
	background: #C9D6FF80;
	background: -webkit-linear-gradient(to left, #E2E2E280, #C9D6FF80);
	background: linear-gradient(to left, #E2E2E280, #C9D6FF80);
	overflow: hidden;	
	border: 1px solid #C9D6FF80 !important;
	border-radius: 10px;
}
/* 광고 랩의 기본 스타일 설정 */
.ads-wrap.side-short {
	width: 300px;
	height: 250px;
}
/* 짧은 광고 랩의 크기 설정 */
.ads-wrap.side-long {
	width: 300px;
	height: 600px;
}
/* 긴 광고 랩의 크기 설정 */
.ads-wrap.article-top {
	box-sizing: border-box;
	margin: 15px 0;
}
/* 기사 상단 광고 랩의 기본 스타일 설정 */
.ads-wrap.article-bottom {
	box-sizing: border-box;
	margin: 15px 0;
}
/* 기사 하단 광고 랩의 기본 스타일 설정 */
.post-content a {
	color:#0052B3
}
/* 포스트 컨텐츠 앵커 태그의 기본 스타일 설정 */
.post-content a:hover {
	font-weight:600;
}
/* 포스트 컨텐츠 앵커 태그에 호버 시 폰트 굵기 변경 */
.post-content .tx-link {
	color:#00f !important;
	text-decoration:underline !important
}
/* 포스트 컨텐츠 링크의 기본 스타일 설정 */
.post-content .txc-table {
	width:100%
}
/* h3 스타일 */
h3 {
    font-size: 1.5em; /* 기본 폰트 크기 설정 */
    color: #333;
    margin-bottom: 20px;
    padding: 10px 0;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #007BFF;
    position: relative;
    transition: color 0.3s ease;
}

h3:hover::after {
    width: 100%;
    background-color: #0056b3;
}

/* h4 스타일 */
h4 {
    font-size: 1.2em; /* 기본 폰트 크기 설정 */
    color: #555;
    margin-bottom: 15px;
    padding: 5px 0;
    text-align: left;
    font-weight: bold;
    border-left: 4px solid #007BFF;
    padding-left: 10px;
    position: relative;
    transition: color 0.3s ease;
}

h4:hover::before {
    width: 100%;
    background-color: #0056b3;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    h3 {
        font-size: 1.3em; /* 작은 화면에서 폰트 크기 조정 */
    }

    h4 {
        font-size: 1.1em; /* 작은 화면에서 폰트 크기 조정 */
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 1.1em; /* 더 작은 화면에서 폰트 크기 조정 */
    }

    h4 {
        font-size: 1em; /* 더 작은 화면에서 폰트 크기 조정 */
    }
}

/* 포스트 컨텐츠 헤딩 3, 4의 기본 스타일 설정 */
.post-content h2 {
	margin-bottom:15px;
	margin-top:15px;
	font-size:1.2rem;
	padding-left:0.75rem;
	word-break:normal;
	word-wrap:break-word;
}
/* 포스트 컨텐츠 헤딩 2의 기본 스타일 설정 */
.post-content ul, .post-content ol {
	margin:14px auto 24px;
	padding:0 0 0 10px;
}
/* 포스트 컨텐츠 리스트의 기본 스타일 설정 */
.post-content ol li, .post-content ul li {
	margin:0 0 3px 22px;
	font-size:15px;
	line-height:1.9;
}
/* 포스트 컨텐츠 리스트 아이템의 기본 스타일 설정 */
.post-content figure {
	margin-top:15px ! important;
}
/* 포스트 컨텐츠 그림의 기본 스타일 설정 */
.post-reply .tt-box-textarea .tt-cmt:before {
	color: #777;
}
/* 포스트 댓글 텍스트 에어리어의 before 스타일 설정 */
.post-reply .tt-wrap-cmt .tt_date {
	color: #777;
}
/* 포스트 댓글 랩의 날짜 스타일 설정 */
.post-reply .tt-link-comment .tt_txt_g {
	color: #777;
}
/* 포스트 댓글 링크의 텍스트 색상 설정 */
.post-reply .post-reply {
	padding-top:20px;
}
/* 포스트 댓글의 기본 스타일 설정 */
.post-reply .tt-wrap-cmt .tt_desc {
	font-size: 14px;
	line-height: 1.8em;
	color: #555;
}
/* 포스트 댓글 설명의 기본 스타일 설정 */
.post-reply .tt-wrap-cmt .tt-link-user {
	font-size: 14px ;
	font-weight: 600;
	color: #333;
}
/* 포스트 댓글 유저 링크의 기본 스타일 설정 */
.post-reply .tt-wrap-cmt .tt-box-meta {
	padding-bottom: 10px;
	padding-top: 7px;
}
/* 포스트 댓글 메타 박스의 기본 스타일 설정 */
.post-reply .tt-comment-cont * {
	font-family: inherit !important;
}
/* 포스트 댓글 컨텐츠의 폰트 상속 설정 */
.post-reply .tt-comment-cont {
	padding-bottom: 2px;
}
/* 포스트 댓글 컨텐츠의 패딩 설정 */
.post-reply .tt-item-reply .tt_cmt_info {
	padding-left:10px;
	width: 200px;     
	min-height:40px;
	max-height:40px;
	position:relative;   
	border:1px solid #E8E8E8;  
	border-top:solid #fdfd86;
	border-bottom-right-radius: 60px 5px;    
	background: #ffff88; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #ffff88 81%, #ffff88 82%, #ffff88 82%, #ffffc6 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(81%,#ffff88), color-stop(82%,#ffff88), color-stop(82%,#ffff88), color-stop(100%,#ffffc6));
	background: -webkit-linear-gradient(-45deg, #ffff88 81%,#ffff88 82%,#ffff88 82%,#ffffc6 100%);
	background: -o-linear-gradient(-45deg, #ffff88 81%,#ffff88 82%,#ffff88 82%,#ffffc6 100%);
	background: -ms-linear-gradient(-45deg, #ffff88 81%,#ffff88 82%,#ffff88 82%,#ffffc6 100%);
	background: linear-gradient(135deg, #ffff88 81%,#ffff88 82%,#ffff88 82%,#ffffc6 100%);
}
/* 포스트 댓글 아이템 정보의 기본 스타일 설정 */
.post-reply .tt-item-reply .tt_cmt_info:after {
	content: "";
	position:absolute;
	display:none;
}
/* 포스트 댓글 아이템 정보의 after 스타일 설정 */
.post-reply .tt-item-reply .tt_cmt_info .tt_txt_g {
	color: #555;
}
/* 포스트 댓글 아이템 정보의 텍스트 색상 설정 */
.post-reply .tt-list-reply {
	display: block;
	border-bottom: 1px dashed #dadce0;
}
/* 포스트 댓글 리스트의 기본 스타일 설정 */
.post-reply .tt-item-reply {
	border-top: 2px dotted #dadce0 !important;
}
/* 포스트 댓글 아이템의 기본 스타일 설정 */
.post-reply .tt-item-reply .tt-list-reply-comment {
	border-top:none;
}
/* 포스트 댓글 아이템의 댓글 리스트 스타일 설정 */
.post-reply .tt-list-reply-comment .tt-item-reply {
	border-top: 1px dashed #dadce0 !important;
}
/* 포스트 댓글 아이템의 댓글 리스트 아이템 스타일 설정 */
.post-reply .tt-box-total {
	padding:15px 5px;
	border: 0px;
	color: #333;
}
/* 포스트 댓글 총합 박스의 기본 스타일 설정 */
.post-reply .tt-box-textarea {
	margin-bottom: 5px;
}
/* 포스트 댓글 텍스트 에어리어 박스의 마진 설정 */
.post-reply .tt-area-write {
	margin-bottom: 20px;
}
/* 포스트 댓글 작성 영역의 마진 설정 */
.post-reply .tt-area-write .tt-box-thumb {
	display: none;
}
/* 포스트 댓글 작성 영역의 썸네일 박스 스타일 설정 */
.post-reply .tt-box-textarea textarea, .tt-box-textarea div {
	line-height: 1.8em !important
}
/* 포스트 댓글 텍스트 에어리어의 텍스트 영역과 div 스타일 설정 */
.post-reply .tt_wrap_write {
	display: block;
	background: #f6f6f6;
	border-radius: 10px;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
	margin-right: 3px;
	margin-left: 1px;
}
/* 포스트 댓글 작성 랩의 기본 스타일 설정 */
.post-reply .tt_wrap_write .tt-inner-g {
	border: 0px;
	padding-bottom: 0px;
}
/* 포스트 댓글 작성 랩의 내부 스타일 설정 */
.post-reply .tt-wrap-info {
	align-items: end;
}
/* 포스트 댓글 정보의 정렬 설정 */
.post-reply .tt-link-comment .tt_txt_g {
	font-size: 12px;
}
/* 포스트 댓글 링크 텍스트의 폰트 크기 설정 */
.post-reply .tt-box-write {
	padding: 0 20px 20px 0;
}
/* 포스트 댓글 작성 박스의 패딩 설정 */
.post-reply .tt-btn_register {
	background:#000000;
	color:#fbfbfb !important;
	border-radius:5px;
}
/* 포스트 댓글 등록 버튼의 기본 스타일 설정 */
.post-reply .tt-btn_register:hover {
	transition:0.3s;
}
/* 포스트 댓글 등록 버튼에 호버 시 트랜지션 설정 */
.post-reply .tt-box-textarea #comment {
	background: #f6f6f6;
	text-align: right;
}
/* 포스트 댓글 텍스트 에어리어의 댓글 스타일 설정 */
.post-reply .tt-box-textarea #comment::placeholder {
	color:transparent;
}
/* 포스트 댓글 텍스트 에어리어의 placeholder 색상 설정 */
.post-reply .tt-area-write .tt-box-account {
	display: flex;
	justify-content: flex-end;
	padding-top: 5px;
	padding-right: 15px;
	margin-bottom: 0;
}
/* 포스트 댓글 작성 영역의 계정 박스 스타일 설정 */
post-reply .tt-area-write .tt-box-account input {
	max-width: 200px;
	margin-left: 15px;
	margin-top: 10px;
	border: 1px solid #d8d8d8;
	font-size: 14px;
	border-radius: 7px;
}
/* 포스트 댓글 작성 영역의 계정 입력 박스 스타일 설정 */
.post-reply .tt_btn_prev_more {
	background: #f6f6f6;
	color: #555;
	margin-bottom: 15px;
	border-radius: 7px;
	border: none;
}
/* 포스트 댓글 이전 더보기 버튼의 기본 스타일 설정 */
.post-reply .tt_btn_prev_more:hover {
	background:#f0f0f0;
	transition:.3s;
}
/* 포스트 댓글 이전 더보기 버튼에 호버 시 배경색과 트랜지션 설정 */
#guestbook .hd {
	margin-top: -8px;
}
/* 방명록 헤더의 마진 설정 */
#guestbook .post-reply {
	margin-top: 20px;
}
/* 방명록 댓글의 마진 설정 */
#guestbook .post-reply .tt-area-reply {
	margin-bottom: 0;
}
/* 방명록 댓글 작성 영역의 마진 설정 */
#guestbook .tt-comment-cont, #guestbook .tt-list-reply {
	display: flex;
	flex-direction: column-reverse;
} 
/* 방명록 댓글 컨텐츠와 댓글 리스트의 기본 스타일 설정 */
#guestbook .tt-box-total {
	order:2;
	border:0;
}
/* 방명록 댓글 총합 박스의 기본 스타일 설정 */
#guestbook .tt-comment-cont form {
	order:3;
	border:0;
}
/* 방명록 댓글 컨텐츠 폼의 기본 스타일 설정 */
#guestbook .tt-list-reply li:first-child {
	order:1;
	border-top: 2px dotted #dadce0;
}
/* 방명록 댓글 리스트의 첫 번째 아이템 스타일 설정 */
#guestbook .tt-list-reply li.tt-item-reply.rp_general:first-child {
	order:0
}
/* 방명록 댓글 리스트의 일반 아이템 스타일 설정 */
.text-length {
	color:var(--color-alpha-80);
	font-size:13px;
	display:flex;
	align-items:center;
	flex-direction:row;
	margin-top: 7px;
	margin-bottom: 10px;
}
/* 텍스트 길이의 기본 스타일 설정 */
.text-length .ion {
	font-size:17px;
}
/* 텍스트 길이 아이콘의 폰트 크기 설정 */
.text-length .textLenIncludeSpaces:before {
	content:"공백 포함:";
}
/* 공백 포함 텍스트 길이의 before 스타일 설정 */
.text-length .textLenExcludeSpaces:before {
	content:"공백 제외:";
}
/* 공백 제외 텍스트 길이의 before 스타일 설정 */
.text-length .textLenIncludeSpaces:after {
	content:" 자";
}
/* 공백 포함 텍스트 길이의 after 스타일 설정 */
.text-length .textLenExcludeSpaces:after {
	content:" 자";
}
/* 공백 제외 텍스트 길이의 after 스타일 설정 */
.text-length .divider:before {
	content:'';
	display:inline-block;
	margin:0 5px;
	width:1px;
	height:18px;
	background-color:#ccd0d7;
	vertical-align:-4px;
}
/* 텍스트 길이 구분자의 before 스타일 설정 */
#duplicateWordsContainer {
	display:flex;
	flex-wrap:wrap;
	margin-bottom:10px;
	height:auto;
	max-height:210px;
	overflow-y:auto;
}
/* 중복 단어 컨테이너의 기본 스타일 설정 */
.popup-container {
	padding:10px;
	background-color:#f9f9f9;
	border:1px solid #dadce0;
	border-radius:10px;
	z-index:9999;
	display:none;
	max-height:400px;
	overflow-y:auto;
	font-size:13px;
	margin: 10px 3px 10px 1px;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
}
/* 팝업 컨테이너의 기본 스타일 설정 */
.popup-word {
	width:33%;
	word-wrap:break-word;
	list-style:none;
	padding:3px 0;
	display:inline-block;
	border-bottom:1px solid #ccd0d7;
}
/* 팝업 단어의 기본 스타일 설정 */
.popup-word::after {
	content:" 회";
}
/* 팝업 단어의 after 스타일 설정 */
.dup-button {
	cursor:pointer;
	background-color:#f9f9f9;
	border:1px solid #ccd0d7;
	border-radius:3px;
	padding:1px 3px;
	font-size:13px;
	margin-left:5px;
}
/* 중복 버튼의 기본 스타일 설정 */
.popup-content {
	display:flex;
	flex-wrap:wrap;
}
/* 팝업 컨텐츠의 기본 스타일 설정 */
#closeButton {
	display: inline-block;
	padding: 5px;
	margin-top: 10px;
	text-align: center;
	background-color: #000;
	width: 100%;
	color: white;
	border-radius: 5px;
	cursor: pointer;
}
/* 닫기 버튼의 기본 스타일 설정 */
.toc-wrap.floating {
	font-size:14px;
	position: fixed;
	top: 175px;
	right: 0;
	max-width: 250px;
	z-index: 99;
	background-color: rgba(255,255,255,.7);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	padding: 0;
	margin: 0 9px;
	border: 0;
	box-shadow: 0 1px 10px rgba(0,0,0,0.1);
	border-radius: 5px;
	max-height: 500px;
	overflow-y: auto;
}
/* TOC 랩의 기본 스타일 설정 */
.toc-wrap.floating .toc-title {
	border:none;
	line-height: 35px;
	color: var(--color-alpha-70);
	display: flex;
	margin: 0 3px;
}
/* TOC 타이틀의 기본 스타일 설정 */
.toc-wrap.floating.active .toc-title {
	border-bottom:1px solid #ccd0d7;
	margin: 0 7px;
}
/* 활성화된 TOC 타이틀의 스타일 변경 */
.toc-wrap.floating .toc-title .toc-title-strong {
	display: none;
}
/* TOC 타이틀 강조 스타일 설정 */
.toc-wrap.floating.active .toc-title .toc-title-strong {
	display: block;
}
/* 활성화된 TOC 타이틀 강조 스타일 설정 */
.toc-wrap.floating .toc-title .floating-toc-icon::before {
	content:"\e242";
	font-family:"Material Icons Outlined";
	vertical-align:bottom;
	font-size: 23px;
	cursor: pointer;
}
/* TOC 타이틀 아이콘의 기본 스타일 설정 */
.toc-wrap.floating.active .toc-title .floating-toc-icon::before {
	font-size: 19px;
	margin-right: 4px;
}
/* 활성화된 TOC 타이틀 아이콘의 스타일 변경 */
.toc-wrap.floating.active {
	border-radius:10px;
}
/* 활성화된 TOC 랩의 스타일 변경 */
.toc-wrap.floating.active .toc, .toc-wrap.floating.active .toc-close-icon {
	display: block;
}
/* 활성화된 TOC와 닫기 아이콘의 기본 스타일 설정 */
.toc-wrap.floating .toc, .toc-wrap.floating .toc-close-icon {
	display: none;
}
/* TOC와 닫기 아이콘의 기본 스타일 설정 */
.toc-wrap.floating.active .toc-close-icon {
	margin-left: auto;
	font-size: 17px;
	cursor: pointer;
	color: #333;
}
/* 활성화된 TOC 닫기 아이콘의 기본 스타일 설정 */
.toc-wrap.floating .toc-title:before {
	color: #999;
}
/* TOC 타이틀의 before 스타일 설정 */
.toc-wrap {
	background-color:#f9f9f9;
	border:1px solid #dadce0;
	border-radius:10px;
	padding:3px 10px;
	margin:0 3px 30px 1px;
	font-size:14px;
	box-sizing: border-box; 
	position: relative;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
}
/* TOC 랩의 기본 스타일 설정 */
.toc-wrap .toc-title {
	border-bottom:1px solid #ccd0d7;
	padding:0 5px;
	position:relative;
	line-height: 40px;
	display: flex;
}
/* TOC 타이틀의 기본 스타일 설정 */
.toc-wrap .toc-title .toc-icon:before {
	content:"\e242";
	font-family:"Material Icons Outlined";
	font-size:20px;
	margin-right:3px;
	vertical-align:bottom;
}
/* TOC 타이틀 아이콘의 기본 스타일 설정 */
.toc-wrap .toc-item a {
	color:var(--color-alpha-80);
}
/* TOC 아이템 앵커 태그의 기본 스타일 설정 */
.toc-wrap .toc-item.h2 {
	font-size:14px;
}
/* TOC 아이템 헤딩 2의 폰트 크기 설정 */
.toc-wrap .toc-item.h3 {
	padding-left:20px;
	font-size:14px;
}
/* TOC 아이템 헤딩 3의 기본 스타일 설정 */
.toc-wrap .toc-item.h2:before {
	content:"\e315";
	font-family:"Material Icons Outlined";
	margin-right:5px;
	font-size:16px;
	vertical-align:bottom;
}
/* TOC 아이템 헤딩 2의 before 스타일 설정 */
.toc-wrap .toc-item.h3:before {
	content:"-";
	margin-right:7px;
	font-size:16px;
	vertical-align:bottom;
}
/* TOC 아이템 헤딩 3의 before 스타일 설정 */
.toc-wrap ul {
	margin:0px;
}
/* TOC 리스트의 기본 스타일 설정 */
.toc-wrap .toc li {
	list-style:none;
	overflow: hidden;
	text-overflow: ellipsis; 
	white-space: nowrap;
	margin: 9px 0;
	line-height: 1.3;
}
/* TOC 리스트 아이템의 기본 스타일 설정 */
.visitor {
	position:relative;
}
/* 방문자 요소의 기본 스타일 설정 */
.visitor-row {
	font-size:13px
}
/* 방문자 행의 폰트 크기 설정 */
.visitor-row .visitor-cell {
	display:inline-block;
	font-weight:600;
	margin-bottom:5px;
	padding-right:10px
}
/* 방문자 셀의 기본 스타일 설정 */
.visitor-row .visitor-date {
	display:inline-block;
	padding:0 5px
}
/* 방문자 날짜의 기본 스타일 설정 */
.secret-wrap {
	display:block;
	position:relative;
	padding-left:28px;
	cursor:pointer;
	font-size:14px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
/* 비밀 랩의 기본 스타일 설정 */
.secret-wrap input {
	position:absolute;
	cursor:pointer;
	height:0;
	width:0;
}
/* 비밀 랩 인풋의 기본 스타일 설정 */
.secret-wrap .checkmark {
	position:absolute;
	top:0;
	left:0;
	height:20px;
	width:20px;
	border:1px solid;
	transition:.3s;
}
/* 비밀 랩 체크마크의 기본 스타일 설정 */
.secret-wrap:hover input~.checkmark {
	background-color:#b1b1b1;
	border-color:#b3b5b7;
}
/* 비밀 랩 체크마크에 호버 시 배경색과 테두리 색상 변경 */
.secret-wrap input:checked~.checkmark {
	background-color:#2196F3;
	border-color:#2196F3;
}
/* 비밀 랩 체크된 상태의 체크마크 스타일 설정 */
.secret-wrap .checkmark:after {
	content:"";
	position:absolute;
	display:none;
}
/* 비밀 랩 체크마크의 after 스타일 설정 */
.secret-wrap input:checked~.checkmark:after {
	display:block;
}
/* 비밀 랩 체크된 상태의 체크마크 after 스타일 설정 */
.secret-wrap .checkmark:after {
	left:6px;
	top:2px;
	width:5px;
	height:10px;
	border:solid white;
	border-width:0 3px 3px 0;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg);
}
/* 비밀 랩 체크마크의 체크 표시 스타일 설정 */
.reply_thumb {
	float:left;
	margin-right:15px;
	margin-top:2px;
}
/* 댓글 썸네일의 기본 스타일 설정 */
.reply_thumb img {
	border-radius:50%;
}
/* 댓글 썸네일 이미지의 테두리 반경 설정 */
.comment-wrap {
	background-color:#f6f6f6;
	border-radius:10px;
	display:block;
	padding:10px 20px;
	width:100%;
}
/* 댓글 랩의 기본 스타일 설정 */
.reply_content {
	display:flex;
	min-height:70px;
	padding-top:0;
	position:relative;
	padding:10px 0;
	border-radius:10px;
}
/* 댓글 컨텐츠의 기본 스타일 설정 */
.reply_content .name, .reply_content .name a {
	font-weight:600;
	font-size:14px;
}
/* 댓글 컨텐츠 이름의 기본 스타일 설정 */
.reply_content .control {
	display:inline-block;
	margin:10px 0px 10px 0px;
	font-size:12px;
}
/* 댓글 컨텐츠 제어의 기본 스타일 설정 */
.reply_content .modify, .reply_content .write {
	background:#f6f6f6;
	padding:2px 4px 4px 6px;
	border:1px solid #dadce0;
	border-radius:3px;
	transition:.3s;
}
/* 댓글 컨텐츠 수정 및 작성의 기본 스타일 설정 */
.reply_content .modify:hover, .reply_content .write:hover {
	background:#555;
	color:#fff;
	border-color:#555;
}
/* 댓글 컨텐츠 수정 및 작성에 호버 시 배경색과 색상, 테두리 색상 변경 */
.reply_content .comment-content p {
	line-height:2.5em
}
/* 댓글 컨텐츠 텍스트의 행간 설정 */
.reply_content .comment-content {
	font-size:14px;
	max-width:740px;
	word-break:break-all;
	margin:7px 0;
	margin-right:15px
}
/* 댓글 컨텐츠의 기본 스타일 설정 */
.reply_date {
	font-size:12px;
	margin-top:5px;
	margin-bottom:10px;
}
/* 댓글 날짜의 기본 스타일 설정 */
.reply_date a {
	margin-left:0px;
}
/* 댓글 날짜 앵커 태그의 마진 설정 */
.reply_date>a:before {
	content:"\00B7";
	margin-right:1px;
	margin-left:1px;
}
/* 댓글 날짜 앵커 태그의 before 스타일 설정 */
.rcomment .rcomment-meta {
	display:none
}
/* 대댓글 메타의 기본 스타일 설정 */
hr.point-another {
	border-color:#dedede !important;
	margin:0
}
/* 포인트 다른 항목의 수평선 스타일 설정 */
.h-entry .content-width {
	width: 100%;
}
/* 항목 컨텐츠 너비의 기본 스타일 설정 */
#tt-body-index .h-entry h2, #tt-body-category .h-entry h2 {
	line-height:140%;
}
/* 인덱스, 카테고리 항목 헤딩 2의 기본 스타일 설정 */
#tt-body-index .h-entry, #tt-body-category .h-entry, #tt-body-search .h-entry {
	max-width:100%;
}
/* 인덱스, 카테고리, 검색 항목의 최대 너비 설정 */
#tt-body-page #comment .control {
	position:relative
}
/* 페이지 댓글 제어의 기본 스타일 설정 */
#tt-body-page #comment .cmt_dropdown {
	display:none;
	position:absolute;
	right:10px;
	border:1px solid #dadce0;
	border-radius:2px;
	padding:4px 10px;
	margin-top:2px;
	background:#fff;
}
/* 페이지 댓글 드롭다운의 기본 스타일 설정 */
#tt-body-page #comment .cmt_dropdown li {
	display:block;
	width:80px;
	padding:0 !important;
	margin:0 !important;
	text-align:left;
	line-height:35px
}
/* 페이지 댓글 드롭다운 리스트 아이템의 기본 스타일 설정 */
#tt-body-page #comment .cmt_dropdown li a {
	display:block;
	font-size:16px;
	color:#555;
	text-align:center
}
/* 페이지 댓글 드롭다운 리스트 앵커 태그의 기본 스타일 설정 */
#tt-body-page #comment .cmt_dropdown li:hover a {
	color:#3ea2ff
}
/* 페이지 댓글 드롭다운 리스트 앵커 태그에 호버 시 색상 변경 */
#tt-body-category .h-entry .content-width, #tt-body-category .protected .content-width, #tt-body-index .h-entry .content-width, #tt-body-search .h-entry .content-width, #tt-body-search .protected .content-width, #tt-body-tag .h-entry .content-width, #tt-body-tag .protected .content-width {
	padding:0px;
}
/* 카테고리, 보호된 컨텐츠, 인덱스, 검색, 태그 항목의 기본 스타일 설정 */
#tt-search {
	position:absolute;
	left:-35px;
	z-index:999;
	top:-50px;
	width:280px;
	color:#333;
	display:block !important
}
/* 검색 요소의 기본 스타일 설정 */
#tt-search input {
	background:0 0;
	color:#fff;
	font-size:15px
}
/* 검색 인풋의 기본 스타일 설정 */
#tt-search .tt-search-inner {
	display:inline
}
/* 검색 내부 요소의 기본 스타일 설정 */
#tt-search .tt-search-inner input {
	border-bottom:1px solid #dadce0;
	line-height:40px;
	height:40px;
	width:100%;
	color:#fff;
	text-indent:10px
}
/* 검색 내부 인풋의 기본 스타일 설정 */
#tt-search .tt-search-inner input::placeholder {
	color:#fff
}
/* 검색 내부 인풋의 placeholder 색상 설정 */
#tt-search .tt-search-inner input:focus {
	outline:0 none
}
/* 검색 내부 인풋에 포커스 시 아웃라인 제거 */
.input-wrap .textbox input {
	padding:3px 7px;
	font-size:14px;
	height:24px;
	line-height:24px;
	position:relative;
	z-index:9
}
/* 인풋 랩 텍스트박스 인풋의 기본 스타일 설정 */
.entry-tag {
	font-size:14px;
	margin:15px 0px 15px 0px
}
/* 엔트리 태그의 기본 스타일 설정 */
.entry-tag span {
	padding:2px 7px;
	margin-right:10px;
	color:#999
}
/* 엔트리 태그의 스팬 스타일 설정 */
.entry-tag a::before {
	content:"#";
}
/* 엔트리 태그 앵커 태그의 before 스타일 설정 */
.entry-tag a {
	padding:2px 3px;
	color:#0052B3;
}
/* 엔트리 태그 앵커 태그의 기본 스타일 설정 */
.entry-tag a:hover {
	background:#3ea2ff;
	border-color:#3ea2ff;
	color:#fff !important;
	transition:.3s
}
/* 엔트리 태그 앵커 태그에 호버 시 스타일 변경 */
.e-content.post-content p {
	position:relative;
	display:block;
	line-height:1.9;
}
/* 포스트 컨텐츠의 문단 스타일 설정 */
.h-entry .list_content .post-link {
	display:block;
}
/* 항목 리스트 컨텐츠의 포스트 링크 스타일 설정 */
.dropdown-content .dropdown-profile {
	overflow-x:hidden;
}
/* 드롭다운 컨텐츠의 프로파일 스타일 설정 */
.dropdown-content .dropdown-profile_info:before {
	content:"";
	position:absolute;
	left:0;
	top:0;
	border-style:solid;
	border-width:56px 0 0 400px;
	border-color:transparent transparent transparent #fff;
}
/* 드롭다운 프로파일 정보의 before 스타일 설정 */
.dropdown-content .dropdown-profile_bg {
	position:relative;
	overflow:hidden;
	height:320px;
	background: #525252;
	background: -webkit-linear-gradient(to right, #3d72b4, #525252);
	background: linear-gradient(to right, #3d72b4, #525252);
}
/* 드롭다운 프로파일 배경의 기본 스타일 설정 */
.dropdown-content .dropdown-profile_bg img {
	display:block;
	position:absolute;
	object-fit:cover;
	left:0;
	right:0;
	bottom:0;
	height: inherit;
}
/* 드롭다운 프로파일 배경 이미지의 기본 스타일 설정 */
.dropdown-content .dropdown-profile_info-inner {
	position:relative;
	top:-40px;
	display:inline-block;
}
/* 드롭다운 프로파일 내부 정보의 기본 스타일 설정 */
.dropdown-profile_info-inner a:hover img {
	-webkit-transition-duration:.3s;
	transition-duration:.3s;
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
}
/* 드롭다운 프로파일 내부 앵커 태그의 호버 시 이미지 스타일 변경 */
.dropdown-profile_info-inner a:hover p {
	color: #2196F3;
	transition:0.3s;
}
/* 드롭다운 프로파일 내부 앵커 태그의 호버 시 텍스트 스타일 변경 */
.dropdown-content .dropdown-profile_info {
	margin-top:-55px;
	z-index:1;
	position:relative;
	padding-left:24px;
	padding-right:24px;
}
/* 드롭다운 프로파일 정보의 기본 스타일 설정 */
.dropdown-content .dropdown-profile_info img {
	object-fit:cover;
	border-radius:50%;
}
/* 드롭다운 프로파일 정보 이미지의 기본 스타일 설정 */
.dropdown-content .dropdown-profile-title {
	text-align: center;
	font-size:14px;
	color:#444;
}
/* 드롭다운 프로파일 타이틀의 기본 스타일 설정 */
.dropdown-content i.fas {
	margin-right:15px;
	font-size:14px;
}
/* 드롭다운 컨텐츠의 아이콘 스타일 설정 */
.dropdown-content .tt_category li {
	text-indent:20px;
}
/* 드롭다운 카테고리 리스트 아이템의 기본 스타일 설정 */
.dropdown-content .tt_category li .category_list li .sub_category_list li:before {
	content:"·";
	font-weight:900;
	position:absolute;
	left:12px;
	color:#666;
}
/* 드롭다운 카테고리 서브 리스트 아이템의 before 스타일 설정 */
.dropdown-content .tt_category li .category_list li .sub_category_list li a {
	padding-left:24px;
}
/* 드롭다운 카테고리 서브 리스트 앵커 태그의 기본 스타일 설정 */
.dropdown-content .tt_category li .category_list li:hover a {
	color:#3ea2ff;
	transition:color .3s;
}
/* 드롭다운 카테고리 서브 리스트 앵커 태그에 호버 시 스타일 변경 */
.dropdown-content .tt_category .link_tit {
	width:100%;
	display:block;
}
/* 드롭다운 카테고리 타이틀 링크의 기본 스타일 설정 */
.dropdown-content {
	max-width:100%;
	width:300px;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	margin:0;
	overflow:hidden;
	background:#fff;
	font-size:14px;
	z-index:999;
	transform:translateX(101%);
	transition:all 0.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
	box-shadow:0 1px 10px 2px rgb(0 0 0 / 10%);
}
/* 드롭다운 컨텐츠의 기본 스타일 설정 */
.dropdown-content ul li {
	color:#444;
	line-height:35px;
	text-indent:10px;
	text-decoration:none;
	display:block;
}
/* 드롭다운 컨텐츠 리스트 아이템의 기본 스타일 설정 */
.dropdown-content ul li a {
	display:block;
}
/* 드롭다운 컨텐츠 리스트 앵커 태그의 기본 스타일 설정 */
.dropdown-content ul li a:hover {
	background-color: #b5d5e83b;
  transition: 0.2s;
}
/* 드롭다운 컨텐츠 리스트 앵커 태그에 호버 시 배경색과 트랜지션 설정 */
.dropdown-content-toggle {
	-webkit-transform:none;
	-moz-transform:none;
	-ms-transform:none;
	-o-transform:none;
	transform:none;
	overflow-x:hidden;
	overflow-y:auto;
	scrollbar-width:none;
	-ms-overflow-style:none;
}
/* 드롭다운 컨텐츠 토글의 기본 스타일 설정 */
.dropdown-content-toggle::-webkit-scrollbar {
	display:none;
}
/* 드롭다운 컨텐츠 토글의 웹킷 스크롤바 스타일 제거 */
.dropdown-content #dropdown-menu {
	margin-bottom: 50px;
}
/* 드롭다운 메뉴의 마진 설정 */
.show {
	display:block
}
/* 표시 요소의 기본 스타일 설정 */
.dropdown-content .header_layer:after {
	content:none;
}
/* 드롭다운 헤더 레이어의 after 스타일 설정 */
.dropdown-content .header_layer {
	box-sizing: border-box;
	position: inherit;
	font-family:inherit;
	display: inline-block !important;
	width: 100%;
	box-shadow: none;
  border-top: 1px solid #F0F0F0;
	border-bottom: 1px solid #F0F0F0;
}
/* 드롭다운 헤더 레이어의 기본 스타일 설정 */
.dropdown-content .header_layer .img_common_tistory:hover {
	animation: rotateEffect2 0.3s linear forwards;
}
/* 드롭다운 헤더 레이어의 티스토리 이미지 호버 시 애니메이션 설정 */
.dropdown-content .header_layer .info_profile:hover {
	background-color: #b5d5e83b;
  transition: 0.2s;
}
/* 드롭다운 헤더 레이어의 프로파일 정보 호버 시 배경색과 트랜지션 설정 */
.dropdown-content .header_layer .inner_header_layer * {
	font-family:inherit;
	color: #444;
}
/* 드롭다운 헤더 레이어 내부 요소의 기본 스타일 설정 */
.dropdown-content .header_layer .inner_header_layer .info_profile_type1 {
	padding-top:7px ;
}
/* 드롭다운 헤더 레이어 내부 프로파일 타입 1의 패딩 설정 */
.dropdown-content .inner_header_layer .txt_id_type2 {
	font-size: 14px;
}
/* 드롭다운 내부 텍스트 ID 타입 2의 폰트 크기 설정 */
.dropdown-content .inner_header_layer .tit_list_type {
	padding: 10px 0 5px 23px;
  color: #999;
}
/* 드롭다운 내부 리스트 타입의 기본 스타일 설정 */
.dropdown-content .header_layer .list_toolbar a {
	padding-left: 13px;
}
/* 드롭다운 헤더 레이어의 툴바 앵커 태그 패딩 설정 */
.dropdown-content .ico_tistory_sign {
	display: none !important;
}
/* 드롭다운의 티스토리 아이콘 숨김 설정 */
.another_category {
	border:none;
}
/* 다른 카테고리의 기본 스타일 설정 */
.another_category_color_gray th .current {
	border-color:#666 !important;
	font-weight:500;
	border-bottom:none !important
}
/* 다른 회색 카테고리의 현재 스타일 설정 */
.another_category_color_gray * {
	color:#2b2b2b !important
}
/* 다른 회색 카테고리의 기본 색상 설정 */
.another_category h4, .another_category h4 a {
	color:#333 !important;
	font-size:15px
}
/* 다른 카테고리 헤딩 4의 기본 스타일 설정 */
.another_category h4 {
	font-size:15px !important;
	margin:0 !important;
	border-bottom:1px solid #e5e5e5 !important;
	padding:2px 0 6px !important
}
/* 다른 카테고리 헤딩 4의 기본 스타일 설정 */
.another_category {
	border:none !important;
	padding:0 !important;
	margin:10px 0;
	clear:both
}
/* 다른 카테고리의 기본 스타일 설정 */
.another_category.another_category_color_gray table th span {
	display:none
}
/* 다른 회색 카테고리 테이블 헤딩의 스팬 스타일 설정 */
.another_category th a:hover {
	color:#3ea2ff !important
}
/* 다른 카테고리 헤딩 앵커 태그에 호버 시 색상 변경 */
.category_list li a img {
	display:inline-block;
}
/* 카테고리 리스트 앵커 태그 이미지의 기본 스타일 설정 */
.syntaxhighlighter {
	background-color:#fff !important;
	border:1px solid #3ea2ff;
	padding-top:10px;
	padding-bottom:10px
}
/* 문법 하이라이터의 기본 스타일 설정 */
.protected {
	overflow:hidden
}
/* 보호된 요소의 기본 스타일 설정 */
.protected .media-wrap {
	margin:30px auto;
}
/* 보호된 미디어 랩의 기본 스타일 설정 */
.protected .e-content {
	text-align:center
}
/* 보호된 컨텐츠의 텍스트 정렬 설정 */
.protected .media .protectedPassword {
	border:1px solid #dadce0;
	line-height:27px
}
/* 보호된 미디어 비밀번호의 기본 스타일 설정 */
#tt-body-page .protected .textbox input {
	border:1px solid #dadce0;
	border-radius:2px;
	line-height:35px;
	box-sizing:border-box;
	text-indent:10px;
	width:260px;
}
/* 보호된 페이지 텍스트박스 입력의 기본 스타일 설정 */
.protected .media .media_btn {
	line-height:35px;
	padding:0 10px 0 10px;
	border:1px solid #dadce0;
	cursor:pointer;
	box-sizing:border-box;
	border-radius:2px;
	transition:.3s;
	background:#f7f9fa;
}
/* 보호된 미디어 버튼의 기본 스타일 설정 */
.protected .media .media_btn:hover {
	background:#3ea2ff;
	color:#fff;
	border-color:#3ea2ff;
}
/* 보호된 미디어 버튼에 호버 시 스타일 변경 */
.protected .media .textbox.focus-wrap {
	margin-top:15px
}
/* 보호된 미디어 텍스트박스의 포커스 랩 스타일 설정 */
@media only screen and (max-width:1023px) {
	#header_wrap #header_gnb #header-title a {
		max-width:230px;
		white-space:nowrap;
		overflow:hidden;
		text-overflow:ellipsis;
	}
	/* 화면 너비 1023px 이하일 때 헤더 제목 앵커 태그의 기본 스타일 설정 */
	.ads-wrap.side-short {
		width:100%;
		height:200px;
	}
	/* 짧은 광고 랩의 너비와 높이 설정 */
	.ads-wrap.side-long {
		width:100%;
		height:250px;
	}
	/* 긴 광고 랩의 너비와 높이 설정 */
	#tt-body-category .h-entry .content-width, #tt-body-category .protected .content-width, #tt-body-search .h-entry .content-width, #tt-body-search .protected .content-width, #tt-body-tag .h-entry .content-width, #tt-body-tag .protected .content-width {
		margin:0px;
	}
	/* 카테고리, 보호된 컨텐츠, 검색, 태그 항목의 기본 마진 설정 */
	.list_content {
		cursor:pointer;
		justify-content:center;
		align-items:center;
		max-height:unset !important;
	}
	/* 리스트 컨텐츠의 기본 스타일 설정 */
	.h-entry {
		max-width:900px;
		width:auto !important;
		max-height:unset;
		padding: 0 20px 0 24px;
	}
	/* 항목의 기본 스타일 설정 */
	.list_detail_wrap {
		max-height:unset;
		vertical-align:middle;
	}
	/* 리스트 디테일 랩의 기본 스타일 설정 */
	#comment-form {
		width:unset !important
	}
	/* 댓글 폼의 너비 설정 */
	#comment ol>li {
		padding:unset !important
	}
	/* 댓글 리스트 아이템의 패딩 설정 */
	.dropdown-content {
		min-width:300px
	}
	/* 드롭다운 컨텐츠의 최소 너비 설정 */
	#search-form {
		display: none;
	}
	/* 검색 폼의 기본 스타일 설정 */
	#sidebar-category {
		display: none;
	}
	/* 사이드바 카테고리의 기본 스타일 설정 */
	.paging-line {
		display: block;
	}
	/* 페이징 라인의 기본 스타일 설정 */
}
@media only screen and (min-width:450px) {
	.list_detail_wrap .post_text::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 50%;
		height: 50%;
		background: -webkit-linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
		background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	}
	/* 화면 너비 450px 이상일 때 리스트 디테일 랩의 포스트 텍스트 after 스타일 설정 */
}
@media only screen and (min-width:1023px) {
	#main.sidebarPosition.left {
		display:flex;
		flex-direction:row-reverse;
		margin:20px;
		padding-left: 0px;
	}
	/* 화면 너비 1023px 이상일 때 메인 사이드바 위치 왼쪽의 기본 스타일 설정 */
	#main.sidebarPosition.right {
		display:flex;
		margin:20px;
		padding-left: 10px;
	}
	/* 화면 너비 1023px 이상일 때 메인 사이드바 위치 오른쪽의 기본 스타일 설정 */
	#header_wrap #header_gnb #header-title {
		padding-left:30px;
	}
	/* 화면 너비 1023px 이상일 때 헤더 제목의 기본 패딩 설정 */
	.hd .sub-info .wide-button-wrap {
		display:inline-block;
	}
	/* 화면 너비 1023px 이상일 때 서브 인포 와이드 버튼 랩의 기본 스타일 설정 */
	.h-entry .content-width {
		max-width: 810px;
		margin: 0 auto;
	}
	/* 화면 너비 1023px 이상일 때 항목의 컨텐츠 너비 기본 설정 */
	.h-entry .content-width.wide {
		max-width: 1200px;
	}
	/* 화면 너비 1023px 이상일 때 넓은 항목의 컨텐츠 너비 기본 설정 */
	#search-form {
		display: block;
	}
	/* 화면 너비 1023px 이상일 때 검색 폼의 기본 스타일 설정 */
	#sidebar-category {
		display: block;
	}
	/* 화면 너비 1023px 이상일 때 사이드바 카테고리의 기본 스타일 설정 */
}
@media only screen and (max-width:600px) {
	.popup-word {
		width:50%;
	}
	/* 화면 너비 600px 이하일 때 팝업 단어의 너비 설정 */
	#footer {
		text-align:center;
		flex-direction:column;
	}
	/* 화면 너비 600px 이하일 때 푸터의 기본 스타일 설정 */
	#footer .ft-ac {
		position:inherit;
	}
	/* 화면 너비 600px 이하일 때 푸터 ft-ac 스타일 설정 */
	#search-bar {
		margin: auto 5px;
		background-color: transparent;
	}
	/* 화면 너비 600px 이하일 때 검색 바의 기본 스타일 설정 */
	#search-bar .input-text {
		display: none;
	}
	/* 화면 너비 600px 이하일 때 검색 바의 인풋 텍스트 스타일 설정 */
}
@media only screen and (max-width:1023px) {
	.dropdown-content ul li:first-child {
		display:block;
	}
	/* 화면 너비 1023px 이하일 때 드롭다운 컨텐츠 리스트의 첫 번째 아이템 스타일 설정 */
	.dropdown-content .tt_category li {
		padding:0px;
	}
	/* 화면 너비 1023px 이하일 때 드롭다운 카테고리 리스트 아이템의 패딩 설정 */
	#tt-search {
		position:initial !important;
		left:initial !important;
		top:initial !important;
		width:100%;
		display:none !important
	}
	/* 화면 너비 1023px 이하일 때 검색 요소의 기본 스타일 설정 */
	#tt-search input {
		color:#333 !important
	}
	/* 화면 너비 1023px 이하일 때 검색 인풋의 색상 설정 */
	#tt-search input::placeholder {
		color:#333 !important
	}
	/* 화면 너비 1023px 이하일 때 검색 인풋의 placeholder 색상 설정 */
	#sidebar {
		margin:0px !important;
		padding:20px 20px 20px 10px;
		max-width:none !important;
	}
	/* 화면 너비 1023px 이하일 때 사이드바의 기본 스타일 설정 */
	#taglog {
		margin:0px !important;
		padding:0 20px 0 24px;
		max-width:none !important;
	}
	/* 화면 너비 1023px 이하일 때 태그 로그의 기본 스타일 설정 */
	#guestbook {
		margin:0px !important;
		padding:0 20px 0 24px;
		max-width:none !important;
	}
	/* 화면 너비 1023px 이하일 때 방명록의 기본 스타일 설정 */
	#no-search-results {
		margin:0px !important;
		padding:0px 20px 0px 20px;
		max-width:none !important;
		min-width:280px;
	}
	/* 화면 너비 1023px 이하일 때 검색 결과 없음의 기본 스타일 설정 */
	.module {
		width:unset !important;
		max-width:unset !important
	}
	/* 화면 너비 1023px 이하일 때 모듈의 기본 스타일 설정 */
	#btn_goCategory {
		display:block !important
	}
	/* 화면 너비 1023px 이하일 때 카테고리 버튼의 기본 스타일 설정 */
	#container nav ul li {
		padding-left: 5px;
	}
	/* 화면 너비 1023px 이하일 때 컨테이너 내비게이션 리스트 아이템의 패딩 설정 */
}
.container_postbtn .wrap_btn {
	padding:0 10px;
	margin-right:8px !important;
	background:#f9f9f9;
	border-radius:7px;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,0.1);
}
/* 포스트 버튼 컨테이너의 랩 버튼 기본 스타일 설정 */
.container_postbtn .wrap_btn:hover {
	background:#f0f0f0;
	transition:.3s;
}
/* 포스트 버튼 컨테이너의 랩 버튼 호버 시 배경색과 트랜지션 설정 */
.container_postbtn .btn_menu_toolbar:hover {
	background:#000 !important;
	color:#fff;
	transition:.3s;
}
/* 포스트 버튼 컨테이너의 메뉴 툴바 버튼 호버 시 스타일 변경 */
.container_postbtn .btn_menu_toolbar {
	background:#f9f9f9;
	border-radius:7px !important;
	border:0px !important;
	margin: 0px !important;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
}
/* 포스트 버튼 컨테이너의 메뉴 툴바 버튼 기본 스타일 설정 */
.container_postbtn .btn_menu_toolbar .txt_state {
	display: flex;
	padding-left: 5px;
}
/* 포스트 버튼 컨테이너의 메뉴 툴바 버튼 상태 텍스트 기본 스타일 설정 */
.container_postbtn .txt_state::before {
	content: "\e866";
	font-family: "Material Icons Outlined";
	font-size: 18px;
	margin-right:2px;
}
/* 포스트 버튼 컨테이너의 메뉴 툴바 버튼 상태 텍스트 before 스타일 설정 */
.container_postbtn .btn_menu_toolbar {
	height:40px !important;
}
/* 포스트 버튼 컨테이너의 메뉴 툴바 버튼 높이 설정 */
.container_postbtn .postbtn_like {
	display:inline-block;
	border: 0px !important;
	padding: 0px !important;
}
/* 포스트 버튼 컨테이너의 좋아요 버튼 기본 스타일 설정 */
.container_postbtn .btn_post {
	height:40px !important;
	padding:0 5px !important
}
/* 포스트 버튼 컨테이너의 포스트 버튼 높이와 패딩 설정 */
.container_postbtn {
	padding-bottom:15px !important;
	visibility: hidden;
}
/* 포스트 버튼 컨테이너의 기본 스타일 설정 */
container_postbtn button {
	outline-style: none !important;
}
/* 포스트 버튼 컨테이너 버튼의 아웃라인 스타일 제거 */
.container_postbtn .postbtn_ccl {
	float:none !important;
	position:absolute !important;
	right:0 !important;
	top:50% !important
}
/* 포스트 버튼 컨테이너의 CCL 버튼 기본 스타일 설정 */
#tistoryCclLayer {
	width:70px;
	padding:5px 25px 11px 15px;
}
/* 티스토리 CCL 레이어의 기본 스타일 설정 */
.post-content ol li p, .post-content ul li p {
	line-height:normal !important
}
/* 포스트 컨텐츠 리스트 아이템의 문단 행간 설정 */
@media only screen and (max-width:450px) {
	#header_wrap #header_gnb #header-title a {
		font-size:17px;
	}
	/* 화면 너비 450px 이하일 때 헤더 제목 앵커 태그의 폰트 크기 설정 */
	#header_wrap #header_gnb #header-title {
		padding-left:18px;
	}
	/* 화면 너비 450px 이하일 때 헤더 제목의 패딩 설정 */
	#header_wrap {
		line-height:63px;
	}
	/* 화면 너비 450px 이하일 때 헤더 랩의 행간 설정 */
	.hd .hd-heading {
		font-size:1.4rem;
	}
	/* 화면 너비 450px 이하일 때 헤더 헤딩의 폰트 크기 설정 */
	#wrap {
		margin-top: 70px
	}
	/* 화면 너비 450px 이하일 때 랩의 마진 설정 */
	#gnb {
		margin:0 14px 25px 14px;
	}
	/* 화면 너비 450px 이하일 때 네비게이션의 마진 설정 */
	.thumnail img {
		height: 90px;
		width: 90px;
	}
	/* 화면 너비 450px 이하일 때 썸네일 이미지의 높이와 너비 설정 */
	.header-blog-menu li a {
		display:block;
	}
	/* 화면 너비 450px 이하일 때 헤더 블로그 메뉴 앵커 태그의 디스플레이 설정 */
	.list_detail_wrap .post_title {
		font-size:16px;
	}
	/* 화면 너비 450px 이하일 때 리스트 디테일 랩의 포스트 제목 폰트 크기 설정 */
	#sidebar .module .module-title {
		font-size:15px;
	}
	/* 화면 너비 450px 이하일 때 사이드바 모듈 타이틀의 폰트 크기 설정 */
	.list_detail_wrap .post_text {
		font-size:14px;
	}
	/* 화면 너비 450px 이하일 때 리스트 디테일 랩의 포스트 텍스트 폰트 크기 설정 */
	.dup-button, .text-length {
		font-size:12px;
	}
	/* 화면 너비 450px 이하일 때 중복 버튼과 텍스트 길이의 폰트 크기 설정 */
	#paging .pagination li {
		font-size:15px;
	}
	/* 화면 너비 450px 이하일 때 페이징의 기본 스타일 설정 */
	.h-entry {
		padding:0 14px 0 18px;
	}
	/* 화면 너비 450px 이하일 때 항목의 패딩 설정 */
	#sidebar {
		padding:10px;
	}
	/* 화면 너비 450px 이하일 때 사이드바의 패딩 설정 */
	#guestbook {
		padding:0 14px 0 18px;
	}
	/* 화면 너비 450px 이하일 때 방명록의 패딩 설정 */
	#taglog {
		padding:0 14px 0 18px;
	}
	/* 화면 너비 450px 이하일 때 태그 로그의 패딩 설정 */
	#no-search-results {
		padding:0px 14px;
	}
	/* 화면 너비 450px 이하일 때 검색 결과 없음의 패딩 설정 */
	.write-form .input-wrap {
		flex-direction:column;
	}
	/* 화면 너비 450px 이하일 때 작성 폼의 인풋 랩 스타일 설정 */
	#gnb ul {
		font-size: 14px;
	}
	/* 화면 너비 450px 이하일 때 네비게이션 리스트의 기본 폰트 크기 설정 */
	#header-ico {
		padding-right: 14px;
	}
	/* 화면 너비 450px 이하일 때 헤더 아이콘의 패딩 설정 */
	.menu-icon {
		width: 22px;
		height: 4px;
	}
	/* 화면 너비 450px 이하일 때 메뉴 아이콘의 너비와 높이 설정 */
	.toc-wrap.floating {
		top:135px
	}
	/* 화면 너비 450px 이하일 때 TOC 랩의 위치 설정 */
}
.sr-only {
	border:0;
	clip:rect(0,0,0,0);
	height:1px;
	margin:-1px;
	overflow:hidden;
	padding:0;
	position:absolute;
	width:1px
}
/* 스크린 리더 전용 요소의 기본 스타일 설정 */
.sr-only-focusable:active, .sr-only-focusable:focus {
	clip:auto;
	height:auto;
	margin:0;
	overflow:visible;
	position:static;
	width:auto
}
/* 포커스 가능한 스크린 리더 전용 요소의 기본 스타일 설정 */
.recentPost ul {
	padding:0px 5px 0px 15px;
}
/* 최근 포스트 리스트의 기본 패딩 설정 */
.recentPost ul li {
	width:100%;
	display:inline-block;
	position:relative;
	font-size:14px;
}
/* 최근 포스트 리스트 아이템의 기본 스타일 설정 */
.recentPost ul li:last-child {
	border-bottom:none;
}
/* 최근 포스트 리스트의 마지막 아이템 스타일 설정 */
.recentPost ul li a {
	display:block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	padding:3px 0px;
}
/* 최근 포스트 리스트 앵커 태그의 기본 스타일 설정 */
.recentPost ul li a:hover {
	color:#3ea2ff;
	transition:.3s;
}
/* 최근 포스트 리스트 앵커 태그에 호버 시 색상과 트랜지션 설정 */
.recentPost .recent-right {
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	overflow: hidden;
}
/* 최근 포스트의 오른쪽 텍스트 스타일 설정 */
.recentPost .left-pop.left {
	position:relative;
	float:left;
}
/* 최근 포스트의 왼쪽 팝 스타일 설정 */
.recentPost .left-pop .left-rep-thumbnail {
	width:50px;
	height:50px;
	background-color:#e7f4ff;
	border-radius:7px;
	position:relative;
}
/* 최근 포스트의 왼쪽 대표 썸네일 스타일 설정 */
.left-pop .left-rep-thumbnail img {
	position: absolute;
	z-index: 1;
}
/* 왼쪽 대표 썸네일 이미지의 기본 스타일 설정 */
.no-img-icon::before {
	content: "\e560";
	font-family: "Material Icons Outlined";
	font-size: 37px;
	position: absolute;
	top: 53%;
	left: 51%;
	transform: translate(-50%, -50%);
	color: #b5d5e8;
	z-index: 0;
}
/* 이미지 없음 아이콘의 기본 스타일 설정 */
.recentPost-info .left-pop img {
	border-radius:7px;
}
/* 최근 포스트 정보의 왼쪽 이미지 테두리 반경 설정 */
.recentPost .left-pop.right {
	position:relative;
	float:right;
	overflow:hidden;
}
/* 최근 포스트의 오른쪽 팝 스타일 설정 */
.recentPost .right-pop {
	overflow: hidden;
	padding-left: 12px;
	font-size: 14px;
	height: 47px;
	display: flex;
	align-items: center;
}
/* 최근 포스트의 오른쪽 팝 스타일 설정 */
.recentPost .right-pop.right {
	padding: 0px 12px 0px 5px;
}
/* 최근 포스트의 오른쪽 팝 스타일 설정 */
.recentPost-list {
	margin:10px 5px 0px 10px
}
/* 최근 포스트 리스트의 기본 마진 설정 */
.recentPost-list a {
	display:table;
	width:100%;
	table-layout:fixed;
}
/* 최근 포스트 리스트 앵커 태그의 기본 스타일 설정 */
.recentPost-list a:hover {
	color:#3ea2ff;
	transition:0.3s;
}
/* 최근 포스트 리스트 앵커 태그에 호버 시 색상과 트랜지션 설정 */
.recentPost-info {
	display:table-cell;
	vertical-align:middle;
}
/* 최근 포스트 정보의 기본 스타일 설정 */
.popularPost ul {
	padding:0px 15px;
}
/* 인기 포스트 리스트의 기본 패딩 설정 */
.popularPost ul li {
	border-radius:3px;
	width:100%;
	display:inline-block;
	position:relative;
	font-size:15px;
	border-bottom:1px solid #f6f6f6;
}
/* 인기 포스트 리스트 아이템의 기본 스타일 설정 */
.popularPost ul li:last-child {
	border-bottom:none;
}
/* 인기 포스트 리스트의 마지막 아이템 스타일 설정 */
.popularPost ul li a {
	font-weight:normal;
	display:inline-block;
	padding-top:10px;
	padding-bottom:5px;
}
/* 인기 포스트 리스트 앵커 태그의 기본 스타일 설정 */
.popularPost ul li a:hover {
	color:#0052B3;
	transition:.3s;
}
/* 인기 포스트 리스트 앵커 태그에 호버 시 색상과 트랜지션 설정 */
.popularPost .popular-right {
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	text-overflow:ellipsis;
	overflow:hidden;
}
/* 인기 포스트의 오른쪽 텍스트 스타일 설정 */
.popularPost .left-pop.left {
	position:relative;
	float:left;
	overflow:hidden;
}
/* 인기 포스트의 왼쪽 팝 스타일 설정 */
.popularPost .left-pop .left-rep-thumbnail {
	width:50px;
	height:50px;
	background-color:#e7f4ff;
	border-radius:7px;
	position:relative;
}
/* 인기 포스트의 왼쪽 대표 썸네일 스타일 설정 */
.popularPost .left-pop.right {
	position:relative;
	float:right;
	overflow:hidden;
}
/* 인기 포스트의 오른쪽 팝 스타일 설정 */
.popularPost-info .left-pop img {
	border-radius:7px;
}
/* 인기 포스트 정보의 왼쪽 이미지 테두리 반경 설정 */
.popularPost .right-pop {
	overflow: hidden;
	padding-left: 12px;
	font-size: 14px;
	height: 47px;
	display: flex;
	align-items: center;
}
/* 인기 포스트의 오른쪽 팝 스타일 설정 */
.popularPost .right-pop.right {
	padding: 0px 12px 0px 5px;
}
/* 인기 포스트의 오른쪽 팝 스타일 설정 */
.popularPost-list {
	margin:10px 5px 0px 10px;
}
/* 인기 포스트 리스트의 기본 마진 설정 */
.popularPost-list a {
	display:table;
	width:100%;
	table-layout:fixed;
}
/* 인기 포스트 리스트 앵커 태그의 기본 스타일 설정 */
.popularPost-list a:hover {
	color:#3ea2ff;
	transition:.3s;
}
/* 인기 포스트 리스트 앵커 태그에 호버 시 색상과 트랜지션 설정 */
.popularPost-info {
	display:table-cell;
	vertical-align:middle;
}
/* 인기 포스트 정보의 기본 스타일 설정 */
.area_related_wrap .related_table {
	margin-bottom:10px;
	margin-top:10px;
	display:table;
	width:100%;
}
/* 관련 항목 랩의 테이블 기본 스타일 설정 */
.area_related_wrap .related_header {
	display:table-row;
}
/* 관련 항목 랩의 헤더 기본 스타일 설정 */
.area_title_wrap {
	display:table-cell;
}
/* 제목 랩의 기본 스타일 설정 */
.area_related_wrap .tit_related {
	margin:0px 0px;
	font-size:14px;
}
/* 관련 제목의 기본 스타일 설정 */
.area_btn_more_wrap .link_more {
	flex:none;
	clear:both;
	font-size:12px;
	align-self:flex-end;
	padding:3px 6px;
	background:#616161;
	color:#fbfbfb;
	border-radius:3px;
	margin:5px;
}
/* 더보기 버튼 랩의 링크 기본 스타일 설정 */
.area_btn_more_wrap .link_more:hover {
	background:#3281e6;
	transition:.3s
}
/* 더보기 버튼 랩의 링크 호버 시 배경색과 트랜지션 설정 */
.area_btn_more_wrap {
	display:table-cell;
	position:relative;
	text-align:right;
}
/* 더보기 버튼 랩의 기본 스타일 설정 */
.area_related_wrap .list_item {
	position:relative;
	overflow:hidden;
	padding: 10px 5px 10px 0;
	border-bottom:1px solid #dadce0;
}
/* 관련 항목 랩의 리스트 아이템 기본 스타일 설정 */
.area_related_wrap .area_thumb {
	position:relative;
	display:block;
	float:left;
	overflow:hidden;
	margin-right:15px;
}
/* 관련 항목 랩의 썸네일 기본 스타일 설정 */
.area_related_wrap .area_thumb img {
	border-radius:10px;
}
/* 관련 항목 랩의 썸네일 이미지 테두리 반경 설정 */
.area_related_wrap .area_info {
	display:flex;
	overflow:hidden;
	text-decoration:none;
}
/* 관련 항목 랩의 정보 기본 스타일 설정 */
.area_related_wrap {
	padding-bottom:10px;
	border-top:1px solid #dadce0;
}
/* 관련 항목 랩의 기본 스타일 설정 */
.area_related_wrap .list_related {
	border-top:1px solid #dadce0;
}
/* 관련 항목 랩의 리스트 기본 스타일 설정 */
.area_related_wrap .list_item .area_info .title {
	display:block;
	overflow:hidden;
	height:auto;
	white-space:nowrap;
	text-overflow:ellipsis;
	font-size:14px;
	line-height:20px;
	padding-right: 10px;
	
}
/* 관련 항목 랩의 리스트 아이템 제목 기본 스타일 설정 */
.area_related_wrap .list_item .area_info .title:hover {
	color:#3ea2ff;
	transition:.3s;
}
/* 관련 항목 랩의 리스트 아이템 제목 호버 시 색상과 트랜지션 설정 */
.area_related_wrap .list_item .area_info .list_date {
	display:inline-block;
	font-size:13px;
	margin-left:auto;
}
/* 관련 항목 랩의 리스트 아이템 날짜 기본 스타일 설정 */
/* 구글 머티리얼 아이콘 설정 */
.material-icons-outlined, .material-icons-round {
	vertical-align:text-bottom;
	font-size:16px;
	user-select:none;
}
/* 머티리얼 아이콘의 기본 스타일 설정 */
.material-icon {
	font-size:17px;
	margin-right:3px;
	margin-top: 3px;
}
/* 머티리얼 아이콘의 기본 폰트 크기와 마진 설정 */
/* 오픈 그래프 설정 */
figure[data-ke-type="opengraph"], #tt-body-page figure[data-ke-type="opengraph"] {
	max-width:500px;
	margin:10px 0;
}
/* 오픈 그래프 피겨의 기본 스타일 설정 */
figure[data-ke-type='opengraph'] a, #tt-body-page figure[data-ke-type='opengraph'] a {
	height:110px;
	width:auto;
	border-radius: 7px;
	background: #f6f6f6;
	border: 0;
	box-shadow: 1px 2px 3px 1px rgba(0,0,0,.1);
}
/* 오픈 그래프 앵커 태그의 기본 스타일 설정 */
figure[data-ke-type='opengraph'] div.og-image {
	width:105px;
	height:auto;
	border-radius: 7px;
	margin: 5px;
	border: 0px;
	overflow: hidden;
}
/* 오픈 그래프 이미지의 기본 스타일 설정 */
figure[data-ke-type='opengraph'] div.og-text {
	left:100px !important;
	padding:13px 0 0 20px !important;
	margin-bottom: 5px;
}
/* 오픈 그래프 텍스트의 기본 스타일 설정 */
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 {
	font-size:16px;
	font-family:inherit;
}
/* 오픈 그래프 제목의 기본 폰트 설정 */
figure[data-ke-type='opengraph'] div.og-text p.og-desc, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
	font-family:inherit;
	color:#555555;
	padding-right:10px;
	max-height:initial;
	-webkit-line-clamp:1
}
/* 오픈 그래프 설명의 기본 폰트 설정 */
figure[data-ke-type='opengraph'] div.og-text p.og-host, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
	font-family:inherit;
	font-weight:300;
	bottom:5px;
	color:#555555;
}
/* 오픈 그래프 호스트의 기본 폰트 설정 */
figure[data-ke-type="opengraph"] div.og-text p.og-desc, #tt-body-page figure[data-ke-type="opengraph"] div.og-text p.og-desc {
	display: -webkit-box;
}
/* 오픈 그래프 설명의 기본 스타일 설정 */
/* 코드 블록 설정 */
code, kbd, samp {
	font-family:Consolas;
	line-height:150%;
	font-size:14px;
	border-radius:10px;
}
/* 코드, 키보드, 샘플의 기본 폰트와 스타일 설정 */
pre code {
	margin: 14px auto;
	display: inline-block;
}
/* 코드의 기본 스타일 설정 */
pre > code.hljs {
	margin: 0px auto;
}
/* 코드 하이라이터의 기본 스타일 설정 */
.hljs-ln-numbers {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	text-align:center;
	color:#B5B5B5;
	border-right:1px solid #B5B5B5;
	vertical-align:top;
	width:20px;
	padding-left:0px;
}
/* 하이라이트 코드 라인 번호의 기본 스타일 설정 */
.hljs-ln td.hljs-ln-numbers {
	padding-right:10px;
}
/* 하이라이트 코드 라인 번호의 기본 스타일 설정 */
.hljs-ln td.hljs-ln-code {
	padding-left: 10px;
}
/* 하이라이트 코드 라인의 기본 스타일 설정 */

/* 공통 설정 */
:root {
    --glow-hue: 0deg;
    --shadow-hue: 0deg;
    --spring-easing: linear(
        0, 0.002, 0.01 0.9%, 0.038 1.8%, 0.156, 0.312 5.8%, 0.789 11.1%, 1.015 14.2%,
        1.096, 1.157, 1.199, 1.224 20.3%, 1.231, 1.231, 1.226, 1.214 24.6%,
        1.176 26.9%, 1.057 32.6%, 1.007 35.5%, 0.984, 0.968, 0.956, 0.949 42%,
        0.946 44.1%, 0.95 46.5%, 0.998 57.2%, 1.007, 1.011 63.3%, 1.012 68.3%,
        0.998 84%, 1
    );
    --spring-duration: 1.33s;
}
/* chatgin-a */
.chatgin-a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.chatgin-a a {
    display: inline-block;
    width: 80%;
    padding: 20px 30px;
    background-color: #ff0000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    animation: pulse 2s infinite;
}
.chatgin-a a:hover {
    background-color: #ffeb3b;
    color: #000000;
    transform: scale(1.05);
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
/* photo-album */
.photo-album {
    background-color: #ffffff !important;
    padding: 20px;
    border-radius: 20px;
    box-shadow: none;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
    padding-bottom: 50px !important;
}
.photo-album::before, .photo-album::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
}
.photo-album::before {
    top: 0;
}
.photo-album::after {
    bottom: 0;
}
.photo-album h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.photo-album > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.photo-album > div > div {
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
    height: 200px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-album img {
    height: 200px !important;
    width: auto;
}
@media (max-width: 768px) {
    .photo-album > div > div {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
        height: 150px;
    }
}
@media (max-width: 480px) {
    .photo-album > div > div {
        flex: 0 0 calc(100% - 10px);
        max-width: calc(100% - 10px);
        height: 125px !important;
    }
}
/* chatgin-table */
.chatgin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
    margin-bottom: 20px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
}

.chatgin-table th, .chatgin-table td {
    border: none;
    padding: 15px 20px;
    text-align: center;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.chatgin-table th {
    background-color: #007BFF;
    color: white;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatgin-table td {
    background-color: #ffffff;
    color: #333333;
    font-size: 1em;
}

.chatgin-table caption {
    caption-side: top;
    font-size: 1.125em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

.chatgin-table tr:hover td {
    background-color: #f1f1f1;
}

.chatgin-table th:hover {
    background-color: #0056b3;
}

.chatgin-table td:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

@media (max-width: 768px) {
    .chatgin-table th {
        font-size: 0.9em;
    }
    .chatgin-table td {
        font-size: 0.9em;
    }
    .chatgin-table caption {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .chatgin-table th {
        font-size: 0.8em;
    }
    .chatgin-table td {
        font-size: 0.8em;
    }
    .chatgin-table caption {
        font-size: 0.875em;
    }
}

/* img */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
/* blockquote */
blockquote {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px !important;
    padding: 20px;
		color: #000000;
    font-size: 0.8em !important;
    background-color: #faf7c3;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    border-top: 4px solid #ff0000;
    border-left: 4px solid #4CAF50;
    border-right: 4px solid #FFDD57;
    border-bottom: 4px solid #007BFF;
}
blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    z-index: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}
blockquote:hover::before {
    transform: translateX(100%);
}
blockquote p, blockquote footer {
    position: relative;
    z-index: 1;
    margin-bottom: 5px;
    font-style: italic;
    font-size: 0.7em !important;
    color: #000000 !important;
    transition: color 0.5s ease-in-out;
}
blockquote footer {
    font-size: 0.8em;
    color: rgb(132, 67, 7);
    text-align: right;
}
blockquote:hover p, blockquote:hover footer {
    color: #ffffff !important;
}
/* ALL P*/
p {
    font-family: 'Arial', sans-serif;
    font-size: 0.8em !important;
    line-height: 1.6;
    color: #000000 !important;
    margin: 10px 0;
}
/* chatgin-title */
.chatgin-title {
    font-size: 1em !important;
    color: #000 !important;
    margin-bottom: 0px !important;
		margin-top: 0px !important;
    padding: 20px 5px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    width: auto;
    text-align: center !important;

    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}
.chatgin-title .inner {
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;
}
.chatgin-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background-color: #ff0000;
    z-index: 1;
    border-radius: 2px;
    transition: width 0.3s ease-out, background-color 0.3s ease-out;
}
.chatgin-title:hover::after {
    width: 60%;
    background-color: #0056b3;
}
@media (max-width: 768px) {
    .chatgin-title {
        font-size: 1.2em !important;
    }
}
@media (max-width: 480px) {
    .chatgin-title {
        font-size: 1em !important;
    }
}
/* FAQ*/
.faq-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.chatgin-question {
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
    background-color: #03C75A;
    padding: 10px;
    border-radius: 4px;
}
.chatgin-answer {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.05);
    text-indent: 20px;
}
/* footer */
.footer-wrap {
    background-color: #fff;
    border-top: 1px solid #dedede;
}
#footer {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 30px;
    padding: 10px 20px;
    text-align: center;
}
#footer a {
    color: #000;
    font-size: 1.1em;
    text-decoration: none;
}
.footer-bottom {
    display: flex;
    justify-content: center;
}
ins {
    text-decoration: none;
}
/* 관련 포스트 컨테이너 스타일 */
#related-posts {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25em !important;
    margin-top: 2.5em !important;
    align-items: center !important;
}

#related-posts h2 {
    font-size: 1.5em !important;
    font-weight: bold !important;
    margin-bottom: 1.25em !important;
    text-align: center !important;
    color: black !important;
}
.og-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.25em !important;
    padding: 20px !important;
    width: 95% !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px, rgba(0, 0, 0, 0.06) 0px 2px 4px !important;
    background: rgb(255, 255, 255) !important;
    transition: all 0.3s ease-in-out 0s !important;
    transform: translateY(0px) !important;
    border: 2px solid transparent !important;
}
.og-card:nth-child(1) .og-title {
    color: red !important;
    border-color: red !important;
}
.og-card:nth-child(2) .og-title {
    color: orange !important;
    border-color: orange !important;
}
.og-card:nth-child(3) .og-title {
    color: yellow !important;
    border-color: yellow !important;
}
.og-card .img-wrapper {
    flex-basis: 30% !important;
    max-width: 30% !important;
    max-height: 150px !important;
    overflow: hidden !important;
}
.og-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 5px !important;
    transition: transform 0.3s ease !important;
}
.og-card:hover img {
    transform: scale(1.05) !important;
}
.og-card .og-text {
    text-align: left !important;
    flex-basis: 70% !important;
}
.og-card .og-title {
    font-size: 1em !important;
    font-weight: bold !important;
    margin-bottom: 0.625em !important;
    color: black !important;
}
.og-card .og-desc {
    font-size: 0.8em !important;
    line-height: 1.4 !important;
    margin-bottom: 0.625em !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color: black !important;
}
.og-card .og-host {
    font-size: 0.75em !important;
    color: rgb(136, 136, 136) !important;
}
@media (max-width: 768px) {
    .og-card {
        flex-direction: column !important;
        text-align: center !important;
				width: 90% !important;
    }

    .og-card .img-wrapper {
        max-width: 100% !important;
        max-height: 200px !important;
				width: 90% !important;
    }

    .og-card .og-text {
        flex-basis: 100% !important;
				width: 90% !important;
    }
}
@charset "UTF-8";

/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, textarea, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
  outline: none
}

fieldset, img {
  border: 0 none
}

dl, ul, ol, menu, li {
  list-style: none
}

blockquote, q {
  quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none
}

input, select, textarea, button {
  vertical-align: middle
}

input::-ms-clear {
  display: none
}

button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer
}

body {
  background: #fff
}

body, th, td, input, select, textarea, button {
  font-size: 14px;
  line-height: 1.5;
  font-family: Pretendard-Regular, sans-serif;
  color: #666
}

/* color값은 디자인가이드에 맞게사용 */
a {
  color: #333;
  text-decoration: none
}

a:active, a:hover {
  text-decoration: underline
}

a:active {
  background-color: transparent
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal
}

#tistorytoolbarid {
  display: none
}

/* global */
#dkIndex {
  overflow: hidden;
  position: absolute;
  left: -9999px;
  width: 0;
  height: 1px;
  margin: 0;
  padding: 0
}

/* 스킵네비게이션 */
.ir_pm {
  display: block;
  overflow: hidden;
  font-size: 0px;
  line-height: 0;
  text-indent: -9999px
}

/* 사용된 이미지내 의미있는 텍스트의 대체텍스트를 제공할때 */
.ir_wa {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%
}

/* 중요한 이미지 대체텍스트로 이미지off시에도 대체 텍스트를 보여주고자 할때 */
.screen_out {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0;
  text-indent: -9999px
}

/* 대체텍스트가 아닌 접근성을 위한 숨김텍스트를 제공할때 */
.show {
  display: block
}

.hide {
  display: none
}

.emph_t {
  color: #3db39e
}

.cont_skin {
  margin-top: 80px
}

.article_skin {
  width: 820px;
  margin: 0 auto
}

.txt_bar {
  display: inline-block;
  width: 1px;
  height: 9px;
  margin: 0 5px;
  background-color: #ebebeb
}

.img_profile {
  float: left;
  margin-right: 16px;
  border-radius: 50px
}

.ico_focused {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px
}

/* 공통이미지 */
.ico_skin {
  display: inline-block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background: url("images/ico_skin.gif") 0 0 no-repeat;
  text-indent: -9999px
}

/* 헤더 */
.wrap_skin {
  position: relative
}

.area_head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid #ebebeb;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .95)
}

.area_head:after {
  display: block;
  visibility: hidden;
  height: 0;
  font-size: 0;
  clear: both;
  content: ''
}

.area_head .area_profile {
  position: relative;
  float: left;
  padding: 15px 0 0 30px
}

.area_head .area_profile .link_profile {
  float: left
}

.area_head .area_profile .info_profile {
  float: left;
  max-width: 270px
}

.area_head .btn_name {
  margin-top: 5px;
  font-weight: bold;
  margin-bottom: 2px
}

.area_head .ico_name {
  width: 10px;
  height: 6px;
  margin: 7px 0 0 6px;
  vertical-align: top
}

.area_head .txt_condition {
  width: 100%;
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden
}

.area_head .list_name {
  display: none;
  position: absolute;
  top: 44px;
  left: 92px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  background-color: #fff
}

.area_head .on .list_name {
  display: block;
  width: 112px;
  padding-top: 13px;
  padding-bottom: 2px
}

.area_head .on .ico_name {
  background-position: 0 -632px;
}

.area_head .link_name {
  display: block;
  padding-left: 15px;
  margin-bottom: 7px;
  text-decoration: none;
  color: #666
}

.area_head .link_name:hover {
  text-decoration: underline;
  color: #3db39e
}

.area_head .box_division {
  padding-top: 13px;
  border-top: 1px solid #f4f4f4;
  margin-top: 9px
}

.area_menu {
  position: fixed;
  right: 15px;
  top: 21px;
  z-index: 31
}

.area_menu .area_search {
  display: inline-block;
  margin: 0 2px;
  border: 1px solid #ddd;
  border-radius: 3px;
  vertical-align: top
}

.area_menu .on.area_search {
  border: 1px solid #aaa
}

.area_menu .btn_search {
  width: 40px;
  height: 36px
}

.area_menu .on .btn_search {
  display: none
}

.area_menu .ico_search {
  width: 16px;
  height: 16px;
  margin-top: -1px;
  background-position: 0 -25px;
  vertical-align: middle
}

.area_menu .frm_search {
  display: none;
  overflow: hidden;
  width: 210px;
  height: 36px
}

.area_menu .on .frm_search {
  display: block
}

.area_menu .lab_search {
  float: left;
  width: 16px;
  height: 16px;
  margin: 10px 9px 0 12px;
  background-position: 0 -400px
}

.area_menu .tf_search {
  float: left;
  width: 150px;
  margin-top: 9px;
  border: 0 none;
  vertical-align: top;
  color: #333
}

.area_menu .area_navi {
  display: inline-block;
  position: relative;
  margin: 0 2px 0 3px
}

.area_menu .btn_cate {
  width: 160px;
  height: 38px;
  border: 1px solid #3db39e;
  border-radius: 3px;
  font-weight: bold;
  font-size: 12px;
  line-height: 38px;
  color: #3db39e;
  padding: 0 1px 0 5px
}

.btn_close {
  display: none
}

.area_menu .ico_cate {
  width: 10px;
  height: 6px;
  margin: -2px 0 0 53px;
  background-position: 0 -50px;
  vertical-align: middle
}

.area_menu .list_cate {
  display: none;
  position: absolute;
  top: 37px;
  left: 0;
  width: 158px;
  padding: 18px 0 10px;
  border: 1px solid #3db39e;
  border-radius: 0 0 3px 3px;
  background-color: #fff
}

.area_menu .on .list_cate {
  display: block
}

.area_menu .on .ico_cate {
  background-position: 0 -658px;
}

.area_menu .link_cate {
  display: block;
  padding-left: 17px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #333
}

.area_navi .list_cate ul li {
  line-height: 18px
}

.area_navi .list_cate ul li a {
  display: block;
  padding-left: 17px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #333;
  height: 17px
}

.area_navi .list_cate ul li.selected>a,
.area_navi .list_cate ul li a:hover {
  text-decoration: underline;
  color: #3db39e
}

.area_navi .list_cate .c_cnt, .area_navi .list_cate img {
  display: none
}

.area_navi .list_cate ul li ul li ul {
  padding-bottom: 6px;
  margin-top: -6px
}

.area_navi .list_cate ul li ul li ul li {
  color: #b4b4b4;
  padding-left: 21px
}

.area_navi .list_cate ul li ul li ul li a {
  padding-left: 0;
  margin-bottom: 6px;
  font-size: 12px;
  color: #666
}

.area_navi .list_cate ul li ul li ul li a::before {
  content: '· '
}

.area_navi .list_cate .menu_profile {
  display: none
}

.area_list .tit_category {
  position: fixed;
  top: 1px;
  width: 50%;
  left: 25%;
  line-height: 80px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  z-index: 21
}

.tit_category .link_category {
  font-size: 20px;
  font-weight: bold;
  color: #3db39e
}

.tit_category .link_category:hover {
  text-decoration: none
}

.dimmed_layer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 30
}

.area_head .btn_menu {
  display: none
}

/* 푸터 */
.wrap_etc {
  padding-top: 48px;
  padding-bottom: 5px;
  border-top: 1px solid #ebebeb
}

.wrap_etc .inner_aside {
  overflow: hidden;
  width: 820px;
  margin: 0 auto
}

.wrap_etc .box_aside {
  float: left;
  position: relative;
  width: 190px;
  min-height: 135px;
  margin: 0 20px 33px 0
}

.wrap_etc .lst {
  margin-right: 0
}

.wrap_etc .list_board {
  padding-top: 8px
}

.wrap_etc .list_board li {
  margin-bottom: 8px
}

.wrap_etc .link_board {
  display: block;
  overflow: hidden;
  width: 170px;
  font-size: 12px;
  color: #aaa;
  white-space: nowrap;
  text-overflow: ellipsis
}

.wrap_etc .list_total dt {
  font-weight: bold
}

.wrap_etc .list_total dd {
  font-weight: bold;
  font-size: 22px
}

.wrap_etc .list_visitor {
  overflow: hidden;
  margin-top: 8px;
  font-size: 12px
}

.wrap_etc .list_visitor dt {
  float: left;
  color: #aaa
}

.wrap_etc .list_visitor dd {
  float: right;
  color: #aaa
}

.wrap_etc .link_more {
  position: absolute;
  top: 3px;
  right: 10px;
  font-size: 12px;
  text-decoration: underline;
  color: #aaa
}

.wrap_etc .list_tag {
  overflow: hidden;
  margin-top: 10px
}

.wrap_etc .list_tag li {
  float: left
}

.wrap_etc .list_tag .link_tag {
  display: block;
  height: 24px;
  padding: 0 10px;
  margin: 0 6px 6px 0;
  border-radius: 26px;
  font-size: 11px;
  line-height: 26px;
  border: 1px solid #f0f0f0;
  background-color: #f0f0f0;
  color: #999;
  max-width: 65px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.wrap_etc .list_tag .link_tag:hover {
  border: 1px solid #3db39e;
  background-color: #fff;
  text-decoration: none;
  color: #3db39e
}

.tt-calendar {
  width: 176px !important;
  border-collapse: collapse;
  border-spacing: 0;
  margin-left: -8px
}

.tt-calendar .cal_month {
  height: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px
}

.tt-calendar .cal_month a {
  font-weight: bold;
  color: #666
}

.tt-calendar .cal_month a:first-child, .tt-calendar .cal_month a:last-child {
  height: 17px;
  padding: 0 10px;
  vertical-align: top;
  color: #ccc
}

.tt-calendar td, th {
  height: 17px;
  vertical-align: middle;
  width: 14.28%;
  text-align: center;
  font-size: 10px
}

.tt-calendar thead th {
  color: #ccc;
  margin-bottom: 2px
}

.tt-calendar tbody td {
  color: #aaa
}

.tt-calendar tbody td .cal_click {
  font-weight: bold;
  color: #777
}

.wrap_etc .tbl_calendar {
  border-collapse: collapse;
  border-spacing: 0;
  width: 185px;
  margin-top: 5px
}

.wrap_etc .tbl_calendar td {
  height: 17px;
  vertical-align: middle
}

.wrap_etc .col_day {
  width: 14.28%
}

.wrap_etc .tit_week {
  font-weight: normal;
  font-size: 10px;
  text-align: center;
  color: #ccc
}

.wrap_etc .link_day {
  display: block;
  font-size: 10px;
  text-align: center;
  color: #aaa
}

.wrap_etc .day_event {
  font-weight: bold;
  color: #777
}

.wrap_etc .list_keep {
  margin-top: 10px
}

.wrap_etc .list_keep li {
  overflow: hidden;
  margin-bottom: 8px;
  font-size: 12px;
  color: #aaa
}

.wrap_etc .link_keep {
  font-size: 12px;
  color: #aaa
}

.area_foot {
  height: 50px;
  font-size: 12px;
  line-height: 50px;
  text-align: center;
  background-color: #f0f0f0;
  color: #aaa
}

/* 페이징 */
.area_paging_simple {
  display: none
}

.area_paging {
  margin: 30px 0 93px;
  text-align: center
}

.area_paging .inner_paging {
  display: inline-block;
  overflow: hidden
}

.area_paging .ico_skin {
  float: left;
  width: 24px;
  height: 24px;
  margin-top: 6px
}

.area_paging .li_prev {
  margin-right: 20px;
  background-position: 0 -100px
}

.area_paging .link_prev {
  margin-right: 20px;
  background-position: 0 -100px
}

.area_paging .link_next {
  margin-left: 20px;
  background-position: 0 -150px
}

.area_paging .no-more-prev {
  background-position: 0 -75px
}

.area_paging .no-more-next {
  background-position: 0 -125px
}

.area_paging .interword {
  float: left;
  padding: 6px 12px 0
}

.area_paging .link_page {
  float: left
}

.area_paging .link_page span {
  display: block;
  padding: 9px 14px 5px;
  color: #666
}

.area_paging .link_page span.selected {
  border-radius: 3px;
  background-color: #3db39e;
  color: #fff;
  font-weight: bold;
  padding: 8px 14px 6px;
}

/* 뷰 */
.skin_view .area_title {
  margin-bottom: 29px;
  padding: 68px 0 45px;
  border-bottom: 1px solid #ebebeb;
  text-align: center
}

.skin_view .area_title a {
  text-decoration: none
}

.skin_view .tit_category a {
  font-weight: bold;
  color: #3db39e
}

.skin_view .tit_post {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.skin_view .tit_post a {
  color: #000
}

.skin_view .txt_detail {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa
}

.skin_view .txt_detail .txt_bar {
  margin: 0 7px 0 5px;
}

.skin_view .txt_detail .my_edit {
  display: none
}

.skin_view .my_post .my_edit {
  display: inline-block
}

.skin_view .link_detail {
  font-size: 12px;
  color: #aaa
}

.skin_view .link_detail:hover {
  text-decoration: none
}

.skin_view .area_view {
  padding: 20px 0;
  font-size: 16px;
}

.skin_view .area_view p {
  font-size: 16px;
  line-height: 28px;
}

.skin_view .area_view a {
  color: #3db39e
}

.skin_view .area_view h1,
.skin_view .area_view h2,
.skin_view .area_view h3,
.skin_view .area_view h4 {
  line-height: 1.2em;
  margin: 1.5em auto 1em
}

.skin_view .area_view h1 {
  font-size: 28px;
}

.skin_view .area_view h2 {
  font-size: 24px;
}

.skin_view .area_view h3 {
  font-size: 20px;
}

.skin_view .area_view h4 {
  font-size: 16px;
}

.skin_view .area_view ul,
.skin_view .area_view ol {
  margin: 0 auto 32px;
  padding: 0 0 0 10px;
}

.skin_view .area_view ul li,
.skin_view .area_view ol li {
  margin-left: 24px;
  margin-bottom: 10px;
}

.skin_view .area_view ul li {
  list-style: disc
}

.skin_view .area_view ol li {
  list-style: decimal
}

.skin_view .area_view blockquote {
  padding: 10px 20px;
  margin: 0 auto 28px;
  border-left: 5px solid #eee
}

.skin_view .area_view blockquote,
.skin_view .area_view blockquote p {
  font-size: 18px;
  line-height: 30px
}

.skin_view .area_view blockquote ol:last-child,
.skin_view .area_view blockquote ul:last-child,
.skin_view .area_view blockquote p:last-child {
  margin-bottom: 0
}

.skin_view .area_view pre {
  background-color: #F6F7F8;
  margin: 28px auto;
  word-wrap: break-word;
  font-family: Menlo, Consolas, Monaco, monospace;
  font-size: 14px;
  line-height: 20px
}

.skin_view .area_view pre code.hljs {
  padding: 16px;
}

.skin_view .area_view iframe {
  max-width: 100%
}

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

.skin_view .area_view .imageblock {
  width: auto !important;
  height: auto !important
}

.skin_view .area_view .protected_form {
  text-align: center;
  padding: 100px 0 150px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: -20px
}

.skin_view .area_view .protected_form input {
  -webkit-appearance: none;
  padding: 0 15px;
  border: 1px solid #eee;
  height: 38px;
  line-height: 38px;
  font-size: 12px;
  box-sizing: border-box;
}

.skin_view .area_view .protected_form button {
  border-radius: 4px;
  font-size: 12px;
  line-height: 38px;
  background-color: #3db39e;
  color: #fff;
  font-weight: bold;
  padding: 0 16px
}

.skin_view .area_etc {
  overflow: hidden;
  min-height: 29px;
  margin-top: 20px
}

.skin_view .area_etc .list_tag {
  float: left;
  margin-top: 5px;
  font-weight: bold;
}

.skin_view .list_tag .tit_tag {
  float: left;
  margin-right: 8px;
  font-weight: bold;
  font-size: 12px;
  color: #3db39e
}

.skin_view .list_tag .desc_tag {
  float: left;
  margin-right: 2px;
  font-weight: bold;
  font-size: 12px;
  color: #aaa;
  max-width: 630px
}

.skin_view .list_tag .desc_tag a {
  color: #aaa
}

.skin_view .list_tag .link_tag {
  font-weight: bold;
  font-size: 12px;
  color: #aaa
}

.skin_view .list_tag .link_tag:hover {
  text-decoration: none
}

.skin_view .another_category {
  overflow: hidden;
  width: 100%;
  margin: 90px 0 0;
  border: 0;
  padding: 0
}

.skin_view .another_category h4 {
  float: left;
  width: 100%;
  padding: 0 0 7px !important;
  border-bottom: 1px solid #eee !important;
  font-weight: normal;
  font-size: 14px !important;
  line-height: 1.5;
  color: #666 !important
}

.skin_view .another_category h4 a {
  color: #3db39e !important;
  font-weight: bold
}

.skin_view .another_category table {
  float: left;
  width: 100%;
  margin-top: 15px !important
}

.skin_view .another_category table tr {
  float: left;
  width: 50%;
  margin-bottom: 8px;
}

.skin_view .another_category table tr:nth-child(even) th {
  padding-left: 10px !important
}

.skin_view .another_category table th {
  width: 100%;
  font-size: 12px;
  color: #aaa;
  padding: 0 !important
}

.skin_view .another_category table th a {
  overflow: hidden;
  max-width: 255px;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #666 !important;
  border: 0 !important;
  display: inline-block;
  float: left
}

.skin_view .another_category table th a.current {
  text-decoration: underline !important
}

.skin_view .another_category table th span {
  font-size: 12px
}

.skin_view .another_category table td {
  display: none
}

/* 댓글영역 */
.skin_view .area_reply {
  margin-top: 40px
}

.area_reply .tit_reply {
  font-weight: normal
}

.area_reply .btn_reply {
  font-weight: bold;
  line-height: 18px;
  color: #3db39e
}

.area_reply .btn_reply .ico_reply {
  width: 8px;
  height: 5px;
  margin: 5px 0 0 3px;
  background-position: 0 -425px;
  vertical-align: top
}

.btn_reply.on .ico_reply {
  background-position: 0 -450px
}

.area_reply .reply_write {
  position: relative;
  margin-top: 5px
}

.area_reply .lab_write {
  position: absolute;
  top: 13px;
  left: 16px;
  font-size: 12px
}

.area_reply .on_box .lab_write {
  display: none
}

.area_reply .tf_reply {
  width: 820px;
  height: 102px;
  padding: 13px 15px 10px;
  border: 1px solid #eee;
  font-size: 12px;
  resize: none;
  box-sizing: border-box
}

.area_reply .reply_writer {
  margin-top: 10px;
  position: relative;
  height: 36px
}

.area_reply .writer_info {
  float: left
}

.area_reply .writer_info .info_name {
  display: inline-block;
  position: relative;
  margin-right: 8px
}

.area_reply .writer_info .info_pw {
  display: inline-block;
  position: relative
}

.area_reply .writer_info .lab_info {
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 12px
}

.area_reply .on_box .lab_info {
  display: none
}

.area_reply .writer_info .inp_info {
  width: 120px;
  height: 36px;
  padding: 0 15px;
  border: 1px solid #eee;
  font-size: 12px;
  box-sizing: border-box
}

.area_reply .writer_info .inp_info::-webkit-input-placeholder {
  padding-top: 2px
}

.area_reply .writer_check {
  position: absolute;
  right: 70px
}

.area_reply .writer_check .check_secret {
  display: inline-block;
  position: relative;
  height: 36px;
  margin-right: 18px;
  line-height: 36px
}

.area_reply .writer_check .inp_secret {
  display: none
}

.area_reply .writer_check .lab_secret {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  cursor: pointer
}

.area_reply .writer_check .ico_check {
  position: absolute;
  top: -2px;
  left: 0;
  width: 16px;
  height: 16px;
  background-position: 0 -500px
}

.area_reply .writer_check .inp_secret:checked+.lab_secret .ico_check {
  background-position: 0 -525px
}

.area_reply .writer_check .inp_secret:focus+.lab_secret .ico_check {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px
}

.area_reply .on .ico_check {
  background-position: 0 -525px
}

.area_reply .writer_btn {
  position: absolute;
  right: 0
}

.area_reply .writer_btn .btn_enter {
  width: 70px;
  height: 36px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 38px;
  background-color: #3db39e;
  color: #fff;
  font-weight: bold
}

.area_reply .btn_replymore {
  display: none;
  width: 100%;
  height: 42px;
  margin-top: 3px;
  border-top: 1px solid #eee;
  font-size: 12px;
  line-height: 44px;
  color: #aaa
}

.on .btn_replymore {
  display: block
}

.area_reply .list_reply {
  margin-bottom: 20px;
  margin-top: 5px;
  border-top: 1px solid #e0e0e0;
}

.on .list_reply {
  display: block;
  margin-bottom: 18px
}

.area_reply .list_reply li.tt_more_preview_comments_wrap {
  padding: 10px 20px
}

.area_reply .list_reply .tt_more_preview_comments_text {
  font-size: 12px;
  color: #aaa
}

.area_reply .list_reply li {
  overflow: hidden;
  position: relative;
  padding: 23px 20px 24px;
  border-bottom: 1px solid #eee
}

.area_reply .list_reply li:hover {
  background-color: #fcfcfc
}

.area_reply .list_reply .my_reply {
  background-color: #fcfcfc
}

.area_reply .list_reply .re_reply {
  padding-left: 86px
}

.area_reply .reply_content {
  float: left
}

.area_reply .list_reply .img_profile {
  margin-top: 2px
}

.area_reply .tit_nickname {
  display: block;
  overflow: hidden;
  max-width: 515px;
  margin: 4px 5px 0 0;
  font-weight: bold;
  color: #333;
  white-space: nowrap
}

.area_reply .my_reply .tit_nickname {
  color: #3db39e
}

.area_reply .tit_nickname:hover {
  text-decoration: none
}

.area_reply .ico_secret {
  width: 10px;
  height: 12px;
  margin-top: 4px;
  background-position: 0 -475px;
  vertical-align: top;
  display: none
}

.area_reply .rp_secret .ico_secret {
  display: inline-block
}

.area_reply .txt_reply {
  display: block;
  width: 704px;
  margin-top: 3px;
  font-size: 12px
}

.area_reply .re_reply .txt_reply {
  display: block;
  width: 627px;
  margin-top: 3px;
  font-size: 12px
}

.area_reply .txt_date {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  color: #aaa
}

.area_reply .btn_replymenu {
  display: none
}

.area_reply .list_reply li .my_edit {
  display: none;
  position: absolute;
  top: 27px;
  right: 16px
}

.area_reply .list_reply li:hover .my_edit {
  display: block
}

.area_reply .my_edit .link_edit {
  margin: 0 2px;
  font-size: 12px;
  color: #3db39e
}

.area_reply .my_edit .link_edit:hover {
  text-decoration: none
}

.area_reply .hiddenComment .tit_nickname {
  display: none
}

.area_reply .hiddenComment .txt_reply {
  font-weight: bold;
  font-size: 14px
}

/* 리스트 */
.list_content {
  padding: 35px 0;
  border-bottom: 1px solid #ebebeb
}

.list_content::after {
  content: '';
  clear: both;
  display: block
}

.list_content .thumbnail_post {
  float: right;
  height: 148px;
  width: 148px;
  margin: 4px 0 4px 30px
}

.list_content .link_post {
  display: block;
  overflow: hidden;
  text-decoration: none
}

.list_content .link_post:hover .tit_post {
  text-decoration: underline;
  color: #3db39e
}

.list_content .tit_post {
  display: block;
  font-weight: normal;
  font-size: 28px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap
}

.list_content .txt_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: box;
  overflow: hidden;
  max-height: 80px;
  margin-top: 1px;
  font-size: 16px;
  line-height: 28px;
  color: #666;
  vertical-align: top;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3
}

.list_content .detail_info {
  margin-top: 16px;
  font-size: 12px;
  color: #aaa;
}

.list_content .detail_info .link_cate {
  font-size: 12px;
  text-decoration: none;
  color: #3db39e
}

/* 방명록 */
.skin_visitor {
  padding-bottom: 40px;
}

.skin_visitor .area-reply {
  padding-top: 40px;
}

.skin_visitor .area_reply .list_reply {
  display: block;
  margin-top: 30px;
  border-top: 1px solid #eee
}

.skin_visitor .area_reply .reply_write {
  margin-top: 32px
}

.skin_visitor .area_reply .ico_secret {
  background-position: 0 -600px
}

/* 태그 */
.skin_tag .list_tag {
  overflow: hidden;
  padding: 30px 0 90px
}

.skin_tag .list_tag li {
  float: left;
  margin: 0 10px 10px 0
}

.skin_tag .link_tag {
  display: block;
  height: 32px;
  padding: 0 13px;
  border-radius: 34px;
  line-height: 34px;
  border: 1px solid #f0f0f0;
  background-color: #f0f0f0;
  font-weight: 100;
  color: #666
}

.skin_tag .link_tag:hover {
  border: 1px solid #3db39e;
  background-color: #fff;
  text-decoration: none;
  color: #3db39e
}

@media only screen and (max-width:820px) {
  body, th, td, input, select, textarea, button, p, span {
    font-family: applesdgothicneo-ultralight;
    font-weight: 100
  }

  .ico_skin {
    background: url("images/ico_skin_320.png") 0 0 no-repeat
  }

  .img_profile {
    width: 40px;
    height: 40px;
    border-radius: 40px
  }

  /* 헤더 */
  .area_head {
    z-index: 20;
    height: 60px
  }

  .area_head .area_profile {
    overflow: hidden;
    float: none;
    padding: 10px 65px 0 15px
  }

  .area_head .area_profile .info_profile {
    max-width: 180px
  }

  .area_head .img_profile {
    margin-right: 8px
  }

  .area_list .tit_category {
    line-height: 60px
  }

  .area_list .tit_category .link_category {
    font-size: 16px;
    font-family: applesdgothicneo-semibold;
    font-weight: bold
  }

  .area_head .on .list_name {
    display: none
  }

  .area_head .btn_name {
    margin-top: 2px;
    color: #333;
    font-family: applesdgothicneo-bold;
    margin-bottom: 0px
  }

  .area_head .ico_name {
    display: none
  }

  .area_head .txt_condition {
    overflow: hidden;
    width: auto;
    line-height: 16px
  }

  .area_menu {
    display: none;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    width: 200px;
    background-color: #fff
  }

  .area_menu .area_search {
    display: none;
    width: 168px;
    height: 30px;
    margin: 15px 0 0 15px;
    border: 1px solid #dcdcdc;
    border-radius: 31px
  }

  .area_menu .frm_search {
    width: 168px;
    height: 30px
  }

  .area_menu .lab_search {
    margin: 8px 0 0 16px;
    background-position: -70px -110px
  }

  .area_menu .tf_search {
    width: 115px;
    margin: 7px 0 3px 8px;
    outline: none
  }

  .dimmed_layer {
    background-color: #000;
    opacity: 0.7
  }

  .area_menu .btn_search {
    display: none
  }

  .area_menu .area_navi {
    display: block;
    position: static;
    margin: 0
  }

  .area_head .btn_menu {
    display: block;
    overflow: hidden;
    position: absolute;
    right: 15px;
    top: 0;
    width: 40px;
    height: 35px;
    margin-top: 13px;
    border: 0 none
  }

  .area_head .ico_menu {
    display: block;
    width: 40px;
    height: 31px;
    margin: 0;
    background-position: 0 -80px;
    text-indent: 0
  }

  .area_menu .btn_cate {
    display: none
  }

  .area_menu .list_cate {
    position: static;
    width: 200px;
    padding: 13px 0 15px;
    border: 0 none;
    border-radius: 0
  }

  .area_navi .list_cate ul li {
    line-height: 18px
  }

  .area_navi .list_cate ul li a {
    margin-bottom: 0;
    padding: 7px 0 15px 30px;
    font-size: 15px;
    line-height: 22px;
    font-family: applesdgothicneo-semibold;
    font-weight: bold
  }

  .area_navi .list_cate ul li ul li a {
    padding: 4px 0 15px 30px
  }

  .area_navi .list_cate ul li ul li ul {
    padding-bottom: 3px;
    margin-top: -3px
  }

  .area_navi .list_cate ul li ul li ul li {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1px
  }

  .area_navi .list_cate ul li ul li ul li a {
    margin-bottom: 0;
    padding: 4px 0 11px 37px;
    font-size: 15px;
    font-family: applesdgothicneo-ultralight;
    font-weight: normal;
  }

  .area_navi .list_cate ul li ul li ul li a::before {
    content: '· '
  }

  .area_navi .list_cate .menu_profile {
    display: block;
    margin-top: 14px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5
  }

  .btn_close {
    position: fixed;
    right: 210px;
    top: 11px;
    width: 30px;
    height: 30px;
    z-index: 31
  }

  .on .btn_close {
    display: block
  }

  .ico_close {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-position: -50px -110px;
    vertical-align: middle
  }

  /* 푸터 */
  .wrap_etc {
    display: none
  }

  .area_foot {
    height: 42px;
    font-size: 11px;
    line-height: 42px;
    color: #999
  }

  .area_foot .emph_t {
    font-weight: bold;
    color: #999;
    font-family: applesdgothicneo-bold
  }

  /* 페이징  */
  .area_paging_list {
    display: none
  }

  .area_paging_simple {
    display: block
  }

  .area_paging {
    padding: 20px 0 10px;
    margin: 0;
    position: static
  }

  .area_paging .inner_paging {
    display: block;
    padding: 0 20px
  }

  .area_paging .inner_paging a {
    display: block;
    line-height: 20px;
    font-size: 15px
  }

  .area_paging .inner_paging a.link_prev {
    float: left
  }

  .area_paging .inner_paging a.link_next {
    float: right
  }

  .area_paging .ico_skin {
    width: 10px;
    height: 18px;
    margin-top: 0
  }

  .area_paging .ico_prev {
    float: left;
    margin-right: 11px;
    background-position: -130px -80px
  }

  .area_paging .ico_next {
    float: right;
    margin-left: 11px;
    background-position: -130px -100px
  }

  .area_paging .no-more-prev,
  .area_paging .no-more-next {
    text-decoration: none;
    color: #999
  }

  .area_paging .no-more-prev .ico_prev {
    background-position: -110px -80px
  }

  .area_paging .no-more-next .ico_next {
    background-position: -110px -100px
  }

  #tt-body-page .area_more {
    display: none
  }

  /* 뷰 */
  .article_skin {
    position: relative;
    width: 100%
  }

  .skin_view .area_title {
    margin: 0 15px;
    padding: 44px 0 20px
  }

  .skin_view .area_title .my_edit {
    display: none
  }

  .skin_view .tit_category {
    font-size: 13px
  }

  .skin_view .tit_category a {
    font-family: applesdgothicneo-semibold;
    font-weight: bold
  }

  .skin_view .tit_post {
    margin-top: 3px;
    padding: 0 8px;
    font-family: applesdgothicneo-semibold;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
  }

  .skin_view .txt_detail {
    margin-top: 18px;
    word-break: break-all
  }

  .skin_view .txt_detail .txt_bar {
    margin: 0 8px
  }

  .skin_view .area_view {
    padding: 22px 15px 22px
  }

  .skin_view .area_view p {
    font-size: 17px;
    line-height: 24px;
    color: #333
  }

  .skin_view .img_view {
    width: 100%;
    height: auto;
    margin: 11px 0 6px
  }

  .skin_view .area_etc {
    position: relative;
    height: auto;
    margin: 0;
  }

  .skin_view .area_etc .list_tag {
    margin-top: 0;
    padding: 0 15px;
    float: none;
    margin-bottom: 22px
  }

  .skin_view .list_tag .tit_tag {
    margin-right: 3px;
    font-family: applesdgothicneo-ultralight;
    font-size: 13px;
    float: none;
    display: inline
  }

  .skin_view .list_tag .desc_tag {
    margin: 0;
    float: none;
    display: inline;
    font-weight: bold;
    font-family: applesdgothicneo-semibold;
  }

  .skin_view .list_tag .link_tag {
    font-weight: normal;
    font-size: 13px
  }

  /* 댓글영역 */
  .skin_view .area_reply {
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #ebebeb
  }

  .area_reply .tit_reply {
    padding-left: 15px;
    color: #333;
    font-family: applesdgothicneo-semibold;
    font-weight: bold;
    display: block;
    padding-bottom: 1px;
  }

  .area_reply .btn_reply {
    margin-top: 0;
    line-height: 20px;
    vertical-align: top;
  }

  .area_reply .btn_reply span {
    font-family: applesdgothicneo-semibold;
    font-weight: bold
  }

  .area_reply .btn_reply .ico_reply {
    margin: 6px 0 0 0px;
    background-position: -150px -80px
  }

  .btn_reply.on .ico_reply {
    background-position: -150px -90px
  }

  .area_reply .list_reply {
    margin-bottom: 0px
  }

  .area_reply .list_reply .tt_more_preview_comments_text {
    font-size: 14px;
    color: #666
  }

  .area_reply .list_reply li {
    overflow: visible;
    padding: 20px 15px 16px;
    border-bottom: 1px solid #efefef
  }

  .area_reply .list_reply li.tt_more_preview_comments_wrap {
    height: 20px
  }

  .area_reply .list_reply li:hover {
    background-color: #fff
  }

  .area_reply .list_reply li:last-child {
    border: 0;
    padding-bottom: 14px
  }

  .area_reply .list_reply .my_reply {
    background-color: #f8f8f8
  }

  .area_reply .list_reply .my_reply:hover {
    background-color: #f8f8f8
  }

  .area_reply .list_reply .re_reply {
    padding-left: 60px
  }

  .area_reply .list_reply .prev_reply:before {
    content: '';
    position: absolute;
    left: 31px;
    top: 48px;
    width: 1px;
    height: 100%;
    background-color: #ccc
  }

  .area_reply .reply_content {
    display: block;
    float: none;
    padding: 0 28px 0 45px
  }

  .area_reply .list_reply .img_profile {
    width: 33px;
    height: 33px;
    border-radius: 33px;
    margin: 0
  }

  .area_reply .list_reply .tit_nickname {
    font-size: 13px;
    overflow: visible;
    margin: 0px 5px 2px 0;
    color: #333;
    vertical-align: top;
    white-space: normal;
    font-family: applesdgothicneo-semibold
  }

  .area_reply .re_reply .tit_nickname {
    color: #3db39e
  }

  .area_reply .reply_secret .tit_nickname {
    margin-top: 0;
    vertical-align: top
  }

  .area_reply .ico_secret, .skin_visitor .area_reply .ico_secret {
    margin-top: 3px;
    background-position: -90px -110px
  }

  .area_reply .txt_reply, .area_reply .re_reply .txt_reply {
    width: 100%;
    margin-top: 0;
    line-height: 20px;
    font-size: 14px;
    color: #333
  }

  .area_reply .txt_date {
    margin-top: 4px
  }

  .area_reply .reply_secret .txt_date {
    margin-top: 0
  }

  .area_reply .btn_replymenu {
    display: block;
    position: absolute;
    right: 2px;
    top: 12px;
    width: 30px;
    height: 30px
  }

  .area_reply .btn_replymenu .ico_replymenu {
    display: inline-block;
    width: 3px;
    height: 13px;
    background-position: -150px -100px;
    vertical-align: middle
  }

  .area_reply .list_reply li .my_edit {
    right: 10px;
    top: 20px;
    z-index: 10;
    width: 95px;
    padding: 10px 0;
    border: 1px solid #dcdcdc;
    background-color: #fff
  }

  .area_reply .list_reply li .my_edit .link_edit {
    display: block;
    font-size: 14px;
    line-height: 32px;
    color: #333;
    text-align: center
  }

  .area_reply .fld_reply {
    padding: 0 15px
  }

  .area_reply .btn_replymore {
    margin-top: 5px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #efefef;
    font-size: 13px;
    color: #666
  }

  .area_reply .reply_write {
    margin-top: 4px;
    padding: 7px 8px;
    border: 1px solid #e0e0e0
  }

  .area_reply .tf_reply {
    width: 100%;
    height: 67px;
    padding: 0;
    border: 0 none;
    font-size: 14px;
    outline: none
  }

  .area_reply .lab_write {
    left: 10px;
    top: 8px;
    font-size: 14px;
    color: #999
  }

  .area_reply .reply_writer {
    margin-top: 8px
  }

  .area_reply .writer_info {
    overflow: hidden;
    float: none;
    width: 100%
  }

  .area_reply .writer_info .info_name {
    display: block;
    float: left;
    width: 50%;
    margin-right: 0
  }

  .area_reply .writer_info .info_pw {
    display: block;
    float: left;
    width: 50%
  }

  .area_reply .writer_info .wrap_info {
    display: block
  }

  .area_reply .info_name .wrap_info {
    margin-right: 5px
  }

  .area_reply .info_pw .wrap_info {
    margin-left: 5px
  }

  .area_reply .writer_info .lab_info {
    left: 11px;
    top: 7px;
    font-size: 14px;
    color: #999
  }

  .area_reply .info_pw .lab_info {
    left: 16px
  }

  .area_reply .writer_info .inp_info {
    width: 100%;
    height: 35px;
    font-size: 14px;
    outline: none;
    padding: 3px 10px 0;
    -webkit-appearance: none;
    border-radius: 0;
    border: 1px solid #e0e0e0;
  }

  .area_reply .writer_info .inp_info::-webkit-input-placeholder {
    padding-top: 0
  }

  .area_reply .writer_check {
    overflow: hidden;
    float: left;
    padding-top: 10px;
    position: inherit;
    right: inherit
  }

  .area_reply .writer_check .check_secret {
    display: block;
    float: left;
    width: 75px;
    height: 33px;
    line-height: 35px
  }

  .area_reply .writer_check .inp_secret {
    width: 75px;
    height: 33px
  }

  .area_reply .writer_check .lab_secret {
    position: static;
    padding-left: 33px;
    font-size: 14px;
    color: #666
  }

  .area_reply .writer_check .ico_check {
    left: 0;
    top: 3px;
    width: 26px;
    height: 26px;
    background-position: -50px -80px
  }

  .area_reply .on .ico_check, .area_reply .writer_check .inp_secret:checked+.lab_secret .ico_check {
    background-position: -80px -80px
  }

  .area_reply .writer_check .inp_secret:checked+.lab_secret {
    font-weight: bold
  }

  .area_reply .writer_btn {
    float: right;
    padding-top: 10px;
    position: inherit;
    right: inherit
  }

  .area_reply .writer_btn .btn_enter {
    width: 62px;
    height: 33px;
    font-size: 15px;
    line-height: 34px;
    padding-top: 1px
  }

  .area_reply .hiddenComment .txt_reply {
    font-family: applesdgothicneo-semibold
  }

  .area_reply .hiddenComment .txt_date {
    margin-top: 0px
  }


  .skin_view .another_category {
    margin: 20px -15px 4px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #eee;
    padding: 23px 0;
    width: auto
  }

  .skin_view .another_category h4 {
    float: none;
    padding: 0 15px !important;
    width: auto;
    border: 0 !important
  }

  .skin_view .another_category table {
    float: none;
    margin-top: 10px !important;
    max-height: 145px;
    overflow: hidden;
    display: block
  }

  .skin_view .another_category table tr {
    width: 100%;
    margin-bottom: 9px;
    padding: 0 15px !important
  }

  .skin_view .another_category table tr:nth-child(even) th {
    padding: 0 !important
  }

  .skin_view .another_category table th {
    font-size: 14px;
    color: #999
  }

  .skin_view .another_category table th a {
    font-size: 15px;
    color: #333 !important;
    max-width: 230px
  }

  .skin_view .another_category table th a.current {
    font-weight: bold;
    font-family: applesdgothicneo-bold
  }

  .skin_view .another_category table th span {
    font-size: 15px;
    display: inline-block;
    font-family: applesdgothicneo-ultralight;
    line-height: 1.5
  }

  .skin_view .area_other {
    position: absolute;
    left: 0;
    bottom: -218px;
    width: 100%;
    height: 178px;
    margin: 0 0 22px;
    padding: 21px 0 0;
    border-top: 1px solid #ebebeb
  }

  .skin_view .tit_other {
    display: block;
    overflow: hidden;
    float: none;
    width: auto;
    padding: 0 15px;
    border-bottom: 0 none;
    white-space: nowrap;
    text-overflow: ellipsis
  }

  .skin_view .list_other {
    float: none;
    width: 100%;
    margin-top: 12px
  }

  .skin_view .list_other li {
    overflow: hidden;
    width: 100%;
    margin-bottom: 9px;
    padding: 0 15px;
    font-size: 14px;
    color: #999
  }

  .skin_view .list_other .link_other {
    font-size: 15px;
    color: #333
  }

  /* 리스트 및 방명록 공통 */
  .cont_skin {
    margin-top: 63px
  }

  #tt-body-search .area_head .btn_name,
  #tt-body-search .area_head .txt_condition,
  #tt-body-tag .area_head .btn_name,
  #tt-body-tag .area_head .txt_condition,
  #tt-body-category .area_head .btn_name,
  #tt-body-category .area_head .txt_condition,
  #tt-body-guestbook .area_head .btn_name,
  #tt-body-guestbook .area_head .txt_condition {
    display: none
  }

  .area_foot {
    margin-top: 21px
  }

  /* 리스트 */
  .list_content {
    max-height: 113px;
    padding: 21px 15px 20px
  }

  .list_content .thumbnail_post,
  .list_content .thumbnail_post img {
    width: 76px;
    height: 76px
  }

  .list_content .thumbnail_post {
    margin: 8px 0 8px 30px
  }

  .list_content .tit_post {
    font-size: 16px;
    font-family: applesdgothicneo-semibold;
    font-weight: bold;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    line-height: 22px;
  }

  .list_content .txt_post {
    max-height: 37px;
    margin-top: 2px;
    font-size: 14px;
    line-height: 19px;
    color: #6b6b6b;
    -webkit-line-clamp: 2
  }

  .list_content .detail_info {
    margin-top: 8px;
    font-size: 13px;
    color: #bbb
  }

  .list_content .detail_info .link_cate {
    font-size: 13px
  }

  .list_content .detail_info .txt_bar {
    margin: 0 5px
  }

  /* 방명록 */
  .skin_visitor .area_reply .fld_reply {
    padding-top: 12px
  }

  .skin_visitor .area_reply .reply_write {
    margin-top: 0
  }

  .skin_visitor .area_reply .reply_writer {
    margin-top: 10px
  }

  .skin_visitor .area_reply .list_reply {
    margin-top: 25px
  }

  .skin_tag .list_tag {
    overflow: hidden;
    padding: 30px 20px 90px
  }

  /* 카테고리 레이어 활성화 */
  .layer_on {
    overflow: hidden
  }

  .layer_on .cont_skin {
    margin-top: 0;
    padding-top: 61px
  }

  .layer_on .dimmed_layer {
    display: block
  }

  .layer_on .area_head .btn_menu {
    display: none
  }

  .layer_on .area_menu {
    display: block
  }

  .layer_on .area_menu .area_search {
    display: block
  }

  .layer_on .area_menu .area_search {
    display: block
  }

  .layer_on .area_menu .frm_search {
    display: block
  }

  .layer_on .area_menu .list_cate {
    display: block
  }

  .layer_on .btn_close {
    display: block
  }
}

@media only screen and (max-width:820px) and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (max-width:820px) and (min-device-pixel-ratio: 1.5),
only screen and (max-width:820px) and (min-resolution: 1.5dppx) {
  .ico_skin {
    background-image: url("images/ico_skin_640.png");
    -webkit-background-size: 160px 160px;
    background-size: 160px 160px
  }
}

@media only screen and (max-width: 800px) {
  .tt-comment-cont {
    padding: 0 15px;
  }
}

.tt-comment-cont .tt-box-total .tt_txt_g {
  font-size: 15px;
}

.tt-comment-cont .tt-box-total .tt_num_g {
  font-size: 15px;
  color: #61B19F;
}

.tt-comment-cont .tt-wrap-cmt .tt-link-user {
  font-size: 15px;
}

.tt-comment-cont .tt-wrap-cmt .tt_desc {
  font-size: 15px;
  color: #666;
}

.tt-comment-cont .tt-txt-mention {
  color: #666;
}

.tt-comment-cont .tt-wrap-cmt .tt_txt_g {
  color: #61B19F;
}

.tt-comment-cont .tt-link-comment .tt_num_g {
  color: #61B19F;
}

.tt-comment-cont .tt-btn_register {
  width: 77px;
  height: 36px;
  background-color: #3DB39E;
  color: #fff;
  border-radius: 4px;
  border-color: #3DB39E;
}

.tt-comment-cont .tt-btn_register:hover {
  background-color: #3DB39E;
  border-color: #3DB39E;
}

.tt-comment-cont .tt-btn_register:focus {
  background-color: #3DB39E;
  border-color: #3DB39E;
}

/* 전체 공통 */
#article-view {
  margin: 0;
  padding: 20px 20px 50px;
  word-wrap: break-word;
  color: #333;
  min-height: 370px;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Apple SD Gothic Neo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

.contents_style>* {
  margin: 20px 0 0 0;
}

/* 텍스트 관련 */
#article-view h2[data-ke-size] {
  font-size: 1.62em;
  line-height: 1.46;
}

#article-view h3[data-ke-size] {
  font-size: 1.44em;
  line-height: 1.48;
}

#article-view h4[data-ke-size] {
  font-size: 1.25em;
  line-height: 1.55;
}

#article-view p[data-ke-size='size18'] {
  font-size: 1.12em;
  line-height: 1.67;
}

#article-view p[data-ke-size='size16'] {
  line-height: 1.75;
}

#article-view p[data-ke-size='size14'] {
  font-size: 0.87em;
  line-height: 1.71;
}

#article-view h2,
#article-view h3,
#article-view h4 {
  font-weight: normal;
  letter-spacing: -1px;
  color: #000;
  margin: 1em 0 20px;
}

#article-view p+p, #article-view p {
  margin-bottom: 30px;
}

#article-view h2+h2,
#article-view h3+h3,
#article-view h4+h4 {
  margin: 0;
}

#article-view h2+h3,
#article-view h2+h4,
#article-view h3+h4 {
  margin-top: 10px;
}

#article-view h2+p,
#article-view h3+p,
#article-view h4+p,
#article-view h5+p,
#article-view h6+p {
  margin-top: 10px;
}

#article-view div[data-ke-type='moreLess'] {
  caret-color: auto;
  background-color: #fafafa;
  padding: 20px 20px 22px;
  margin: 20px 0;
  border: 1px dashed #dddddd;
  color: #333333;
}

#article-view a {
  color: #0070d1;
  text-decoration: underline;
}

#article-view figure[data-ke-type='contentSearch'] a {
  text-decoration: none;
}

/* 인용문 */
#article-view blockquote[data-ke-style='style1'] {
  text-align: center;
  background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/blockquote-style1.svg) no-repeat 50% 0;
  padding: 34px 0 0 0;
  font-size: 1.12em;
  color: #333;
  line-height: 1.67;
  border: 0 none;
  font-family: "Noto Serif KR";
}

#article-view blockquote[data-ke-style='style2'] {
  border-color: #d0d0d0;
  border-width: 0 0 0 4px;
  border-style: solid;
  padding: 1px 0 0 12px;
  color: #666;
  line-height: 1.75;
  font-size: 1em;
  text-align: left;
}

#article-view blockquote[data-ke-style='style3'] {
  border: 1px solid #dddddd;
  background-color: #fcfcfc;
  text-align: left;
  padding: 21px 25px 20px 25px;
  color: #666;
  font-size: 1em;
  line-height: 1.75;
}

#article-view blockquote {
  display: block;
  margin: 20px auto 0;
  letter-spacing: 0px;
}

/* 첨부: 공통 */

/* 이미지 클릭 관련 - lightbox */
#article-view span[data-lightbox] {
  cursor: pointer;
}

/* 첨부: 파일 */
#article-view figure.fileblock {
  width: 470px;
  height: 73px;
  box-sizing: border-box;
  position: relative;
  border-radius: 1px;
  margin-top: 20px;
  margin-bottom: 0px;
  box-shadow: 0 1px 4px 0 rgb(0 0 0 / 7%);
  border: solid 1px rgba(0, 0, 0, 0.1);
}

#article-view figure.fileblock a {
  display: block;
}

#article-view figure.fileblock .image {
  float: left;
  width: 30px;
  height: 30px;
  background-image: url('https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg');
  margin: 22px 17px 21px 22px;
  background-position: 0 0;
}

#article-view figure.fileblock .desc {
  position: absolute;
  left: 70px;
  right: 60px;
  top: 4px;
  bottom: 0;
}

#article-view figure.fileblock .filename {
  color: #333333;
  font-size: 14px;
  text-overflow: ellipsis;
  width: 100%;
  height: 20px;
  margin: 16px 0 0;
}

#article-view figure.fileblock .size {
  font-family: Pretendard-Regular;
  font-size: 12px;
  color: #777;
  height: 16px;
}

#article-view figure[data-ke-align=alignCenter].fileblock {
  margin-left: auto;
  margin-right: auto;
}

#article-view figure[data-ke-align=alignRight].fileblock {
  margin-left: auto;
}

#article-view figure.fileblock .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 272px;
  height: 20px;
  display: block;
}

#article-view figure.fileblock a::after {
  content: '';
  background-image: url('https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg');
  background-position: -40px 0;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 24px;
  top: 19px;
}

/* 첨부: 이미지 */
#article-view figure.imageblock {
  display: table;
  position: relative;
}

#article-view figure.imageblock.alignLeft {
  text-align: left;
}

#article-view figure.imageblock.alignCenter {
  margin: 20px auto 0;
  text-align: center;
}

#article-view figure.imageblock.alignRight {
  text-align: right;
  margin-left: auto;
}

#article-view figure.imageblock.floatLeft {
  float: left;
  margin-right: 20px;
}

#article-view figure.imageblock.floatRight {
  float: right;
  margin-left: 20px;
}

#article-view figure.imageblock.widthContent {
  display: block;
}

#article-view figure.imageblock.widthContent img {
  width: 100%;
}

#article-view figure.imageblock.floatLeft figcaption,
#article-view figure.imageblock.floatRight figcaption {
  text-align: left;
}

#article-view figure.imageblock img {
  display: inline-block;
  max-width: 100%;
  margin: 0;
  height: auto;
}

#article-view iframe,
#article-view figure img,
#article-view figure iframe {
  max-width: 100%;
}

#article-view figure img:not([width]),
#article-view figure iframe:not([width]) {
  width: 100%;
}

#article-view figure {
  max-width: 100%;
  clear: both;
}

#article-view figure img {
  display: inline-block;
}

#article-view figure.imagegridblock+figure.imagegridblock,
#article-view figure.imagegridblock+figure.imageblock,
#article-view figure.imageblock+figure.imagegridblock {
  margin-top: 10px;
}

/* 캡션 텍스트 */
#article-view figure figcaption {
  font-size: 13px;
  color: #777;
  word-break: break-word;
  padding-top: 10px;
  min-height: 20px;
  caption-side: bottom;
  text-align: center;
  caret-color: auto;
  width: 100%;
  box-sizing: content-box;
}

/* 첨부: 이미지 그리드 */
#article-view figure.imagegridblock {
  position: relative;
  caret-color: transparent;
  background-color: transparent;
  width: 100%;
  height: auto;
  margin: 20px 0 0 0;
}

#article-view figure.imagegridblock .image-container {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

#article-view figure.imagegridblock .image-container>span {
  margin-right: 0;
  margin-top: 2px;
}

#article-view figure.imagegridblock img {
  margin: 0;
  height: inherit;
}

#article-view figure.imagegridblock span img {
  width: 100%;
}

hr[data-ke-style],
#article-view hr[data-ke-style] {
  border: none;
  font-size: 0;
  line-height: 0;
  margin: 20px auto 0;
  background: url(https://t1.daumcdn.net/keditor/dist/0.7.21/image/divider-line.svg);
  background-size: 200px 420px;
  cursor: default !important;
}

hr[data-ke-style='style1'],
#article-view hr[data-ke-style='style1'] {
  background-position: center 0;
  width: 64px;
  height: 4px;
  padding: 20px;
}

hr[data-ke-style='style2'],
#article-view hr[data-ke-style='style2'] {
  background-position: center -48px;
  width: 64px;
  height: 3px;
  padding: 20px;
}

hr[data-ke-style='style3'],
#article-view hr[data-ke-style='style3'] {
  background-position: center -96px;
  width: 64px;
  height: 8px;
  padding: 18px 20px;
}

hr[data-ke-style='style4'],
#article-view hr[data-ke-style='style4'] {
  background-position: center -144px;
  width: 2px;
  height: 60px;
  padding: 0 51px;

}

hr[data-ke-style='style4']+hr[data-ke-style='style4'],
#article-view hr[data-ke-style='style4']+hr[data-ke-style='style4'] {
  margin-top: 0;
}

hr[data-ke-style='style5'],
#article-view hr[data-ke-style='style5'] {
  background-position: center -208px;
  background-repeat: repeat-x;
  height: 2px;
  padding: 21px 0;
}

hr[data-ke-style='style6'],
#article-view hr[data-ke-style='style6'] {
  background-position: center -256px;
  background-repeat: repeat-x;
  height: 2px;
  padding: 21px 0;
}

hr[data-ke-style='style7'],
#article-view hr[data-ke-style='style7'] {
  background-position: center -304px;
  width: 200px;
  height: 19px;
  padding: 18px 20px 17px 20px;
}

hr[data-ke-style='style8'],
#article-view hr[data-ke-style='style8'] {
  background-position: center -362px;
  width: 200px;
  height: 19px;
  padding: 18px 20px 17px 20px;
}

/* 테이블 */
#article-view table[data-ke-style] {
  margin-bottom: 0px;
}

#article-view table {
  margin-bottom: 0px;
  border-color: #ddd;
}

#article-view table tbody tr {
  box-sizing: content-box;
}

#article-view table td {
  word-break: break-word;
  padding: 8px;
  font-size: 15px;
  line-height: normal;
  color: #333;
}

#article-view table[data-ke-style='style1'] tr:first-child td {
  border-bottom: 1px solid #6ed3d8;
}

#article-view table[data-ke-style='style2'] tr:first-child td {
  border-bottom: 1px solid #008300;
}

#article-view table[data-ke-style='style3'] tr:first-child td {
  border-bottom: 1px solid #006dbe;
}

#article-view table[data-ke-style='style4'] tr:nth-child(2n) td {
  background-color: #f9f9f9;
}

#article-view table[data-ke-style='style5'] tr:nth-child(2n) td {
  background-color: #f8fbfb;
}

#article-view table[data-ke-style='style6'] tr:nth-child(2n) td {
  background-color: #f5f7f5;
}

#article-view table[data-ke-style='style7'] tr:nth-child(2n) td {
  background-color: #f6f8fb;
}

#article-view table[data-ke-style='style8'] tr:first-child td {
  border-bottom: 2px solid #797979;
}

#article-view table[data-ke-style='style8'] {
  border-left: 0 none;
  border-right: 0 none;
}

#article-view table[data-ke-style='style8'] td {
  border-right-color: transparent;
  border-left-color: transparent;
}

#article-view table[data-ke-style='style9'] tr:first-child td {
  border-bottom: 2px solid #6ed3d8;
}

#article-view table[data-ke-style='style9'] {
  border-left: 0 none;
  border-right: 0 none;
}

#article-view table[data-ke-style='style9'] td {
  border-right-color: transparent;
  border-left-color: transparent;
}

#article-view table[data-ke-style='style10'] tr:first-child td {
  border-bottom: 2px solid #008300;
}

#article-view table[data-ke-style='style10'] {
  border-left: 0 none;
  border-right: 0 none;
}

#article-view table[data-ke-style='style10'] td {
  border-right-color: transparent;
  border-left-color: transparent;
}

#article-view table[data-ke-style='style11'] tr:first-child td {
  border-bottom: 2px solid #2780d4;
}

#article-view table[data-ke-style='style11'] {
  border-left: 0 none;
  border-right: 0 none;
}

#article-view table[data-ke-style='style11'] td {
  border-right-color: transparent;
  border-left-color: transparent;
}

#article-view table[data-ke-style='style12'] tr:nth-child(odd) td {
  background-color: #f9f9f9;
}

#article-view table[data-ke-style='style12'] tr td:first-child {
  background-color: #efefef;
}

#article-view table[data-ke-style='style12'] tr:first-child td {
  background-color: #9b9b9b;
  border: 1px solid #888;
  color: #fff;
}

#article-view table[data-ke-style='style13'] tr:nth-child(odd) td {
  background-color: #f9f9f9;
}

#article-view table[data-ke-style='style13'] tr td:first-child {
  background-color: #efefef;
}

#article-view table[data-ke-style='style13'] tr:first-child td {
  background-color: #6ed3d8;
  border: 1px solid #5cbcc1;
  color: #fff;
}

#article-view table[data-ke-style='style14'] tr:nth-child(odd) td {
  background-color: #f9f9f9;
}

#article-view table[data-ke-style='style14'] tr td:first-child {
  background-color: #efefef;
}

#article-view table[data-ke-style='style14'] tr:first-child td {
  background-color: #008300;
  border: 1px solid #006d00;
  color: #fff;
}

#article-view table[data-ke-style='style15'] tr:nth-child(odd) td {
  background-color: #f9f9f9;
}

#article-view table[data-ke-style='style15'] tr td:first-child {
  background-color: #efefef;
}

#article-view table[data-ke-style='style15'] tr:first-child td {
  background-color: #2780d4;
  border: 1px solid #1568b7;
  color: #fff;
}

#article-view table[data-ke-style='style16'],
#article-view table[data-ke-style='style16'] tr,
#article-view table[data-ke-style='style16'] tr td {
  border-color: transparent;
}

/* 오픈 그래프 */
#article-view figure[data-ke-type='opengraph'] {
  margin: 10px 0;
}

#article-view figure[data-ke-type='opengraph'] a {
  box-sizing: initial;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.07);
  border: solid 1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #000;
}

#article-view figure[data-ke-type='opengraph'] a:hover {
  opacity: 1;
}

#article-view figure[data-ke-type='opengraph'] div.og-image {
  border-right: solid 1px rgba(0, 0, 0, 0.06);
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
}

#article-view figure[data-ke-type='opengraph'] div.og-image button {
  display: none;
}

#article-view figure[data-ke-type='opengraph']:hover div.og-image button {
  cursor: pointer;
  border: none;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #000;
  width: 15px;
  height: 15px;
}

#article-view figure[data-ke-type='opengraph'] p.og-title {
  color: #000000;
  font-size: 22px;
  padding-bottom: 10px;
  max-width: 467px;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0px;
  overflow: hidden;
  font-family: Pretendard-Regular;
}

#article-view figure[data-ke-type='opengraph'] .og-desc {
  margin: 0px;
  max-width: 467px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-family: Pretendard-Regular;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #909090;
  max-height: 42px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}

@media (max-width: 600px) {
  #article-view figure[data-ke-type='opengraph'] a {
    height: 90px;
  }

  #article-view figure[data-ke-type='opengraph'] a::before {
    left: 44px;
  }

  #article-view figure[data-ke-type='opengraph'] div.og-image {
    width: 90px;
    height: 90px;
  }

  #article-view figure[data-ke-type='opengraph'] div.og-text {
    padding: 13px 12px 0 20px;
    height: 90px;
  }

  #article-view figure[data-ke-type='opengraph'] div.og-text p.og-title {
    font-size: 16px;
    -webkit-line-clamp: 1;
  }

  #article-view figure[data-ke-type='opengraph'] div.og-text p.og-desc {
    display: none;
  }

  #article-view figure[data-ke-type='opengraph'] div.og-text p.og-host {
    bottom: 10px;
  }
}

/* 비디오 첨부 */
#article-view figure[data-ke-type='video'] {
  display: block;
  table-layout: fixed;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: #bdbdbd;
  font-size: 16px;
  line-height: 30px;
}

#article-view figure[data-ke-type='video'][data-ke-style='alignLeft'] {
  text-align: left;
}

#article-view figure[data-ke-type='video'][data-ke-style='alignCenter'] {
  margin: 20px auto 0;
  text-align: center;
}

#article-view figure[data-ke-type='video'][data-ke-style='alignRight'] {
  text-align: right;
  margin-left: auto;
}

#article-view figure[data-ke-type='video'] img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

#article-view figure[data-ke-type='video'][data-video-host] iframe {
  margin: 0px;
  display: block;
}

#article-view figure[data-ke-type='video']>iframe[width='0'][height='0'] {
  width: 860px;
  height: 484px;
  max-width: 100%;
}

/* 코드 블럭 */
#article-view pre code.hljs {
  font-size: 14px;
  padding: 20px;
  font-family: SF Mono, Menlo, Consolas, Monaco, monospace;
  border: solid 1px #ebebeb;
  line-height: 1.71;
  overflow: auto;
}

/* 접은 글 */
#article-view .moreless-content :first-child {
  margin-top: 0;
  margin-bottom: 0;
}

#article-view div[data-ke-type='moreLess'] .moreless-content {
  display: none;
}

#article-view div[data-ke-type='moreLess'].open .moreless-content {
  display: block;
}

#article-view div[data-ke-type='moreLess'] .btn-toggle-moreless {
  color: #909090;
  font-size: 16px;
  line-height: 26px;
  font-family: Pretendard-Regular, sans-serif;
  cursor: pointer;
  text-decoration: none;
}

/* 리스트 */
#article-view ul li,
#article-view ol li {
  margin: 0 0 3px 22px;
  line-height: 1.7;
}

#article-view ul,
#article-view ol {
  margin: 14px auto 24px;
  padding: 0 0 0 10px;
}

/* 이모티콘 */
#article-view figure[data-ke-type=emoticon][data-ke-align=alignCenter] {
  text-align: center;
}

#article-view figure[data-ke-type=emoticon][data-ke-align=alignLeft] {
  text-align: left;
}

#article-view figure[data-ke-type=emoticon][data-ke-align=alignRight] {
  text-align: right;
}

/* 지도 */
#article-view figure[data-ke-type='map'],
#article-view iframe[data-ke-type='map'] {
  display: block;
  margin: 0 auto;
}

/* 첨부: 이미지 슬라이드 */
#article-view figure.imageslideblock {
  clear: both;
  position: relative;
  font-size: 0;
  outline: 0 none;
}

#article-view figure.imageslideblock .btn {
  display: none;
  outline: none;
}

#article-view figure.imageslideblock.ready .btn {
  display: inline-block;
}

#article-view figure.imageslideblock.ready .mark {
  opacity: 1;
}

#article-view figure.imageslideblock div.image-container {
  position: relative;
  min-width: 480px;
  max-width: 100%;
  min-height: 300px;
  max-height: 860px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

#article-view figure.imageslideblock div.image-container span.image-wrap {
  display: none;
}

#article-view figure.imageslideblock div.image-container span.image-wrap.selected {
  display: inline;
}

#article-view figure.imageslideblock div.image-container img {
  max-width: 100%;
  max-height: 100%;
}

#article-view figure.imageslideblock div.image-container .btn {
  position: absolute;
  border: 0;
  background: transparent;
  width: 60px;
  height: 60px;
  top: 50%;
  margin-top: -20px;
}

#article-view figure.imageslideblock div.image-container .btn-prev {
  left: 0;
}

#article-view figure.imageslideblock div.image-container .btn-next {
  right: 0;
}

#article-view figure.imageslideblock div.image-container:hover .btn span {
  opacity: 0.3;
}

#article-view figure.imageslideblock div.image-container .btn span {
  background-image: url('https://t1.daumcdn.net/tistory_admin/static/manage/post-editor/img_editor_content.svg');
  text-indent: -10000px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
  display: inline-block;
}

#article-view figure.imageslideblock div.image-container .btn:hover span {
  opacity: 1;
}

#article-view figure.imageslideblock div.image-container .btn .ico-prev {
  background-position: -220px 0;
}

#article-view figure.imageslideblock div.image-container .btn .ico-next {
  background-position: -260px 0;
}

#article-view figure.imageslideblock div.mark {
  display: block;
  height: 44px;
  text-align: center;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
}

#article-view figure.imageslideblock div.mark span {
  width: 30px;
  height: 4px;
  display: inline-block;
  margin: 20px 1px;
  background-color: #d6d6d6;
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
}

#article-view figure.imageslideblock div.mark span:first-child {
  background-color: #000;
  margin-left: 0;
}

#article-view figure.imageslideblock div.mark span:last-child {
  margin-right: 0;
}

#article-view figure.imageslideblock figcaption {
  text-align: center;
  color: #666;
  font-size: 14px;
}

#article-view figure.imageslideblock.alignLeft {
  text-align: left;
}

#article-view figure.imageslideblock.alignCenter {
  margin: 0 auto 20px;
  text-align: center;
}

#article-view figure.imageslideblock.alignRight {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 600px) {
  #article-view figure.imageslideblock div.image-container {
    min-width: 100%;
    width: 100%;
    max-height: 100%;
  }

  #article-view figure.imageslideblock div.image-container .btn span {
    opacity: 0.3;
  }
}

/* 구 에디터 속성 */
.btn_more, .btn_less {
  border: 0;
  background: transparent;
  display: block;
  height: 21px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 14px;
  color: #888;
  position: relative;
  width: 100%;
  text-align: left;
}

.btn_less::before,
.btn_more::before {
  content: "...";
  display: inline-block;
  padding-right: 5px;
  font-size: 14px;
  line-height: 6px;
  vertical-align: top;
}

.box-timeline-content {
  word-break: break-all;
}

/* sparkle 애니메이션 정의 */
@keyframes sparkle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

/* 링크가 있는 사진, 버튼, 카드에 sparkle 애니메이션 적용 */
.detail-image,
.detail-button,
.new2-button,
.new-card {
  animation: sparkle 2.5s infinite alternate;
  border: 2px solid rgba(238, 130, 238, 0.4); /* 연보라색, 투명도 0.4 */
  box-sizing: border-box;
}