 legend,
 hr,
 caption {
 	display: block;
 	font-size: 0;
 	overflow: hidden;
 }

 *,
 ::after,
 ::before {
 	-webkit-box-sizing: border-box;
 	box-sizing: border-box;
 }

 textarea {
 	font-size: inherit;
 	font-family: inherit;
 	color: inherit;
 	vertical-align: middle;
 	resize: none;
 }

 input,
 select,
 textarea,
 button {
 	font-size: 100%;
 	vertical-align: middle;
 	box-sizing: border-box;
 	max-width: 100%;
 }

 button {
 	border: 0 none;
 	background-color: transparent;
 	cursor: pointer;
 }

 fieldset {
 	margin: 0;
 	padding: 0;
 	border: 0;
 	vertical-align: baseline;
 	box-sizing: border-box;
 }

 /* board */
 .board-wrap {
 	flex-direction: column;
 	display: flex;
 	width: 100%;
 	overflow: hidden;
 }

 /* select */
 select {
 	-moz-appearance: none;
 	/* Firefox */
 	-webkit-appearance: none;
 	/* Safari and Chrome */
 	appearance: none;
 }

 select::-ms-expand {
 	display: none;
 }

 .select {
 	background: #fff url(/common/img/common/ico-arrow-down.png) right center no-repeat;
 	background-position: right .75rem top 50%, 0 0;
 	cursor: pointer;
 	padding: .375rem .75rem;

 	border: 1px solid #EBEBEB;
 	color: #231f20;
 	border-radius: 10px;
 }

 /* form-control */
 .form-control {
 	display: inline-block;
 	width: 100%;
 	max-width: 100%;
 	height: 40px;
 	padding: .375rem .75rem;
 	background-clip: padding-box;

 	border: 1px solid #EBEBEB;
 	color: #231f20;
 	border-radius: 10px;
 }

 /* board-btn */
 .board-btn {
 	display: flex;
 	justify-content: flex-end;
 	margin: 2.5rem 0 1.5rem;
 }

 .board-btn-area {
 	display: flex;
 	margin: 1rem auto 1.5rem;
 }

 .board-btn2 {
 	display: flex;
 	justify-content: center;
 	margin: 4rem 0 0;
 }

 .board-btn .btn {
 	margin-left: 0.5rem;
 }

 .btn {
 	display: inline-block;


 	border-radius: 0;
 	padding: 0;
 }

 .btn:hover {
 	text-decoration: none;
 }

 .btn-ty {
 	background: #8b8b8b;
 	color: #fff;
 	height: 45px;
 	width: 122px;
 	border-radius: 2px;
 }

 .btn-ty2 {
 	background: #067dfd;
 	color: #fff;
 	height: 60px;
 	width: 200px;
 	font-size: 18px;
 }

 .btn-ty3 {
 	background: #231f20;
 	color: #fff;
 	height: 60px;
 	width: 200px;
 	font-size: 18px;
 }

 .btn-download {
 	background: #067dfd;
 	border: 1px solid #067dfd;
 	color: #fff;
 	height: 45px;
 	line-height: 45px;
 	text-align: left;
 	padding: 0 30px;
 	transition: 0.4s all;
 }

 .btn-download:after {
 	background: url(/common/img/common/ico-download.png) no-repeat left center;
 	content: '';
 	display: inline-block;
 	height: 32px;
 	margin-left: 10px;
 	vertical-align: middle;
 	width: 32px;
 }

 .btn-download2 {
 	color: #231f20;
 	border: 1px solid #999;
 	background: #fff;
 	height: 50px;
 	line-height: 50px;
 	text-align: left;
 	padding: 0 30px;
 	transition: 0.4s all;
 }

 .btn-download2:after {
 	background: url(/common/img/common/ico-download-b.png) no-repeat left center;
 	content: '';
 	display: inline-block;
 	height: 32px;
 	vertical-align: middle;
 	width: 32px;
 }

 .btn-download2:hover {
 	color: #fff;
 	border: 1px solid #231f20;
 	background: #231f20;
 }

 .btn-download2:hover:after {
 	background: url(/common/img/common/ico-download.png) no-repeat left center;
 }

 .btn-link {
 	background: #231f20;
 	color: #fff;
 	height: 45px;
 	line-height: 45px;
 	text-align: left;
 	padding: 0 30px;
 	transition: 0.4s all;
 }

 .btn-link:after {
 	background: url(/common/img/common/ico-arrow-right.png) no-repeat left center;
 	content: '';
 	display: inline-block;
 	height: 32px;
 	margin-left: 10px;
 	vertical-align: middle;
 	width: 32px;
 }

 .btn-search {
 	background: #444;
 	color: #fff;
 	height: 40px !important;
 	width: 89px !important;
 	border-radius: 10px;
 	font-size: 15px;
 }

 /* checkbox */
 .sub .checkbox {
 	display: inline-block;
 	position: relative;
 	padding-left: 28px;
 	cursor: pointer;
 	-webkit-user-select: none;
 	-moz-user-select: none;
 	-ms-user-select: none;
 	user-select: none;
 }

 .sub .checkbox input {
 	position: absolute;
 	opacity: 0;
 	right: 0;
 	cursor: pointer;
 }

 .sub .checkbox .checkmark {
 	position: absolute;
 	top: 4px;
 	left: 0;
 	height: 20px;
 	width: 20px;
 	background-color: #fff;
 	border: 1px solid #ccc;
 }

 .sub .checkbox input:checked~.checkmark {
 	background-color: #fff;
 }

 .sub .checkbox .checkmark:after {
 	content: "";
 	position: absolute;
 	display: none;
 }

 .sub .checkbox input:checked~.checkmark:after {
 	display: block;
 }

 .sub .checkbox .checkmark:after {
 	left: 7px;
 	top: 3px;
 	width: 5px;
 	height: 10px;
 	border: solid #231f20;
 	border-width: 0 3px 3px 0;
 	-webkit-transform: rotate(45deg);
 	-ms-transform: rotate(45deg);
 	transform: rotate(45deg);
 }

 /* radio */
 .sub [type="radio"]:checked,
 .sub [type="radio"]:not(:checked) {
 	position: absolute;
 	left: -9999px;
 }

 .sub [type="radio"]:checked+label,
 .sub [type="radio"]:not(:checked)+label {
 	position: relative;
 	padding-left: 28px;
 	cursor: pointer;
 	line-height: 26px;
 	display: inline-block;
 }

 .sub [type="radio"]:checked+label:before,
 .sub [type="radio"]:not(:checked)+label:before {
 	content: '';
 	position: absolute;
 	left: 0;
 	top: 2px;
 	width: 18px;
 	height: 18px;
 	border-radius: 100%;
 	background: #fff;
 	border: 1px solid #d5d3d6;
 }

 .sub [type="radio"]:checked+label:before {
 	border: 1px solid #268ef2;
 }

 .sub [type="radio"]:checked+label:after,
 .sub [type="radio"]:not(:checked)+label:after {
 	content: '';
 	width: 10px;
 	height: 10px;
 	background: #268ef2;
 	position: absolute;
 	top: 6px;
 	left: 4px;
 	border-radius: 100%;
 	-webkit-transition: all 0.2s ease;
 	transition: all 0.2s ease;
 }

 .sub [type="radio"]:not(:checked)+label:after {
 	opacity: 0;
 	-webkit-transform: scale(0);
 	transform: scale(0);
 }

 .sub [type="radio"]:checked+label:after {
 	opacity: 1;
 	-webkit-transform: scale(1);
 	transform: scale(1);
 }

 /* board-top */
 .board-top {
 	position: relative;
 	display: flex;
 	align-items: flex-end;
 	height: 50px;
 	margin-bottom: 30px;
 }

 .board-top .search-wrap {
 	margin-left: auto;
 	display: flex;
 	flex-direction: row;
 }

 .board-top .search-wrap .select-box .select {
 	width: 107px;
 	height: 40px;
 }

 .board-top .search-wrap .search-box .form-control {
 	width: 243px;
 	margin: 0 2px 0 5px;
 }

 .board-top .search-wrap .search-box input::placeholder {
 	color: #4b4b4b;
 	;
 	line-height: 1;
 }

 .board-top .search-wrap .search-box input::-webkit-input-placeholder {
 	color: #4b4b4b;
 	;
 	line-height: 1;
 }

 .board-top .search-wrap .search-box input::-ms-input-placeholder {
 	color: #4b4b4b;
 	;
 	line-height: 1;
 }

 .board-top .search-wrap .search-box .btn-search {
 	position: relative;
 	padding-left: 24px;
 }

 .ico-search {
 	position: absolute;
 	left: 50%;
 	top: 50%;
 	margin: -7px 0 0 -22px;
 	display: block;
 	width: 15px;
 	height: 15px;
 	background: url(/common/img/common/ico-search.png) left center no-repeat;
 }

 /* bbs_list */
 .bbs_list,
 .bbs_view,
 .bbs_write {
 	position: relative;
 	width: 100%;
 	max-width: 100%;
 	overflow: hidden;
 }

 /* .bbs_list:before,
 .bbs_view:before,
 .bbs_write:before {
 	position: absolute;
 	left: 0;
 	top: 0;
 	height: 2px;
 	width: 100%;
 	background: #231f20;
 	display: block;
 	content: "";
 } */

 .bbs_write:after {
 	position: absolute;
 	left: 0;
 	bottom: 0;
 	height: 1px;
 	width: 100%;
 	background: #d5d3d6;
 	display: block;
 	content: "";
 }

 .bbs_list th {
 	text-align: center;
 	padding: 18px;
 	color: #fff;
 	position: relative;

 }

 .bbs_list th::after {
 	position: absolute;
 	right: 0;
 	top: 50%;
 	transform: translateY(-50%);
 	content: "";
 	display: block;
 	width: 1px;
 	height: 50%;
 	background: #ffffff6f;
 }

 .bbs_list th:last-child::after {
 	display: none;
 }

 .bbs_list th:first-child {
 	border-radius: 10px 0 0 10px;
 }

 .bbs_list th:last-child {
 	border-radius: 0 10px 10px 0;
 }

 .bbs_list td {
 	text-align: center;
 	padding: 25px 15px;
 	border-bottom: 1px solid #D8D8D8;
 	color: #231f20;
 	word-break: break-all;
 	overflow: hidden;
 }

 .bbs_list tr:hover td {
 	background: #f5f5f5;
 	cursor: pointer;
 }

 .bbs_list td.td-left {
 	text-align: left;
 }

 .bbs_list td.subject {
 	text-align: left;
 	width: 50%;
 	word-break: break-all;
 	overflow: hidden;
 	line-height: 1.42;
 	word-break: break-all;
 }

 .bbs_list td a {
 	color: #231f20;
 }

 .bbs_list td a.addr {
 	color: #067dfd;
 	font-weight: 500;
 }

 .bbs_list td a:hover {
 	text-decoration: underline;
 	color: #231f20;
 }

 .bbs_list .info {
 	display: none;
 	padding: 8px 0 0;
 	height: 22px;
 }

 .bbs_list .info>li {
 	position: relative;
 	display: inline-block;
 	margin-right: 10px;
 	font-size: 13px;
 	color: #999;
 }

 .bbs_list .info>li.date:after {
 	content: "";
 	position: absolute;
 	height: 12px;
 	left: 0px;
 	top: 2px;
 	width: 1px;
 	background: #d5d3d6;
 	z-index: 1;
 }

 .bbs_list .info>li.date {
 	padding-left: 12px;
 }

 .bbs_list .category {
 	background: #067dfd;
 	color: #fff;
 	line-height: 28px;
 	height: 26px;
 	display: inline-block;
 	width: 50px;
 	text-align: center;
 	font-size: 13px;
 	border-radius: 4px;
 	vertical-align: top;
 }

 .bbs_list2:before {
 	position: absolute;
 	left: 0;
 	top: 0;
 	height: 1px;
 	width: 100%;
 	background: #d5d3d6;
 	display: block;
 	content: "";
 }

 .bbs_list2 th {
 	color: #231f20;
 	font-weight: 400;
 	width: 105px;
 }

 .bbs_list2 td a {
 	color: #231f20;
 	display: -webkit-box;
 	-webkit-box-orient: vertical;
 	white-sapce: nowrap;
 	overflow: hidden;
 	text-overflow: ellipsis;
 	-webkit-line-clamp: 1;
 	word-break: break-all;
 }

 .bbs_list2 td.td-date {
 	width: 150px;
 }

 .bbs_list2 tr:hover td {
 	background: transparent;
 	cursor: pointer;
 }

 .bbs_list2 .ico-up {
 	display: inline-block;
 	width: 15px;
 	height: 15px;
 	background: url("/common/img/common/ico-arrow.png") no-repeat center center;
 	transform: rotate(-90deg);
 	margin-right: 10px;
 }

 .bbs_list2 .ico-down {
 	display: inline-block;
 	width: 15px;
 	height: 15px;
 	background: url("/common/img/common/ico-arrow.png") no-repeat center center;
 	transform: rotate(90deg);
 	margin-right: 10px;
 }

 /* bbs_view */
 .bbs_view .view-header {
 	padding: 32px 0 0;
 }

 .bbs_view .view-header .tit {
 	text-align: left;
 	font-size: 26px;
 	word-break: break-all;
 	line-height: 1.42;
 	margin-bottom: 10px;
 }

 .bbs_view .text {
 	border-bottom: 1px solid #2f2f2f;
 	padding-bottom: 1em;
 }

 .bbs_view .text span {
 	position: relative;
 	font-size: 15px;
 	color: #888;
 	margin-right: 20px;
 	padding-right: 20px;
 }

 .bbs_view em {
 	color: #231f20;
 }

 .bbs_view .text span::after {
 	content: "";
 	position: absolute;
 	height: 16px;
 	right: 0px;
 	top: 4px;
 	width: 1px;
 	background: #999;
 	z-index: 1;
 }

 .bbs_view .text span.date::after {
 	display: none;
 }

 .bbs_view .text-file {
 	padding: 10px 0px;
 	border-bottom: 1px solid #d5d3d6;
 	color: #999;
 }

 .bbs_view .text-file span {
 	font-size: 15px;
 }

 .bbs_view .text-file a {
 	margin-right: 5px;
 	color: #888;
 }

 .bbs_view .text-file a:hover {
 	text-decoration: underline;
 	color: #067dfd;
 }

 .bbs_view .text-file .ico-file {
 	display: inline-block;
 	vertical-align: middle;
 	width: 20px;
 	height: 20px;
 	margin-right: 5px;
 	background: url(/common/img/board/ico-file.png) 50% 50% no-repeat;
 }

 .bbs_view .view-contents {
 	padding: 30px;
 	border-bottom: 1px solid #d5d3d6;
 	min-height: 250px;
 }

 .bbs_view .view-contents p {
 	word-break: break-all;
 }

 .bbs_view .view-title {
 	display: inline-block;
 	width: auto;
 	min-width: 140px;
 	text-align: right;
 	margin-right: 10px;
 }

 /* bbs_write */
 .bbs_write th {
 	text-align: left;
 	padding: 17px;
 	border-bottom: 1px solid #d5d3d6;
 	background: #f7f7f7;
 }

 .bbs_write td {
 	padding: 12px 1px 12px 12px;
 	border-bottom: 1px solid #d5d3d6;
 	border-left: 1px solid #d5d3d6;
 	color: #231f20;
 	position: relative;
 	max-width: 100%;
 	word-break: break-all;
 }

 .bbs_write td p,
 .bbs_write td span {
 	word-break: break-all;
 }

 .bbs_write td img {
 	width: 100%;
 }

 .bbs_write .focus {
 	color: #ff4400;
 	vertical-align: middle !important;
 	margin: 0px 0 0 5px;
 	display: inline-block;
 }

 .bbs_write .file .file-box {
 	position: relative;
 	margin-bottom: 10px;
 }

 .bbs_write .file .file-box .info-box {
 	font-size: 16px;
 	position: relative;
 	display: inline-block;
 }

 .bbs_write .file .file-box .info-box .file-info {
 	display: inline-block;
 	padding: 0 15px;
 }

 .bbs_write .file .file-box .info-box .check-box {
 	display: inline-block;
 }

 .bbs_write .memo {
 	height: 150px;
 	line-height: 1.3;
 	float: left;
 }

 .bbs_write td.td-first {
 	border-left: none;
 }


 .w100 {
 	width: 100px !important
 }

 .w200 {
 	width: 200px !important
 }

 .w250 {
 	width: 250px !important
 }

 .w300 {
 	width: 300px !important
 }



 /* grid-wrap */
 .grid-wrap {
 	display: flex;
 }

 .grid-area {
 	display: flex;
 	overflow: hidden;
 	border: none;
 	border-radius: 0;
 	flex-wrap: wrap;
 	margin: 0 -20px;
 }

 .grid-item {
 	width: 25%;
 	text-align: center;
 }

 .event-wrap .grid-item {
 	width: 33.3333%;
 }

 .grid {
 	position: relative;
 	transition: all .3s ease;
 	cursor: pointer;
 	margin: 0 20px;
 }

 .grid-image {
 	background-position: center center;
 	background-repeat: no-repeat;
 	background-size: cover;
 	overflow: hidden;
 	position: relative;
 	transition: filter 0.5s cubic-bezier(.43, .41, .22, .91);
 	min-height: 400px;
 	border-radius: 10px;
 }

 .grid-image::before {
 	content: "";
 	display: block;
 	padding-top: 56.25%;
 }

 .grid-content {
 	padding: 24px 0 50px;
 	text-align: left;
 }

 .grid-content .grid-title {
 	font-size: 19px;
 	color: #231f20;
 	display: -webkit-box;
 	-webkit-box-orient: vertical;
 	white-sapce: nowrap;
 	overflow: hidden;
 	text-overflow: ellipsis;
 	-webkit-line-clamp: 1;
 	word-break: break-all;
 	line-height: 1.21;
 	margin-bottom: 8px;
 }

 .grid-content .grid-title:hover {
 	color: #067dfd;
 	text-decoration: underline;
 }

 .grid-content .date {
 	font-size: 16px;
 	line-height: 1;
 	color: #888;
 }

 /* page-wrap */
 .page-wrap {
 	display: flex;
 	justify-content: center;
 	margin: 70px 0 50px 0;
 }

 .page-wrap a {
 	font-size: 16px;
 	width: 36px;
 	height: 36px;
 	line-height: 38px;
 	align-items: center;
 	display: flex;
 	justify-content: center;
 	background: #fff;
 	margin: 0 6px;
 	color: #6B6B6B;
 	font-weight: 600;
 	border-radius: 100px;
 }

 .page-wrap a.on {
 	font-family: 's-core-dream-bold';
 	background: #03624C;
 	color: #fff;
 	border-radius: 50%;
 }

 .page-wrap a:hover {
 	/* color: #ffffff; */
 	/* border: 1px solid #03624C; */
 	text-decoration: none;
 	border-radius: 50%;
 }

 .page-wrap .btn-page span {
 	display: inline-block;
 	width: 16px;
 	height: 13px;
 	vertical-align: middle;
 	z-index: 1;
 	font-size: 0;
 	background: url(/common/img/ico-page.png) center center no-repeat;
 }

 .page-wrap .page-first span {
 	background-position: 0 0px;
 }

 .page-wrap .page-prev span {
 	background-position: -16px 0;
 }

 .page-wrap .page-next span {
 	background-position: -32px 0px;
 }

 .page-wrap .page-last span {
 	background-position: -48px 0px;
 }

 .page-wrap a.page-prev {
 	margin: 0 2px 0 2px;
 }

 .page-wrap a.page-next {
 	margin: 0 2px 0 2px;
 }

 /* faq */
 .faq {
 	position: relative;
 	width: 100%;
 	border-top: 2px solid #231f20;
 	outline: 0;
 	word-break: break-all;
 }

 .faq .faq_title {
 	position: relative;
 	margin: 0;
 	padding: 25px 70px 23px 93px;
 	border-bottom: 1px solid #d5d3d6;
 	cursor: pointer;
 	font-size: 18px;
 	color: #231f20;
 	font-weight: 300;
 	word-break: break-all;
 	line-height: 1.42;
 }

 .faq .faq_list.open .faq_detail {
 	background: #fff;
 }

 .faq .faq_list .icon-arrow {
 	position: absolute;
 	top: 50%;
 	right: 52px;
 }

 .faq .faq_list .icon-arrow:before {
 	background: url(/common/img/contents/arrow-down.png) center center no-repeat;
 	content: "";
 	position: absolute;
 	height: 13px;
 	left: 0px;
 	top: -6px;
 	width: 23px;
 }

 .faq .faq_list.open .icon-arrow:before {
 	transform: rotate(180deg);
 }

 .faq_detail {
 	position: relative;
 	display: none;
 	padding: 25px 70px 40px 143px;
 	border-bottom: 1px solid #d5d3d6;
 	word-break: break-all;
 	font-weight: 300;
 }

 .faq_detail p {
 	word-break: break-all;
 	line-height: 1.42;
 }

 .faq em {
 	position: absolute;
 	text-align: center;
 	color: #fff;
 	display: block;
 	font-size: 20px;
 	line-height: 36px;
 	left: 0;
 	top: 0;
 	width: 36px;
 	height: 36px;
 	font-family: 'twayair';
 }

 .faq_title em {
 	background: #067dfd;
 	top: 23px;
 	left: 35px;
 	border-radius: 50%;
 }

 .faq_title span {
 	word-break: break-all;
 }

 .faq_detail em {
 	color: #067dfd;
 	background: #fff;
 	border: 1px solid #067dfd;
 	top: 23px;
 	left: 84px;
 }

 .faq_detail em::before {
 	position: absolute;
 	z-index: 1;
 	width: 1px;
 	display: block;
 	height: 17px;
 	background-color: #d2d3d3;
 	content: '';
 	top: -2px;
 	left: -30px;
 }

 .faq_detail em::after {
 	position: absolute;
 	z-index: 1;
 	width: 17px;
 	display: block;
 	height: 1px;
 	background-color: #d2d3d3;
 	content: '';
 	top: 15px;
 	left: -30px;
 }


 @media (max-width:1399px) {
 	.grid-image {
 		min-height: 0 !important;
 	}

 	.event-wrap .grid-item {
 		width: 50%;
 	}
 }


 @media (max-width:991px) {
 	.grid-area {
 		margin: 0 -10px;
 	}

 	.grid-item {
 		width: 50%;
 	}

 	.grid {
 		margin: 0 10px;
 	}
 }


 @media (max-width:767px) {
 	.select {
 		background: #fff url(/common/img/common/ico-arrow-down.png) right center no-repeat;
 		background-position: right 0.5rem top 50%, 0 0;
 		background-size: auto 5px;
 		font-size: 14px;
 		padding: .25rem .5rem;
 	}

 	.form-control {
 		height: 31px !important;
 		font-size: 14px;
 		padding: .25rem .5rem;
 	}

 	.btn {
 		font-size: 14px;
 	}

 	.btn-ty,
 	.btn-ty2,
 	.btn-ty3 {
 		width: 90px;
 		height: 40px;
 		font-size: 14px;
 	}

 	.btn-download {
 		height: 36px;
 		line-height: 36px;
 	}

 	.btn-link {
 		height: 36px;
 		line-height: 36px;
 	}

 	.btn-download:after {
 		width: 20px;
 		background: url(/common/img/common/ico-download.png) no-repeat left center;
 		background-size: auto 20px;
 		margin-left: 0px;
 	}

 	.btn-link:after {
 		width: 20px;
 		background: url(/common/img/common/ico-arrow-right.png) no-repeat left center;
 		background-size: auto 20px;
 		margin-left: 0px;
 	}

 	.btn-download2 {
 		height: 36px;
 		line-height: 36px;
 		color: #fff;
 		border: 1px solid #231f20;
 		background: #231f20;
 	}

 	.btn-download2:after {
 		width: 20px;
 		background: url(/common/img/common/ico-download.png) no-repeat left center;
 		background-size: auto 20px;
 		margin-left: 0px;
 	}

 	.board-btn {
 		margin: 1.5rem 0 1rem;
 	}

 	.board-btn-area {
 		margin: 0.25rem auto 0.5rem;
 	}

 	.board-btn2 {
 		margin: 2.5rem 0 0;
 	}

 	.board-top {
 		flex-direction: column-reverse;
 		height: auto;
 		margin-bottom: 10px;
 		font-size: 14px;
 	}

 	.board-top .status-wrap {
 		display: flex;
 		margin-right: auto;
 		padding-top: 15px;
 	}

 	.board-top .search-wrap {
 		margin: 0 auto;
 		max-width: 340px;
 	}

 	.board-top .search-wrap .select-box .select {
 		width: 71px;
 		height: 31px;
 	}

 	.board-top .search-wrap .search-box .form-control {
 		margin: 0 1px 0 3px;
 		width: 180px;
 	}

 	.board-top .search-wrap .search-box .btn-search {
 		padding-left: 16px;
 	}

 	.ico-search {
 		margin: -5px 0 0 -19px;
 		width: 10px;
 		height: 10px;
 		background: url(/common/img/common/ico-search.png) left center no-repeat;
 		background-size: auto 10px;
 	}

 	.btn-search {
 		height: 31px !important;
 		width: 71px !important;
 		font-size: 14px;
 	}

 	.sub .checkbox .checkmark {
 		top: 0px;
 	}

 	.bbs_list td {
 		padding: 15px 4px 15px;
 		line-height: 1.42;
 	}

 	.bbs_list td.subject {
 		width: 100%;
 		overflow: hidden;
 		word-break: break-all;
 	}

 	.bbs_list td a,
 	.bbs_list td a:hover {
 		word-break: break-all;
 		color: #231f20;
 		font-size: 15px;
 	}

 	.bbs_list .info {
 		display: block;
 	}

 	.bbs_list .category {
 		line-height: 22px;
 		height: 20px;
 		width: 40px;
 		font-size: 13px;
 	}

 	.bbs_list2 th {
 		font-size: 14px;
 		width: 70px;
 		padding: 0;
 	}

 	.bbs_list2 td a {
 		font-size: 14px;
 	}

 	.bbs_list2 td.td-date {
 		display: none;
 	}

 	.bbs_list2 .ico-up {
 		height: 12px;
 		margin-right: 4px;
 	}

 	.bbs_list2 .ico-down {
 		height: 12px;
 		margin-right: 4px;
 	}

 	.bbs_view .view-header {
 		padding: 15px 0px 5px;
 	}

 	.bbs_view .view-header .tit {
 		font-size: 17px;
 		padding: 0;
 		margin-bottom: 5px;
 	}

 	.bbs_view .text {
 		padding-bottom: 10px;
 	}

 	.bbs_view .text span {
 		font-size: 14px;
 		margin-right: 10px;
 		padding-right: 10px;
 		line-height: 1.42;
 	}

 	.bbs_view .text span.date {
 		display: block;
 	}

 	.bbs_view .text span::after {
 		height: 12px;
 		top: 4px;
 	}

 	.bbs_view .text-file {
 		padding: 8px 0px;
 	}

 	.bbs_view .text-file span {
 		font-size: 14px;
 	}

 	.bbs_view .view-contents {
 		padding: 15px 0;
 		font-size: 14px;
 	}

 	.bbs_write th {
 		min-width: 50px;
 		padding: 10px 5px;
 		line-height: 1.42;
 		font-size: 14px;
 	}

 	.bbs_write td {
 		padding: 10px 0 10px 10px;
 		line-height: 1.42;
 		vertical-align: middle;
 		font-size: 14px;
 	}

 	.bbs_write td p {
 		line-height: 1.8;
 	}

 	.bbs_write .file .file-box .info-box {
 		font-size: 0.938em;
 		display: block;
 		margin-top: 10px;
 	}

 	.bbs_write .file .file-box .info-box .file-info {
 		padding: 0 15px 0 0;
 	}

 	.grid-area {
 		margin: 0 -4px;
 	}

 	.grid {
 		margin: 0 4px;
 	}

 	.grid-content {
 		padding: 10px 0 20px;
 	}

 	.grid-content .grid-title {
 		font-size: 14px;
 		margin-bottom: 0px;
 	}

 	.grid-content .date {
 		font-size: 14px;
 	}

 	.grid-image .overlay {
 		display: none;
 	}

 	.page-wrap a {
 		font-size: 14px;
 		width: 28px;
 		height: 26px;
 	}

 	.page-wrap a.btn-page {
 		line-height: 24px;
 	}

 	.page-wrap .btn-page span {
 		width: 10px;
 		height: 8px;
 		background: url(/common/img/common/ico-page.png) center center no-repeat;
 		background-size: 40px auto;
 	}

 	.page-wrap .page-first span {
 		background-position: 0 0px;
 	}

 	.page-wrap .page-prev span {
 		background-position: -10px 0;
 	}

 	.page-wrap .page-next span {
 		background-position: -20px 0px;
 	}

 	.page-wrap .page-last span {
 		background-position: -30px 0px;
 	}

 	.page-wrap a.page-prev {
 		margin: 0 6px 0 2px;
 	}

 	.page-wrap a.page-next {
 		margin: 0 2px 0 6px;
 	}

 	.faq {
 		margin-top: -30px;
 	}

 	.faq .faq_title {
 		padding: 15px 40px 15px 40px;
 		font-size: 15px;
 	}

 	.faq .faq_list .icon-arrow {
 		right: 26px;
 	}

 	.faq .faq_list .icon-arrow:before {
 		background-size: auto 8px;
 		top: -4px;
 	}

 	.faq_detail {
 		padding: 22px 40px 30px 60px;
 		font-size: 14px;
 	}

 	.faq em {
 		font-size: 15px;
 		line-height: 25px;
 		width: 25px;
 		height: 25px;
 	}

 	.faq_title em {
 		top: 18px;
 		left: 0px;
 	}

 	.faq_detail em {
 		top: 18px;
 		left: 20px;
 	}

 	.faq_detail em::before {
 		height: 8px;
 		top: 6px;
 		left: -15px;
 	}

 	.faq_detail em::after {
 		width: 8px;
 		top: 14px;
 		left: -15px;
 	}
 }


 @media (max-width:479px) {
 	.grid-image {
 		max-height: 110px;
 	}
 }


 @media (max-width:414px) {
 	.event-wrap .grid-item {
 		width: 100%;
 	}

 	.event-wrap .grid-item .grid-image {
 		max-height: 100%;
 	}
 }







 table thead {
 	background: #00BC61;
 }