select::-ms-expand { display: none; }
select { 
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none;
	outline: none;
}
input{ outline: none; border: none; }
input[type="submit"],input[type="button"], input[type="file"],
input[type="text"], button { appearance: none; -moz-appearance: none; -webkit-appearance: none; border-radius: 0;-webkit-border-radius: 0; -moz-border-radius: 0; }
input[type="checkbox"]{ padding: 0 !important; }


/* popup */
#popup{ width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); position: fixed; top: 0; left: 0; z-index: 1000; display: none; }
#popup .blank{ height: 100%; }
#popup .inner{ max-width: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#popup .close{ background: none; border: none; padding: 10px; position: absolute; top: 0; right: 0; transform: translate(100%, -100%); }
#popup .close i{ display: inline-block; width: 20px; height: 20px; background: url("/img/board/icon_popup_close.svg") no-repeat center center / contain; }

@media screen and (max-width: 1280px){
	#popup .close{ padding: 5px; }
	#popup .close i{ width: 17px; height: 17px; }
}


/* buttons */
.buttons{ 
	--width: 320px;
	--height: 85px;
}

.buttons{ text-align: center; }
.buttons > *{ width: var(--width); height: var(--height); display: inline-flex; justify-content: center; align-items: center; background: var(--mainColor); border: 2px solid var(--mainColor); border-radius: 10px; font-family: var(--baseFont); font-size: 19px; font-weight: 500; color: #FFF !important; text-align: center; padding: 15px; }
.buttons > *:not(:last-child){ margin-right: 7px; }
.buttons > *.border{ background: #FFF; border-color: var(--borderColor); color: #AAA !important; }

@media screen and (max-width: 1700px){
	.buttons{ 
		--width: 260px;
		--height: 75px;
	}
}

@media screen and (max-width: 1280px){
	.buttons{ 
		--width: 220px;
		--height: 65px;
	}
	.buttons > *{ font-size: 18px; }
}


@media screen and (max-width: 900px){
	.buttons{ 
		--width: 170px;
		--height: 60px;
	}
}


/* paging */
.paging{
	--width: 45px;
}
.paging,
.paging ul,
.paging .arr{ display: flex; justify-content: center; }

.paging{ margin-top: 120px; }
.paging a{ width: var(--width); height: var(--width); display: inline-flex; justify-content: center; align-items: center; background: none; border: 2px solid transparent; border-radius: 50%; font-family: var(--engFont); font-size: 19px; font-weight: 500; color: #CCC; line-height: calc(var(--width) - 4px); text-align: center; }
.paging ul li.on a{ border-color: var(--mainColor); color: var(--mainColor); }

.paging .arr a i::before{ content: ""; display: flex; width: 6px; height: 11px; }
.paging .arr a i.xi-angle-left-min::before{ background: url("/img/board/icon_paging_prev.svg") no-repeat center center / contain; }
.paging .arr a i.xi-angle-right-min::before{ background: url("/img/board/icon_paging_next.svg") no-repeat center center / contain; }

@media screen and (max-width: 1700px){
	.paging{
		--width: 40px;
	}
	.paging{ margin-top: 90px; }
	.paging a{ font-size: 18px; }
}

@media screen and (max-width: 1700px){
	.paging{
		--width: 35px;
	}
	.paging{ margin-top: 60px; }
	.paging a{ font-size: 17px; }
}

@media screen and (max-width: 1280px){
	.paging{
		--width: 32px;
	}
}


/* 검색창 */
.search-box{ 
	--height: 85px;
	--select: 220px;
	--input: 560px;
	--padding: 20px;
}
.search-box{ margin-bottom: 60px; }
.search-box *{ font-family: var(--baseFont); font-size: 18px; font-weight: 400; color: #CCC; }  
.search-box .flex{ max-width: 100%; width: max-content; display: flex; justify-content: center; border: 2px solid var(--borderColor); border-radius: 99px; padding: 0 40px; margin: 0 auto; position: relative; }
.search-box .input{ width: var(--input); position: relative; }
.search-box select,
.search-box input,
.search-box button{ height: var(--height); background: none; border: none; }
.search-box select{ width: var(--select); background: url("/img/board/icon_search_arrow.svg") no-repeat center right / auto; padding-inline: var(--padding) calc(var(--padding) + 11px); }
.search-box select.selected{ font-weight: 500; color: #333; }
.search-box input{ width: 100%; padding: 0 var(--padding); padding-right: calc((var(--padding) * 2) + 24px); font-weight: 500; color: #333; }
.search-box input::placeholder{ font-weight: 400; color: #CCC; }
.search-box button{ padding: 0 var(--padding); position: absolute; top: 0; right: 0; }
.search-box button i{ display: inline-block; width: 24px; height: 25px; background: url("/img/board/icon_search.svg") no-repeat center center / contain; }

@media screen and (max-width: 1700px){
	.search-box{ 
		--height: 80px;
		--select: 180px;
		--input: 500px;
	}
	.search-box .flex{ padding: 0 25px; }
}

@media screen and (max-width: 1280px){
	.search-box{ 
		--height: 70px;
		--select: 140px;
		--input: 400px;
	}
	.search-box{ margin-bottom: 30px; }
	.search-box *{ font-size: 17px; }
	.search-box .flex{ padding: 0 10px; }
}

@media screen and (max-width: 650px){
	.search-box{
		--height: 60px;
		--padding: 25px;
	}
	.search-box .flex{ width: 100%; flex-direction: column; border: none; padding: 0; }
	.search-box .input{ width: 100%; border: 2px solid var(--borderColor); border-radius: 99px; }
	.search-box select{ width: 100%; background-position: center right var(--padding); border: 2px solid var(--borderColor); border-radius: 99px; padding-right: calc((var(--padding) * 2) + 11px); margin-bottom: 10px; }
}


/* 기본 게시판 */
.board-box colgroup col{ width: 100%; }
.board-box colgroup col.l{ width: 500px; }
.board-box colgroup col.m{ width: 400px; }
.board-box colgroup col.s{ width: 280px; }

.board-box th,
.board-box td{ padding-inline: 20px; }

.board-box thead{ background: var(--grayBg); clip-path: inset(0 0 0 0 round 10px); -webkit-clip-path: inset(0 0 0 0 round 10px); }
.board-box thead th{ font-size: 20px; font-weight: 600; color: #111; padding-block: 40px; }

.board-box tbody tr{ border-bottom: 1px solid var(--borderColor); }
.board-box tbody td{ font-size: 18px; font-weight: 300; color: #333; text-align: center; padding-block: 30px; }
.board-box tbody td h2{ font-weight: inherit; }

.board-box.left tbody td h2{ text-align: left; }

@media screen and (max-width: 1700px){
	.board-box colgroup col.l{ width: 400px; }
	.board-box colgroup col.m{ width: 300px; }
	.board-box colgroup col.s{ width: 240px; }

	.board-box thead th{ font-size: 19px; padding-block: 30px; }
	.board-box tbody td{ padding-block: 25px; }
}

@media screen and (max-width: 1280px){
	.board-box colgroup col.l{ width: 280px; }
	.board-box colgroup col.m{ width: 250px; }
	.board-box colgroup col.s{ width: 230px; }

	.board-box thead th{ font-size: 18px; padding-block: 20px; }
	.board-box tbody td{ font-size: 17px; padding-block: 20px; }
}

@media screen and (max-width: 1000px){
	.board-box colgroup, 
	.board-box thead{ display: none; }

	.board-box tbody tr{ width: 100%; display: flex; flex-direction: column; border-top: 1px solid var(--borderColor); border-bottom: none; }
	.board-box tbody tr:not(:last-of-type){ margin-bottom: 20px; }
	.board-box tbody tr td{ min-height: 63px; display: flex; align-items: center; border-bottom: 1px solid var(--borderColor); text-align: left; padding: 15px 20px; padding-left: 140px; position: relative; }
	.board-box tbody tr td::before{ content: attr(data-th); width: 100px; height: calc(100% - 40px); display: flex; justify-content: center; align-items: center; background: var(--grayBg); border-radius: 10px; font-weight: 500; color: #111; text-align: center; padding: 12px 10px; position: absolute; top: 50%; left: 5px; transform: translateY(-50%); }
}


/* 인증서 게시판 */
.certify-board{
	--gapB: 120px; 
	--gapR: 15px; 
	--line: 5;
}
.certify-board{ display: flex; flex-wrap: wrap; margin-bottom: calc(var(--gapB) * -1); }
.certify-board .item{ width: calc((100% - calc(var(--gapR) * (var(--line) - 1))) / var(--line)); margin-right: var(--gapR); margin-bottom: var(--gapB); cursor: pointer; }
.certify-board .item:nth-of-type(5n){ margin-right: 0; }
.certify-board .item figure{ display: block; border: 2px solid var(--borderColor); border-radius: 15px; padding-bottom: 135.59%; position: relative; overflow: hidden; }
.certify-board .item figure img{ width: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.certify-board .item h2{ font-size: 20px; font-weight: 500; color: #111; word-break: break-all; text-align: center; margin-top: 30px; }

/* 인증 팝업 */
#popup.certify .inner{ width: 480px; background: #FFF; border-radius: 15px; padding: 20px; }
#popup.certify figure{ display: block; border: 2px solid var(--borderColor); border-radius: 15px; padding-bottom: 135.59%; position: relative; overflow: hidden; }
#popup.certify figure img{ width: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#popup.certify h2{ font-size: 22px; font-weight: 500; color: #111; text-align: center; word-break: break-all; margin-top: 20px; }

@media screen and (max-width: 1700px){
	.certify-board{
		--gapB: 90px; 
	}
	.certify-board .item h2{ font-size: 19px; margin-top: 25px; }

	/* 인증 팝업 */
	#popup.certify .inner{ width: 400px; }
	#popup.certify h2{ font-size: 20px; }
}

@media screen and (max-width: 1280px){
	.certify-board{
		--gapB: 50px; 
	}
	.certify-board .item h2{ font-size: 18px; margin-top: 15px; }

	/* 인증 팝업 */
	#popup.certify .inner{ width: 320px; padding: 15px; }
	#popup.certify h2{ font-size: 18px; margin-top: 15px; }
}

@media screen and (max-width: 1200px){
	.certify-board{
		--line: 4;
	}
	.certify-board .item:nth-of-type(5n){ margin-right: var(--gapR); }
	.certify-board .item:nth-of-type(4n){ margin-right: 0; }
}

@media screen and (max-width: 900px){
	.certify-board{
		--line: 3;
	}
	.certify-board .item:nth-of-type(4n){ margin-right: var(--gapR); }
	.certify-board .item:nth-of-type(3n){ margin-right: 0; }

	/* 인증 팝업 */
	#popup.certify .inner{ width: 380px; }
}

@media screen and (max-width: 650px){
	.certify-board{
		--line: 2;
	}
	.certify-board .item:nth-of-type(3n){ margin-right: var(--gapR); }
	.certify-board .item:nth-of-type(2n){ margin-right: 0; }
}


/* 채용 게시판 */
.recruit-board{ 
	--gapB: 60px; 
	--gapR: 20px; 
	--line: 4;
}

.recruit-board{ display: flex; flex-wrap: wrap; margin-bottom: calc(var(--gapB) * -1); }
.recruit-board .item{ width: calc((100% - calc(var(--gapR) * (var(--line) - 1))) / var(--line)); background: var(--grayBg); border: 2px solid var(--grayBg); border-radius: 10px; margin-right: var(--gapR); margin-bottom: var(--gapB); transition: border-color 0.4s; }
.recruit-board .item:nth-of-type(4n){ margin-right: 0; }
.recruit-board .item a{ display: block; padding: 40px; }
.recruit-board .item span{ display: inline-block; background: var(--mainColor); border-radius: 5px; font-size: 16px; font-weight: 500; color: #FFF; line-height: 1; padding: 7px 20px; }
.recruit-board .item h6{ display: -webkit-box; height: 3.2em; font-size: 22px; font-weight: 500; color: #111; line-height: 1.6; word-break: break-all; text-overflow: ellipsis; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin: 40px 0; }
.recruit-board .item p{ font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #CCC; }

.recruit-board .item.end span{ background: #DDD; }

@media screen and (hover: hover) and (pointer: fine){
	.recruit-board .item:not(.end):hover{ border-color: var(--mainColor); }
}

@media screen and (max-width: 1700px){
	.recruit-board{ 
		--gapB: 40px; 
	}
	.recruit-board .item a{ padding: 30px; }
	.recruit-board .item span{ padding-inline: 15px; }
	.recruit-board .item h6{ font-size: 20px; margin: 30px 0; }
}

@media screen and (max-width: 1400px){
	.recruit-board{ 
		--line: 3;
	}
	.recruit-board .item:nth-of-type(4n){ margin-right: var(--gapR); }
	.recruit-board .item:nth-of-type(3n){ margin-right: 0; }
}

@media screen and (max-width: 1280px){
	.recruit-board{ 
		--gapB: 20px; 
	}
	.recruit-board .item a{ padding: 22px; }
	.recruit-board .item span{ font-size: 15px; }
	.recruit-board .item h6{ font-size: 18px; margin: 25px 0; }
}

@media screen and (max-width: 1000px){
	.recruit-board{ 
		--line: 2;
	}
	.recruit-board .item:nth-of-type(3n){ margin-right: var(--gapR); }
	.recruit-board .item:nth-of-type(2n){ margin-right: 0; }
}

@media screen and (max-width: 700px){
	.recruit-board{ 
		--line: 1;
	}
	.recruit-board .item{ margin-right: 0 !important; }
}


/* 이미지 게시판 */
.img-board{ 
	--gapB: 120px; 
	--gapR: 40px; 
	--line: 4;
}

.img-board{ display: flex; flex-wrap: wrap; margin-bottom: calc(var(--gapB) * -1); }
.img-board .item{ width: calc((100% - calc(var(--gapR) * (var(--line) - 1))) / var(--line)); margin-right: var(--gapR); margin-bottom: var(--gapB); }
.img-board .item:nth-of-type(4n){ margin-right: 0; }
.img-board figure{ display: block; padding-bottom: 63.415%; border-radius: 20px; position: relative; overflow: hidden; }
.img-board figure img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.img-board .txt{ margin-top: 30px; }
.img-board .txt h6{ font-size: 22px; font-weight: 500; color: #111; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.img-board .txt p{ font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #CCC; margin-top: 20px; }


/* 비디오 게시판 */
.img-board.video .item{ cursor: pointer; }
.img-board.video .item .figure{ position: relative; }
.img-board.video .item .figure figure{ padding-bottom: 56.25%; }
.img-board.video .item .figure figure::after{ content: ""; width: 100%; height: 100%; background: linear-gradient(to bottom, transparent, var(--mainColor)); position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.4s; }
.img-board.video .item .figure i{ width: 60px; height: 60px; display: flex; flex-direction: column; justify-content: center; border: 2px solid #FFF; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.4s; }
.img-board.video .item .figure i::before{ content: ""; display: block; height: 12px; background: url("/img/board/icon_play.svg") no-repeat center center / contain; }


/* 비디오 팝업 */
#popup.video .inner{ width: 940px; background: #FFF; border-radius: 20px; padding: 20px; }
#popup.video .iframe{ position: relative; border-radius: 20px; padding-bottom: 56.25%; overflow: hidden; }
#popup.video .iframe iframe{ width: 100%; height: 100%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

@media screen and (hover: hover) and (pointer: fine){
	.img-board.video .item:hover .figure figure::after{ opacity: 1; }
	.img-board.video .item:hover .figure i{ opacity: 1; }
}

@media screen and (max-width: 1700px){
	.img-board{ 
		--gapB: 90px; 
		--gapR: 30px; 
	}
	.img-board .txt h6{ font-size: 20px; }

	/* 비디오 게시판 */
	.img-board.video .item .figure i{ width: 55px; height: 55px; }
}

@media screen and (max-width: 1280px){
	.img-board{ 
		--gapB: 50px; 
		--gapR: 20px; 
	}
	.img-board .txt{ margin-top: 15px; }
	.img-board .txt h6{ font-size: 18px; }
	.img-board .txt p{ margin-top: 7px; } 

	/* 비디오 게시판 */
	.img-board.video .item .figure i{ width: 50px; height: 50px; }
}

@media screen and (max-width: 1200px){
	.img-board{ 
		--line: 3;
	}
	.img-board .item:nth-of-type(4n){ margin-right: var(--gapR); }
	.img-board .item:nth-of-type(3n){ margin-right: 0; }

	/* 비디오 팝업 */
	#popup.video .inner{ width: 800px; padding: 15px; }
	#popup.video .close{ transform: translateY(-100%); }
	#popup.video .iframe{ border-radius: 15px; }
}

@media screen and (max-width: 900px){
	.img-board{ 
		--line: 2;
	}
	.img-board .item:nth-of-type(3n){ margin-right: var(--gapR); }
	.img-board .item:nth-of-type(2n){ margin-right: 0; }
}

/* 상세 페이지 */
.view-ctn{
	--ptb: 60px;
}

.view-ctn .title{ border-bottom: 2px solid var(--borderColor); padding-bottom: var(--ptb); }
.view-ctn .title span{ display: inline-block; background: var(--mainColor); border-radius: 5px; font-size: 16px; font-weight: 500; color: #FFF; line-height: 1; padding: 7px 20px; margin-bottom: 30px; }
.view-ctn .title span.end{ background: #DDD; }
.view-ctn .title h2{ font-size: 4.5rem; font-weight: 500; color: #111; margin-bottom: 30px; }
.view-ctn .title p{ font-family: var(--engFont); font-size: 16px; font-weight: 400; color: #CCC; }

.view-ctn .edit-content{ font-size: 18px; padding: var(--ptb) 0; }

.view-ctn .files{ padding-bottom: var(--ptb); }
.view-ctn .files ul{ margin: -12px 0; }
.view-ctn .files ul li a{ display: block; font-size: 17px; font-weight: 300; color: #555; line-height: 1.3; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding-block: 12px; padding-left: 40px; position: relative; }
.view-ctn .files ul li a::before{ content: ""; width: 19px; height: 20px; background: url("/img/board/icon_view_file.svg") no-repeat center center / contain; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }

.view-ctn .pages{ display: grid; grid-template-columns: repeat(2, 50%); border-top: 1px solid var(--borderColor); border-bottom: 1px solid var(--borderColor); padding: 40px; }
.view-ctn .pages dl{ display: flex; align-items: baseline; font-size: 18px; }
.view-ctn .pages dl dt{ flex-shrink: 0; width: 80px; font-family: var(--engFont); font-weight: 500; color: #CCC; position: relative; }
.view-ctn .pages dl dt i{ width: 6px; height: 11px; background: url("/img/board/icon_view_page.svg") no-repeat center center / contain; position: absolute; top: 50%; transform: translateY(-50%); }
.view-ctn .pages dl dd{ flex: 1 1 auto; min-width: 0; }
.view-ctn .pages dl dd a{ display: block; font-weight: 300; color: #111; line-height: 1.3; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding: 20px 40px; position: relative; }
.view-ctn .pages dl dd a::after{ content: ""; width: 1px; height: 100%; background: var(--borderColor); position: absolute; top: 0; right: 0; }
.view-ctn .pages dl:last-of-type dd a::after{ display: none; }

.view-ctn .pages dl:first-of-type dt{ text-align: right; }
.view-ctn .pages dl:first-of-type dt i{ left: 0; }

.view-ctn .pages dl:last-of-type{ flex-direction: row-reverse; }
.view-ctn .pages dl:last-of-type dt i{ right: 0; transform: translateY(-50%) scaleX(-1); }
.view-ctn .pages dl:last-of-type dd a{ text-align: right; }

@media screen and (max-width: 1700px){
	.view-ctn .title span{ padding-inline: 15px; }

	.view-ctn .pages{ padding: 30px; }
	.view-ctn .pages dl dd a{ padding: 10px 30px; }
}

@media screen and (max-width: 1280px){
	.view-ctn{
		--ptb: 40px;
	}
	.view-ctn .title span{ font-size: 15px; margin-bottom: 20px; }
	.view-ctn .title h2{ margin-bottom: 20px; }

	.view-ctn .files ul{ margin: -7px 0; }
	.view-ctn .files ul li a{ font-size: 16px; padding-block: 7px; padding-left: 25px; }
	.view-ctn .files ul li a::before{ width: 15px; height: 16px; }

	.view-ctn .pages{ padding: 20px; }
	.view-ctn .pages dl{ font-size: 17px; }
	.view-ctn .pages dl dt{ width: 60px; }
	.view-ctn .pages dl dd a{ padding-inline: 25px; }
}

@media screen and (max-width: 900px){
	.view-ctn .title{ padding-bottom: 20px; }
	.view-ctn .title h2{ font-size: 4.2rem; margin-bottom: 15px; }

	.view-ctn .files{ padding-bottom: 20px; }

	.view-ctn .pages{ grid-template-columns: repeat(1, 100%); padding: 0; }
	.view-ctn .pages dl{ padding-left: 15px; }
	.view-ctn .pages dl:not(:last-of-type){ border-bottom: 1px solid var(--borderColor); }
	.view-ctn .pages dl dd a{ padding: 20px 25px; padding-right: 15px; }
	.view-ctn .pages dl dd a::after{ display: none; }

	.view-ctn .pages dl:first-of-type dt i{ transform: translateY(-50%) rotate(90deg); }

	.view-ctn .pages dl:last-of-type{ flex-direction: row; }
	.view-ctn .pages dl:last-of-type dt{ text-align: right; }
	.view-ctn .pages dl:last-of-type dt i{ left: 0; right: unset; transform: translateY(-50%) rotate(-90deg); }
	.view-ctn .pages dl:last-of-type dd a{ text-align: left; }
}


/* grid-form */
.grid-form{
	--height: 85px;
	--padding: 40px;
	--margin: 20px;

	--red: #FF0000;
}
.grid-form{ border-bottom: 1px solid var(--borderColor); }
.grid-form .bb{ border-bottom: 2px solid #000; margin-bottom: 40px; }
.grid-form .tit{ display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 40px; }
.grid-form .tit h4{ font-size: 32px; font-weight: 600; color: #111; }
.grid-form .tit p{ font-size: 18px; font-weight: 300; color: #333; }  
.grid-form .tit p i{ color: var(--red); font-style: normal; }

.grid-form .scroll-y{ height: 250px; background: var(--grayBg); border-radius: 20px; padding: 60px; overflow-x: clip; overflow-y: auto; }
.grid-form .scroll-y::-webkit-scrollbar{ width: 45px; height: 45px; }
.grid-form .scroll-y::-webkit-scrollbar-thumb{ min-height: 100px; background: var(--mainColor); background-clip: padding-box; border: 20px solid transparent; border-radius: 100px; }
.grid-form .scroll-y::-webkit-scrollbar-track{ background: #EEE; background-clip: padding-box; border: 20px solid transparent; border-radius: 100px; }
.grid-form .scroll-y.has-scroll{ padding-right: 0; }

.grid-form .privacy{
	--mtb: 10px;
}
.grid-form .privacy *{ font-size: 18px; font-weight: 300; color: #555; }
.grid-form .privacy .sec-box > *{ line-height: 1.4; margin-top: 40px; }
.grid-form .privacy .sec-box h6{ font-size: 21px; font-weight: 500; margin-bottom: 20px; }
.grid-form .privacy .sec-box dl dd, 
.grid-form .privacy .sec-box ul li{ margin-top: var(--mtb); }
.grid-form .privacy .sec-box .bold{ font-weight: 500; }
.grid-form .privacy .sec-box .content > *:not(:last-of-type){ margin-bottom: var(--mtb); }
.grid-form .privacy .sec-box .hyphen{ padding-left: 12px; position: relative; }
.grid-form .privacy .sec-box .hyphen::before{ content: "-"; position: absolute; top: 0; left: 0; }
.grid-form .privacy .sec-box table{ border-top: 2px solid #000; text-align: center; }
.grid-form .privacy .sec-box table tr{ border-bottom: 1px solid #DDD; }
.grid-form .privacy .sec-box table th,
.grid-form .privacy .sec-box table td{ padding: 15px 10px; }
.grid-form .privacy .sec-box table th{ background: #EDEDED; font-weight: 500; }

.grid-form .agree{ text-align: right; margin-top: 40px; }
.grid-form .agree input{ display: none; }
.grid-form .agree label{ display: inline-block; font-size: 18px; font-weight: 300; color: #333; padding-block: 10px; padding-left: 35px; margin-block: -10px; position: relative; }
.grid-form .agree label{
	-webkit-tap-highlight-color: transparent;   /* 사파리 & 크롬용 */
	-webkit-touch-callout: none;                    /* iOS 오래 누를 때 메뉴 제거 */
	user-select: none;    
	cursor: pointer;
}
.grid-form .agree label::before,
.grid-form .agree label::after{ content: ""; border-radius: 50%; position: absolute; top: 50%; transform: translateY(-50%); box-sizing: border-box; }
.grid-form .agree label::before{ width: 20px; height: 20px; border: 2px solid var(--borderColor); left: 0; }
.grid-form .agree label::after{ width: 4px; height: 4px; background: var(--borderColor); left: 8px; }
.grid-form .agree input:checked + label::before{ border-color: var(--mainColor); }
.grid-form .agree input:checked + label::after{ background: var(--mainColor); }


.grid-form .form{ overflow: hidden; }
.grid-form .form *{ font-family: var(--baseFont); font-size: 20px; font-weight: 300; color: #333; }
.grid-form .form .grid{ display: grid; grid-template-columns: repeat(2, 50%); margin: -20px -30px; }
.grid-form .form .grid > *{ margin: 20px 30px; }
.grid-form .form .block{ grid-column: auto / span 2; }
.grid-form .form .flex{ display: flex; align-items: center; margin-bottom: calc(var(--margin) * -1); }
.grid-form .form .flex > *{ margin-bottom: var(--margin); }
.grid-form .form .flex > *:not(:last-child){ margin-right: var(--margin); }
.grid-form .form .flex > span{ display: inline-block; }
.grid-form .form dl dt{ font-size: 22px; font-weight: 500; color: #111; margin-bottom: 20px; }
.grid-form .form dl dt i{ font-size: inherit; font-weight: inherit; color: var(--red); font-style: normal; }
.grid-form .form input,
.grid-form .form select,
.grid-form .form textarea{ width: 100%; background: var(--grayBg); border: 2px solid var(--grayBg); border-radius: 10px; -webkit-border-radius: 10px; font-weight: 200; color: #AAA; outline: none; }
.grid-form .form input,
.grid-form .form select{ height: var(--height); padding: 0 var(--padding); }
.grid-form .form select{ background: var(--grayBg) url("/img/board/icon_select.svg") no-repeat center right var(--padding) / auto; font-weight: 200; color: #AAA; padding-right: calc((var(--padding) * 2) + 11px); }
.grid-form .form textarea{ resize: none; height: 300px; padding: var(--padding); }

.grid-form .form input:focus,
.grid-form .form select:focus,
.grid-form .form textarea:focus{ background-color: #FFF; border-color: var(--mainColor); font-weight: 300; color: #111; }

.grid-form .form .email input,
.grid-form .form .email select{ width: calc((100% - (var(--margin) * 2) - 18px) / 3); }

.grid-form .form .file{
	--width: 320px;
}
.grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
.grid-form .form .file a{ width: var(--width); height: var(--height); display: flex; justify-content: center; align-items: center; background: #555; border-radius: 10px; font-weight: 400; color: #FFF; text-align: center; }
.grid-form .form .file .fileBtn input{ display: none; }
.grid-form .form .file .fileBtn label{ width: var(--width); height: var(--height); display: flex; justify-content: center; align-items: center; background: #000; border-radius: 10px; font-weight: 400; color: #FFF; text-align: center; cursor: pointer; }

.grid-form .form .captcha{
	--width: 193px;
}
.grid-form .form .captcha figure{ width: var(--width); height: var(--height); border-radius: 10px; overflow: hidden; position: relative; }
.grid-form .form .captcha figure::before{ content: ""; width: 100%; height: 100%; border: 2px solid var(--borderColor); border-radius: inherit; position: absolute; top: 0; left: 0; box-sizing: border-box; pointer-events: none; }
.grid-form .form .captcha figure img{ height: 100% !important; }
.grid-form .form .captcha input{ width: calc(100% - var(--width) - var(--height) - (var(--margin) * 2)); }
.grid-form .form .captcha button{ flex-shrink: 0; width: var(--height); height: var(--height); background: #000; border: none; border-radius: 10px; padding: 10px; }
.grid-form .form .captcha button i{ display: block; height: 25px; background: url("/img/board/icon_reset.svg") no-repeat center center / contain; }


/* 인재채용 - 채용정보 */
#apply .grid-form{ padding-top: 60px; }
#apply .grid-form .form .file input{ width: calc(100% - (var(--width) * 2) - (var(--margin) * 2)); }

@media screen and (max-width: 1700px){
	.grid-form{
		--height: 75px;
		--padding: 30px;
	}
	.grid-form .bb{ margin-bottom: 30px; }
	.grid-form .tit{ padding-bottom: 30px; }
	.grid-form .tit h4{ font-size: 28px; }
	.grid-form .tit p{ font-size: 17px; }

	.grid-form .scroll-y{ padding: 40px; }
	.grid-form .privacy *{ font-size: 17px; }
	.grid-form .privacy .sec-box h6{ font-size: 19px; }

	.grid-form .agree{ margin-top: 30px; }

	.grid-form .form *{ font-size: 19px; } 
	.grid-form .form dl dt{ font-size: 21px; }

	.grid-form .form .email input,
	.grid-form .form .email select{ width: calc((100% - (var(--margin) * 2) - 17px) / 3); }

	.grid-form .form .file{
		--width: 250px;
	}

	.grid-form .form .captcha{
		--width: 169px;
	}
}

@media screen and (max-width: 1400px){
	.grid-form .form .grid{ margin-inline: -10px; }
	.grid-form .form .grid > *{ margin-inline: 10px; }
}

@media screen and (max-width: 1280px){
	.grid-form{
		--height: 65px;
		--padding: 20px;
		--margin: 10px;
	}
	.grid-form .bb{ margin-bottom: 20px; }
	.grid-form .tit{ padding-bottom: 15px; }
	.grid-form .tit h4{ font-size: 24px; }
	.grid-form .tit p{ font-size: 16px; }

	.grid-form .scroll-y{ padding: 25px; }
	.grid-form .privacy *{ font-size: 16px; }
	.grid-form .privacy .mb10{ margin-bottom: 5px !important; }
	.grid-form .privacy .sec-box h6{ font-size: 18px; margin-bottom: 10px; }

	.grid-form .agree{ margin-top: 20px; }
	.grid-form .agree label{ font-size: 17px; padding-left: 26px; }
	.grid-form .agree label::before{ width: 18px; height: 18px; }
	.grid-form .agree label::after{ left: 7px; }

	.grid-form .form *{ font-size: 18px; } 
	.grid-form .form dl dt{ font-size: 19px; margin-bottom: 10px; }

	.grid-form .form .email input,
	.grid-form .form .email select{ width: calc((100% - (var(--margin) * 2) - 16px) / 3); }

	.grid-form .form .file{
		--width: 200px;
	}

	.grid-form .form .captcha{
		--width: 146px;
	}

	/* 인재채용 - 채용정보 */
	#apply .grid-form{ padding-top: 40px; }
}

@media screen and (max-width: 1000px){
	.grid-form .form .grid{ grid-template-columns: repeat(1, 100%); }
	.grid-form .form .block{ grid-column: unset; }
	.grid-form .form textarea{ height: 250px; }
}

@media screen and (max-width: 900px){
	.grid-form{
		--height: 60px;
	}
	.grid-form .tit h4{ font-size: 22px; }

	.grid-form .form *{ font-size: 17px; } 
	.grid-form .form dl dt{ font-size: 18px; }

	.grid-form .form .file{
		--width: 120px;
	}
	.grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
	.grid-form .form .file .fileBtn{ margin-right: 0; } 
	.grid-form .form .file a{ width: 100%; } 

	.grid-form .form .captcha{
		--width: 135px;
	}
	.grid-form .form .captcha button i{ height: 20px; }

	/* 인재채용 - 채용정보 */
	#apply .grid-form .form .file{ flex-wrap: wrap; }
	#apply .grid-form .form .file input{ width: calc(100% - var(--width) - var(--margin)); }
}

@media screen and (max-width: 800px){
	.grid-form .form .flex{ flex-wrap: wrap; }

	.grid-form .form .email input{ width: calc((100% - (var(--margin) * 2) - 15px) / 2); }
	.grid-form .form .email input:last-of-type{ margin-right: 0; }
	.grid-form .form .email select{ width: 100%; margin-right: 0 !important; }
}