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{ 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{ width: 90%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }


/* paging 변수 */
.paging,
.paging .arr,
.paging ul{ display: flex; justify-content: center; align-items: center; }
.paging{ text-align: center; margin-top: 120px; }
.paging ul li:not(:last-of-type){ margin-right: 20px; }
.paging a{ width: 24px; height: 40px; background: none !important; border: none !important; display: inline-flex; justify-content: center; align-items: center; font-family: var(--engFont); font-size: 16px; font-weight: 300; color: #999; }

.paging ul{ margin: 0 20px; }
.paging ul li a{ position: relative; }
.paging ul li a::after{ content: ""; width: 100%; height: 2px; background: var(--mainColor); position: absolute; bottom: 0; left: 0; transform: scaleX(0); transition: transform 0.3s; }
.paging ul li.on a{ font-weight: 400; color: var(--mainColor); }
.paging ul li.on a::after{ transform: scaleX(1); }

.paging .arr a{ width: 40px; }
.paging .arr a i{ transform: translateY(-2px); }
.paging .arr a i::before{ content: ""; width: 8px; height: 14px; display: inline-block; }
.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 (hover: hover) and (pointer: fine){
	.paging ul li:hover a{ font-weight: 400; color: var(--mainColor); }
	.paging ul li:hover a::after{ transform: scaleX(1); }
}

@media screen and (max-width: 1700px){
	.paging{ margin-top: 80px; }
}

@media screen and (max-width: 1280px){
	.paging{ margin-top: 40px; }
	.paging a{ width: 20px; height: 30px; }
	.paging ul{ margin: 0 10px; }
	.paging ul li:not(:last-of-type){ margin-right: 10px; }
	.paging .arr a{ width: 30px; }
}

@media screen and (max-width: 900px){
	.paging ul{ margin: 0 5px; }
	.paging .arr a i::before{ height: 12px; }
}


/* 검색창 변수 */
.search-box{
	--height: 50px;
	--select: 160px;
	--input: 350px;
	--padding: 20px;
}

.search-box{ display: flex; justify-content: flex-end; margin-bottom: 50px; }
.search-box > *:not(:last-child){ margin-right: 20px; }
.search-box select{ width: var(--select); height: var(--height); background: url("/img/board/icon_select.svg") no-repeat center right var(--padding) / auto; border: 1px solid #555; border-radius: 999px; font-family: var(--baseFont); font-size: 18px; font-weight: 600; color: #333; padding: 0 var(--padding); }
.search-box input{ width: var(--input); height: var(--height); background: none; border: none; border-bottom: 1px solid #EEE; font-family: var(--baseFont); font-size: 17px; font-weight: 300; color: #111; padding: 0 var(--padding); }
.search-box input::placeholder{ color: #777; }
.search-box button{ width: var(--height); height: var(--height); background: var(--mainColor); border: none; border-radius: 50%; }
.search-box button i{ display: block; height: 24px; background: url("/img/board/icon_search.svg") no-repeat center center / contain; padding: 0; }

@media screen and (max-width: 1280px){
	.search-box{ margin-top: 50px; margin-bottom: 30px; }
}

@media screen and (max-width: 650px){
	.search-box{ flex-wrap: wrap; }
	.search-box select{ width: 100%; margin-bottom: 15px; margin-right: 0 !important; }
	.search-box input{ width: calc(100% - var(--height) - 20px); }
}


/* 기본 게시판 */
.board-box colgroup col{ width: 100%; }
.board-box colgroup col.s{ width: 150px; }
.board-box table{ text-align: center; }
.board-box thead{ background: #F5F5F5; }
.board-box thead th{ font-size: 20px; font-weight: 600; color: #333; padding: 20px; }  
.board-box tbody tr{ border-bottom: 1px solid #EEE; cursor: pointer; }
.board-box td{ font-size: 18px; font-weight: 300; color: #555; padding: 37px 10px; }
.board-box td a{ display: block; font-size: 20px; font-weight: 400; color: #333; white-space: nowrap; text-overflow: ellipsis; text-align: left; overflow: hidden; padding: 0 30px; }
.board-box td i{ display: inline-block; width: 24px; height: 24px; background: url("/img/board/icon_notice.svg") no-repeat center center / contain; }

.board-box tbody tr.last-notice{ border-bottom-color: var(--mainColor); }

@media screen and (max-width: 1700px){
	.board-box thead th{ font-size: 19px; }
	.board-box td{ padding: 30px 10px; }
	.board-box td a{ font-size: 19px; padding: 0 20px; }
}

@media screen and (max-width: 1280px){
	.board-box colgroup col.s{ width: 120px; }
	.board-box thead th{ font-size: 18px; padding: 15px; }
	.board-box td{ font-size: 17px; padding: 20px 10px; }
	.board-box td a{ font-size: 18px; padding: 0 10px; }
	.board-box td i{ width: 20px; height: 20px; }
}

@media screen and (max-width: 1000px){
	.board-box table{ border-top: 1px solid #EEE; }
	.board-box colgroup,
	.board-box thead{ display: none; }
	.board-box tbody tr{ width: 100%; display: flex; flex-wrap: wrap; align-items: center; }
	.board-box tbody td{ font-size: 16px; }
	.board-box tbody td a{ font-size: 17px; padding: 0; }
	.board-box tbody tr td:nth-of-type(1){ display: none; }
	.board-box tbody tr td:nth-of-type(2){ width: 100%; padding-bottom: 0; }
	.board-box tbody tr td::before{ content: attr(data-th); font-weight: 400; color: #AAA; }

	.board-box tbody tr.notice td:nth-of-type(1){ display: block; padding-right: 0; padding-bottom: 0; }
	.board-box tbody tr.notice td:nth-of-type(2){ width: calc(100% - 30px); }
}
 

/* 비디오 게시판 */
.video-board{ 
	--gapB: 80px; 
	--gapR: 50px;
	--line: 3;
}
.video-board{ display: flex; flex-wrap: wrap; margin-bottom: calc(var(--gapB) * -1); }
.video-board .item{ width: calc((100% - calc(var(--gapR) * (var(--line) - 1))) / var(--line)); margin-right: var(--gapR); margin-bottom: var(--gapB); cursor: pointer; }
.video-board .item:nth-of-type(3n){ margin-right: 0; }
.video-board .item .img{ position: relative; }
.video-board .item .img::after{ content: ""; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.4s; }
.video-board .item .img i{ width: 80px; height: 80px; display: flex; flex-direction: column; justify-content: center; background: var(--mainColor); border-radius: 50%; position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate(-50%, -50%) scale(0.7); opacity: 0; transition: opacity 0.4s, transform 0.4s; }
.video-board .item .img i::before{ content: ""; display: block; height: 26px; background: url("/img/board/icon_play.svg") no-repeat center center / contain; }
.video-board .item figure{ display: block; position: relative; padding-bottom: 56.298%; overflow: hidden; }
.video-board .item figure img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); transition: transform 0.4s; }
.video-board .item .txt{ margin-top: 20px; }
.video-board .item .txt h6{ font-size: 22px; font-weight: 500; color: #111; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; margin-bottom: 20px; }
.video-board .item .txt p{ font-family: var(--engFont); font-size: 16px; font-weight: 300; color: #999; padding-left: 30px; position: relative; }
.video-board .item .txt p::before{ content: ""; width: 20px; height: 20px; background: url("/img/board/icon_view.svg") no-repeat center center / contain; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }

/* 비디오 팝업 */
#popup.video .inner{ max-width: 1200px; }
#popup.video .iframe{ padding-bottom: 56.28%; position: relative; 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){
	.video-board .item:hover .img::after{ opacity: 1; }
	.video-board .item:hover .img i{ opacity: 1; transform: translate(-50%, -50%) scale(1); }
	.video-board .item:hover figure img{ transform: translate(-50%, -50%) scale(1.07); }
}

@media screen and (max-width: 1700px){
	.video-board{ 
		--gapB: 60px; 
		--gapR: 35px;
	}
	.video-board .item .img i{ width: 70px; height: 70px; }
	.video-board .item .img i::before{ height: 26px; }
	.video-board .item .txt h6{ font-size: 20px; }
}

@media screen and (max-width: 1280px){
	.video-board{ 
		--gapB: 40px; 
		--gapR: 25px;
	}
	.video-board .item .img i{ width: 60px; height: 60px; }
	.video-board .item .img i::before{ height: 23px; }
	.video-board .item .txt{ margin-top: 15px; }
	.video-board .item .txt h6{ font-size: 18px; margin-bottom: 10px; }
	.video-board .item .txt p{ font-size: 15px; padding-left: 25px; }
	.video-board .item .txt p::before{ width: 17px; height: 17px; top: calc(50% + 1px); }
}

@media screen and (max-width: 1000px){
	.video-board{ 
		--line: 2;
	}
	.video-board .item:nth-of-type(3n){ margin-right: var(--gapR); }
	.video-board .item:nth-of-type(2n){ margin-right: 0; }
}

@media screen and (max-width: 900px){
	.video-board{ 
		--gapR: 20px;
	}
	.video-board .item .img i{ width: 50px; height: 50px; }
	.video-board .item .img i::before{ height: 20px; }
}

@media screen and (max-width: 600px){
	.video-board .item .img i{ width: 45px; height: 45px; }
	.video-board .item .img i::before{ height: 18px; }
}


/* 이미지 게시판 */
.img-board{ border-top: 1px solid #EEE; }
.img-board .item{ border-bottom: 1px solid #EEE; }
.img-board .item a{ display: grid; grid-template-columns: 640px calc(100% - 640px); padding: 20px 0; }
.img-board .item figure{ display: block; padding-bottom: 46.876%; position: relative; overflow: hidden; }
.img-board .item figure img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1); transition: transform 0.4s; }
.img-board .item .txt{ display: flex; flex-direction: column; align-items: flex-end; text-align: right; padding: 20px 60px; }
.img-board .item .txt h6, 
.img-board .item .txt div{ width: 100%; text-align: left; }
.img-board .item .txt h6{ font-size: 30px; font-weight: 600; color: #111; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.img-board .item .txt div{ flex: 1 0 auto; margin: 30px 0; }
.img-board .item .txt p{ height: 4.5em; display: -webkit-box; font-size: 18px; font-weight: 300; color: #555; line-height: 1.5; word-break: break-all; text-overflow: ellipsis; overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.img-board .item .txt span{ display: inline-block; font-family: var(--engFont); font-size: 16px; font-weight: 300; color: #999; padding-left: 30px; position: relative; }
.img-board .item .txt span::before{ content: ""; width: 20px; height: 20px; background: url("/img/board/icon_view.svg") no-repeat center center / contain; position: absolute; top: 50%; left: 0; transform: translateY(-50%); }

@media screen and (hover: hover) and (pointer: fine){
	.img-board .item:hover figure img{ transform: translate(-50%, -50%) scale(1.07); }
}

@media screen and (max-width: 1700px){
	.img-board .item a{ grid-template-columns: 580px calc(100% - 580px); }
	.img-board .item .txt{ padding: 20px 40px; }
	.img-board .item .txt h6{ font-size: 26px; }
	.img-board .item .txt div{ margin-top: 20px; }
}

@media screen and (max-width: 1280px){
	.img-board .item a{ grid-template-columns: 500px calc(100% - 500px); }
	.img-board .item .txt{ padding: 15px 30px; }
	.img-board .item .txt h6{ font-size: 22px; }
	.img-board .item .txt div{ margin-top: 10px; }
	.img-board .item .txt p{ font-size: 17px; }
}

@media screen and (max-width: 1100px){
	.img-board .item a{ grid-template-columns: 400px calc(100% - 400px); padding: 15px 0; }
	.img-board .item .txt{ padding: 10px 20px; }
	.img-board .item .txt div{ margin-bottom: 20px; }
}

@media screen and (max-width: 900px){
	.img-board{ display: flex; flex-wrap: wrap; border-top: none; margin-bottom: -40px; }
	.img-board .item{ width: calc((100% - 25px) / 2); border-top: 1px solid #EEE; margin-right: 25px; margin-bottom: 40px; }
	.img-board .item:nth-of-type(2n){ margin-right: 0; }
	.img-board .item a{ display: block; }
	.img-board .item .txt{ padding: 20px 0 0; }
	.img-board .item .txt h6{ font-size: 20px; }
}

@media screen and (max-width: 700px){
	.img-board{ margin-bottom: 0; }
	.img-board .item{ width: 100%; margin-right: 0 !important; margin-bottom: 0; }
	.img-board .item:not(:last-of-type){ margin-bottom: -1px; }
}



/* 상세 페이지 */
.view-ctn{ 
	--border: #EEE;
}

.view-ctn .tit{ border-bottom: 1px solid var(--border); padding-bottom: 60px; }
.view-ctn .tit h2{ font-size: 5.4rem; font-weight: 600; color: #111; text-align: center; margin-bottom: 30px; }
.view-ctn .tit ul{ display: flex; flex-wrap: wrap; justify-content: center; }
.view-ctn .tit ul li{ font-family: var(--engFont); font-size: 18px; font-weight: 300; color: #999; padding: 0 20px; position: relative; }
.view-ctn .tit ul li::before{ content: ""; width: 1px; height: 12px; background: var(--border); position: absolute; top: 50%; left: 0; transform: translateY(-50%); }
.view-ctn .tit ul li:first-of-type::before{ display: none; }
.view-ctn .tit ul li span{ display: inline-block; font-weight: 500; color: #555; padding-right: 20px; }

.view-ctn .edit-content{ max-width: 1200px; width: 100%; margin: 0 auto; font-size: 18px; color: #333; padding: 120px 0; }

.view-ctn .file{ border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; margin-bottom: 24px; }
.view-ctn .file *{ font-size: 18px; }
.view-ctn .file dl{ display: grid; grid-template-columns: 107px calc(100% - 107px); align-items: baseline; padding: 0 30px; }
.view-ctn .file dl dt{ font-weight: 500; color: #333; position: relative; }
.view-ctn .file dl dt::after{ content: ""; width: 1px; height: 20px; background: var(--border); position: absolute; top: 50%; right: 0; transform: translateY(-50%); }
.view-ctn .file dl dd{ font-weight: 300; color: #666; }
.view-ctn .file dl dd a{ display: block; color: #666; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding: 15px 20px; padding-right: 140px !important; position: relative; transition: color 0.3s; }
.view-ctn .file dl dd a::before{ content: ""; display: inline-block; width: 20px; height: 20px; background: url("/img/board/icon_view_file.svg") no-repeat center center / contain; margin-right: 15px; vertical-align: middle; filter: grayscale(1) brightness(3); -webkit-filter: grayscale(1) brightness(3); transition: filter 0.3s; }
.view-ctn .file dl dd span{ font-family: var(--engFont); font-weight: 400; color: #999; position: absolute; top: 50%; right: 0; transform: translateY(-50%); transition: color 0.3s; }  
.view-ctn .file dl dd span::before{ content: ""; width: 20px; height: 20px; display: inline-block; background: url("/img/board/icon_view_download.svg") no-repeat center center / contain; vertical-align: middle; margin-right: 5px; transform: translateY(-1px); filter: grayscale(1) brightness(3); -webkit-filter: grayscale(1) brightness(3); transition: filter 0.3s; }

.view-ctn .page{ display: grid; grid-template-columns: repeat(2, 50%); background: #F8F8F8; padding: 0 30px; }
.view-ctn .page dl{ display: flex; align-items: baseline; }
.view-ctn .page dl *{ font-size: 18px; }
.view-ctn .page dl dt{ width: 120px; font-weight: 500; color: #333; padding: 0 30px; position: relative; }
.view-ctn .page dl dt::after{ content: ""; width: 1px; height: 15px; background: #EEE; position: absolute; top: 50%; transform: translateY(-50%); }
.view-ctn .page dl dt i{ width: 13px; height: 8px; position: absolute; top: calc(50% - 1px); transform: translateY(-50%); }
.view-ctn .page dl dd{ width: calc(100% - 120px); }
.view-ctn .page dl dd a{ display: block; font-weight: 300; color: #666; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; padding: 23px 30px; }

.view-ctn .page dl:first-of-type dt::after{ right: 0; }
.view-ctn .page dl:first-of-type dt i{ background: url("/img/board/icon_view_prev.svg") no-repeat center center / contain; left: 0; }

.view-ctn .page dl:last-of-type{ flex-direction: row-reverse; text-align: right; }
.view-ctn .page dl:last-of-type dt::after{ left: 0; }
.view-ctn .page dl:last-of-type dt i{ background: url("/img/board/icon_view_next.svg") no-repeat center center / contain; right: 0; }

.view-ctn .list{ text-align: center; }
.view-ctn .list a{ width: 210px; height: 70px; display: inline-flex; justify-content: center; align-items: center; background: var(--mainColor); border-radius: 999px; font-size: 20px; font-weight: 500; color: #FFF; }
.view-ctn .list a i{ display: inline-block; width: 13px; height: 10px; background: url("/img/board/icon_view_list.svg") no-repeat center center / contain; margin-left: 10px; }

@media screen and (hover: hover) and (pointer: fine){
	.view-ctn .file dl dd a:hover{ color: var(--mainColor); }
	.view-ctn .file dl dd a:hover::before{ filter: unset; -webkit-filter: unset; }
	.view-ctn .file dl dd a:hover span{ color: var(--mainColor); }
	.view-ctn .file dl dd a:hover span::before{ filter: unset; -webkit-filter: unset; }
}

@media screen and (max-width: 1700px){
	.view-ctn .tit{ padding-bottom: 40px; }
	.view-ctn .tit h2{ margin-bottom: 20px; }
	.view-ctn .tit ul li span{ padding-right: 15px; }

	.view-ctn .edit-content{ padding: 90px 0; }

	.view-ctn .file{ padding: 15px 0; margin-bottom: 24px; }
	.view-ctn .file *{ font-size: 17px; }
	.view-ctn .file dl{ padding: 0 25px; }
	.view-ctn .file dl dd a{ padding: 15px 25px; }

	.view-ctn .page dl{ padding: 0 15px; }
	.view-ctn .page dl *{ font-size: 17px; }
	.view-ctn .page dl dt{ width: 100px; }
	.view-ctn .page dl dd{ width: calc(100% - 100px); }
	.view-ctn .page dl dd a{ padding-inline: 25px; }

	.view-ctn .list a{ width: 170px; height: 60px; font-size: 19px; }
}

@media screen and (max-width: 1280px){
	.view-ctn .tit{ padding-bottom: 25px; }
	.view-ctn .tit h2{ margin-bottom: 15px; }
	.view-ctn .tit ul li{ font-size: 17px; padding: 0 15px; }
	.view-ctn .tit ul li span{ padding-right: 10px; }

	.view-ctn .edit-content{ padding: 60px 0; }

	.view-ctn .file{ padding: 10px 0; margin-bottom: 15px; }
	.view-ctn .file *{ font-size: 16px; }
	.view-ctn .file dl{ grid-template-columns: 97px calc(100% - 97px); padding: 0 20px; }
	.view-ctn .file dl dd a{ padding: 12px 20px; padding-right: 120px !important; }
	.view-ctn .file dl dd a::before{ width: 18px; height: 18px; margin-right: 10px; transform: translateY(-1px); } 
	.view-ctn .file dl dd span{ font-size: 15px; }
	.view-ctn .file dl dd span::before{ width: 18px; height: 18px; }

	.view-ctn .page dl{ padding: 0; }
	.view-ctn .page dl *{ font-size: 16px; }
	.view-ctn .page dl dt{ width: 90px; padding: 0 25px; }
	.view-ctn .page dl dd{ width: calc(100% - 90px); }
	.view-ctn .page dl dd a{ padding: 20px; }

	.view-ctn .list a{ width: 130px; height: 50px; font-size: 17px; }
}

@media screen and (max-width: 1000px){
	.view-ctn .page{ display: block; background: none; padding: 0; }
	.view-ctn .page dl{ background: #F8F8F8; padding: 0 20px; }
	.view-ctn .page dl:not(:last-of-type){ margin-bottom: 10px; }

	.view-ctn .page dl:last-of-type{ flex-direction: row; text-align: left; }
	.view-ctn .page dl:last-of-type dt::after{ left: unset; right: 0; }
	.view-ctn .page dl:last-of-type dt i{ left: 0; right: unset; }
}

@media screen and (max-width: 900px){
	.view-ctn .tit h2{ font-size: 5rem; }

	.view-ctn .edit-content{ padding: 40px 0; }

	.view-ctn .file{ padding: 7px 0; }
	.view-ctn .file dl{ grid-template-columns: 92px calc(100% - 92px); padding: 0 12px; }
	.view-ctn .file dl dd a{ padding-inline: 15px; }
	.view-ctn .file dl dd a::before{ width: 16px; height: 16px; }
	.view-ctn .file dl dd span::before{ width: 16px; height: 16px; }
}


/* 견적문의 */
.contact-form{
	--height: 70px;
	--padding: 25px;

	--gray: #F5F5F5;
}
.contact-form *{ font-family: var(--baseFont); color: #333; }
.contact-form .grid{ display: grid; grid-template-columns: repeat(2, 50%); margin: -20px; }
.contact-form .grid > *{ margin: 20px; }
.contact-form .block{ grid-column: auto / span 2; }
.contact-form .flex{ display: flex; flex-wrap: wrap; align-items: center; }
.contact-form .flex > *:not(:last-child){ margin-right: 10px; }
.contact-form .bold{ font-weight: 600; color: #333; }
.contact-form .bold *{ font-weight: inherit; }
.contact-form .scroll-y{ height: 275px; overflow-x: clip; overflow-y: auto; background: var(--gray); }
.contact-form dl dt{ font-size: 19px; font-weight: 600; color: #111; margin-bottom: 20px; }
.contact-form dl dt span{ color: var(--mainColor); }
.contact-form dl dd{ font-size: 17px; font-weight: 400; }

.contact-form input,
.contact-form select,
.contact-form textarea{ width: 100%; background: var(--gray); border: none; border-radius: 0; -webkit-border-radius: 0; }
.contact-form input,
.contact-form select{ height: var(--height); padding: 0 var(--padding); }
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: #999; }
.contact-form select{ background: var(--gray) url("/img/board/icon_form_select.svg") no-repeat center right var(--padding) / auto; color: #999; padding-right: calc((var(--padding) * 2) + 14px); }
.contact-form textarea{ height: 360px; padding: var(--padding); resize: none; outline: none; }

.contact-form .input-list{ display: flex; flex-wrap: wrap; margin: 0 -20px; margin-bottom: -10px !important; }
.contact-form .input-list li{ margin: 0 20px; }
.contact-form .input-list li input{ display: none; }
.contact-form .input-list li label{ display: block; padding: 10px 0; padding-left: 35px; position: relative; cursor: pointer; }
.contact-form .input-list li label::before,
.contact-form .input-list li label::after{ content: ""; width: 20px; height: 20px; position: absolute; top: calc((1.3em + 20px) / 2); left: 0; transform: translateY(-50%); }
.contact-form .input-list li label::before{ background: var(--gray); }
.contact-form .input-list li label::after{ background: var(--mainColor) url("/img/board/icon_check.svg") no-repeat center center / contain; opacity: 0; }
.contact-form .input-list li input:checked + label::before{ opacity: 0; }
.contact-form .input-list li input:checked + label::after{ opacity: 1; }

.contact-form .mail input{ width: calc(((100% - 45px) / 10) * 2.9); }
.contact-form .mail select{ width: calc(((100% - 45px) / 10) * 4.2); margin-right: 0 !important; }

.contact-form .file input{ width: calc(100% - 160px); }
.contact-form .file input[disabled]{ opacity: 1; }
.contact-form .file label{ width: 150px; height: var(--height); display: inline-flex; justify-content: center; align-items: center; font-size: 18px; background: #333; color: #FFF; cursor: pointer; }
.contact-form .file label input{ display: none; }

.contact-form .captcha{ --img: 200px; }
.contact-form .captcha figure img{ height: var(--height); }
.contact-form .captcha input{ width: calc(100% - var(--img) - var(--height) - 20px); }
.contact-form .captcha button{ width: var(--height); height: var(--height); background: #333; border: none; padding: 0; }
.contact-form .captcha button i{ display: block; height: 25px; background: url("/img/board/icon_reset.svg") no-repeat center center / contain; }

.contact-form .privacy{ padding: var(--padding); }
.contact-form .privacy br{ display: none; }
.contact-form .privacy .pBox > *{ margin-top: 0; }
.contact-form .privacy *{ font-size: 15px !important; font-weight: 400; color: #666; }
.contact-form .privacy > *:not(:last-child){ margin-bottom: 60px; }
.contact-form .privacy dl dt{ margin-bottom: 10px !important; }
.contact-form .privacy .textBox dl dt{ margin-bottom: 5px !important; }
.contact-form .privacy ul{ margin-top: 5px; }

.contact-form .agree{ margin-top: 20px; }
.contact-form .agree input{ display: none; }
.contact-form .agree label{ display: inline-block; font-size: 18px; font-weight: 400; color: #555; padding: 10px; padding-left: 30px; margin: -10px 0; position: relative; cursor: pointer; }
.contact-form .agree label::before,
.contact-form .agree label::after{ content: ""; width: 20px; height: 20px; position: absolute; top: calc((1.3em + 20px) / 2); left: 0; transform: translateY(-50%); }
.contact-form .agree label::before{ background: var(--gray); }
.contact-form .agree label::after{ background: var(--mainColor) url("/img/board/icon_check.svg") no-repeat center center / contain; opacity: 0; }
.contact-form .agree input:checked + label::before{ opacity: 0; }
.contact-form .agree input:checked + label::after{ opacity: 1; }

.contact-form .submit{ text-align: center; }
.contact-form .submit > *{ width: 210px; height: var(--height); display: inline-flex; justify-content: center; align-items: center; background: var(--mainColor); border: none; border-radius: 99px; font-size: 20px; font-weight: 500; color: #FFF; }
.contact-form .submit > * i{ display: inline-block; width: 12px; height: 12px; background: url("/img/board/icon_submit.svg") no-repeat center center / contain; margin-left: 10px; } 

@media screen and (max-width: 1700px){
	.contact-form{
		--height: 60px;
		--padding: 20px;
	}

	.contact-form .captcha{ --img: 172px; }

	.contact-form .submit > *{ width: 180px; font-size: 19px; }
}

@media screen and (max-width: 1280px){
	.contact-form{
		--height: 55px;
		--padding: 15px;
	}

	.contact-form .grid{ margin-inline: -15px; }
	.contact-form .grid > *{ margin-inline: 15px; }
	.contact-form dl dt{ font-size: 18px; margin-bottom: 12px; }

	.contact-form .input-list{ margin: 0 -15px; }
	.contact-form .input-list li{ margin: 0 15px; }
	.contact-form .input-list li label{ padding-left: 30px; }

	.contact-form .captcha{ --img: 158px; }

	.contact-form .file input{ width: calc(100% - 130px); }
	.contact-form .file label{ width: 120px; font-size: 17px; }

	.contact-form .privacy > *:not(:last-child){ margin-bottom: 30px; }

	.contact-form .agree{ margin-top: 15px; }
	.contact-form .agree label{ font-size: 17px; }

	.contact-form .submit > *{ width: 150px; font-size: 18px; }
	.contact-form .submit > * i{ width: 11px; height: 11px; }
}

@media screen and (max-width: 1100px){
	.contact-form .grid{ grid-template-columns: repeat(1, 100%); }
	.contact-form .block{ grid-column: unset; }
}

@media screen and (max-width: 650px){
	.contact-form .mail input{ width: calc((100% - 35px) / 2); }
	.contact-form .mail input:nth-of-type(2){ margin-right: 0; }
	.contact-form .mail select{ width: 100%; margin-top: 12px; }
}


/* 스크롤바 커스텀 */
.scroll-y::-webkit-scrollbar{ width: 26px; height: 26px; }
.scroll-y::-webkit-scrollbar-thumb{ min-height: 50px; background: #888; background-clip: padding-box; border: 10px solid transparent; }
.scroll-y::-webkit-scrollbar-track{ background: transparent; background-clip: padding-box; border: 10px solid transparent; }