@charset "utf-8";

/* 웹폰트 */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR|Righteous');

/* 전체 폰트 */
html,
th,
td,
input,
select,
textarea,
button,
#tt-body-page blockquote,
#tt-body-page blockquote p,
#tt-body-page blockquote[data-ke-style='box'],
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless,
figure figcaption,
figure[data-ke-type='video'] figcaption,
code {
	font-family: 'Calibri', 'Noto Sans KR', sans-serif;
	line-height: 1.7;
	font-size: 12px;
	color: var(--text);
}

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

header,
footer,
section,
article,
aside,
nav,
hgroup,
details,
menu,
figure,
figcaption {
	display: block;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
	overflow: visible;
	cursor: pointer;
}

input[type=text],
input[type=email],
input[type=password],
input[type=submit],
textarea {
	-webkit-appearance: none;
}

input,
select,
textarea,
button {
	font-size: 100%;
	border-radius: 0;
	background: transparent;
	border: 0;
	outline: none;
}

button {
	overflow: visible;
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style: none;
}

img,
fieldset {
	border: none;
	vertical-align: top;
	max-width: 100%;
}

iframe,
embed {
	width: 100%;
}

table .imageblock {
	width: 100% !important;
}

table,
tr,
td {
	border-spacing: 1px 0;
	border-color: var(--text);
}

figure.imageblock, #tt-body-page figure.imageblock {
	display: inline-block;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* 기본 설정 */
body {
	background-color: var(--bg);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

a {
	color: var(--text);
	text-decoration: none;
	transition: color .5s;
	outline: 0;
}

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

/* 입력창 폰트 색상 */
::-webkit-input-placeholder {
	color: var(--text);
}

:-moz-placeholder {
	color: var(--text);
}

::-moz-placeholder {
	color: var(--text);
}

:-ms-input-placeholder {
	color: var(--text);
}

::placeholder {
	color: var(--text);
}

/* 마우스 드래그 블럭 */
::selection {
	color: var(--conbg);
	background: var(--point);
}

::-moz-selection {
	color: var(--conbg);
	background: var(--point);
}

/* 스크롤바 */
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background: transparent;
}

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

/* 전체 박스 */
#container {
	animation: fadein 2000ms ease-out;
	-moz-animation: fadein 2000ms ease-out;
	-webkit-animation: fadein 2000ms ease-out;
	-o-animation: fadein 2000ms ease-out;
	margin: auto;
	padding: 10vh 0 5vh;
}

@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.con-bg {
	border-radius: 20px;
	padding: 15px;
	background-color: var(--conbg);
	margin: 10px 0;
}

.mbtn {
	display: none;
}

/* 헤더 */
#header {
	position: relative;
}

#header .con-bg {
	min-height: 145px;
}

#header .left {
	position: absolute;
	top: 0;
	z-index: 9;
}

#header .right {
	padding-left: 150px;
}

/* 검색창 */
#header .search {
	text-align: right;
	padding-left: 160px;
}

#header .search span {
	background-color: var(--conbg);
	border-radius: 20px;
	overflow: hidden;
	line-height: 1;
	display: inline-block;
	white-space: nowrap;
	max-width: 100%;
}

#header .search input {
	padding: 5px 10px;
	line-height: 1;
	height: 24px;
	width: calc(100% - 35px);
}

#header .search button {
	padding: 5px 10px;
	background-color: var(--point);
	color: var(--conbg);
	line-height: 1;
	height: 24px;
}

/* 로고 */
#header .logo {
	display: inline-block;
	width: 130px;
	height: 130px;
	border-radius: 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}

/* 타이틀 */
#header .title {
	font-size: 1.5rem;
	font-weight: bold;
}

#header .title a {}

#header .title img {
	max-height: 50px;
}

#header .intro {
	font-size: .9rem;
	line-height: 1.4;
	min-height: 47px;
}

/* 카테고리 */
.btnbox {
	background-color: var(--point);
	border-radius: 20px;
	overflow: hidden;
	transition: .5s;
}

.btn {
	text-align: center;
	color: var(--conbg);
	padding: 5px;
	letter-spacing: 2px;
	cursor: pointer;
	transition: .5s;
	font-weight: bold;
}

.btn:hover {
	letter-spacing: 4px;
}

.catebox {
	text-align: center;
	display: none;
	padding-bottom: 5px;
}

.category_list > li,
.catebox .cate {
	transition: background .5s;
}

.blogmenu a,
.cate a,
.link_item,
.link_sub_item {
	color: var(--conbg);
	transition: .5s;
	cursor: pointer;
}

.sub_category_list {
	padding-bottom: 5px;
	font-size: .9rem
}

.blogmenu li:hover,
.category_list > li:hover,
.catebox .cate:hover {
	background-color: var(--conbg);
}

.category_list > li:hover .link_item {
	font-weight: bold;
}

.blogmenu li:hover a,
.category_list > li:hover .link_item,
.category_list > li:hover .link_sub_item,
.cate:hover a {
	color: var(--point);
}

.blogmenu a:hover,
.cate a:hover,
.link_item:hover,
.link_sub_item:hover {
	letter-spacing: 2px;
}

.link_tit {
	display: none;
}

/* sns */
.sns {
	padding-top: 11px;
	cursor: default;
}

.sns a {
	letter-spacing: 5px;
	color: var(--point);
}

.sns a:hover {
	color: inherit;
}

/* 메인 영역 */
#content {}

.myoskin:after {
	display: block;
	clear: both;
	content: '';
	overflow: auto;
}

/* 커버 */
#cover section > .title {
	text-align: center;
	background-color: var(--point);
}

#cover section > .title > p {
	border-radius: 10px;
	display: inline-block;
	color: var(--conbg);
	padding: 0 7px;
	font-weight: bold;
	letter-spacing: 3px;
}

/* 커버 - 슬라이드1 */
#c-slider {
	width: 100%;
	height: 50vh;
	max-height: 500px;
	position: relative;
	overflow: hidden;
}

#c-slider .slider-wrapper li {
	display: none;
	border-radius: 20px;
	overflow: hidden;
}

#c-slider .slider-wrapper .current-slide {
	display: block;
}

#c-slider .slider-wrapper {
	height: 100%;
	position: relative;
}

#c-slider .slider-wrapper .s {
	width: 100%;
	height: 100%;
	background-size: cover !important;
	background-position: center center !important;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#c-slider .control-buttons {
	position: absolute;
	z-index: 1 !important;
	bottom: 1vh;
	left: 50%;
	transform: translateX(-50%);
	line-height: 1;
}

#c-slider .control-buttons li {
	display: inline-block;
	margin: 5px;
	width: 10px;
	height: 10px;
	background: var(--conbg);
	border-radius: 10px;
	opacity: .5;
	transition: .5s;
	cursor: pointer;
}

#c-slider .control-buttons li.active {
	background: var(--point);
	opacity: 1;
	width: 20px;
}

#c-slider .control-buttons li:hover {
	opacity: 1;
	width: 20px;
}

#c-slider .table {
	display: table;
	height: 100%;
	width: 100%;
}

#c-slider .text-box {
	position: relative;
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 100%;
	height: 100%;
}

#c-slider .text-box:after {
	content: '';
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--point);
	opacity: 0.25;
}

#c-slider .text-box .title {
	font-size: 1.3rem;
	line-height: 1;
	color: var(--conbg);
	padding: 5px;
	position: absolute;
	top: 50%;
	transform: translateX(-50%);
	z-index: 1;
	font-weight: bold;
}

/* 커버 - 슬라이더2 */
#c-slider2 > .title {
	margin-top: 0 !important;
}

#c-slider2 a {
	position: relative;
	vertical-align: top;
}

#c-slider2 .slider {
	width: 50%;
	margin: 100px auto;
}

#c-slider2 .slick-slide {
	margin: 0 5px;
	border-radius: 20px;
	overflow: hidden;
	transition: all ease-in-out .5s;
	opacity: .2;
}

#c-slider2 .slick-prev,
#c-slider2 .slick-next {
	display: none !important;
}

#c-slider2 .slick-active {
	opacity: 1;
	transition: all ease-in-out .5s;
}

#c-slider2 .slick-slide .info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	color: var(--conbg);
	opacity: 0;
	z-index: 1;
	transition: .5s;
}

#c-slider2 .slick-slide .title {
	font-weight: bold;
}

#c-slider2 .slick-slide .title:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--point);
	opacity: 0.25;
	z-index: -1;
}

#c-slider2 .slick-slide:hover .info {
	opacity: 1;
}

#c-slider2 .slick-dots {
	text-align: center;
}

#c-slider2 .slick-dots li {
	display: inline;
	margin: 0 5px;
}

#c-slider2 .slick-dots li button {
	font-size: 0;
	line-height: 0;
	width: 10px;
	height: 10px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: var(--point);
	border-radius: 10px;
	transition: .5s;
}

#c-slider2 .slick-dots li.slick-active button,
#c-slider2 .slick-dots li button:hover {
	width: 20px;
}

#c-slider2 .slick-dots li button:hover {
	background-color: var(--text);
}

/* 커버 공지 , 트위터 위젯 */
#c-notice {
	overflow: hidden;
	position: relative;
}

#c-notice .tab {
	border: 1px solid var(--point);
	color: var(--point);
	padding: 0 10px;
	display: inline-block;
	border-radius: 15px;
	transition: .5s;
	cursor: pointer;
}

#c-notice .tab.active {
	background-color: var(--point);
	color: var(--conbg);
	font-size: 1.1rem;
	font-weight: bold;
}

#c-notice .tab:nth-child(2) {
	float: right;
}

#c-notice .title {
	margin-bottom: 15px;
}

#c-notice .textbox img {
	margin-bottom: 15px;
	border-radius: 20px;
}

#c-notice .c-twt {
	height: 40vh;
	max-height: 500px;
	overflow: hidden;
	overflow-x: hidden;
	overflow-y: auto;
}

/* 커버 갤러리2 */
#myo_gal2 .item {
	position: relative;
	float: left;
	width: 32%;
	margin: 0 2% 2% 0;
}

#myo_gal2 .item:nth-child(3n) {
	margin-right: 0;
}

#myo_gal2 .item .thumbox {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

#myo_gal2 .item .thumbox .titlecmt {
	font-size: inherit;
}

#myo_gal2 .item .info {
	text-align: center;
	padding-top: 5px;
}

#myo_gal2 .item .info .title {
	color: var(--point);
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 노이미지 */
.noimg {
	display: none !important;
}

:not(.thum) + .noimg {
	display: inline-block !important;
}

/* 목록 공통 */
.myoskin .item a {
	display: block;
}

.myoskin .item img {
	width: 100%;
}

.myoskin .item .thumbox .titlecmt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	color: var(--conbg);
	font-size: 1.5rem;
	opacity: 0;
	transition: opacity .5s;
	z-index: 1;
}

.myoskin .item .thumbox .titlecmt:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--point);
	opacity: 0.25;
	z-index: -1;
}

.myoskin .item .thumbox .titlecmt i {
	margin-right: 10px;
}

.myoskin .item:hover .thumbox .titlecmt {
	opacity: 1;
}

/* 갤러리형 */
#myo_gal .item:last-child {
	margin-bottom: 0;
}

#myo_gal .item .thumbox {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

#myo_gal .item .info {
	padding-top: 15px;
}

#myo_gal .item .title {
	font-weight: bold;
	font-size: 1.3rem;
	color: var(--point);
}

#myo_gal .item .text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 57px;
}

#myo_gal .item .cate,
#myo_gal .item .date,
#myo_gal .item .info .titlecmt {
	display: none;
}

/* 목록형 */
#myo_bbs .item {}

#myo_bbs .item .info {
	white-space: nowrap;
}

#myo_bbs .item .title {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding-right: 5px;
	max-width: calc(100% - 90px);
	display: inline-block;
	vertical-align: middle;
}

#myo_bbs .item .title:before {
	content: '\f15c';
	width: 20px;
	font-family: fontAwesome;
	display: inline-block;
	color: var(--point);
}

#myo_bbs .item.protected .title:before {
	content: '\f023';
}

#myo_bbs .item .titlecmt {
	color: var(--point);
	vertical-align: middle;
}

#myo_bbs .item .date {
	color: var(--point);
	float: right;
}

#myo_bbs .item .thumbox,
#myo_bbs .item .cate,
#myo_bbs .item .text {
	display: none;
}

/* 웹진형 */
#myo_web .item {
	min-height: 160px;
}

#myo_web .item:last-child {
	margin: 0;
}

#myo_web .item .thumbox {
	float: right;
	width: 130px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}

#myo_web .item .thumbox .titlecmt {
	font-size: inherit;
}

#myo_web .item .info {
	padding-right: 15px;
	width: calc(100% - 130px);
}

#myo_web .item .title {
	font-size: 1.3rem;
	font-weight: bold;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: 52px;
	color: var(--point);
}

#myo_web .item .text {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 77px;
	max-height: 77px;
	margin-bottom: 5px;
}

#myo_web .item .date,
#myo_web .item .cate {
	color: var(--point);
	display: inline-block;
	vertical-align: middle;
}

#myo_web .item .cate:before {
	content: '';
	display: inline-block;
	width: 1px;
	height: 8px;
	background-color: var(--point);
	margin: 0 5px;
}

#myo_web .item .info .titlecmt {
	display: none;
}

/* 보호글 */
.pass {
	width: 100%;
	height: 50vh;
	-ms-display: flexbox;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.pass .protected_form {
	width: 200px;
}

.pass input,
.pass button {
	margin: 5px 0;
	padding: 5px 0;
}

.pass input {
	width: 100%;
	border: 0;
	background: transparent;
}

.pass button {
	width: 100%;
	border: 0;
	letter-spacing: 3px;
	padding: 10px;
	background-color: var(--point);
	color: var(--conbg);
	border-radius: 20px;
}

.pass input[required] + label {
	display: block;
	height: 48px;
	margin-top: -48px;
	margin-bottom: 0;
	pointer-events: none;
	line-height: 1;
}

.pass input[required] + label:before {
	content: attr(placeholder);
	display: inline-block;
	height: 48px;
	line-height: 48px;
	-webkit-transition-duration: .15s;
	transition-duration: .15s;
	color: var(--point);
}

.pass input[required]:focus + label:before,
.pass input[required]:valid + label:before {
	-webkit-transform: translate(0, -24px) scale(1, 1);
	transform: translate(0, -24px) scale(1, 1);
	font-style: italic;
}

/* 본문 타이틀 영역 */
.titlebox {
	text-align: center;
}

.titlebox .cate {
	font-size: .8rem;
	background-color: var(--point);
	color: var(--conbg);
	display: inline-block;
	border-radius: 10px;
	padding: 0 7px;
	margin-bottom: 10px;
}

.titlebox .title {
	font-size: 1.3rem;
	color: var(--point);
}

.titlebox .admin,
.titlebox .date {
	font-size: .8rem;
}

.titlebox .admin a:after {
	content: '';
	display: inline-block;
	height: 7px;
	width: 1px;
	background-color: var(--point);
	margin: 0 5px;
}

/* 본문 */
.text-item {}

.text-item a:before,
.tx-link:before {
	content: "\e62d";
	font-family: 'themify';
	margin-right: 5px;
}

.figure.fileblock a,
#tt-body-page figure.fileblock a:before {
	content: '';
}

.tx-link.imgblock:before {
	display: none;
}

.text-item a {
	color: var(--point);
	transition: .5s;
}

.text-item a:hover {
	letter-spacing: 1px;
}

.text-item ul,
.text-item li {
	list-style: inherit;
}

.text-item ul {
	list-style: disc inside;
}

.text-item ol {
	list-style: inside decimal;
}

.text-item u {
	text-decoration: none;
	position: relative;
	z-index: 1;
}

.text-item u:after {
	position: absolute;
	content: '';
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--point);
	z-index: -1;
}

.text-item .iframe-wrap {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}

.text-item .iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 링크 */
figure[data-ke-type='opengraph'] a,
#tt-body-page figure[data-ke-type='opengraph'] a {
	border-radius: 20px;
	overflow: hidden;
	border-color: var(--point);
}

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,
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 {
	color: var(--point);
}

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 {
	color: var(--text);
}

/* 동영상 */
#tt-body-page figure[data-ke-type='video'][data-video-host] iframe {
	vertical-align: top;
}

/* 이미지, 동영상 설명글 */
#tt-body-page figure figcaption,
#tt-body-pagefigure[data-ke-type='video'] figcaption {
	font-size: .8rem;
	color: var(--point);
}

/* 인용구 */
.tx-quote-tistory:before,
#tt-body-page blockquote[data-ke-style='normal']:before {
	content: "\e67f";
	font-family: 'themify';
	position: absolute;
	left: 0;
	top: 0
}

.tx-quote-tistory,
#tt-body-page blockquote[data-ke-style='normal'] {
	position: relative;
	height: auto;
	padding: 20px 0 0 7%;
	font-style: italic;
	color: var(--point);
}

/* 인용구2 */
#tt-body-page blockquote[data-ke-style='box'] {
	padding: 10px;
	border: 0;
	border-radius: 20px;
	background-color: var(--point);
	color: var(--conbg);
}

#tt-body-page blockquote[data-ke-style='box'] a {
	color: var(--conbg);
}

/* 더보기 */
.moreless_fold span:before,
.moreless_top span:before,
.moreless_bottom span:before,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless:before {
	content: "\f107";
	font-family: 'fontAwesome';
	margin-right: 5px;
}

.moreless_bottom span:before {
	content: "\f106";
}

.moreless_fold span,
.moreless_top span,
.moreless_bottom span,
#tt-body-page div[data-ke-type='moreLess'] .btn-toggle-moreless {
	color: var(--point);
	line-height: 1.3;
	display: inline-block;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: break-word;
}

.moreless_content,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content {
	border-radius: 15px;
	position: relative;
	height: auto;
	margin: 7px auto;
	padding: 10px;
	background-color: var(--point);
	color: var(--conbg);
}

.moreless_content a,
#tt-body-page div[data-ke-type='moreLess'].open .moreless-content a {
	color: var(--conbg);
}

/* 이미지 슬라이드 */
figure.imageslideblock div.image-container {
	width: auto !important;
	max-width: 100%;
	max-height: none;
	min-width: auto;
	min-height: auto;
}

/* 파일 첨부 */
figure.fileblock,
#tt-body-page figure.fileblock {
	background-color: var(--point);
	border-radius: 20px;
	border: 0;
}

figure.fileblock .name,
#tt-body-page figure.fileblock .name {
	color: var(--conbg);
}

figure.fileblock .size,
#tt-body-page figure.fileblock .size {
	color: var(--conbg);
	font-size: .9rem;
}

.article .imageblock > a > img {
	display: none;
}

.article .imageblock > a:before {
	content: "\f019";
	font-family: 'fontAwesome';
	margin-right: 5px;
}

/* 공감 */
.container_postbtn {
	padding: 0 !important;
	margin: 35px 0;
}

.container_postbtn .postbtn_like,
.container_postbtn .btn_menu_toolbar {
	border-color: var(--point) !important;
	color: var(--point) !important;
}

.container_postbtn .btn_post .ico_like {
	margin-right: 0 !important;
}

.container_postbtn .btn_post .txt_like {
	display: none !important;
}

/* 본문 하단 태그 */
.tags {
	color: transparent;
	margin: 35px 0;
}

.tags a {
	color: var(--conbg);
	background-color: var(--point);
	border: 1px solid var(--point);
	padding: 3px 6px;
	border-radius: 10px;
	transition: background .5s;
}

.tags a:hover {
	color: var(--point);
	background-color: transparent;
}

/* 카테고리 글 더보기 */
#more_off {
	display: none;
}

.morebox {
	overflow: hidden;
}

.morebox > .title {
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-align: center;
}

.morebox > .title span {
	font-weight: bold;
	background-color: var(--point);
	color: var(--conbg);
	display: inline-block;
	padding: 0 7px;
	border-radius: 10px;
}

.morebox:after {
	content: '';
	display: block;
	clear: both;
	overflow: hidden;
}

.morebox a {
	display: block;
}

/* 카테고리 글 더보기 갤러리형 */
#more_gal > ul {
	display: grid;
	display: -ms-grid;
	-ms-grid-columns: 23.5% 2% 23.5% 2% 23.5% 2% 23.5%;
	-ms-grid-rows: 23.5% 2% 23.5% 2% 23.5% 2% 23.5%;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
}

#more_gal .more-item {
	overflow: hidden;
}

#more_gal .more-item:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

#more_gal .more-item:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

#more_gal .more-item:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}

#more_gal .more-item:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}

#more_gal .more-item .thumbox {
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

#more_gal .more-item .thumbox:after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	background-color: var(--point);
	opacity: 0;
	transition: .5s;
}

#more_gal .more-item:hover .thumbox:after {
	opacity: 0.25;
}

#more_gal .more-item img {
	width: 100%;
}

#more_gal .more-item .title {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-weight: bold;
	color: var(--point);
	text-align: center;
	padding: 0 5px;
	margin-top: 3px;
}

#more_gal .more-item .date {
	display: none;
}

/* 카테고리 글 더보기 목록형 */
#more_bbs .more-item {
	margin-bottom: 10px;
}

#more_bbs .more-item:last-child {
	margin-bottom: 0;
}

#more_bbs .more-item .info {
	display: flex;
}

#more_bbs .more-item .title {
	flex-grow: 1;
	padding-right: 10px;
}

#more_bbs .more-item .date {
	color: var(--point);
}

#more_bbs .more-item .thumbox {
	display: none;
}

/* 댓글 오픈 */
.opencmt {
	font-size: 1.5rem;
}

.opencmt span {
	color: var(--point);
}

/* 댓글, 방명록 작성 */
#tt-body-guestbook .write {
	margin-top: 0;
}

.write textarea {
	color: var(--conbg);
	background-color: var(--point);
	border-radius: 15px;
	width: calc(100% - 25%);
	min-width: calc(100% - 25%);
	max-width: calc(100% - 25%);
	height: 100px;
	min-height: 100px;
	padding: 7px;
}

.write button {
	width: 23%;
	height: 100px;
	background-color: var(--point);
	border-radius: 15px;
	float: right;
	color: var(--conbg);
	transition: .5s;
}

.write button:hover {
	color: inherit;
}

.write .input,
.write .secret {
	margin-top: 3px;
	display: inline-block;
}

.write input {
	padding: 2px 0;
	max-width: 40%;
}

.write .secret {
	display: inline-block;
	float: right;
	margin-right: 10px;
}

.write .secret input {
	display: none;
}

.write input + label:after {
	content: "\f13e";
	font-family: 'fontAwesome';
}

.write input:checked + label:after {
	content: "\f023";
	font-family: 'fontAwesome';
	color: var(--point);
}

/* 댓글, 방명록 목록 */
.lst a {
	color: var(--point);
}

.lst a:hover {
	color: inherit;
}

.lst li {
	position: relative;
}

.lst .name {
	font-weight: bold;
	font-size: 1.1rem;
}

.lst .date {
	float: right;
	font-size: .8rem;
	color: var(--point);
}

.lst .date a {
	float: left;
	margin-right: 10px;
	visibility: hidden;
}

.lst .date a:after {
	content: '\f05e';
	font-family: fontAwesome;
	visibility: visible;
}

.lst .text {
	margin: 4px 0;
}

.lst .admin a {
	margin-right: 15px;
}

.lst .admin a span {
	font-size: .8rem;
}

.lst .reply {
	margin-top: 15px;
}

.lst .rp_admin .text,
.lst .guest_admin .text {
	background-color: var(--point);
	color: var(--conbg);
	padding: 7px 10px;
	border-radius: 20px;
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before,
.lst .rp_secret .name:before,
.lst .guest_secret .name:before,
.lst .hiddenComment .name:before {
	font-family: 'fontAwesome';
	margin-right: 3px;
}

.lst .rp_secret .name:before,
.lst .guest_secret .name:before,
.lst .hiddenComment .name:before {
	content: "\f023";
}

.lst .rp_admin .name:before,
.lst .guest_admin .name:before {
	content: '\f005';
	color: var(--point);
}

.lst .name img {
	display: none;
}

/* 프로필 사진 */
.profile .lst .name img,
.profile .lst .nopro {
	display: inline-block;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	border-radius: 20px;
}

.profile .lst .guest,
.profile .lst .reply {
	padding-left: 65px;
}

.profile .lst .nopro {
	background-color: var(--point);
}

/* 공지 */
.noti a {
	color: var(--point);
}

.noti a:hover {
	color: inherit;
}

.noti .title {
	color: var(--point);
	font-size: 1.3rem;
	font-weight: bold;
}

.noti .text {
	margin: 7px 0;
}

#tt-body-index .container_postbtn {
	margin: 20px 0 0;
}

/* 페이지네이션 */
.pagination {
	cursor: default;
	text-align: center;
	margin-top: 10px;
}

.pagination a span,
.pagination .prev,
.pagination .next {
	margin: 0 3px;
	display: inline-block;
	background-color: var(--point);
	border-radius: 30px;
	width: 12px;
	height: 12px;
	vertical-align: middle;
	line-height: 1;
	color: var(--point);
	font-size: 6px;
	transition: .5s;
}

.pagination a:hover span,
.pagination .prev,
.pagination .next {
	background-color: var(--conbg);
}

.pagination .prev,
.pagination .next {
	margin: 0 10px;
}

.pagination .prev:hover,
.pagination .next:hover {
	background-color: var(--point);
}

.pagination a:hover span,
.pagination .selected {
	width: 24px;
}

.pagination .prev,
.pagination .next,
.pagination .current {
	display: none !important;
}

.pagination .more-btn {
	padding: 10px 15px;
	display: inline-block;
	border: 1px solid var(--point);
	background-color: var(--point);
	color: var(--conbg);
	line-height: 1;
	border-radius: 20px;
	letter-spacing: 2px;
	transition: .5s;
}

.pagination .more-btn:hover {
	background-color: transparent;
	color: var(--point);
}

/* 탑버튼 */
.top {
	position: fixed;
	right: 15px;
	bottom: 50px;
	font-size: 1.8rem;
	color: var(--point);
	display: none;
	line-height: 1;
}

.top:hover {
	color: inherit;
}

/* 카피라이트 삭제 금지 */
.copy {
	position: fixed;
	bottom: 10px;
	right: 10px;
	font-size: 8px;
	font-family: 'Righteous', cursive;
}

.copy a {
	color: var(--point);
}

/* 모바일 영역 */
@media screen and (max-width: 768px) {
	#container {
		display: flex;
		flex-direction: column;
		min-height: calc(100vh - 40px);
	}

	#content {
		flex: auto;
	}

	#header {
		z-index: 99;
	}

	.mbtn {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 10;
		background-color: var(--point);
		color: var(--conbg);
		width: 34px;
		height: 34px;
		text-align: center;
		border-radius: 100%;
	}

	.mbtn .linebox {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.mbtn .line {
		margin: auto;
		display: block;
		width: 18px;
		height: 2px;
		background: var(--conbg);
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	.mbtn .line::before,
	.mbtn .line::after {
		display: block;
		position: absolute;
		content: "";
		z-index: -1;
		width: 18px;
		height: 2px;
		background: var(--conbg);
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}

	.mbtn .line::before {
		top: -5px;
	}

	.mbtn .line::after {
		top: 5px;
	}

	.mbtn .linebox.open .line {
		background: none;
	}

	.mbtn .linebox.open .line::before,
	.mbtn .linebox.open .line::after {
		top: 0;
	}

	.mbtn .linebox.open .line::before {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.mbtn .linebox.open .line::after {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.catebox.open {
		position: fixed;
		width: 70%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: var(--point);
		display: flex !important;
		align-items: center;
		justify-content: center;
		line-height: 2.5;
	}

	.catebox.open .scroll {
		width: 100%;
	}

	html.open {
		overflow: hidden;
	}

	.page_cover.open {
		background-color: var(--point);
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 11;
		top: 0;
		left: 0;
		opacity: 0.2;
	}

	.btnbox.s .btn i {
		display: inline-block;
		vertical-align: middle;
		font-size: 1.1rem;
		line-height: 34px;
		text-align: center;
		width: 34px;
		height: 34px;
		letter-spacing: 0;
	}

	.btnbox.s .catebox {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

	#c-slider2 .slick-slide .title,
	#myo_web .item .title {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	#myo_gal2 .item .title,
	#myo_web .item .title {
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	#myo_web .item {
		min-height: 130px;
	}

	#myo_web .item .thumbox {
		width: 110px;
	}

	#myo_web .item .info {
		width: calc(100% - 110px);
	}

	#myo_web .item .text {
		-webkit-line-clamp: 3;
		min-height: 57px;
		max-height: 57px;
	}

	#more_gal > ul {
		-ms-grid-columns: 49% 2% 49%;
		-ms-grid-rows: 49% 2% 49%;
		grid-template-columns: repeat(2, 1fr);
	}

	.top {
		right: 10px;
		bottom: 10px;
	}

	.copy {
		margin: 10px 0;
		position: static;
		text-align: center;
	}
}
