@charset "utf-8";

/* 레이어 팝업 */
.layer_popup {
	position: fixed;
	top: 96px;
	z-index: 99999;
	left: 50px;
}


.layer_popup p {
	line-height: 0;
}

.layer_popup ul {
	position: relative;
	background: #555;
}


.layer_popup ul li a {
	color: #FFF;
}

#popup2{
	left: 555px;
}
.dayClose a {
	display: inline-block;
	padding: 10px;
}

.closeBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 48px;
	height: 100%;
	border-left: 1px solid #3f3f3f;
	display: flex;
	justify-content: center;
	align-items: center;
}


@media screen and (max-width:600px) {
	.layer_popup {
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		justify-content: center;
		align-items: center;
		padding: 50px 15px 0;
		background: rgba(0, 0, 0, 0.6);
	}

	.layer_popup .bakbord {
		width: 100%;
	}

	.layer_popup img {
		width: 100%;
	}
}

/* visual */
.mn_visual {
	position: relative;
	width: 100%;
	height: 700px;
	margin-top: 95px;
	/* padding-top: 110px; */
	background: #ddd;
	/* background: url("../img/main/visual01.jpg") 50% 50% / cover no-repeat; */
}

.main_slider li.mn_s {
	position: relative;
	width: 100%;
	height: 700px;
	transition: all 0.5s ease;
	transform: scale(1);
}

.main_slider .slick-slide:nth-child(1) {
	background: url('../img/main/visual01.jpg?v=0407-1') no-repeat 50% 50%;
	background-size: cover;
}

.main_slider .slick-slide:nth-child(2) {
	background: url('../img/main/visual02.jpg?v=2025') no-repeat 50% 50%;
	background-size: cover;
}

.main_slider .slick-slide:nth-child(3) {
	background: url('../img/main/visual03.jpg?v=2025') no-repeat 50% 50%;
	background-size: cover;
}

.main_slider li.mn_s .mn_txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	width: 1250px;
	height: 100%;
	margin: 0 auto;
	text-align: left;
}

.main_slider li.mn_s .mn_txt p {
	font-family: "TmoneyRoundWindRegular";
	font-size: 1.7rem;
}

.main_slider li.mn_s .mn_txt h3 {
	font-family: "TmoneyRoundWindRegular";
	font-size: 2.6rem;
	line-height: 1.3;
	font-weight:600;
	color: #00a151;
}

.main_slider li.mn_s .mn_txt h3 span {
	display: block;
}

.mn_txt p {
	transform: translateY(30px);
	opacity: 0;
	transition: all 1.4s ease-in-out;
}

.main_slider .slick-active .mn_txt p {
	transform: translateY(0px);
	opacity: 1;
	transition: all 1.4s ease-in-out;
}

.mn_txt h3 {
	transform: translateY(20px);
	opacity: 0;
	transition: all 1.4s ease-in-out;
}

.main_slider .slick-active .mn_txt h3 {
	transform: translateY(0);
	opacity: 1;
	transition-delay: 0.3s;
}
.m_ment01{
	font-size: 2rem;
	color: #ff8a00;
}


/* 사회적 협동조합이란? 소개버튼 */
.mn_visual div.btn {
	position: absolute;
	top: 45%;
	right: 0;
	z-index: 90;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.mn_visual div.btn a {
	display: block;
	width: 230px;
	padding: 20px 0;
	padding-left: 60px;
	font-family: "NanumSquareB";
	font-size: 22px;
	color: #fff;
	background: #00c060 url("../img/main/click.svg") 10% 50% no-repeat;
	background-size: 30px 30px;
	border-radius: 5rem 0 0 5rem;
}

.mn_visual div.btn a span {
	display: none;
}

.mn_visual div.btn a:last-child {
	background-color: #ff8a00;
}

.mn_visual div.btn a:hover,
.mn_visual div.btn a:focus {
	width: 280px;
	background-color: #0090ff;
	transition: all 0.3s ease-in;
}

.mn_visual div.btn a:hover span,
.mn_visual div.btn a:focus span {
	display: inline;
}

.mv_txt01 {
	color: #00a151;
}

.floating {
	animation-name: floating;
	-webkit-animation-name: floating;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	transition: all ease;
}

@keyframes floating {
	0% {
		transform: translateY(0%);
	}

	50% {
		transform: translateY(8%);
	}

	100% {
		transform: translateY(0%);
	}
}

/* 슬라이더 설정 */
.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev {
	left: 10px;
}

.slick-next {
	right: 10px;
}

.slick-animated {
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media screen and (max-width:1250px) {
	.main_slider li.mn_s .mn_txt {
		width: 100%;
		margin: 0 20px;
	}
}

@media screen and (max-width:999px) {

	/* 메인비주얼 */
	.mn_visual {
		height: 400px;
		margin-top: 60px;
	}

	.main_slider li.mn_s {
		height: 400px;
	}

	.slick-dots {
		left: 0;
		top: 89%;
	}

	/* 메인비주얼 텍스트 */
	.main_slider li.mn_s .mn_txt p {
		font-size: 1.2rem;
	}

	.main_slider li.mn_s .mn_txt h3 {
		font-size: 2rem;
	}

	/* 메인 플로팅 버튼튼 */

	.mn_visual div.btn {
		gap: 10px;
	}

	.mn_visual div.btn a {
		width: 200px;
		font-size: 15px;
	}

	.mn_visual div.btn a:hover {
		width: 200px;
	}

	.mn_visual div.btn a span {
		display: inline;
	}

}

@media screen and (max-width:800px) {
	.main_slider li.mn_s .mn_txt {
		justify-content: flex-start;
		margin-top: 50px;
	}

	.slick-dots {
		top: 60%;
	}

	/* 메인비주얼 텍스트 */
	.main_slider li.mn_s .mn_txt p {
		font-size: 1rem;
	}

	.main_slider li.mn_s .mn_txt h3 {
		font-size: 1.8rem;
	}

	/* 메인 플로팅 버튼튼 */
	.mn_visual div.btn {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		top: 90%;
		gap: 5px;
		width: 100%;
		padding: 0 10px;
	}

	.mn_visual div.btn a,
	.mn_visual div.btn a:hover {
		width: 100% !important;
		font-size: 15px;
	}

	.mn_visual div.btn a:nth-child(2) {
		border-radius: 0 5rem 5rem 0;
	}

	.mn_visual div.btn a:hover span,
	.mn_visual div.btn a span {
		display: none !important;
	}

}

@media screen and (max-width:415px) {
	.mn_visual {
		margin-top: 50px;
	}

	.mn_visual div a {
		font-size: 13px;
	}


}

/* 자활근로사업 */

#mn_business {
	width: 100%;
	background: url('../img/main/buiz_bg.jpg') 50% 50% no-repeat;
	background-size: cover;
}

#mn_business .wrap {
	max-width: 1250px;
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	flex-direction: column;
}

#mn_business .title {
	position: relative;
	width: 100%;
	margin-bottom: 25px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#mn_business .title h2 {
	font-family: "TmoneyRoundWindRegular";
	font-size: 38px;
}

#mn_business .title p {
	font-family: "notoRegular";
	font-size: 16px;
}

#mn_business .box {
	position: relative;
	width: 100%;
}

#mn_business .box ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;

}

#mn_business .box li {
	border-radius: 10px;
	-moz-border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e2e2e2;
}


#mn_business .box a {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
}

#mn_business .box a div.img {
	display: block;
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-bottom: 1px solid #e2e2e2;
}

#mn_business .box a span {
	display: block;
	width: 100%;
	height: 100%;
}

#mn_business .box a:hover span {
	transform: scale3d(1.05, 1.05, 1.05);
	transition: all 0.3s ease-in-out;
}

#mn_business .box a .biz01 {
	background: url("../img/main/biz01.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz02 {
	background: url("../img/main/biz02.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz03 {
	background: url("../img/main/biz03.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz04 {
	background: url("../img/main/biz04.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz05 {
	background: url("../img/main/biz05.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz06 {
	background: url("../img/main/biz06.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz07 {
	background: url("../img/main/biz07.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz08 {
	background: url("../img/main/biz08.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz09 {
	background: url("../img/main/biz09.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz10 {
	background: url("../img/main/biz10.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz_regreen {
	background: url("../img/main/biz_regreen.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz_bento {
	background: url("../img/main/biz_bento.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a .biz_vietnam {
	background: url("../img/main/biz_veitnam.jpg") 50% 50% / cover no-repeat;
}

#mn_business .box a div.txt {
	width: 100%;
	padding: 10px 20px;
	padding-top: 10px;
	font-size: 1.1rem;
	text-align: center;
	background: white;
}

@media screen and (max-width:999px) {

	#mn_business .title h2 {
		width: 100%;
		font-size: 32px;
	}

	#mn_business .title p {
		padding: 5px 10px 0 0;
	}

	#mn_business .title::after {
		bottom: 5px;
		width: calc(100% - 480px);
	}

	#mn_business .box h3 {
		position: absolute;
		top: 0;
		left: 0;
		width: 50%;
	}


	#mn_business .box ul {
		grid-template-columns: repeat(3, 1fr);
	}

	#mn_business .box a div.img {
		height: 180px;
	}


}

@media screen and (max-width:700px) {

	#mn_business .title::after {
		display: none;
	}

	#mn_business .box ul {
		grid-template-columns: repeat(2, 1fr);
	}

	#mn_business .box a div.img {
		height: 140px;
	}

}

@media screen and (max-width:415px) {

	#mn_business {
		padding: 0 15px;
	}

	#mn_business .title {
		margin-bottom: 25px;
	}

	#mn_business .title h2 {
		width: 100%;
		font-size: 28px;
		text-align: center;
	}

	#mn_business .title p {
		width: 100%;
		padding: 5px 0 0;
		font-size: 15px;
		text-align: center;
	}

	#mn_business .title::after {
		display: none;
	}

	#mn_business .box {
		/* margin-bottom: 30px; */
	}

	#mn_business .box h3 {
		position: absolute;
		top: 0;
		left: 0;
		width: 50%;
	}

	#mn_business .box a div.img {
		height: 120px;
	}


}

/* link */

#mn_link {
	width: 100%;
	margin: 70px 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

#mn_link .boxL {
	padding: 40px;
	text-align: center;
	background: #efffd0;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 10px;
	-moz-border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ddd;
	height: 100%;
}

#mn_link .boxL h2 {
	float: left;
	width: 100%;
	margin-bottom: 5px;
	font-family: "TmoneyRoundWindRegular";
	font-size: 38px;
}


#mn_link .boxL p {
	width: 100%;
	font-family: "notoRegular";
	font-size: 16px;
}

#mn_link .boxL ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	max-width: 800px;
	width: 100%;
}

#mn_link .boxL li {
	text-align: center;
}

#mn_link .boxL li a {
	position: relative;
	display: block;
	width: 100%;
	font-family: "notoMedium";
	display: flex;
	flex-direction: column;
	align-items: center;
}

#mn_link .boxL li a div.icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	-moz-borrder-radius: 50%;
	border: 2px solid #00a151;
	background: #fff;
	margin-bottom: 20px;
}

#mn_link .boxL li a div.icon img {
	width: 50px;
	height: auto;
	filter: invert(45%) sepia(87%) saturate(735%) hue-rotate(110deg) brightness(95%) contrast(95%);
}

#mn_link .boxL li a:hover div.icon img {
	transition: all 0.3s ease-in-out;
	transform: scale3d(1.05, 1.05, 1.05);
}


#mn_link>div {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 60% auto;
	gap: 20px;
}

#mn_link>div div.box {
	border-radius: 10px;
	-moz-border-radius: 10px;
	overflow: hidden;
	border: 1px solid #ddd;
	height: 100%;
}

#mn_link .boxM {
	width: 100%;
	padding: 40px;
	height: 320px;
	background: #ffeab3 url(../img/main/directBg.png) 100% 100% no-repeat;
	display: flex;
	align-content: center;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

#mn_link .boxM a.tit {
	display: flex;
	gap: 10px;
	align-items: center;
}

#mn_link .boxM h2 {
	font-family: "TmoneyRoundWindRegular";
	font-size: 28px;
}

#mn_link .boxM .btn {
	z-index: 10;
	background: url('../img/main/ov_btn.svg') 50% 50% no-repeat;
	background-size: cover;
	width: 30px;
	height: 30px;
}

#mn_link .boxM a.tit:hover .btn {
	transform: translateX(10px);
	transition: all 0.3s ease;
}

#mn_link .boxM ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

#mn_link .boxM li {
	padding-left: 22px;
	font-family: "notoMedium";
	font-size: 18px;
	background: url("../img/main/point.png") 0 5px no-repeat;
}

#mn_link .boxM li a {
	position: relative;
}

#mn_link .boxM li a::after {
	display: block;
	position: absolute;
	content: '';
	bottom: -5px;
	left: 0;
	width: 0;
	height: 1px;
	background: #333;
}

#mn_link .boxM li:hover a::after {
	transition: all 0.3s ease;
	width: 100%;
}


#mn_link .boxR {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#mn_link .boxR a {
	width: 100%;
	height: 100%;
	font-family: "TmoneyRoundWindRegular";
	font-size: 24px;
}

#mn_link .boxR a div {
	display: flex;
	align-items: center;
	position: relative;
	gap: 10px;
	padding: 20px;
}

#mn_link .boxR a span {
	display: block;
	color: #fff;
	filter: drop-shadow(1px 1px 3px #0000002e);
	z-index: 10;
}

#mn_link .boxR a div .btn {
	z-index: 10;
	background: url('../img/main/ov_btn.svg') 50% 50% no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
}

#mn_link .boxR a:hover div .btn {
	transform: translateX(10px);
	transition: all 0.3s ease-in-out;
}

#mn_link .boxR a:first-child div.box {
	background: url("../img/main/caseBg.jpg") 50% 50% / cover no-repeat;
}

#mn_link .boxR a:last-child div.box {
	background: url("../img/main/assetsBg.jpg") 50% 50% / cover no-repeat;
}

#mn_link .boxR a div.box::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 0;
	opacity: 0;
	background: linear-gradient(90deg, #4586c763, transparent);
}

#mn_link .boxR a:hover div.box::after {
	transition: all 0.3s ease-in-out;
	opacity: 1;
	width: 100%;
}


@media screen and (max-width:999px) {
	#mn_link {
		padding: 0 15px;
	}

	#mn_link>div {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px 0;
	}

	#mn_link .boxL {
		padding: 25px 20px;
	}

	#mn_link .boxL h2 {
		font-size: 26px;
	}

	#mn_link .boxL p {
		font-size: 15px;
	}

	#mn_link .boxL a {
		font-size: 15px;
	}

	#mn_link>div:first-child .boxL ul {
		max-width: 100%;
		gap: 20px
	}

	#mn_link .boxL li a div.icon {
		width: 80px;
		height: 80px;
		margin-bottom: 25px;
	}

	#mn_link .boxL li a div.icon img {
		width: 45px;
	}


	#mn_link .boxM {
		/* height: 265px; */
		/* margin-left: 0; */
		padding: 30px;
		height: auto;
	}

	#mn_link .boxR {
		grid-column: 1 / span 2;
		grid-row: 2;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	#mn_link .boxR a {
		height: 100px;
	}

	#mn_link .boxR a:last-child {
		float: right;
	}

	#mn_link .boxR a span {
		font-size: 18px;
	}

}

@media screen and (max-width:650px) {
	#mn_link .boxR {
		grid-template-columns: repeat(1, 1fr);
	}
}


@media screen and (max-width:550px) {
	#mn_link .boxL ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

}


@media screen and (max-width:415px) {

	#mn_link {
		padding: 30px 15px;
		margin: 40px 0;
	}

	#mn_link>div {
		display: flex;
		flex-direction: column;
	}

	#mn_link .boxL {
		width: 100%;
		height: auto;

		padding: 25px 20px;
	}

	#mn_link .boxL h2 {
		font-size: 24px;
	}

	#mn_link .boxL p {
		font-size: 14px;
	}

	#mn_link .boxL li a {
		font-size: 14px;
	}

	#mn_link .boxM {
		width: 100%;
		height: auto;
		margin-left: 0;
		padding: 25px 20px;
	}

	#mn_link .boxM h2 {
		font-size: 24px;
	}

	#mn_link .boxM li {
		padding-left: 18px;
		background-size: 10px;
		background-position: 0 7px;
	}

	#mn_link .boxR {
		width: 100%;
		grid-template-columns: repeat(1, 1fr);
	}

	#mn_link .boxR a {
		margin-top: 5px;
		height: 100px;
		font-size: 18px;
	}

	#mn_link .boxR a:first-child {
		margin-bottom: 0;
	}

	#mn_link .boxR a span {
		padding-bottom: 15px;
		background-size: 24px;
	}

}

/* ===================
메인-board 
===================*/

#mn_board {
	width: 100%;
	max-width: 1250px;
	margin: 60px auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

/* 링크 */
#mn_board .link {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

#mn_board .link li {}

#mn_board .link a {
	display: block;
	overflow: hidden;
	border-radius: 2rem;
	background: #ddd;
	font-family: "notoRegular";
	font-size: 18px;
}

#mn_board .link a>div {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 20px;
	position: relative;
	padding: 50px 30px;
}

#mn_board .link a>div::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 0;
	opacity: 0;
}

#mn_board .link a:hover>div::after {
	transition: all 0.3s ease-in-out;
	opacity: 1;
	width: 100%;
}

#mn_board .link a>div p {
	z-index: 10;
	font-family: "TmoneyRoundWindRegular";
	font-size: 24px;
	color: #3f3f3f;
	/* 	color: #fff;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 17, 0.199)); */
}

#mn_board .link li:last-child a>div p {
	color: #fff;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 17, 0.199));
}

#mn_board .link a div .btn {
	z-index: 10;
	background: url('../img/main/ov_btn.svg') 50% 50% no-repeat;
	background-size: cover;
	width: 40px;
	height: 40px;
}

#mn_board .link a:hover div .btn {
	transform: translateX(10px);
	transition: all 0.3s ease-in-out;
}

#mn_board .link li:nth-child(1) a>div {
	background: url('../img/main/link_bg01.jpg') 50% 50% no-repeat;
	background-size: cover;
}

#mn_board .link li:nth-child(1) a>div::after {
	background: linear-gradient(90deg, #94949463, transparent);
}

#mn_board .link li:nth-child(2) a>div {
	background: url('../img/main/link_bg02.jpg') 50% 50% no-repeat;
	background-size: cover;
}

#mn_board .link li:nth-child(2) a>div::after {
	background: linear-gradient(90deg, #ff801163, transparent);
}


#mn_board .link li:nth-child(3) a>div {
	background: url('../img/main/link_bg03.jpg') 50% 50% no-repeat;
	background-size: cover;
}

#mn_board .link li:nth-child(3) a>div::after {
	background: linear-gradient(90deg, #0a8f5363, transparent);
}



/* 게시판공통 */
#mn_board .more {
	position: absolute;
	right: 0;
	top: 10px;
	display: block;
	width: 27px;
	height: 27px;
	background: url("../img/main/more.png") 50% 50% no-repeat;
	border: 1px solid black;
	-webkit-border-radius: 50%;
	/*Safari, Chrome*/
	-moz-border-radius: 50%;
	/*Firefox*/
	border-radius: 50%;
}

/* 공지사항항 */
#mn_board .notice {
	position: relative;
	width: 100%;
}

#mn_board .notice h2 {
	margin-bottom: 30px;
	font-family: "TmoneyRoundWindRegular";
	font-size: 30px;
}

#mn_board .notice ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

#mn_board .notice li {}

#mn_board .notice li a {
	display: block;
	height: 100%;
	padding: 40px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	display: block;
	border-bottom: 1px solid #cacaca;
}

#mn_board .notice li a:hover {
	background: #f8f9f8;
}

#mn_board .notice li a div {
	position: relative;
	width: 100%;
	text-overflow: ellipsis;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #333;
	margin-bottom: 20px;
}

#mn_board .notice li a div:before {
	content: 'News';
	color: #00c060;
	font-weight: 700;
	font-size: 16px;
	display: block;
	margin-bottom: 10px;
}

#mn_board .notice li a span {
	font-size: 16px;
}


/* 갤러리 */
#mn_board .gallery {
	display: grid;
	gap: 80px;
	grid-template-columns: repeat(2, 1fr);
}

#mn_board .photo {
	position: relative;
	/* float: left; */
	width: 100%;
	margin-bottom: 20px;
}

#mn_board .photo:last-child {
	grid-column: span 2;
	/* 두 열을 차지 */
	grid-row: 2;
}

#mn_board .photo h2 {
	/* float: left; */
	width: 100%;
	margin-bottom: 30px;
	font-family: "TmoneyRoundWindRegular";
	font-size: 28px;
}

#mn_board .photo>div {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

#mn_board .photo:last-child>div {
	grid-template-columns: repeat(4, 1fr);
}

#mn_board .photo div a {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 15px;
	font-family: "notoRegular";
	text-align: center;
}

#mn_board .photo div a span {
	position: relative;
	width: 100%;
	height: 200px;
	border-radius: 10px;
	border: 1px solid #ddd;
	overflow: hidden;
	background: #fffdd8;
	display: flex;
	justify-content: center;
	align-items: center;
}

#mn_board .photo div a .event_img {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in;
}

#mn_board .photo div a:hover .event_img {
	transform: scale3d(1.05, 1.05, 1.05);
}

#mn_board .photo div a p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	width: 20ch;
	/* 글자 수 제한 (20글자 정도) */
}

@media screen and (max-width:1250px) {
	#mn_board {
		padding: 0 20px;
	}
}

@media screen and (max-width:900px) {

	#mn_board .link a>div p {
		font-size: 20px;
	}

	#mn_board .link a div .btn {
		width: 30px;
		height: 30px;
	}

	#mn_board .notice h2 {
		margin-bottom: 20px;
		font-size: 24px;
	}

	/* 갤러리 */
	#mn_board .gallery {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

}

@media screen and (max-width:850px) {

	#mn_board .notice ul {
		grid-template-columns: repeat(3, 1fr);
	}

	#mn_board .notice ul li:nth-last-child(n+4) {
		display: none;
	}

}

@media screen and (max-width:700px) {

	#mn_board .link {
		grid-template-columns: repeat(1, 1fr);
	}

	#mn_board {
		gap: 40px;
	}


	#mn_board .notice ul {
		grid-template-columns: repeat(2, 1fr);
	}

	#mn_board .notice ul li:nth-last-child(n+3) {
		display: none;
	}

	#mn_board .photo div a {
		width: 98%;
		gap: 20px;
	}

	#mn_board .photo div a span {
		height: 160px;
	}


}

@media screen and (max-width:415px) {

	#mn_board {
		padding: 0 15px;
		/* grid-template-columns: repeat(1, 1fr); */
	}

	#mn_board .more {
		top: 5px;
	}


	#mn_board .notice ul {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}

	#mn_board .notice ul li a {
		padding: 25px;
	}

	#mn_board .link li {}

	#mn_board .link li a {
		font-size: 18px;
	}

	#mn_board .photo h2 {
		font-size: 24px;
	}

	#mn_board .photo div a p {
		width: 15ch;
		/* 글자 수 제한 (20글자 정도) */
	}

	/* 
	#mn_board .photo div a {
		width: calc(50% - 5px);
	} */

}