@charset "UTF-8";

/*리스트 type*/
.board-list-wrap{display:flex;}
.board-list-wrap .l-seciton{width: 340px; margin-right:6rem;}
.board-list-wrap .r-seciton{width: calc(100% - 400px);}

.board-list-type1{border-top: 1px solid #222;}
.board-list-type1 > li{border-bottom:1px solid #e2e2e2}
.board-list-type1 > li > a{display: flex; justify-content: space-between; align-items: flex-start;padding:30px 0; transition: all .3s ease-in-out;}
.board-list-type1> li > a .txt-type{width: calc(100% - 336px); padding-left:5rem; box-sizing: border-box;}
.board-list-type1 .img-type-wrap{width:336px;}
.board-list-type1 .img-type{width: 100%; padding-top: 66%; box-sizing: border-box; overflow: hidden; position: relative; background: #fff; 
display: inline-block;}
.board-list-type1 .img-type img{max-width: 100%;max-height: 100%;width: 100%;height: 100%;object-fit: cover;display: block;position: absolute;top: 0; transition: transform 0.3s ease-in-out;   transform: scale(1);}
.board-list-type1 > li strong{display:block; margin-bottom:1.5rem; color:#000000; font-size:2rem; font-weight: 600;}
.board-list-type1 > li p.tit{color:#000; font-size:3rem;  font-weight: 700;overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.board-list-type1 > li p.date{font-size: 1.6rem; color:#888888;}
.board-list-type1 > li p.cont{margin:2rem 0 3rem 0; font-size:1.8rem; line-height:3.2rem; color:#555;  overflow: hidden;  text-overflow: ellipsis;  display: -webkit-box;          /* flexbox 계열 박스 */
  -webkit-line-clamp: 2;         /* 최대 2줄까지 표시 */
  -webkit-box-orient: vertical;}
.board-list-type1 > li a:hover p.tit{  background:  linear-gradient(270deg, rgba(10, 152, 46, 1) 0%, rgba(25, 132, 186, 1) 100%);; color: transparent; -webkit-background-clip: text; position: relative;}
.board-list-type1 > li > a:hover img {transform: scale(1.1);}
.board-list-type1 > li:nth-child(even) .img-type-wrap{order: 2;}
.board-list-type1 > li:nth-child(even) > a .txt-type{order:1; padding-left:0; padding-right: 5rem;}
.board-select select {width: 100%;padding: 19px 25px; border: 1px solid #ccc; color: #fff; font-size: 2.4rem; font-weight: 600; border-radius: 5px;
  background: url(/common/images/user/ico/ico_select01.png) no-repeat right 25px center, linear-gradient(270deg, rgba(10, 152, 46, 1) 0%, rgba(25, 132, 186, 1) 100%); background-size: 16px, cover;font-family: 'Pretendard'; }
.board-select select option{color:#222 !important;}
select {-webkit-appearance: none; -moz-appearance: none; appearance: none;}
.board-search {margin-top:6rem;; width: 100%; height: 50px; padding-bottom: 1.8rem; box-sizing: border-box; border-bottom: 3px solid #222; display: flex; align-items: center; justify-content: space-between; box-sizing: border-box; }
.board-search input { width: calc(100% - 25px); border: none !important; background: #fff; color: #222; font-size:2.1rem; }
.board-search input[type=text]::placeholder { color: #222; font-size:2.1rem; }
.board-search input[type=text] { }
.board-search a.btn-board-search { width: 21px; height: 21px; background: url(/common/images/user/ico/ico_board_search.png) no-repeat center; background-size: 100%; }

.board-check{padding: 4rem 3rem;}
.board-check ul li{margin-bottom: 2.8rem;}
.checkbox { display: inline-block; position: relative; font-size: 0; color: #222; } 
.checkbox input[type="checkbox"], .checkbox input[type="radio"] { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; opacity: 0; box-sizing: border-box; }
.checkbox label { display: inline-block; position: relative; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; vertical-align: middle;  }
.checkbox label .check-image{display:inline-block; width:32px;height:32px; background-image: url(/common/images/user/btn/btn_unchek1.png); background-repeat: no-repeat; cursor: pointer; vertical-align:middle; background-size:100%; margin-right:10px}
.checkbox label span{word-break: break-all; vertical-align: middle; color:#222; font-size:2.8rem; line-height:28px; font-weight: 500;}
.checkbox input[type="checkbox"]:checked ~ label i {background-image: url(/common/images/user/btn/btn_chek1.png);}

.board-list-type2{border-top:1px solid #222; display: grid; grid-template-columns: repeat(2, 1fr); ;}
.board-list-type2 > li{padding: 5rem 4rem; position: relative;}
.board-list-type1 > li a .tit{transition: all .3s ease-in-out;}
.board-list-type2 > li a:hover .tit{ background:  linear-gradient(270deg, rgba(10, 152, 46, 1) 0%, rgba(25, 132, 186, 1) 100%);; color: transparent; -webkit-background-clip: text; }
.board-list-type2 > li:after{position: absolute; top:1rem; right: 0; content: ""; height: calc(100% - 2rem); width:1px; background: #e2e2e2;;}
.board-list-type2 > li:before{position: absolute;bottom:0rem; left:0; content: ""; height:1px; width: calc(100% - 1rem); background: #e2e2e2;;}
.board-list-type2 > li:nth-child(even):after{display:none}
.board-list-type2 > li:nth-child(even):before{left:1rem;}
.board-list-type2 > li .subject{margin-bottom: 5rem;}
.board-list-type2 > li .subject strong{color: #000; font-weight: 500; font-size: 2rem; display:block; margin-bottom: 1.5rem;}
.board-list-type2 > li .subject > .tit { font-size:2.8rem; line-height:1.3; letter-spacing:-0.05rem; color:#000000; font-weight: 600; overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; min-height: 68px;}
.board-list-type2 > li ul{display:flex; align-items: center;}
.board-list-type2 > li ul li{position: relative;font-family: "Bebas Neue", sans-serif; font-weight:500;color:#acacac ; font-size: 2.6rem;    padding: 0 15px;}
.board-list-type2 > li ul li.date{font-size: 2.1rem; font-weight: 500; color: #555; font-family: 'Pretendard'; margin-top: -3px;}
.board-list-type2 > li ul li:first-child{padding-left:0}
.board-list-type2 > li ul li:first-child:after{display:none}
.board-list-type2 > li ul li:after {width: 1px; height: 18px; background: #c2c2c2; position: absolute; top: 4px; left: 0; content: "";}
.board-list-type2 > li.today ul li.today{color:#004ea2}

.all-gallery{padding:1.5rem 2.5rem; width:100%; border:2px solid #004ea2; background: transparent; display: flex; align-items: center; justify-content: space-between;}
.all-gallery span{font-size:2.4rem; font-weight:500; color:#004ea2;}
.all-gallery i{width:20px; height:20px; background:url('/common/images/user/ico/ico_board_more.png')no-repeat center; background-size:100%; display: inline-block;}
.overflowlabel{position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;}
.input-type01{border-bottom:3px solid #222; padding:1.5rem 0; margin-top:4rem; position: relative;}
.input-type01 input{font-size:2.1rem; color:#222; background:transparent; border:0;}
.input-type01 input::placeholder{color:#222;}
.btn-gallery-search{width:21px; height:21px; background:url('/common/images/user/ico/ico_board_search.png')no-repeat center; background-size:100%; position: absolute; top:50%; right:0; transform: translateY(-50%);}
.board-list-type3{display: grid; grid-template-columns: repeat(3, 1fr); gap:3rem;}
.board-list-type3 li a{display: block; position: relative; overflow: hidden;}
.board-list-type3 li:nth-child(odd) a:after{position: absolute; top:0; left:0; width:100%; height:100%; content:''; background:linear-gradient(0deg, rgba(0, 78, 162, 1) 0%,rgba(0, 0, 0, 0.1) 50%); pointer-events: none; z-index: 2;}
.board-list-type3 li:nth-child(odd) a:hover:after{background:linear-gradient(0deg, rgba(0, 78, 162, 1) 0%,rgba(0, 0, 0, 0.1) 100%); transition: all 0.8s ease;}
.board-list-type3 li:nth-child(odd) a:before{position: absolute; width: 100%; height: 100%; top: -100%; left: 0; content: ''; background: linear-gradient( 0deg, rgba(0, 78, 162, 0) 0%, rgba(10, 152, 46, 0.8) 60% ); pointer-events: none; transition: top 0.8s ease; z-index: 1;}
.board-list-type3 li:nth-child(odd) a:hover:before{top: 0; transition: top 0.4s ease;}
.board-list-type3 li:nth-child(even) a:after{position: absolute; top:0; left:0; width:100%; height:100%; content:''; background:linear-gradient(0deg, rgba(10, 152, 46, 1) 0%, rgba(0, 0, 0, 0.1) 50%); pointer-events: none; z-index: 2;}
.board-list-type3 li:nth-child(even) a:hover:after{background:linear-gradient(0deg, rgba(10, 152, 46, 1) 0%, rgba(0, 0, 0, 0.1) 100%); transition: all 0.8s ease;}
.board-list-type3 li:nth-child(even) a:before{position: absolute; width: 100%; height: 100%; top: -100%; left: 0; content: ''; background: linear-gradient( 0deg, rgba(10, 152, 46, 0) 0%, rgba(0, 78, 162, 0.8) 60% ); pointer-events: none; transition: top 0.4s ease; z-index: 1;}
.board-list-type3 li:nth-child(even) a:hover:before{top: 0; transition: top 0.4s ease;}
.board-list-type3 li a img{width:100%; transition: transform 0.4s ease;}
.board-list-type3 li a:hover img{transform: scale(1.1);}
.board-list-type3 li a div{padding:4rem; box-sizing: border-box; position: absolute; bottom:0; left:0; width:100%; z-index: 5; transition: all 0.4s ease;}
.board-list-type3 li a:hover div{transform: translateY(-10px); transition: all 0.4s ease;}
.board-list-type3 li a div h3{font-size:2.6rem; line-height:3.6rem; font-weight: 600; color:#fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; white-space: break-spaces; text-overflow: ellipsis;}
.board-list-type3 li a div p{font-size:2rem; margin-top:1rem; color:#fff; font-weight: 500;}

/*popup*/
.gallery-popup{position: fixed; top:0; left:0; width:100%; height:100vh; background:rgba(0, 0, 0, 0.6); z-index: 100; padding:2rem; box-sizing: border-box; overflow: hidden;}
.gallery-popup .gallery-popup-inner{background:#f6f6f6; height: 100%; display: flex; flex-direction: column; position: relative;}
.gallery-swiperbox{display: flex; flex-direction: column; align-items: center; justify-content: space-between; height:100%;}
.gallery-popup-close{width:29px; height:29px; background:url('/common/images/user/btn/btn_popup_close.png')no-repeat center; background-size:100%; position: absolute; top:3rem; right:3rem; z-index: 10;}
.swiper.main-swiper{flex: 1; padding: 7rem 0 4rem; min-height: 0; background:#fff; width:100%;}
.swiper.main-swiper .swiper-slide{display: flex; flex-direction: column; align-items: center; justify-content: center;}
.swiper.main-swiper .swiper-slide .imgcontainer{  display: flex; justify-content: center; align-items: center; max-height: 60vh; overflow: hidden;}
.swiper.main-swiper .swiper-slide .imgcontainer img{width: 956px;  height: 555px; max-width: 100%; max-height: 100%; object-fit: cover; } 
.swiper.main-swiper .swiper-slide p{font-size:2.1rem; margin-top: clamp(1rem, 2vh, 3rem); color:#000; font-weight: 600;}
.swiper.main-swiper .swiper-slide h3{font-size: clamp(1.4rem, 2.5vw, 3rem); padding:0 2rem; margin-top: clamp(0.5rem, 1.5vh, 2rem); color:#000; font-weight: 700; text-align: center;}
.swiper.main-swiper .swiper-button-next{width:64px; height:64px; background:url('/common/images/user/btn/btn_next_type03.png')no-repeat center; background-size:100%; transition: all .3s ease; right:20px;}
.swiper.main-swiper .swiper-button-next:hover{background:url('/common/images/user/btn/btn_next_type03_hover.png')no-repeat center; background-size:100%; transition: all .3s ease;}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{display: none;}
.swiper.main-swiper .swiper-button-prev{width:64px; height:64px; background:url('/common/images/user/btn/btn_prev_type03.png')no-repeat center; background-size:100%; transition: all .3s ease; left:20px;}
.swiper.main-swiper .swiper-button-prev:hover{background:url('/common/images/user/btn/btn_prev_type03_hover.png')no-repeat center; background-size:100%; transition: all .3s ease;}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{display: none;}
.swiper-button-next, .swiper-button-prev{margin-top:0 !important; transform: translateY(-50%);}
.thumbnailbox{flex-shrink: 0; padding: 1rem 5vw; border-top:1px solid #c2c2c2; box-sizing: border-box; width:100%;}
.thumbnailbox-inner{position: relative;}
.thumbnailbox .swiper-button-next{width:10px; height:16px; background:url('/common/images/user/btn/btn_next_type04.png')no-repeat center; background-size:100%; transition: all .3s ease; display: block; right:-20px;}
.thumbnailbox .swiper-button-next:hover{background:url('/common/images/user/btn/btn_next_type04_hover.png')no-repeat center; background-size:100%; transition: all .3s ease;}
.thumbnailbox .swiper-button-prev{width:10px; height:16px; background:url('/common/images/user/btn/btn_prev_type04.png')no-repeat center; background-size:100%; transition: all .3s ease; display: block; left:-20px}
.thumbnailbox .swiper-button-prev:hover{background:url('/common/images/user/btn/btn_prev_type04_hover.png')no-repeat center; background-size:100%; transition: all .3s ease;}
.swiper.thumbnail-swiper .swiper-slide{width:80px;}
.swiper.thumbnail-swiper .swiper-slide.swiper-slide-thumb-active{position: relative;}
.swiper.thumbnail-swiper .swiper-slide.swiper-slide-thumb-active:after{width:100%; height:100%; position: absolute; top:0; left:0; border:4px solid #1984ba; content:''; box-sizing: border-box;}
.swiper.thumbnail-swiper .swiper-slide img{width:100%; height:80px; object-fit: cover;}

/*pagination*/
.pagenation {margin-top:4rem;}
.pagenation ul {display: flex; justify-content: center; align-items: center;}
.pagenation ul > li.num { margin: 0 5px;}
.pagenation ul > li > a.on {color:#004ea2; font-weight: 700;}
.pagenation ul > li > a {box-sizing: border-box; display: block; width:30px; height:18px; font-size: 1.5rem;line-height: 18px;  text-align: center; color: #787878; ;}
.pagenation ul > li.first{margin-right:5px;}
.pagenation ul > li.last{margin-left:5px;}
.pagenation ul > li.prev{margin-right:20px;}
.pagenation ul > li.next{margin-left:20px;}
.pagenation ul > li.first a {width:40px; height:40px; background: url(/common/images/user/btn/btn_board_first.png)no-repeat center; background-size: 100%;}
.pagenation ul > li.prev a {width:40px; height:40px; background: url(/common/images/user/btn/btn_board_prev.png)no-repeat center; background-size:100%;}
.pagenation ul > li.next a {width:40px; height:40px; background: url(/common/images/user/btn/btn_board_next.png)no-repeat center; background-size:100%}
.pagenation ul > li.last a {width:40px; height:40px; background: url(/common/images/user/btn/btn_board_last.png)no-repeat center; background-size:100%}

/*뷰 type*/
.page-util{display: flex; justify-content: end;}
.page-util .page-util-list{display: flex;}
.page-util .page-util-list > li {position: relative; margin-right: 1.5rem;}
.page-util .page-util-list li:last-child{margin-right:0}
.page-util .page-util-list li.util-print i{display:inline-block; vertical-align: middle; width:28px; height:26px; background: url(/common/images/user/ico/ico_print.png)no-repeat center; background-size:100%;}
.page-util .page-util-list li.util-share i{display:inline-block; vertical-align: middle; width:22px; height:26px; background: url(/common/images/user/ico/ico_share.png)no-repeat center; background-size:100%;}
.page-util .page-util-list li.util-share .sns-list{display: none; border: 1px solid #c2c2c2; background: #fff; border-radius: 8px; padding: 2rem; box-sizing: border-box;position: absolute; top:4rem; right:0; width: 280px;}
.page-util .page-util-list li.util-share .sns-list .top{border-bottom: 1px solid #e2e2e2; margin-bottom: 2rem; display: flex;  align-items: baseline;justify-content: space-between;}
.page-util .page-util-list li.util-share .sns-list .top strong{display:block; padding-bottom: 1rem; font-size: 1.6rem; color:#000; font-weight: 600;}
.page-util .page-util-list li.util-share .sns-list .btn-sns-close{display:inline-block; vertical-align: middle;}
.page-util .page-util-list li.util-share ul{display: flex; justify-content: space-between;}
.page-util .page-util-list li.util-share ul li{ margin-right:1.5rem}
.page-util .page-util-list li.util-share ul li a {display: block;}
.page-util .page-util-list li.util-share ul li:last-child{margin-right:0}

.board-view-section{ max-width: 1520px; margin: 0 auto;}
.board-view-type1{border-top:1px solid #222;}
.board-view-top{padding:5.3rem 0; text-align: center; border-bottom:1px solid #c2c2c2}
.board-view-top .board-tit{font-size:3.6rem; font-style: normal; font-weight: 600; color:#000; display:block;}

.board-etc{display: flex; justify-content: center; margin-top:2em}
.board-etc li{position: relative; padding: 0 20px; font-size:1.6rem;  color:#555}
.board-etc li span{font-weight: 600; padding-right: 1rem;}
.board-etc li:first-child{padding-left:0}
.board-etc li:first-child:after{display:none}
.board-etc li:after {width: 1px; height: 13px; background: #c2c2c2; position: absolute; top: 3px; left: 0; content: "";}

.board-file { padding: 2.6rem 12rem; box-sizing: border-box; display: flex; align-items: flex-start; border-bottom: 1px solid #e2e2e2;}
.board-file > p { margin-right: 3rem; width: 100px; color: #222; font-size: 1.8rem; font-weight: 600; display: flex; align-items: center; }
.board-file ul { width: calc(100% - 130px); }
.board-file ul li { display: inline-block; margin-right: 2rem;}
.board-file ul li:last-child { margin-right: 0; margin-bottom: 0; }
.board-file ul li a { font-size: 1.8rem; padding-left:2.5rem; color: #555;position: relative; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: break-all;; }
.board-file ul li a:hover { text-decoration: underline; text-underline-position: under; }
.board-file ul li:last-child a { padding-right: 0; }
.board-file ul li a::after { width: 19px; height: 18px; content: ''; background: url('/common/images/user/ico/ico_board_file.png') no-repeat center; background-size: 100%; position: absolute; top: 50%; left: 0; transform: translate(0,-50%); }

.view-content{padding:3rem 12rem 12rem 12rem; background: #f9f9f9; }
.view-content img{max-width: 100%; margin:0 auto;}
.view-content .board-content{padding-top: 5rem;}

.board-bottom-layout { padding-top: 30px; border-top: 1px solid #c2c2c2; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; }
.board-bottom-layout .board-bottom-box { display: flex; align-items: center; gap: 30px; width: 460px; justify-content: flex-start; }
.board-bottom-layout .board-bottom-box a.board-prev, .board-bottom-layout .board-bottom-box a.board-next { display: flex; color: #222; font-size: 1.6rem; font-weight: 600; align-items: center; }
.board-bottom-layout .board-bottom-box.next { justify-content: flex-end; }
.board-bottom-layout div a.board-prev i { width: 10px; height: 16px; display: inline-block; background: url('/common/images/user/ico/ico_board_prev.png') no-repeat center; background-size: 100%; vertical-align: middle; margin-right: 1rem; }
.board-bottom-layout div a.board-next i { width: 10px; height: 16px; display: inline-block; background: url('/common/images/user/ico/ico_board_next.png') no-repeat center; background-size: 100%; vertical-align: middle; margin-left: 1rem; }
.board-bottom-layout .all-txt-link { color: #787878; font-weight: 400; font-size: 1.6rem; line-height: 1.3; }
.board-view-section a.board-more {max-width:150px; width: 100%;; padding: 16px 10px; box-sizing:  border-box; text-align: center; color: #004ea2; font-size: 1.8rem; font-weight: 500; border: 1px solid #7fa6d0; background: #fff; border-radius: 5px;}

.board-view-type2{border-top: 1px solid #222;}
.board-view-type2 .board-view-top{padding-top: 6rem; border-bottom: 0; text-align: left; ;}
.board-view-type2 .board-view-top .board-tit{text-align: left; margin-top: 1.5rem; line-height: 1.3;}
.board-view-type2 .board-view-area{display: flex;}
.board-view-type2 .board-view-area .l-section{width: 440px; padding-right: 6rem; box-sizing: border-box;}
.board-view-type2 .board-view-area .l-section .day{font-family: "Bebas Neue", sans-serif; font-weight:500;color:#acacac ; font-size: 2.6rem;   }
.board-view-type2 .board-view-area .l-section .day.today{color:#004ea2}
.board-view-type2 .board-view-area .l-section .board-etc{display: block; margin-top: 5rem;}
.board-view-type2 .board-view-area .l-section .board-etc > li{padding: 2rem 0; display:flex; border-bottom: 1px solid #e2e2e2;;}
.board-view-type2 .board-view-area .l-section .board-etc > li span{width: 70px; padding-right: 0; font-size:2rem; font-weight: 700; color:#222}
.board-view-type2 .board-view-area .l-section .board-etc > li div{width: calc(100% - 70px); font-size:2rem; color:#222}
.board-view-type2 .board-view-area .l-section .board-etc > li:after, .board-view-type2 .board-view-area .l-section .board-etc > li div ul li:after{display: none;}
.board-view-type2 .board-view-area .r-section{width: calc(100% - 440px); background: #f9f9f9;;}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li{padding: 0; margin-bottom: 1rem;}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li:last-child{margin-bottom: 0;}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li a::after { width: 19px; height: 18px; content: ''; background: url('/common/images/user/ico/ico_board_file.png') no-repeat center; background-size: 100%; position: absolute; top: 50%; left: 0; transform: translate(0,-50%); }
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li a{ font-size: 2rem; padding-left:2.5rem; color: #222222;position: relative; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; word-break: break-all;; }
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li a:hover { text-decoration: underline; text-underline-position: under; }
.board-view-type2 .board-view-area .l-section .board-etc > li:last-child{border-bottom: 0;}
.board-view-type2 .view-content{padding: 5rem 4rem 12rem 4rem;}
.board-view-type2 .view-content .board-content{padding-top: 4rem;}

.board-view-gallery-area .board-titlebox{padding:6rem 2rem; border-bottom:1px solid #e2e2e2;}
.board-view-gallery-area .board-titlebox h3{font-size:3.6rem; line-height:3.7rem; color:#000; font-family: 'SUITE Variable'; font-weight:700; text-align: center;}
.board-view-gallery-area .board-titlebox p{font-size:2rem; margin-top:2.5rem; color:#000; font-weight: 600; text-align: center;}

.view-swiper{position: relative;}
.view-swiper .page-util{position: absolute; top:30px; right:120px; z-index: 9;}
.board-view-gallery-area .swiper.main-swiper{padding:8rem 0 2rem;}
.board-view-gallery-area .swiper.main-swiper .swiper-slide .imgcontainer{max-height:none; width:100%; max-width:1200px; margin:0 auto}
.board-view-gallery-area .swiper.main-swiper .swiper-slide .imgcontainer img{width:100%; height:auto}
.board-view-gallery-area .board-content{padding:6rem 2rem 14rem; background:#f9f9f9; box-sizing: border-box; border-top:1px solid #c2c2c2;}

@media all and (min-width:992px) and (max-width:1460px){
/*리스트 type*/
.board-list-wrap .l-seciton{width:23.28vw; margin-right:2vw ;}
.board-list-wrap .r-seciton{width: calc(100% - 25.38vw);}
.board-list-type1 > li p.tit{font-size: 2.6rem;}
.board-list-type1 > li strong{font-size: 1.8rem;}
.board-list-type1 > li p.cont{font-size: 1.7rem;}
.board-list-type1 .img-type-wrap{width: 300px;}
.board-list-type1> li > a .txt-type{width: calc(100% - 300px); padding-left: 2.5rem;}
.board-list-type1 > li:nth-child(even) > a .txt-type{padding-right:2.5rem}

.board-list-type3 li a div{padding:2rem;}
.board-list-type3 li a div h3{font-size:2rem; line-height:2.8rem;}
.board-list-type3 li a div p{font-size:1.8rem;}

.view-swiper .page-util{right:20px;}

}

@media all and (min-width:992px) and (max-width:1360px){
.board-view-type2 .board-view-area .l-section{width: 400px; padding-right: 3rem;}
.board-view-type2 .board-view-area .r-section{width: calc(100% - 400px);}
.board-view-type2 .board-view-top .board-tit{font-size: 3.3rem;}
}
@media all and (max-width:1280px){
.board-file{padding: 2.6rem 6rem;}
.view-content{padding: 3rem 6rem 12rem 6rem; }
.board-bottom-layout { padding-left: 0; padding-right: 0; flex-direction: column; }
.board-bottom-layout .board-bottom-box.prev { padding-bottom: 15px; width: 100%; order: 1; align-items: flex-start; gap: 0; }
.board-view-section a.board-more { order: 3; margin-top: 2rem; }
.board-bottom-layout .board-bottom-box.next { width: 100%; order: 2; align-items: flex-start; gap: 0; }
.board-bottom-layout .board-bottom-box span { display: none; }
}

@media all and (max-width:1200px){
/*리스트 type*/
.board-list-wrap{display: block;}
.board-list-wrap .l-seciton{width: 100%; margin-right: 0;}
.board-list-wrap .r-seciton{width: 100%;}
.board-list-type1{border-top: 0;}

.board-list-type3{margin-top:4rem;}
.input-type01 input{width:100%; padding-right:5rem; box-sizing: border-box;}

/*popup*/
.swiper.main-swiper{padding:0;}
.swiper.main-swiper .swiper-slide .imgcontainer{max-height:43vh}
.swiper.main-swiper .swiper-slide .imgcontainer img{width:675px;}
.swiper.main-swiper .swiper-button-next{width:50px; height:50px;}
.swiper.main-swiper .swiper-button-prev{width:50px; height:50px;}
.swiper.main-swiper .swiper-slide p{font-size:1.8rem;}


/*view type*/
.board-view-type2 .board-view-area{display: block;}
.board-view-type2 .board-view-area .l-section{width: 100%; padding-right: 0;}
.board-view-type2 .board-view-area .r-section{width: 100%;}
.board-view-type2 .board-view-area .l-section .board-etc{margin-top: 3rem;}
.board-view-type2 .board-view-top{padding-bottom: 0; padding-top: 3rem;}
.board-view-type2 .view-content{padding: 2.5rem 2rem 6rem 2rem}

}




@media all and (max-width:991px){
/*리스트 type*/
.board-search{margin-top: 3.5rem;}
.board-list-type1 > li > a{display: block;}
.board-list-type1 .img-type-wrap{width: 100%;}
.board-list-type1> li > a .txt-type{width: 100%; padding: 0; margin-top: 3rem;}
.board-select select{font-size: 2.2rem; padding: 1.4rem 2rem;}
.board-search{border-bottom: 2px solid #222; padding-bottom: 1.5rem;}
.board-search input, .board-search input[type=text]::placeholder {font-size: 1.8rem;}

.board-check{padding:3rem 0;}
.board-check ul{display: flex; gap: 2rem; justify-content: center;}
.board-check ul li{margin-bottom: 0;}
.board-list-type2{display: block;}
.board-list-type2 > li{border-bottom: 1px solid #e2e2e2; padding: 2rem;}
.board-list-type2 > li:before, .board-list-type2 > li:after{display: none;}

.checkbox label span, .board-list-type2 > li ul li{font-size: 2.4rem;}
.board-list-type2 > li .subject > .tit{font-size: 2.4rem; min-height: auto;}
.board-list-type2 > li ul li.date{font-size: 1.9rem;}
.board-list-type2 > li .subject{margin-bottom: 2.5rem;}

.board-list-type3{grid-template-columns: repeat(2, 1fr);}

/*popup*/
.gallery-popup{padding:0;}
.swiper.main-swiper .swiper-slide{padding:0 2rem; box-sizing: border-box;}
.swiper.main-swiper .swiper-button-next{display: none;}
.swiper.main-swiper .swiper-button-prev{display: none;;}

/*view type*/
.board-view-top .board-tit{font-size: 3rem;}
.board-file{padding: 2rem;}
.view-content{padding: 2.5rem 2rem 6rem 2rem;}
.page-util .page-util-list > li.util-print{display: none;}
.sns-list ul li img{width: 35px;}
.page-util .page-util-list li.util-share .sns-list .top{margin-bottom: 1rem;}
.page-util .page-util-list li.util-share .sns-list .top strong{font-size: 1.4rem;}
.page-util .page-util-list li.util-share .sns-list{width:200px; padding: 2rem 1.5rem;}
.page-util .page-util-list li.util-share ul li{margin-right: 1rem;}
.board-file ul li a{font-size: 1.6rem;}
.board-view-type2 .board-view-top .board-tit{font-size: 2.8rem;}

.board-view-type2 .board-view-area .l-section .board-etc > li div, .board-view-type2 .board-view-area .l-section .board-etc > li span, .board-view-type2 .board-view-area .l-section .board-etc > li div ul li a{font-size: 1.8rem;}}

.view-swiper .page-util{right:20px;}
.board-view-gallery-area .swiper.main-swiper .swiper-slide{display: block;}
.board-view-gallery-area .swiper.main-swiper .swiper-slide{padding:0}

@media all and (max-width:767px){
/*리스트 type*/
.board-list-type1 > li > a{display: block;}
.board-search{height: 35px}
.board-select select{font-size: 1.8rem;}
.board-search input, .board-search input[type=text]::placeholder {font-size: 1.6rem;}
.board-list-type1 > li > a{padding: 20px 0}
.board-list-type1> li > a .txt-type{margin-top: 2rem;}
.board-list-type1 > li strong{font-size: 1.6rem;}
.board-list-type1 > li p.tit{font-size: 2.1rem;}
.board-list-type1 > li p.cont{font-size:1.5rem; line-height: 2.4rem;}
.board-list-type1 > li p.date{font-size: 1.4rem;}

.pagenation ul > li.first a, .pagenation ul > li.prev a, .pagenation ul > li.next a, .pagenation ul > li.last a {width:30px; height:30px;background-size: 100%;}
.pagenation ul > li > a{font-size: 1.3rem;}
.board-list-type1 > li:nth-child(even) > a .txt-type{padding: 0;}

.checkbox label span{font-size: 2rem;}
.checkbox label .check-image{width: 25px; height: 25px; }
.board-list-type2 > li .subject strong{font-size:1.6rem; margin-bottom: 1rem;}
.board-list-type2 > li .subject > .tit{font-size: 2rem;}
.checkbox label span, .board-list-type2 > li ul li{font-size: 1.9rem;;}
.board-list-type2 > li ul li.date{font-size: 1.6rem;}
.board-list-type2 > li ul li:after{height: 14px; top: 2px;}

.all-gallery{padding: 1rem 1.9rem; border:1px solid #004ea2;}
.all-gallery span{font-size:1.8rem;}
.all-gallery i{width:15px; height:15px; background-size:100%;}
.input-type01{margin-top:2.5rem;}
.input-type01 input{font-size:1.6rem; padding-right:2rem;}
.btn-gallery-search{width:16px; height:16px; background-size:100%;}
.board-list-type3{margin-top:2rem; gap: 1rem;}
.board-list-type3 li a div h3{font-size:1.5rem; line-height:2.1rem;}
.board-list-type3 li a div p{font-size:1.3rem;}
.board-list-type3 li a div{padding:1.5rem;}

/*popup*/
.gallery-popup-close{width:22px; height:22px; top:20px; right:20px;}
.swiper.main-swiper .swiper-slide .imgcontainer img{width:87.35vw; height:auto;}
.swiper.main-swiper .swiper-slide p{font-size:1.6rem; margin-top:3rem;}
.swiper.main-swiper .swiper-slide h3{font-size:2.4rem; line-height:3.3rem; margin-top:clamp(0.5rem, 2vh, 2rem)}

.thumbnailbox{padding:1.4rem 4.5rem;}
.swiper.thumbnail-swiper .swiper-slide{width:60px;}
.swiper.thumbnail-swiper .swiper-slide img{height:60px;}
.swiper.thumbnail-swiper .swiper-slide.swiper-slide-thumb-active:after{border:2px solid #1984ba}
.thumbnailbox .swiper-button-next{width:8px; height:12px;}
.thumbnailbox .swiper-button-prev{width:8px; height:12px;}

/*view type*/
.board-view-top{padding:3rem 0 ;}
.board-view-top .board-tit{font-size: 2.4rem;}
.board-etc{margin-top: 2rem;}
.board-etc li{font-size: 1.5rem;}
.board-etc li:after{height: 11px;}
.board-file{padding:1.3rem 2rem ;}
.board-file > p{font-size:1.5rem; width: 85px; margin-right: 0;}
.board-file ul{width: calc(100% - 85px);}
.board-file ul li a{font-size: 1.5rem;}
.board-bottom-layout .all-txt-link{font-size: 1.5rem;}
.board-view-section a.board-more{font-size: 1.6rem; padding: 13px 10px; width: 120px;}
.board-file ul li a::after{width: 16px;}
.board-file ul li a{padding-left: 2rem;}

.board-view-type2 .board-view-area .l-section .day{font-size: 2.1rem;}
.board-view-type2 .board-view-area .l-section .board-etc > li span{font-size: 1.6rem; width: 50px;;}
.board-view-type2 .board-view-area .l-section .board-etc > li div{font-size: 1.6rem; width:  calc(100% - 50px);}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li a::after{width: 16px;}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li a{font-size: 1.6rem;}
.board-view-type2 .board-view-area .l-section .board-etc > li div ul li{margin-bottom: 0.8rem;}
.board-view-type2 .board-view-area .l-section .board-etc > li{padding: 1.5rem 0;}
.board-view-type2 .board-view-top .board-tit{margin-top: 1rem;}
.board-view-type2 .board-view-area .l-section .board-etc{margin-top: 2rem;}

.board-view-gallery-area .board-titlebox{padding:3rem 0;}
.board-view-gallery-area .board-titlebox h3{font-size:2.4rem; line-height:3.4rem;}
.board-view-gallery-area .board-titlebox p{font-size:1.6rem; margin-top:3rem;}
.board-view-gallery-area .swiper.main-swiper{padding:7.5rem 0 1rem;}
.board-view-gallery-area .board-content{padding:3rem 2rem 8rem;}
}