@charset "utf-8";

/*
	** 게시판 관련 CSS
*/


/* ## board icon ##  */
.board-icon {
	display: inline-block;
	color: #a0a0a0;
	transition: var(--transition);
}
.board-icon::before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	padding-left:3px;
	padding-right:3px;
}
.board-icon.board-text::before {
	font-family: inherit;
	font-weight: 600;
}
.board-icon-notice::before {
	content: "\f6a8";
	font-size: var(--font-size-20);
	font-weight: 900;
	color: var(--primary-color);
}
.board-icon-lock::before {content: "\f30d";}
.board-icon-link::before {content: "\f08e";}
.board-icon-file::before {content: "\e178";}
.board-icon-down::before {content: "\f107";}
.board-icon-left::before {content: "\f104";}
.board-icon-right::before {content: "\f105";}
.board-icon-left-double::before {content: "\f100";}
.board-icon-right-double::before {content: "\f101";}
.board-icon-calendar::before {content: "\f133";}
.board-icon-new::before { content: "NEW"; font-style: italic; }
.board-icon-question::before { content: "Q"; color: var(--primary-color);}
.board-icon-answer::before {content: "A";}




/* ## board common ##  */
.board-col {
	display: inline-flex;
	align-items: center;
	color: #555555;
}
.board-row {
	width: 100%;
}
.board-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	transition: var(--transition);
	font-size: var(--font-size-18);
	color:#111;
	font-weight: 500;
}




/* ## board list ##  */
.board-total {
	margin-bottom:var(--space-xs);
	color: #999;
}
.board-total strong {
	color: var(--primary-color);
}
.board-list {
	border-top: 1px solid var(--primary-color);
}
.board-list-item {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
	transition: var(--transition);
}
.board-list .board-col {
	justify-content: center;
	padding: 0 10px;
	min-width: 80px;
	text-align: center;
}
.board-list .board-list-title {
	flex: 1 1 0;
	display: flex;
	justify-content: flex-start;
	text-align: left;
}
.board-list .board-list-title .board-icon {
	margin-left: 7px;
}
.board-list .board-desc {
	color: #a0a0a0;
}
.board-list .board-type {
	min-width: 95px;
}
.board-list-item:hover {
	background: #fafafa;
}
.board-list-item:hover .board-title {
	color: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.board-list-item {
		padding: 15px 0;
		gap: 7px 0;
	}
	.board-list .board-col {
		padding: 0 7px;
		min-width: auto;
	}
	.board-list .board-list-title {
		flex: 0 0 auto;
		width: 100%;
	}
	.board-list .board-tag {
		min-width: auto;
	}
}




/* ## board empty ##  */
.board-empty {
	position: relative;
	width: 100%;
	padding: 100px 20px;
	color: #999;
	text-align: center;
}
.board-empty::before {
	content: "\e178";
	width: 86px;
	height: 86px;
	margin: 0 auto 20px;
	font-size: var(--font-size-30);
	color: #d4d4d4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	background: #f2f2f2;
	border-radius: 50%;
}
@media all and (max-width: 767px) {
	.board-empty {
		padding: 40px 0;
	}
	.board-empty::before {
		width: 70px;
		height: 70px;
		font-size: var(--font-size-24);
	}
}




/* ## board view ##  */
.board-view-header {
	padding: 40px 25px;
	background: #f5f5f5;
	border-top: 1px solid var(--primary-color);
}
.board-view-header-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px 20px;
}
.board-view-header .board-title {
	-webkit-line-clamp: unset;
}
.board-view-header .board-title .board-icon {
	font-size: var(--font-size-14);
}
.board-view-info {
	display: flex;
	flex-wrap: wrap;
	gap: 3px 0;
	margin-top: 20px;
}
.board-view-info .board-tit {
	margin-right: 10px;
	color: var(--primary-color);
}
.board-view .board-col {
	flex-wrap: wrap;
}
.board-view .board-col:not(:last-child)::after {
	content: '|';
	margin: 0 20px;
	font-size: var(--font-size-13);
	color: #bfbfbf;
}
.board-view .board-view-file {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 3px 0;
	padding: 20px 25px 20px 60px;
	border-bottom: 1px solid #ddd;
	min-height: 60px;
}
.board-view .board-view-file .board-col {
	color: #555;
}
.board-view .board-icon-file::before {
	position: absolute;
	left: 25px;
}
.board-view-content {
	position: relative;
	padding: 70px 25px;
	border-bottom: 1px solid #ddd;
}
.board-view-content img {
	max-width: 100%;
}
.board-view-qna {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.board-view-nav {
	position: relative;
	display: block;
	padding: 25px 25px 25px 100px;
	border-bottom: 1px solid #d8d8d8;
}
.board-view-nav .board-title {
	font-size: var(--fons-size-16);
}
.board-view-nav .board-desc {
	position: absolute;
	top: 50%;
	left: 25px;
	transform: translateY(-50%);
}
.board-view-nav:hover .board-title {
	color: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.board-view .board-col:not(:last-child)::after {
		margin: 0 10px;
	}
}
@media all and (max-width: 767px) {
	.board-view-header {
		padding: 30px 15px;
	}
	.board-view-header .board-title {
		width: 100%;
	}
	.board-view .board-col:not(:last-child) {
		margin-right: 15px;
	}
	.board-view .board-col:not(:last-child)::after {
		display: none;
	}
	.board-view .board-view-file {
		padding: 15px 0 15px 32px;
		min-height: 50px;
	}
	.board-view .board-icon-file::before {
		left: 10px;
	}
	.board-view-content {
		padding: 40px 0;
	}
	.board-view-nav {
		padding: 22px 0 22px 60px;
	}
	.board-view-nav .board-title {
		font-size: 1em;
	}
	.board-view-nav .board-desc {
		left: 5px;
	}
}




/* ## board write ##  */
.board-write {
	border-top: 1px solid var(--primary-color);
}
.board-write-row:not(:last-child) {
	margin-bottom:var(--space-md);
}
.attach-box {
	position: relative;
	display: flex;
	border: 1px solid #e1e1e1;
}
.attach-img-wrap {
	flex: 0 0 230px;
	padding: 10px;
	background: #f0f0f0;
	position: relative;
}
.attach-img-box {
	margin-bottom: 13px;
	aspect-ratio: 1.5 / 1;
	background: #fff;
	border: 1px solid #ebebeb;
	overflow: hidden;
	position: relative;
}
.attach-img::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top:0;
	display: flex;
	align-items: center;
	justify-content: center;
	content:"NO IMAGE";
	color: #a0a0a0;
}
.attach-box .button-wrap {
	margin-top: 0;
}
.attach-box .button {
	line-height: inherit;
}
.attach-box .attach-input input {
	position: absolute;
	top: -9999px;
	left: -9999px;
	opacity: 0;
	font-size: 0;
}
.attach-file-list {
	flex: 1 1 auto;
	padding: 13px 15px;
	max-height: 213px;
	overflow-y: auto;
}
.attach-file {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-bottom: 1px solid #e1e1e1;
	cursor: pointer;
}
.attach-file.point:after {
	content: "\e123";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #ffb400;
	position: absolute;
	right: 28px;
}
.attach-file.active {
	background: #eee;
}
.attach-file .attach-file-byte {
	font-size: var(--font-size-15);
	font-weight: 300;
	color: #a0a0a0;
}
.attach-file .attach-file-remove {
	position: absolute;
	right: 5px;
	z-index: 10;
}
.attach-file .attach-file-remove::after {
	content: "\f057";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	color: #a0a0a0;
}
@media all and (max-width: 767px) {
	.attach-box {
		flex-direction: column;
	}
	.attach-img-wrap {
		flex: 0 0 100%;
	}
}




/* ## board gallery ##  */
.gallery-list {
	border-top: 1px solid var(--primary-color);
}
.gallery-item {
	display: flex;
	align-items: center;
	gap: 25px 60px;
	padding: 40px 0;
	position: relative;
	border-bottom: 1px solid #ddd;
	transition: var(--transition);
}
.gallery-img-box {
	flex: 0 0 360px;
	aspect-ratio: 1.5 / 1;
	border: 1px solid #f5f5f5;
	background: #f5f5f5;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.gallery-img-box::after {
	display: block;
	content:"";
	width: 100%;
	height:100%;
	background: url("../img/layout/logo.png") no-repeat center center;
	background-size: 200px;
	position: absolute;
	left:0;
	top:0;
	filter:opacity(0.9);
}
.gallery-img {
	width: 100%;
	object-fit: cover;
	position: relative;
	z-index: 5;
	transition: var(--transition);
}
.gallery-text-box {
	flex: 1 1 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
.gallery-content {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	color: #a0a0a0;
}
.gallery-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gallery-util {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}
.gallery-item:hover .board-title {
	color: var(--primary-color);
}
@media all and (max-width: 1023px) {
	.gallery-item {
		gap: 25px 40px;
		padding: 30px 0;
	}
	.gallery-img-box {
		flex: 0 0 280px;
	}
	.gallery-content {
		-webkit-line-clamp: 2;
	}
}
@media all and (max-width: 767px) {
	.gallery-item {
		flex-direction: column;
	}
	.gallery-img-box {
		flex: 0 0 100%;
		width: 100%;
	}
	.gallery-img-box::before {
		font-size: var(--font-size-18);
	}
	.gallery-text-box {
		gap: 15px 0;
	}
}
.gallery-list-type02 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 70px 3.5%;
	border-top: 0;
}
.gallery-list-type02 .gallery-item {
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	border-bottom: 0;
}
.gallery-list-type02 .gallery-img-box {
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 1.5 / 1;
}
.gallery-list-type02 .gallery-img {
	height: 100%;
}
.gallery-list-type02 .gallery-content {
	-webkit-line-clamp: 2;
}
.gallery-list-type02 .gallery-item:hover .gallery-img {
	transform: scale(1.1);
}
.gallery-list-type02 .board-empty {
	grid-column: span 3;
}
@media all and (max-width: 1023px) {
	.gallery-list-type02 {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-list-type02 .board-empty {
		grid-column: span 2;
	}
}
@media all and (max-width: 767px) {
	.gallery-list-type02 {
		grid-template-columns: repeat(1, 1fr);
		gap: 35px 3.5%;
	}
	.gallery-list-type02 .board-empty {
		grid-column: span 1;
	}
}
.gallery-list-type03 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 3.5%;
	border-top: 0;
}
.gallery-list-type03 .gallery-item {
	flex-direction: column;
	align-items: flex-start;
	padding: 0;
	border-bottom: 0;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}
.gallery-list-type03 .gallery-img-box {
	flex: 0 0 auto;
	width: 100%;
	aspect-ratio: 1.25/ 1;
}
.gallery-list-type03 .gallery-img {
	height: 100%;
}
.gallery-list-type03 .gallery-text-box {
	background: rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: var(--transition);
}
.gallery-list-type03 .gallery-text-box .board-title {
	-webkit-line-clamp: 2;
	color: #fff;
}
.gallery-list-type03 .gallery-text-box .board-desc {
	color: #fff;
}
.gallery-list-type03 .gallery-bottom {
	justify-content: center;
}
.gallery-list-type03 .gallery-util {
	margin-left: 0;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: -100%;
	left: 0;
	padding: 15px;
	transition: var(--transition);
}
.gallery-list-type03 .gallery-item:hover :is(.gallery-text-box, .gallery-util) {
	top: 0;
}
.gallery-list-type03 .board-empty {
	grid-column: span 3;
}
.gallery-list-type03 .board-row:has(.gallery-content) {
	display: none;
}
@media all and (max-width: 1023px) {
	.gallery-list-type03 {
		grid-template-columns: repeat(2, 1fr);
	}
	.gallery-list-type03 .board-empty {
		grid-column: span 2;
	}
}
@media all and (max-width: 767px) {
	.gallery-list-type03 {
		grid-template-columns: repeat(1, 1fr);
		gap: 35px 3.5%;
	}
	.gallery-list-type03 .gallery-bottom {
		margin-top: 20px;
	}
	.gallery-list-type03 .board-empty {
		grid-column: span 1;
	}
}




/* ## board faq ##  */
.board-faq {
	border-top: 1px solid var(--primary-color);
}
.board-faq-item {
	border-bottom: 1px solid #d8d8d8;
}
.board-faq-mark {
	flex: 0 0 80px;
	align-self: flex-start;
}
.board-faq-mark .board-icon::before {
	font-size: var(--font-size-30);
}
.board-faq-question {
	display: flex;
	align-items: center;
	padding: 30px 25px;
	cursor: pointer;
}
.board-faq-title {
	flex: 1 1 0;
	gap: 25px;
	margin-right: 25px;
}
.board-faq-question .board-title {
	-webkit-line-clamp: unset;
}
.board-faq-question:hover .board-title {
	color: var(--primary-color);
}
.board-faq-answer {
	display: none;
	padding: 30px 25px;
	background: #f5f5f5;
}
.board-faq-answer .board-col {
	width: 100%;
}
.board-faq-answer .board-desc {
	flex: 1 1 0;
	white-space: pre-line;
	margin:0;
	font-family: inherit;
}
.board-faq-util {
	gap: 20px;
}
.board-faq-util .board-icon-down::before {
	font-size: var(--font-size-26);
}
.board-faq-question.active .board-icon-down {
	transform: rotate(180deg);
}
@media all and (max-width: 767px) {
	.board-faq-mark {
		flex: 0 0 30px;
	}
	.board-faq-mark .board-icon::before {
		font-size: var(--font-size-22);
	}
	.board-faq-question {
		padding: 20px 10px;
	}
	.board-faq-title {
		display: block;
		margin-right: 10px;
	}
	.board-faq-title .badge {
		margin-bottom: 7px;
	}
	.board-faq-answer {
		padding: 20px 10px;
	}
	.board-faq-util {
		gap: 5px;
	}
	.board-faq-util .board-icon-down::before {
		font-size: var(--font-size-20);
	}
}



/* ## board calendar ##  */
.cal-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #767676;
}
.cal-tag::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #254daa;
}
.cal-tag.tag01::before {background: #00c0ff;}
.cal-tag.tag02::before {background: #1e6c29;}
.cal-tag.tag03::before {background: #e00099;}
.cal-tag.tag04::before {background: #9433cc;}
.cal-tag.tag05::before {background: #a1980b;}
.cal-tag.tag06::before {background: #254daa;}
.cal-tag.tag07::before {background: #13c138;}
.cal-tag.tag08::before {background: #f57c07;}
.cal-tag.tag09::before {background: #e02000;}
.cal-tag.tag10::before {background: #2bb395;}

.calendar-header {
	position: relative;
	padding-bottom: 40px;
	text-align: center;
}
.calendar-title {
	position: relative;
	display: inline-block;
	width: 290px;
}
.calendar-title h2 {
	font-size: var(--font-size-30);
	font-weight: 600;
}
.calendar-title button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	color: #fff;
}
.calendar-title .btn-prev {
	left: 0;
}
.calendar-title .btn-next {
	right: 0;
}
.calendar-title .btn-prev::after {
	content: "\f104";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
}
.calendar-title .btn-next::after {
	content: "\f105";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
}
.calendar-tag {
	position: absolute;
	left: 20px;
	bottom: 20px;
	padding-left: 65px;
	width: 385px;
	text-align: left;
}
.calendar-tag .cal-tag {
	margin-right: 10px;
}
.calendar-tag .cal-today {
	position: absolute;
	left: 0;
	bottom: 0;
}
.calendar-tag .cal-today::before {
	width: 13px;
	height: 13px;
	border-radius: 0;
	background: #e4e4e4;
}
.calendar-body {
	display: flex;
	align-items: flex-start;
}
.calendar-body>section {
	width: 50%;
	height: 480px;
}
.calendar-table {
	width: 100%;
	height: 100%;
}
.calendar-table thead th {
	height: 50px;
	background: var(--primary-color);
	text-align: center;
	color: #fff;
}
.calendar-table tbody td {
	height: 70px;
	border: 1px solid #dfdfdf;
	padding-top: 6px;
	text-align: center;
	vertical-align: top;
}
.calendar-table tbody td .num {
	display: block;
	font-size: var(--font-size-15);
	color: #767676;
}
.calendar-table tbody td.day-sun .num {
	color: #eb0505;
}
.calendar-table tbody td.day-sat .num {
	color: #1852d5;
}
.calendar-table tbody td.day-today {
	background: #e4e4e4;
}
.schedule-box .cal-tag {
	position: relative;
	display: inline-block;
	margin: 0 2px;
	width: 10px;
	height: 10px;
}
.schedule-box .cal-tag::before {
	position: absolute;
	top: 0;
	left: 0;
}
.schedule-title {
	line-height: 50px;
	font-size: var(--font-size-20);
	font-weight: 500;
	background: #eaeaea;
	color: #333;
	text-align: center;
}
.schedule-list {
	height: 430px;
	border: 10px solid #eaeaea;
	border-top: 0;
	padding: 0 20px 20px;
	overflow-y: auto;
}
.schedule-item {
	padding: 15px 0;
	display: flex;
	align-items: flex-start;
	width: 100%;
	border-bottom: 1px solid #e4e4e4;
}
.schedule-item .title {
	flex: 0 0 100px;
	font-size: var(--font-size-18);
	font-weight: 500;
	color: #666;
	text-align: center;
}
.schedule-item .desc-box {
	padding-left: 10px;
}
.schedule-item .desc {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 0;
	font-size: var(--font-size-15);
}
.schedule-item .desc:not(:last-child) {
	margin-bottom: 10px;
}
.schedule-item .cal-tag {
	flex-shrink: 0;
}
.schedule-item .cal-time {
	flex-shrink: 0;
	margin: 0 25px 0 10px;
	color: #767676;
}
.schedule-btn:hover {
	text-decoration: underline;
	color: var(--primary-color);
}
.calendar-modal-header {
	border-top: 1px solid #000;
	border-bottom: 1px solid #c8c8c8;
	padding: 10px 10px 0;
	margin-bottom: 20px;
}
.calendar-modal-header .title-xs {
	margin-top: 5px;
}
.calendar-modal-body {
	padding: 0 10px;
	min-height: 200px;
}
.calendar-modal-body .cal-item {
	display: flex;
	padding: 5px 0;
}
.calendar-modal-body .cal-item .title {
	flex: 0 0 40px;
	font-weight: 500;
}
.calendar-modal-body .cal-item .desc {
	flex-grow: 1;
	color: #666;
	padding-left: 10px;
}
@media screen and (max-width: 1199px){
	.calendar-header {
		padding-bottom: 20px;
	}
	.calendar-tag {
		position: relative;
		left: 0;
		bottom: 0;
	}
}
@media screen and (max-width: 1023px) {
	.calendar-title h2 {
		font-size: var(--font-size-28);
	}
	.schedule-list {
		padding: 0 15px 15px;
	}
	.schedule-item {
		flex-direction: column;
	}
	.schedule-item .title {
		flex: 0 0 auto;
		margin-bottom: 15px;
	}
	.schedule-item .desc-box {
		padding-left: 0
	}
}
@media screen and (max-width: 767px) {
	.cal-tag {
		font-size: var(--font-size-15);
	}
	.calendar-header {
		padding-bottom: 10px;
	}
	.calendar-title {
		margin-bottom: 20px;
		width: 240px;
	}
	.calendar-title h2 {
		font-size: var(--font-size-24);
	}
	.calendar-tag {
		font-size: var(--font-size-15);
		padding-left: 0;
		width: 100%;
	}
	.calendar-tag .cal-today {
		position: unset;
	}
	.calendar-table thead th {
		height: 40px;
		font-size: var(--font-size-14);
		font-weight: 400;
	}
	.calendar-table tbody td .num {
		font-size: var(--font-size-14);
	}
	.calendar-body {
		flex-direction: column;
	}
	.calendar-body>section {
		width: 100%;
	}
	.schedule-title {
		font-size: var(--font-size-18);
	}
	.schedule-item .title {
		font-size: var(--font-size-16);
		margin-bottom: 10px;
	}
	.schedule-item .desc {
		font-size: var(--font-size-15);
	}
	.schedule-item .cal-time {
		margin: 0 10px;
	}
	.calendar-modal-header {
		padding: 10px 5px 0;
	}
	.calendar-modal-body {
		padding: 0 5px 5px;
		min-height: auto;
	}
	.calendar-modal-body .cal-item .title {
		font-size: var(--font-size-15);
	}
	.calendar-modal-body .cal-item .desc {
		font-size: var(--font-size-15);
	}
}



/* 검색결과 */
.search_wrap {margin-bottom:10px;}
.search_wrap .srh_word {width:200px;}
.search_wrap ul {overflow:hidden; margin-bottom:10px;}
.search_wrap ul li {position:relative; float:left; line-height:1.3; padding:5px 30px 5px 0;}
.search_wrap ul li.title100 {padding-left:100px;}
.search_wrap ul li span.title {position:absolute; left:0; font-weight:600; border-right:1px solid #a4a8ab; margin-top:2px; line-height:1; top:50%; margin-top:-7px;}
.search_wrap ul li.title100 span.title {width:80px;}
.search_wrap ul li.wid1 {width:100%}
.search_wrap ul li.wid2 {width:50%}
.search_wrap ul li.wid3 {width:33.333333%}
.search_wrap ul li.wid4 {width:25%}
.search_wrap ul li label {margin-right:20px;}
.search_wrap .btn_wrap {border-top:1px solid #ddd; margin:10px 0 0; padding-top:10px; text-align:right;}
.search_wrap2 {margin-bottom:10px;}
.search_wrap2:nth-child(2) {border-top:1px solid #ddd; padding-top:10px;}
.search_wrap3 {position:relative; background:#ebf5fe; padding:15px 30px; margin-bottom:20px;}
.search_wrap3 .btn {position:absolute; right:30px; bottom:15px;}
.bbs_wrap .search_wrap {position:absolute; right:0;}
.bottom_line {border-bottom:1px solid #ddd; padding-bottom:10px;}
.search_wrap .btn {padding:9px 20px; position:relative; top:1px;}
.search_wrap input {width:100%; padding:10px 10px; border:1px solid #e1e1e1;}
.search_wrap select {width:100%; padding:9px 10px;  border:1px solid #e1e1e1;}
.search_wrap label {display:inline-block; width:50px; }
.search_wrap .fragment {width:400px; padding-left:140px; padding-right:73px; position:relative;}
.search_wrap .fragment:after {content:""; display:block; clear:both;}
.search_wrap .fragment select {width:135px; float:left; position:absolute; left:0; top:0;}
.search_wrap .fragment input {width:100%; float:left;}
.search_wrap .fragment .btn {padding:11px 20px; position:absolute; top:0; right:0;}
.search_wrap .wrap_tabs {margin-top:30px; margin-bottom:60px;}


/* baords.type04 - 검색메인 페이지에 쓰임
	- 한줄에 한 게시글 배치
	- 제목 한줄
	- 내용 한줄
*/
.boards.type04 {margin-bottom:35px; position:relative; border-bottom:1px solid #e1e1e1;}
.boards.type04.point .board-title {margin-bottom:0;}
.boards.type04.point .board {padding:2px 5px 15px 5px; border-bottom:none;}
.boards.type04 .board {display:block; padding:10px 5px 15px 5px; border-bottom:1px solid #e1e1e1;}
.boards.type04 .board:last-child {border-bottom:none;}
.boards.type04 .correct {color:#0040c2;}
.boards.type04 .board-title {margin-bottom:10px;}
.boards.type04 .board-title .correct {font-weight:500;}
.boards.type04 .board-subtitle {margin-left:15px; font-weight:300; color:#666;}
.boards.type04 .board-body {font-weight:300; color:#666; }
.boards.type04 .btn-more {position:absolute; top:15px; right:0; font-size:14px;}
.boards.type04 .notice-empty {padding-bottom:30px; padding-top:20px; font-size:20px; font-weight:500; text-align:center;}

.board-summery {}
.board-summery dl {display: flex; gap: 10px; margin-bottom: 5px;}
.board-summery dl dt {position: relative; flex: 0 0 100px; font-weight: 500;}
.board-summery dl dt::after {content: ""; position: absolute; width: 1px; height: 14px; top: 0; right: -10px; background: #e1e1e1;}
.board-summery dl dd {width: 100%;}