@charset "utf-8";

/* ************** */
/* 게시판 */
/* ************** */

/* * write * */


.board-wr {
	padding: 80px 20px 40px;
}

.board-view-skin {
	border-top: 4px solid #0269b4;
}

.board-view-head {
	border-bottom: 1px solid #eeeeee;
	padding: 30px 50px;
}

.board-view-head .ttl {
	display: block;
	padding-bottom: 15px;
	font-size: 20px;
	color: #2b2b2b;
}

.board-view-head .contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	grid-gap: 15px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap
}

.board-view-head .contents-ttl {
	padding: 8px 28px;
	color: #FFF;
	font-size: 15px;
	border-radius: 30px;
}

.board-view-head .contents-ttl.bg01 {
	background: #0097d8;
}

.board-view-head .contents-ttl.bg02 {
	background: #006bb1;
}

.board-view-head .date {
	padding-right: 10px;
	font-size: 15px;
	color: #888888;
}

.board-view-head .writer {
	font-size: 15px;
	color: #888888;
}

.board-view-body .content {
	padding: 40px 45px;
	line-height: 35px;
	min-height: 300px;
}

.board-view-file {
	padding: 35px 70px;
	border-top: 2px solid #ebebeb;
	border-bottom: 2px solid #ebebeb;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #f9f9f9;
}

.board-view-file .ttl {
	font-size: 15px;
	font-weight: 300;
	padding-right: 22px;
}

.board-view-file .down-icon {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	text-align: center;
	border: 1px solid #71767d;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.board-view-file .down-icon:hover {
	background: #71767d
}

.board-view-file .down-icon:hover>i:before {
	color: #FFF
}

.board-view-foot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 50px 20px;
}

.board-view-foot .link {
	padding: 20px 100px;
	border: 1px solid #7e7e7e;
	border-radius: 40px;
	font-size: 15px;
}

.board-view-foot .link>i {
	padding-left: 10px;
}

@media screen and (max-width: 768px) {
	.board-wr {
		padding: 30px 20px;
	}

	.board-view-head {
		padding: 20px 20px;
	}

	.board-view-head .contents {
		grid-gap: 10px;
	}

	.board-view-head .contents-ttl {
		padding: 6px 20px;
		font-size: 14px
	}

	.board-view-body .content {
		padding: 30px 20px;
		font-size: 14px;
		line-height: 30px;
		min-height: 250px;
	}

	.board-view-file {
		padding: 20px;
	}

	.board-view-file .ttl {
		padding-right: 10px
	}

	.board-view-file .down-icon {
		width: 40px;
		height: 40px;
	}

	.board-view-foot {
		margin: 30px 20px;
	}

	.board-view-foot .link {
		padding: 10px 80px;
	}
}

@media screen and (max-width: 500px) {
	.board-view-head {
		padding: 10px;
	}

	.board-view-head .date {
		padding-right: 0;
	}

	.board-view-head .contents-ttl {
		padding: 4px 15px;
	}

	.board-view-body .content {
		padding: 20px 10px;
		min-height: 220px;
	}

	.board-view-file {
		padding: 10px 20px;
	}

	.board-view-file .down-icon {
		width: 35px;
		height: 35px;
	}
}

/* * list * */

/* select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url('../img/menu--arr-right-b.png') no-repeat 95% 50%;
	border: 0px;
	border-bottom: 1px solid #000;
	padding: 0 20px 0 0;
	margin-right: 15px;
} */

select:focus {
	border: 0px;
}

select::-ms-expand {
	display: none;
}

input {
	border: 0px;
	border-bottom: 1px solid #000;
}

.select {
	display: inline-block;
}

.board-list-skin {
	padding: 40px 0;
}

.board-list-sort {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	grid-gap: 10px;
	background: #f8f8f8;
	padding: 10px 16px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 40px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.board-list-sort>li>a {
	display: block;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s
}

.board-list-sort>li:hover>a {
	color: #337de6;
	background: #FFF;
	padding: 10px 40px;
	border-radius: 30px;
	border: 1px solid #337de6;
}

.board-list-sort>li.active>a {
	color: #337de6;
	background: #FFF;
	padding: 10px 40px;
	border-radius: 30px;
	border: 1px solid #337de6;
}

.board-list-sort>li>a {
	font-size: 15px;
	color: rgba(0, 0, 0, 0.48);
	font-weight: 500;
	padding: 10px 12px;
}

.board-list--search-wr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 25px;
}

.board-list--search-wr>p {
	font-size: 15px;
	color: #6d6d6d;
	width: 200px;
	padding: 10px;
}

.board-list--search-wr>p>span {
	color: #0269b4;
}

.board-list--search {
	max-width: 500px;
	width: 100%;
	position: relative;
}

.board-list--search .select {
	width: 100%;
}

.board-list--search .select select {
	width: 100px;
	line-height: 35px;
}

.board-list--search .select input {
	width: calc(100% - 130px);
	line-height: 35px;
}

.board-list--search button {
	position: absolute;
	right: 17px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	background: none;
	border: 0;
}

.board-table-wr {
	width: 100%;
	border-top: 2px solid rgba(0, 0, 0, 0.5);
}

.board-list-table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
}

.board-list-table>thead>tr {
	border-bottom: 2px solid #d3d3d3;
}

.board-list-table>tbody>tr:hover {
	background: #fafafa;
}

.board-list-table>thead>tr>th {
	padding: 20px 10px;
}

.board-list-table>tbody>tr {
	border-bottom: 2px solid #eeeeee;
}

.board-list-table>tbody>tr>a {
	display: block;
}

.board-list-table>tbody>tr>td>a {
	padding: 15px 0;
	display: block;
}

.board-list-table>tbody>tr>td:first-child>a {
	text-align: center;
	padding: 20px 40px;
	font-size: 18px;
	color: #2b2b2b;
	width: 100%;
	height: 100%;
}

.board-list-table>tbody>tr>td:nth-child(2)>a {
	font-size: 20px;
	color: #474747;
	line-height: 20px;
}

.board-list-table>tbody>tr>td:nth-child(2)>a>span {
	font-size: 13px;
	color: #8e8e8e;
}

.board-list-table>tbody>tr>td:nth-child(3)>a {
	font-size: 20px;
	color: #474747;
	line-height: 20px;
}

.board-list-table>tbody>tr>td:nth-child(3)>a>span {
	font-size: 13px;
	color: #8e8e8e;
}

.board-list-btn {
	display: block;
	text-align: right;
	padding: 15px;
}

.board-list-btn .write-btn {
	padding: 6px 15px;
	background: #dd3232;
	color: #FFF;
	font-size: 15px;
	border-radius: 10px;
}

.dday00 {
	color: #ff0060;
}

.dday01 {
	color: #337de6
}

.status {
	color: #FFF;
	border-radius: 10px;
	max-width: 85px;
	width: 100%;
	margin: 0 auto;
	padding: 10px 0px !important
}

.status.st00 {
	background: #ff0060;
}

.status.st01 {
	background: #337de6;
}


.board-list-table.normal>tbody>tr>td>a {
	font-size: 18px;
	color: #474747;
}

.board-list-table.normal>tbody>tr>td>a>i {
	font-size: 22px;
}

/* 페이징 */
.pg_wrap {
	clear: both;
	width: 100%;
	display: block;
	text-align: center;
	margin: 40px 0 10px;
	padding-bottom: 10px;
}

.pg_wrap:after {
	display: block;
	visibility: hidden;
	clear: both;
	content: ""
}

.pg {
	text-align: center
}

.pg_page,
.pg_current {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid #eee
}

.pg a:focus,
.pg a:hover {
	text-decoration: none
}

.pg_page {
	color: #959595;
	font-size: 14px;
	height: 45px;
	line-height: 45px;
	padding: 0 5px;
	min-width: 45px;
	text-decoration: none;
	color: #111;
	font-weight: 600;
}

.pg_page:hover {
	background-color: #39588f;
	color: #fff;
}

.pg_start {
	text-indent: -999px;
	overflow: hidden;
	background: url('../img/sub/btn_first.gif') no-repeat center;
	padding: 0;
	border: 1px solid #eee
}

.pg_prev {
	text-indent: -999px;
	overflow: hidden;
	background: url('../img/sub/btn_prev.gif') no-repeat center;
	padding: 0;
	border: 1px solid #eee
}

.pg_end {
	text-indent: -999px;
	overflow: hidden;
	background: url('../img/sub/btn_end.gif') no-repeat center;
	padding: 0;
	border: 1px solid #eee
}

.pg_next {
	text-indent: -999px;
	overflow: hidden;
	background: url('../img/sub/btn_next.gif') no-repeat center;
	padding: 0;
	border: 1px solid #eee
}

.pg_start:hover,
.pg_prev:hover,
.pg_end:hover,
.pg_next:hover {
	background-color: #fafafa
}

.pg_current {
	display: inline-block;
	background: #39588f;
	border: 1px solid #39588f;
	color: #fff;
	font-weight: bold;
	height: 45px;
	line-height: 45px;
	padding: 0 10px;
	min-width: 45px;
}

@media screen and (max-width:1440px) {
	.board-list-body {
		padding: 10px;
	}

	.board-list-table>thead>tr>th {
		padding: 10px;
		font-size: 16px;
	}

	.pg_wrap {
		padding: 15px 0 10px
	}
}

@media screen and (max-width:1024px) {
	.board-list-table>tbody>tr>td:first-child>a {
		padding: 20px;
		font-size: 16px;
	}

	.board-list-table>tbody>tr>td:first-child>a {
		text-align: left;
		padding: 20px;
		font-size: 16px;
		color: #2b2b2b;
		width: 100%;
		height: 100%;
	}

	.board-list-table>tbody>tr>td:nth-child(2)>a {
		font-size: 14px;
		color: #474747;
		line-height: 18px;
	}

	.board-list-table>tbody>tr>td:nth-child(2)>a>span {
		font-size: 13px;
		color: #8e8e8e;
	}

	.board-list-table>tbody>tr>td:nth-child(3)>a {
		font-size: 14px;
		color: #474747;
		line-height: 18px;
	}

	.board-list-table>tbody>tr>td:nth-child(3)>a>span {
		font-size: 13px;
		color: #8e8e8e;
	}

	.board-list-table>tbody>tr>td:nth-child(4)>a {
		font-size: 14px;
	}

	.board-list-table>tbody>tr>td:nth-child(5)>a {
		font-size: 14px;
	}

	.board-list-table>tbody>tr>td:nth-child(6)>a {
		font-size: 14px;
	}

	.board-list-table>tbody>tr>td:nth-child(7)>a {
		font-size: 14px;
	}

	.pg_page {
		min-width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 13px;
	}

	.pg_current {
		min-width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
}

@media screen and (max-width: 960px) {
	.board-list-sort {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.board-list-table>thead>tr>th.pc-only {
		display: none;
	}

	.board-list-table>tbody>tr>td.pc-only {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.board-list-table>thead>tr>th {
		font-size: 15px;
	}

	.board-list-table>tbody>tr>td:first-child>a {
		padding: 10px;
		font-size: 13px;
	}

	.pg_page {
		min-width: 30px;
		height: 30px;
		line-height: 30px;
		font-size: 13px;
	}

	.pg_current {
		min-width: 30px;
		height: 30px;
		line-height: 30px
	}

	.pg_wrap {
		margin: 20px auto;
	}
}

@media screen and (max-width: 500px) {
	.board-list-skin{
		padding: 20px 0;
	}
	.board-list-body{
		padding:0;
	}
	.pg_page {
		min-width: 25px;
		height: 25px;
		line-height: 25px;
	}

	.pg_current {
		min-width: 25px;
		height: 25px;
		line-height: 25px;
	}
}



.gallery-list-wr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	grid-gap: 30px;
}

.gallery-list {
	width: calc(100% / 3 - 30px);
	border: 3px solid #eeeeee;
	border-radius: 10px;
}

.gallery-list.none {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.gallery-list.none:hover {
	border: 3px solid #eeeeee;
}

.gallery-list.active {
	border: 3px solid #1d68cb;
}

.gallery-list:hover {
	border: 3px solid #1d68cb;
}

.gallery-list>a {
	display: block;
}

.gallery-list .img {
	width:100%;
	height: 240px;
}


.gallery-list .img img {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-list .text {
	padding: 30px 110px 30px 30px;
	position: relative;
}

.gallery-list.active .text {
	background: #1d68cb;
	color: #FFF;
}

.gallery-list:hover .text {
	color: #FFF;
	background: #1d68cb;
}

.gallery-list .text .ttl {
	font-size: 18px;
	padding-bottom: 5px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
}

.gallery-list .text .txt {
	font-size: 15px;
	padding-bottom: 10px;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
}

.gallery-list .text .date {
	font-size: 13px;
}

.gallery-list.active .view-count {
	background-color: #FFF;
	color: #000;
}

.gallery-list:hover .view-count {
	background-color: #FFF;
	color: #000;
}

.gallery-list .text .view-count {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 80px;
	height: 80px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	border: 1px solid #bcbcbc;
	border-radius: 100%;
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.gallery-list .text .view-count>p {
	font-size: 16px;
}

@media screen and (max-width: 1280px) {
	.gallery-list-wr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		grid-gap: 20px;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.gallery-list {
		width: calc(100% / 3 - 20px);
		border: 2px solid #eeeeee;
	}

	.gallery-list.active {
		border: 2px solid #1d68cb;
	}

	.gallery-list:hover {
		border: 2px solid #1d68cb;
	}

	.gallery-list .img{height: 160px;}
	.gallery-list .text {padding: 20px 90px 20px 20px;}
	.gallery-list .text .ttl {font-size: 16px;padding-bottom: 5px;}
	.gallery-list .text .txt {font-size: 14px;padding-bottom: 10px;}
	.gallery-list .text .view-count {width: 70px;height: 70px;right: 20px;}
	.gallery-list .text .view-count>p {font-size: 13px;font-weight: 400}
}

@media screen and (max-width: 640px) {
	.gallery-list-wr {grid-gap: 10px;}
	.gallery-list {width: calc(100% / 2 - 10px);border: 2px solid #eeeeee;}
	.gallery-list .img {height: 100px;}
	.gallery-list .text {padding: 20px 80px 20px 20px;}
	.gallery-list .text .view-count {width: 60px;height: 60px;right: 10px}
	.gallery-list .text .view-count>i:before {font-size: 14px;}
}

@media screen and (max-width: 500px) {

	.gallery-list .img {height: 100px;}
	.gallery-list .text {padding: 10px;}
	.gallery-list .text .view-count {display: none;}
}