.board .search {
	position: relative;
	background: var(--sky);
	gap: 10px;
	margin-bottom: 10px;
}
.board .search input[type=text] {
	width: calc(100% - 70px);
	height: 40px;
	padding: 0 15px;
	border-radius: 10px;
	font-size: 1.6rem;
	box-sizing: border-box;
}
.board .search .search_btn {
	width: 60px;
	height: 40px;
	background: var(--key-color) url("../images/ic_search.svg")no-repeat 50% 50%;
	border-radius: 10px;
}

.notice .list li a {
	display: block;
	width: 100%;
	padding: 20px;
	border-bottom: 1px solid rgba(205, 205, 205, 0.50);
	box-sizing: border-box;
}
.notice .list li .title {
	font-size: 1.6rem;
}
.notice .list li .date {
	margin-top: 10px;
	color: #AAA;
	font-size: 1.3rem;
}

.notice .read .title {
	border-bottom: 1px solid rgba(205, 205, 205, 0.50);
}
.notice .read .title div {
	font-size: 1.6rem;
}
.notice .read .title div p {
	margin-top: 10px;
	color: #AAA;
	font-size: 1.3rem;
}
.notice .read .cont {
	font-size: 1.6rem;
}
.notice .read .cont img {
	max-width: 100%;
}


.faq .tabs {
	border-bottom: 0;
}
.faq .tabs .swiper {
	padding: 0 20px 10px;
	box-sizing: border-box;
}
.faq .tabs .swiper-slide {
	width: auto;
}
.faq .tabs .swiper-slide button {
	padding: 8px 15px;
	border-radius: 15px;
	border: 1px solid #AAA;
	border-radius: 50px;
	box-sizing: border-box;
}
.faq .tabs .swiper-slide button.on {
	background: var(--key-color);
	color: var(--white);
	border: 1px solid var(--key-color);
}
.faq .list li .ques {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 40px;
	text-align: left;
	font-size: 1.6rem;
	border-bottom: 1px solid rgba(224, 229, 236, 0.50);
	box-sizing: border-box;
}
.faq .list li .ques:before {
	content: 'Q.';
	position: absolute;
	top: 20px;
	left: 20px;
}
.faq .list li .ques:after {
	content: '';
	position: absolute;
	top: 20px;
	right: 15px;
	display: block;
	width: 18px;
	height: 18px;
	background: url("../images/arrow-right-gray2.svg")no-repeat 50% 50%;
	transform: rotate(90deg);
}
.faq .list li .answer {
	display: none;
	background: var(--sky);
	padding: 20px;
	font-size: 1.6rem;
	border-bottom: 1px solid rgba(224, 229, 236, 0.50);
}
.faq .list li.on .ques:after {
	transform: rotate(-90deg);
}
.faq .list li.on .answer {
	display: block;
}



.qna {
	background: var(--sky) url("../images/qna_img.png")no-repeat 100% 100%;
	padding: 30px 20px 10px;
}
.qna .top h2 {
	font-family: 'GmarketSans';
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 10px;
}
.qna .top p {
	font-size: 1.4rem;
}
.qna .cont {
    margin-top: 30px;
    font-size: 2rem;
    line-height: 1.5;
    width: 60%;
    word-break: keep-all;
}
.qna .btn_blue {
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 15px;
	font-size: 1.6rem;
	margin-top: 80px;
}


.event .list {
	gap: 20px;
}
.event .list .item {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}
.event .list .item .thumb {
	border-radius: 10px;
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.10);
	overflow: hidden;
}
.event .list .item .thumb img {
	width: 100%;
}
.event .list .item .txt {
	padding: 10px 10px 0;
}
.event .list .item .txt h4 {
	font-size: 1.8rem;
	font-weight: 500;
}
.event .list .item .txt .date {
	color: #aaa;
	font-size: 1.4rem;
	margin-top: 5px;
}




@media screen and (min-width: 1025px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	.qna .top h2 {
		font-size: 2.5rem;
	}
	.qna .cont {
		font-size: 1.8rem;
	}
	.qna .cont br {
		display: none;
	}
}