@charset "utf-8";
/* =====================================

	* board

    CSS CONTENTS : 
    01. list 
    02. list::effect
    03. button
    04. list::paging
    05. view
    06. view::comment
    07. write

====================================== */

/* =====================================

    * Type A

====================================== */
/* list */
/* .board-gallery-type1 .sch-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.board-gallery-type1 .sch-wrap .cnt{
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}
.board-gallery-type1 .sch-wrap .form-item{
    height: 40px;
    font-size: 1.5rem;
}
.board-gallery-type1 .sch-wrap .sch-cate{
    width: 100px;
}
.board-gallery-type1 .sch-wrap .sch-key{
    width: 300px;
    margin-left: 5px;
}
.board-gallery-type1 .sch-wrap .btn-sch{
    width: 40px;
    height: 40px;
    margin-left: -4px;
    background-color: #144393;
    background-repeat: no-repeat;
    background-image: url('/image/board/gallery/ic_sch.png');
    background-position: center;
    border-radius: 3px;
} */
.board-gallery-type1 .gall-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.board-gallery-type1 .gall-list > li{
    position: relative;
    width: calc((100% - 40px)/3);
	}
.board-gallery-type1 .gall-list > li > a{
		display: block;
    position: relative;
    transition: 0.3s ease;
		padding: 16px;
    background-color: #eff5ff;
    border: 1px solid #dae8ff;
}
.board-gallery-type1 .gall-list > li:hover > a{
    box-shadow: 0 20px 24px rgba(149,149,149,0.2);
}
.board-gallery-type1 .gall-list > li:hover .gall-tit{
    color: #20366f;
}
.board-gallery-type1 .gall-img{
	position: relative;
    display: block;
    width: 100%;
    height: 260px;
		transition: 0.3s ease;
		background-color: #eff5ff;
}
.board-gallery-type1 .gall-img::after {
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
    content: '';
	clear: both;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/board/gallery/bg_btn_more.png');
	background-color: rgba(0, 0, 0, 0.5);
	transition: 0.3s ease;
}
.board-gallery-type1 .gall-list > li:hover .gall-img::after {
	opacity: 1;
}
.board-gallery-type1 .gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-gallery-type1 .gall-text{
	padding-top: 20px;
	text-align: center;
    letter-spacing: -0.05em;
}
.board-gallery-type1 .gall-tit{
    height: 50px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.3;
}
.board-gallery-type1 .gall-con{
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 500;
}
.board-gallery-type1 .gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.board-gallery-type1 .gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.board-gallery-type1 .gall-con span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 11px;
    background-color: #c7d0df;
}
.board-gallery-type1 .gall-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.board-gallery-type1 .bbs-admin{
		margin-top: 10px;
    text-align: right;
}
.board-gallery-type1 .bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    padding: 0 3px;
    border-color: #565656;
    background-color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}
.board-gallery-type1 .bbs-admin .btn.btn-modify,
.board-gallery-type1 .bbs-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 2px;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #565656;
}
.board-gallery-type1 .bbs-admin .btn.btn-modify{
    background-image: url('/assets/image/board/gallery/ic_modify.png');
}
.board-gallery-type1 .bbs-admin .btn.btn-delete{
    background-image: url('/assets/image/board/gallery/ic_delete.png');
    background-color: #565656;
}
.board-gallery-type1 .gall-list .no-data{
    display: block;    
    width: 100% !important;
    padding: 60px 30px;
    border-top: 2px solid #30308a;
    border-left: 0;
    border-right: 0;
    font-size: 2rem;
    font-weight: 500;
    color: #463f7d;
    letter-spacing: -0.05em;
    text-align: center;
}

/* list::effect */
.board-gallery-type1 .ef01,
.board-gallery-type1 .ef02,
.board-gallery-type1 .ef03,
.board-gallery-type1 .ef04{
    position: relative;
}
.board-gallery-type1 .ef01 > a,
.board-gallery-type1 .ef02 > a,
.board-gallery-type1 .ef03 > a,
.board-gallery-type1 .ef04 > a{
    width: 100%;
    height: 100%;
}
.board-gallery-type1 .ef01 > a{
    position: relative;
}
.board-gallery-type1 .ef01 > a:before, 
.board-gallery-type1 .ef01 > a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background-color: transparent;
	border: 1px solid rgba(32,54,111,0.1);
	transition: transform 0.3s, opacity 0.3s;
    box-sizing: border-box;
}
.board-gallery-type1 .ef01 > a:after{
	opacity: 0;
	border-color: #20366f;
    border-width: 3px;
	transform: translateY(-6px) translateX(6px);
}
.board-gallery-type1 .ef01 > a:hover:before, 
.board-gallery-type1 .ef01 > a:focus:before{
	opacity: 0;
	transform: translateY(5px) translateX(-5px);
}
.board-gallery-type1 .ef01 > a:hover:after, 
.board-gallery-type1 .ef01 > a:focus:after{
	opacity: 1;
	transform: translateY(0px) translateX(0px);
}
.board-gallery-type1 .ef02{
	overflow: hidden;
	position: relative;
    z-index: 1;
	padding: 0;
    transition: 0.3s ease;
}
.board-gallery-type1 .gall-list .ef02{
    border: 0;
}
.board-gallery-type1 .ef02:before,
.board-gallery-type1 .ef02:after{
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    z-index: 2;
	transform: rotate(45deg);
	transition: all 0.3s ease 0s;
    height: 0;
    background-color: #fff;
	border-bottom: 3px solid #20366f;
}
.board-gallery-type1 .ef02:after{
    border: 0;
	border-top: 3px solid #20366f;
    top: auto;
    right: auto;
    bottom: 0;
    left: -50%;
}
.board-gallery-type1 .ef02:hover:before,
.board-gallery-type1 .ef02:hover:after{
    width: 100%;
    height: 20px;
}
.board-gallery-type1 .ef02 > a{
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.board-gallery-type1 .ef02 > a:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
}
.board-gallery-type1 .ef02:hover > a:before{
    border-color: #20366f;
    border-width: 3px;
}
.board-gallery-type1 .ef03:before,
.board-gallery-type1 .ef03:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background-color: #20366f;
}
.board-gallery-type1 .ef03:before{
    top: 0;
    left: 0;
    transition: 0.2s ease;
}
.board-gallery-type1 .ef03:after{
    right: 0;        
    transition: 0.2s ease 0.2s;
}
.board-gallery-type1 .ef03 > a:before,
.board-gallery-type1 .ef03 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #20366f;
}
.board-gallery-type1 .ef03 > a:before{
    bottom: 0;
    left: 0;
    transition: 0.2s ease 0.3s;
}
.board-gallery-type1 .ef03 > a:after{
    top: 0;
    right: 0;    
    transition: 0.2s ease 0.1s;
}
.board-gallery-type1 .ef03:hover:before{
    width: 100%;
}
.board-gallery-type1 .ef03 > a:hover:after{
    height: 100%;
}
.board-gallery-type1 .ef03:hover:after{
    width: 100%;    
}
.board-gallery-type1 .ef03 > a:hover:before{
    height: 100%;
}

.board-gallery-type1 .ef04:before,
.board-gallery-type1 .ef04:after,
.board-gallery-type1 .ef04 > a:before,
.board-gallery-type1 .ef04 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    background-color: #20366f;
    transition: 0.3s ease;
}
.board-gallery-type1 .ef04:before,
.board-gallery-type1 .ef04:after{
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
}
.board-gallery-type1 .ef04 > a:before,
.board-gallery-type1 .ef04 > a:after{
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
}
.board-gallery-type1 .ef04 > a:after{
    right: 0;
}
.board-gallery-type1 .ef04:hover:before,
.board-gallery-type1 .ef04:hover:after{
    width: calc(100% + 30px);
}
.board-gallery-type1 .ef04:hover > a:before,
.board-gallery-type1 .ef04:hover > a:after{
    height: calc(100% + 30px);
}

/* button */
/* .board-gallery-type1 .btn-wrap{
    margin-top: 0;
		margin-bottom: 20px;
} */
.board-gallery-type1 .btn-admin .btn.btn-board{
    display: inline-block;
    min-width: 50px;
    height: 27px;
    padding: 2px 0;
    margin: 1px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    vertical-align: top;
}
.board-gallery-type1 .board-view + .btn-wrap{
    text-align: right;
}
.board-gallery-type1 .btn.btn-board{
    display: inline-block;
    min-width: 115px;
    padding: 12px 20px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -0.07em;
    text-align: center;
}
/* .board-gallery-type1 .btn.btn-list{
    background-color: #fff;
    border-color: #3c568a;
    color: #3c568a;
}
.board-gallery-type1 .btn.btn-modify{
    background-color: #2892e5;
    border-color: #2892e5;
    color: #fff;
}
.board-gallery-type1 .btn.btn-delete{
    background-color: #bd466a;
    border-color: #bd466a;
    color: #fff;
}
.board-gallery-type1 .btn.btn-cancel{
    background-color: #929292;
    border-color: #929292;
    color: #fff;
}
.board-gallery-type1 .btn.btn-write{
    background-color: #2892e5;
    border-color: #2892e5;
    color: #fff;
} */

/* list::paging */
.board-gallery-type1 .paging-wrap{
    margin-top: 40px;
    text-align: center;
}
.board-gallery-type1 .paging{
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.board-gallery-type1 .paging > li{
    overflow: hidden;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 1px;
    border-radius: 50%;
    vertical-align: top;
    transition: 0.3s ease;
}
.board-gallery-type1 .paging > .num:hover,
.board-gallery-type1 .paging > .num.on,
.board-gallery-type1 .paging > .num:hover > a,
.board-gallery-type1 .paging > .num.on > a{
    background-color: #f3f3f3;
    font-weight: 600;
    color: #000000;
}
.board-gallery-type1 .paging > li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0;
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.board-gallery-type1 .paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease;
}
.board-gallery-type1 .paging > li:not(.num):hover{
    background-color: none;
}
.board-gallery-type1 .paging .first{
    background-image: url('/assets/image/board/gallery/ic_first.png');
}
.board-gallery-type1 .paging .first:hover{    
    background-image: url('/assets/image/board/gallery/ic_first_on.png');
}
.board-gallery-type1 .paging .prev{
    margin-right: 15px;
    background-image: url('/assets/image/board/gallery/ic_prev.png');
}
.board-gallery-type1 .paging .prev:hover{
    background-image: url('/assets/image/board/gallery/ic_prev_on.png');
}
.board-gallery-type1 .paging .next{
    margin-left: 15px;
    background-image: url('/assets/image/board/gallery/ic_next.png');
}
.board-gallery-type1 .paging .next:hover{    
    background-image: url('/assets/image/board/gallery/ic_next_on.png');
}
.board-gallery-type1 .paging .last{    
    background-image: url('/assets/image/board/gallery/ic_last.png');
}
.board-gallery-type1 .paging .last:hover{
    background-image: url('/assets/image/board/gallery/ic_last_on.png');
}

/* view */
.board-gallery-type1 .board-view{
    letter-spacing: -0.05em;
}
.board-gallery-type1 .view-contop{
    padding: 20px 25px;
    background-color: #f6f6ff;
    border-top: 2px solid #4646a6;
    border-bottom: 1px solid #bbbbbb;
    font-size: 1.5rem;
}
.board-gallery-type1 .view-contop + .view-contents{
    border-top: 0;
}
.board-gallery-type1 .view-tit{
    font-size: 2.5rem;
    font-weight: 500;
    color: #30308a;
    text-align: center;
    letter-spacing: -0.05em;
}
.board-gallery-type1 .view-contop:not(:has(.view-cnt)) .view-tit{
    margin-bottom: 10px;
}
.board-gallery-type1 .view-cnt{
    margin-bottom: 10px;
}
.board-gallery-type1 .view-cnt button + button{
    margin-left: 10px;
}
.board-gallery-type1 .view-cnt .icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    vertical-align: middle;
}
.board-gallery-type1 .view-cnt .cnt{
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.board-gallery-type1 .view-info > span{
    display: inline-block;
    position: relative;
    vertical-align: top;
}
.board-gallery-type1 .view-info > span + span{
    padding-left: 8px;
    margin-left: 6px;
}
.board-gallery-type1 .view-info > span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: #e5e2e4;
}
.board-gallery-type1 .view-info > span strong{
    font-weight: 600;
}
.board-gallery-type1 .view-link{
    padding: 20px 25px 0;
}
.board-gallery-type1 .view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('/assets/image/board/gallery/ic_view_link.png');
    font-weight: 500;
    color: #000;
    word-break: break-all;
    vertical-align: top;
}
.board-gallery-type1 .view-contents{
    padding: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type1 .board-view:has(.view-attach) .view-contents{
    border-bottom: 0;
}
.board-gallery-type1 .view-contents img{
    max-width: 100%;
}

.board-gallery-type1 .view-attach{
    padding: 0 25px 40px;
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type1 .view-attach-con{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px 30px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
    background-color: #f8f8f8;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}
.board-gallery-type1 .view-attach-con .con > a{
    display: block;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0 3px;
    background-image: url('/assets/image/board/gallery/ic_file2.png');
    transition: 0.3s ease;
    word-break: break-all;
}
.board-gallery-type1 .view-attach-con .con > a:hover{
    background-image: url('/assets/image/board/gallery/ic_file2_on.png');
}
.board-gallery-type1 .view-attach-con .con > a + a{
    margin-top: 5px;
}

.board-gallery-type1 .gall-view-wrap{
    position: relative;
    /* max-width: 700px;
    margin: 50px auto;
    border: 1px solid #dfdfdf;
    border-radius: 3px; */
}
.gall-wrap .btn-img-down{
    position: absolute;
    right: 20px;
    bottom: 80px;
}
.gall-view-wrap img,
.gall-wrap .btn-img-down img {
    max-width: 100%;
}
/* .board-gallery-type1 .gall-rolling-wrap{
    position: relative;
    max-width: 940px;
    margin: 0 auto 40px;
    text-align: center;
}
.board-gallery-type1 .gall-view-rolling{
    overflow: hidden;
}
.board-gallery-type1 .gall-view-rolling .slick-list,
.board-gallery-type1 .gall-view-rolling .slick-track{
    height: 100%;
}
.board-gallery-type1 .btn-gall{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    vertical-align: middle;
}
.board-gallery-type1 .btn-gall-prev{
    left: 0;
    background-image: url('/assets/image/board/gallery/btn_gall_prev.png');
}
.board-gallery-type1 .btn-gall-next{
    right: 0;
    background-image: url('/assets/image/board/gallery/btn_gall_next.png');
}
.board-gallery-type1 .gall-cnt-wrap{
    position: absolute;    
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    vertical-align: middle;
}
.board-gallery-type1 .gall-cnt-wrap .current,
.board-gallery-type1 .gall-cnt-wrap .total{
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 500;
    color: #9f9f9f;
    letter-spacing: -0.05em;
    vertical-align: top;
}
.board-gallery-type1 .gall-cnt-wrap .current{
    font-size: 2.5rem;
    font-weight: 900;
    color: #20366f;
}
.board-gallery-type1 .gall-cnt-wrap .total{
    position: relative;
    padding-top: 7px;
}
.board-gallery-type1 .gall-cnt-wrap .total:before{
    display: inline-block;
    content: '/';
    clear: both;
    margin: 0 5px;
    font-size: 2rem;
    font-weight: 300;
    color: #9f9f9f;
}

.board-gallery-type1 .gall-view-rolling{
    max-width: 700px;
    margin: 0 auto;
}
.board-gallery-type1 .gall-view-rolling .slick-slide{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.board-gallery-type1 .gall-view-con:after{
    display: block;
    content: '';
    clear: both;
}
.board-gallery-type1 .gall-view-con > a{
    float: left;
    width: calc((100% - 60px)/5);
    height: 90px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}
.board-gallery-type1 .gall-view-con > a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* view::comment */
.board-gallery-type1 .comment-wrap{
    margin-top: 50px;
    font-size: 1.6rem;
    line-height: 1.3;
}
.board-gallery-type1 .comment-wrap > .tit{
    padding: 0 25px;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.07em;
}
.board-gallery-type1 .comment-write-wrap{
    display: flex;
    gap: 15px;
    padding: 0 25px;
    font-size: 1.6rem;
    line-height: 1.4;
}
.board-gallery-type1 .comment-write-wrap .form-item{
    height: 80px;
    padding: 20px;
    border-color: #e7e7e7;
    border-radius: 5px;
}
.board-gallery-type1 .comment-write-wrap .btn-submit{
    flex: 0 0 auto;
    width: 135px;
    height: 80px;
    background-color: #20366f;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}
.board-gallery-type1 .comment-list-wrap{
    margin-top: 35px;
    border-top: 1px solid #e2e2e2;
}
.board-gallery-type1 .comment-list-wrap ul > li{
    display: flex;
    flex-wrap: wrap;
    padding: 35px 30px;
    border-bottom: 1px solid #e2e2e2;
    letter-spacing: -0.05em;
}
.board-gallery-type1 .comment-contop{
    width: 100%;
}
.board-gallery-type1 .comment-name{
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}
.board-gallery-type1 .comment-date{
    margin-left: 10px;
    font-size: 1.5rem;
    color: #9e9e9e;
}
.board-gallery-type1 .comment-contop .view-cnt{
    margin-bottom: 0;
}
.board-gallery-type1 .comment-contop .view-cnt .icon{
    border: 1px solid #d9dde4;
}
.board-gallery-type1 .comment-contents{
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}
.board-gallery-type1 .comment-contents .btn-wrap{
    flex: 0 0 auto;
    margin: 0;
    padding-left: 20px;
}
.board-gallery-type1 .btn.btn-comment{
    display: inline-block;
    min-width: 60px;
    margin: 2px;
    padding: 3px 0;
    border-radius: 3px;     
    border: 1px solid #4986ac;
    background-color: #fff;
    color: #4986ac;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.07em;
    text-align: center;
}
.board-gallery-type1 .btn-comment.btn-modify{
    border-color: #20366f;
    color: #20366f;
}
.board-gallery-type1 .btn-comment.btn-delete{
    border-color: #bd466a;
    color: #bd466a;
}
.board-gallery-type1 .comment-list-wrap li.comment-reply{
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: 25px 38px;
    background-image: url('/assets/image/board/gallery/ic_comment_reply.png');
}
.board-gallery-type1 .comment-reply .comment-write-wrap{
    width: 100%;
    padding: 0;
}
.board-gallery-type1 .comment-reply .comment-write-wrap .form-item{
    height: 80px;
}
.board-gallery-type1 .comment-reply .comment-write-wrap .btn{
    flex: 0 0 auto;
    width: 110px;
    height: 80px;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
}

/* view::move */
.board-gallery-type1 .view-move{
    display: flex;
    width: 100%;
    margin-top: 70px;
}
.board-gallery-type1 .view-move-con{
    display: flex;
    align-items: center;
    padding: 17px 20px;
    font-size: 1.6rem;
    color: #8c8c8c;
    letter-spacing: -0.05em;
    word-break: break-word;
}
.board-gallery-type1 .view-move-con .tit{
    position: relative;
    width: 80px;
    padding: 0 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    font-weight: 600;
    transition: background 0.3s ease;
}
.board-gallery-type1 .view-move-con .tit:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 7px;
    width: 1px;
    height: 11px;
    background-color: #d6d6d6;
    transition: 0.3s ease;
}
.board-gallery-type1 .view-move-con .con{
    width: calc(100% - 80px);
    padding: 0 20px;
}
.board-gallery-type1 .view-move-con a{
    vertical-align: top;
}
.board-gallery-type1 .view-move-con:hover{
    background-color: #f6f9ff;
    color: #000;
}
.board-gallery-type1 .view-move-con:hover .tit:after{
    background-color: #000000;
}

.board-gallery-type1 .view-move.type1 .view-move-con{
    width: 50%;
    border: 1px solid #e2e2e2;
    transition: 0.3s ease;
}
.board-gallery-type1 .view-move.type1 .view-move-con + .view-move-con{
    border-left: 1px solid transparent;
}
.board-gallery-type1 .view-move.type1 .view-prev{
    border-radius: 4px 0 0 4px;
}
.board-gallery-type1 .view-move.type1 .view-prev .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_prev.png');
}
.board-gallery-type1 .view-move.type1 .view-prev:hover .tit{    
    background-image: url('/assets/image/board/gallery/ic_arrow_prev_on.png');
}
.board-gallery-type1 .view-move.type1 .view-prev .tit:after{
    right: 0;
}
.board-gallery-type1 .view-move.type1 .view-next{
    flex-direction: row-reverse;
    border-radius: 0 4px 4px 0;
    text-align: right;
}
.board-gallery-type1 .view-move.type1 .view-next .tit{
    background-position: right center;
    background-image: url('/assets/image/board/gallery/ic_arrow_next.png');
}
.board-gallery-type1 .view-move.type1 .view-next:hover .tit{    
    background-image: url('/assets/image/board/gallery/ic_arrow_next_on.png');
}
.board-gallery-type1 .view-move.type1 .view-next .tit:after{
    left: 0;
}
.board-gallery-type1 .view-move.type1 .view-move-con:hover{
    border-color: #859cc8;
}

.board-gallery-type1 .view-move.type2{
    flex-direction: column;
    border-top: 1px solid #e2e2e2;
}
.board-gallery-type1 .view-move.type2 .view-move-con .tit:after{
    right: 0;
}
.board-gallery-type1 .view-move.type2 .view-move-con{
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type1 .view-move.type2 .view-prev .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_top.png');
}
.board-gallery-type1 .view-move.type2 .view-prev:hover .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_top_on.png');
}
.board-gallery-type1 .view-move.type2 .view-next .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_bottom.png');
}
.board-gallery-type1 .view-move.type2 .view-next:hover .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_bottom_on.png');
}

/* write */
.board-gallery-type1 .write-contop{
    margin-bottom: 10px;
}
.board-gallery-type1 .help-text{
    font-size: 14px;
}
.board-gallery-type1 .write-wrap{
    border-top: 2px solid #30308a;
}
.board-gallery-type1.write-wrap > li{
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type1 .write-wrap > li > div{
    line-height: 1.3;
}
.board-gallery-type1 .write-wrap .form-tit{
    background-color: #f6f6ff;
    letter-spacing: -0.03em;
    text-align: center;
}
.board-gallery-type1 .write-wrap .form-con .btn-small{
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    background-color: #575e71;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
}
.filebox .upload-name{
    margin: 0;
}

/* =====================================

    * Type B

====================================== */
.board-gallery-type2,
.board-gallery-type2 *{
    font-family: 'Freesentation', sans-serif;
}

/* list */
.board-gallery-type2 .sch-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.board-gallery-type2 .sch-wrap .cnt{
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}
.board-gallery-type2 .sch-wrap .form-item{
    height: 40px;
    font-size: 1.5rem;
}
.board-gallery-type2 .sch-wrap .sch-cate{
    width: 100px;
}
.board-gallery-type2 .sch-wrap .sch-key{
    width: 300px;
    margin-left: 5px;
}
.board-gallery-type2 .sch-wrap .btn-sch{
    width: 40px;
    height: 40px;
    margin-left: -4px;
    background-color: #144393;
    background-repeat: no-repeat;
    background-image: url('/assets/image/board/gallery/ic_sch.png');
    background-position: center;
    border-radius: 3px;
}
.board-gallery-type2 .gall-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.board-gallery-type2 .gall-list > li{
	position: relative;
    width: calc((100% - 40px)/3);
	border: 1px solid #e2e2e2;
}
.board-gallery-type2 .gall-list > li:hover{
	box-shadow: 20px 0 24px rgba(149, 149, 149, 0.2);
}
.board-gallery-type2 .gall-list > .no-data:hover{
	box-shadow: none;
}
.board-gallery-type2 .gall-list > li:hover .gall-info{
	opacity: 1;
}
.board-gallery-type2 .gall-img{
    display: block;
    width: 100%;
    height: 300px;
    background-color: #fafafa;
}
.board-gallery-type2 .gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.board-gallery-type2 .gall-info{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 300px;
    padding: 20px 25px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: 0.3s ease;
}
.board-gallery-type2 .gall-text{
	letter-spacing: -0.05em;
	color: #fff;
}
.board-gallery-type2 .gall-info .bbs-admin,
.board-gallery-type2 .gall-text .gall-con{
	text-align: right;
}
.board-gallery-type2 .gall-tit{
	height: 120px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.3;
}
.board-gallery-type2 .gall-con{
	margin-top: 30px;
	font-size: 1.5rem;
	font-weight: 500;
}
.board-gallery-type2 .gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.board-gallery-type2 .gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.board-gallery-type2 .gall-con span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 11px;
    background-color: #c7d0df;
}
.board-gallery-type2 .gall-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.board-gallery-type2 .bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    padding: 0 3px;
    border-color: #565656;
    background-color: #fff;
    font-size: 1.4rem;
    vertical-align: top;
}
.board-gallery-type2 .bbs-admin .btn.btn-modify,
.board-gallery-type2 .bbs-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 2px;
    border-radius: 2px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #565656;
}
.board-gallery-type2 .bbs-admin .btn.btn-modify{
    background-image: url('/assets/image/board/gallery/ic_modify_typeb.png');
}
.board-gallery-type2 .bbs-admin .btn.btn-delete{
    background-image: url('/assets/image/board/gallery/ic_delete_typeb.png');
}

.board-gallery-type2 .gall-list .no-data{
	width: 100%;
	padding: 50px 0 40px 0;
	font-size: 2rem;
	text-align: center;
	border-top: 2px solid #3b3b3b;
	border-bottom: 1px solid #e2e2e2;
	border-left: 0 none;
	border-right: 0 none;
}
.board-gallery-type2 .gall-list > .no-data > img{
	margin-bottom: 25px;
}

/* list::effect */
.board-gallery-type2 .ef01,
.board-gallery-type2 .ef02,
.board-gallery-type2 .ef03,
.board-gallery-type2 .ef04{
    position: relative;
}
.board-gallery-type2 .ef01 > a,
.board-gallery-type2 .ef02 > a,
.board-gallery-type2 .ef03 > a,
.board-gallery-type2 .ef04 > a{
    width: 100%;
    height: 100%;
}
.board-gallery-type2 .ef01,
.board-gallery-type2 .ef02,
.board-gallery-type2 .ef03,
.board-gallery-type2 .ef04{
    position: relative;
}
.board-gallery-type2 .ef01 > a{
    position: relative;
}
.board-gallery-type2 .ef01 > a:before, 
.board-gallery-type2 .ef01 > a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background-color: transparent;
	border: 1px solid rgba(32,54,111,0.1);
	transition: transform 0.3s, opacity 0.3s;
    box-sizing: border-box;
}
.board-gallery-type2 .ef01 > a:after{
	opacity: 0;
	border-color: #20366f;
    border-width: 3px;
	transform: translateY(-6px) translateX(6px);
}
.board-gallery-type2 .ef01 > a:hover:before, 
.board-gallery-type2 .ef01 > a:focus:before{
	opacity: 0;
	transform: translateY(5px) translateX(-5px);
}
.board-gallery-type2 .ef01 > a:hover:after, 
.board-gallery-type2 .ef01 > a:focus:after{
	opacity: 1;
	transform: translateY(0px) translateX(0px);
}
.board-gallery-type2 .ef02{
	overflow: hidden;
	position: relative;
    z-index: 1;
	padding: 0;
    transition: 0.3s ease;
}
.board-gallery-type2 .gall-list .ef02{
    border: 0;
}
.board-gallery-type2 .ef02:before,
.board-gallery-type2 .ef02:after{
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    z-index: 2;
	transform: rotate(45deg);
	transition: all 0.3s ease 0s;
    height: 0;
    background-color: #20366f;
	border-bottom: 2px solid #20366f;
}
.board-gallery-type2 .ef02:after{
    border: 0;
	border-top: 2px solid #20366f;
    top: auto;
    right: auto;
    bottom: 0;
    left: -50%;
}
.board-gallery-type2 .ef02:hover:before,
.board-gallery-type2 .ef02:hover:after{
    width: 100%;
    height: 20px;
}
.board-gallery-type2 .ef02 > a{
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.board-gallery-type2 .ef02 > a:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
}
.board-gallery-type2 .ef02 > a:hover:before{
    border-color: #20366f;
    border-width: 3px;
}
.board-gallery-type2 .ef03:before,
.board-gallery-type2 .ef03:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background-color: #20366f;
}
.board-gallery-type2 .ef03:before{
    top: 0;
    left: 0;
    transition: 0.2s ease;
}
.board-gallery-type2 .ef03:after{
    right: 0;        
    transition: 0.2s ease 0.2s;
}
.board-gallery-type2 .ef03 > a:before,
.board-gallery-type2 .ef03 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #20366f;
}
.board-gallery-type2 .ef03 > a:before{
    bottom: 0;
    left: 0;
    transition: 0.2s ease 0.3s;
}
.board-gallery-type2 .ef03 > a:after{
    top: 0;
    right: 0;    
    transition: 0.2s ease 0.1s;
}
.board-gallery-type2 .ef03:hover:before{
    width: 100%;
}
.board-gallery-type2 .ef03 > a:hover:after{
    height: 100%;
}
.board-gallery-type2 .ef03:hover:after{
    width: 100%;    
}
.board-gallery-type2 .ef03 > a:hover:before{
    height: 100%;
}

.board-gallery-type2 .ef04:before,
.board-gallery-type2 .ef04:after,
.board-gallery-type2 .ef04 > a:before,
.board-gallery-type2 .ef04 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    background-color: #20366f;
    transition: 0.3s ease;
}
.board-gallery-type2 .ef04:before,
.board-gallery-type2 .ef04:after{
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
}
.board-gallery-type2 .ef04 > a:before,
.board-gallery-type2 .ef04 > a:after{
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
}
.board-gallery-type2 .ef04 > a:after{
    right: 0;
}
.board-gallery-type2 .ef04:hover:before,
.board-gallery-type2 .ef04:hover:after{
    width: 100%;
}
.board-gallery-type2 .ef04:hover > a:before,
.board-gallery-type2 .ef04:hover > a:after{
    height: 100%;
}

/* button */
.board-gallery-type2 .btn-wrap{
    margin-top: 30px;
}
.board-gallery-type2 .btn-admin .btn.btn-board{
    display: inline-block;
    min-width: 50px;
    height: 27px;
    padding: 2px 0;
    margin: 1px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    vertical-align: top;
}
.board-gallery-type2 .board-view + .btn-wrap{
    text-align: right;
}
.board-gallery-type2 .btn.btn-board{
    display: inline-block;
    min-width: 100px;
    padding: 9px 20px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.07em;
    text-align: center;
}
.board-gallery-type2 .btn.btn-list{
    background-color: #fff;
    border-color: #434343;
    color: #434343;
}
.board-gallery-type2 .btn.btn-modify{
    background-color: #ececec;
    border-color: #9f9f9f;
    color: #3b3b3b;
}
.board-gallery-type2 .btn.btn-delete{
    background-color: #fff;
    border-color: #e21a52;
    color: #e21a52;
}
.board-gallery-type2 .btn.btn-cancel{
    background-color: #8b8b8b;
    border-color: #8b8b8b;
    color: #fff;
}
.board-gallery-type2 .btn.btn-write{
    background-color: #3b3b3b;
    border-color: #3b3b3b;
    color: #fff;
}
.board-gallery-type2 .btn.btn-reply{
    background-color: #fff;
    border-color: #18a3a2;
    color: #18a3a2;
}

/* list::paging */
.board-gallery-type2 .paging-wrap{
    margin-top: 40px;
    text-align: center;
}
.board-gallery-type2 .paging{
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.board-gallery-type2 .paging > li{
    overflow: hidden;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 1px;
    border-radius: 50%;
    vertical-align: top;
    transition: 0.3s ease;
}
.board-gallery-type2 .paging > .num:hover,
.board-gallery-type2 .paging > .num.on,
.board-gallery-type2 .paging > .num:hover > a,
.board-gallery-type2 .paging > .num.on > a{
    background-color: #f3f3f3;
    font-weight: 600;
    color: #000000;
}
.board-gallery-type2 .paging > li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0;
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.board-gallery-type2 .paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease;
}
.board-gallery-type2 .paging > li:not(.num):hover{
    background-color: none;
}
.board-gallery-type2 .paging .first{
    background-image: url('/assets/image/board/gallery/ic_first_typeb.png');
}
.board-gallery-type2 .paging .first:hover{    
    background-image: url('/assets/image/board/gallery/ic_first_on_typeb.png');
}
.board-gallery-type2 .paging .prev{
    margin-right: 15px;
    background-image: url('/assets/image/board/gallery/ic_prev_typeb.png');
}
.board-gallery-type2 .paging .prev:hover{
    background-image: url('/assets/image/board/gallery/ic_prev_on_typeb.png');
}
.board-gallery-type2 .paging .next{
    margin-left: 15px;
    background-image: url('/assets/image/board/gallery/ic_next_typeb.png');
}
.board-gallery-type2 .paging .next:hover{    
    background-image: url('/assets/image/board/gallery/ic_next_on_typeb.png');
}
.board-gallery-type2 .paging .last{    
    background-image: url('/assets/image/board/gallery/ic_last_typeb.png');
}
.board-gallery-type2 .paging .last:hover{
    background-image: url('/assets/image/board/gallery/ic_last_on_typeb.png');
}

/* view */
.board-gallery-type2 .board-view{
    letter-spacing: -0.05em;
}
.board-gallery-type2 .view-contop{
    padding: 20px 25px;
    background-color: #f7f7f7;
    border-top: 2px solid #3b3b3b;
    border-bottom: 1px solid #bbbbbb;
    font-size: 1.5rem;
}
.board-gallery-type2 .view-contop + .view-contents{
    border-top: 0;
}
.board-gallery-type2 .view-tit{
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.05em;
}
.board-gallery-type2 .view-info{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.board-gallery-type2 .view-cnt{
    margin-bottom: 10px;
}
.board-gallery-type2 .view-cnt button + button{
    margin-left: 10px;
}
.board-gallery-type2 .view-cnt .cnt{
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.board-gallery-type2 .view-info > span{
    display: inline-block;
    position: relative;
    vertical-align: top;
}
.board-gallery-type2 .view-info > div:not(.view-cnt) span + span{
    padding-left: 8px;
    margin-left: 6px;
}
.board-gallery-type2 .view-info > span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 1px;
    height: 14px;
    background-color: #e5e2e4;
}
.board-gallery-type2 .view-info > span strong{
    font-weight: 600;
}
.board-gallery-type2 .view-link{
    padding: 20px 25px 0;
}
.board-gallery-type2 .view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('/assets/image/board/gallery/ic_view_link_typeb.png');
    font-weight: 500;
    color: #000;
    word-break: break-all;
    vertical-align: top;
}
.board-gallery-type2 .view-contents{
    padding-top: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 1.8rem;
    font-weight: 500;
}
.board-gallery-type2 .board-view:has(.view-attach) .view-contents{
    border-bottom: 0;
}
.board-gallery-type2 .view-contents *{
    font: inherit;
}
.board-gallery-type2 .view-contents img{
    max-width: 100%;
}

.board-gallery-type2 .view-attach{
	padding-bottom: 15px;
	border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type2 .view-attach-con .con > a{
	display: block;
	padding: 10px 50px;
	font-size: 1.7rem;
	background-color: #fff;
	background-image: url('/assets/image/board/gallery/img_file_typeb.png');
	background-repeat: no-repeat;
	background-position: 18px center;
	border: 1px solid #dbdbdb;
	border-radius: 5px;
	transition: all 0.3s;
}
.board-gallery-type2 .view-attach-con .con > a:hover{
	border: 1px solid #9f9f9f;
}
.board-gallery-type2 .view-attach-con .con > a + a{
    margin-top: 10px;
}
.gall-wrap{
	overflow: hidden;
	position: relative;
	max-width: 900px;
	margin: 50px auto 40px;
}
.gall-view-wrap{
    width: 100%;
}
.gall-view-wrap img{
    max-width: 100%;
}
.gall-rolling-wrap{
	/* 
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 0 20px;
	 */
  display: flex;
	align-items: center;
	justify-content: space-between;  
	width: 100%;
	height: 60px;
	gap: 20px;
}
.gall-progress-bar{
	z-index: 2;
	width: calc(100% - 100px);
	height: 6px;
	border-radius: 3px;
	background-color:#d6cfdc;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, #9457c5, #9457c5);
    transition: 0.5s ease;
}
.gall-view-rolling{
    overflow: hidden;
}
.gall-view-rolling .slick-list,
.gall-view-rolling .slick-track{
    height: 100%;
}
.gall-btn-wrap {
	flex: 0 0 auto;
}
.btn-gall{
    width: 40px;
    height: 40px;
    margin: 0 8px;
		background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
		border-radius: 50%;
		box-shadow: 0px 5px 14px 1px rgba(156, 145, 166, 0.08);
}
.btn-gall-prev{
    margin-left: 0;
    background-image: url('../image/board/gallery/btn_gall_prev.png');
}
.btn-gall-next{
    margin-right: 0;
    background-image: url('../image/board/gallery/btn_gall_next.png');
}
.gall-rolling-wrap .slick-dots li{
    display: none;
    justify-content: space-between;
    color: #868686;
}
.gall-rolling-wrap .slick-dots li.slick-active{
    display: flex;
		align-items: center;
		gap: 4px;
}
.gall-cnt-wrap{
    vertical-align: middle;
}
.gall-cnt-wrap .current,
.gall-cnt-wrap .total{
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
}
.gall-cnt-wrap .bar {
    display: inline-block;
    width: 30px;
		height: 1px;
		background-color: #a49da9;
}
.gall-cnt-wrap .current{
    font-weight: 500;
    color: #6f28a7;
}
.gall-cnt-wrap .total{
    position: relative;
		font-weight: 500;
}


.gall-view-rolling{
    max-width: 700px;
    margin: 0 auto;
}
.gall-view-rolling .slick-slide{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.gall-view-con:after{
    display: block;
    content: '';
    clear: both;
}
.gall-view-con > a{
    float: left;
    width: calc((100% - 60px)/5);
    height: 100px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
}
.gall-view-con > a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* view::comment */
.board-gallery-type2 .comment-wrap{
    margin-top: 50px;
    padding: 45px;
    font-size: 1.6rem;
    line-height: 1.3;
    background-color: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
}
.board-gallery-type2 .comment-wrap > .tit{
    padding: 0 25px;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.07em;
}
.board-gallery-type2 .comment-write-wrap{
    display: flex;
    gap: 15px;
    padding: 0 25px;
    font-size: 1.6rem;
    line-height: 1.4;
}
.board-gallery-type2 .comment-write-wrap .form-item{
    height: 80px;
    padding: 20px;
    border-color: #e7e7e7;
    border-radius: 5px;
}
.board-gallery-type2 .comment-write-wrap .btn-submit{
    flex: 0 0 auto;
    width: 135px;
    height: 80px;
    background-color: #3b3b3b;
    border-color: #3b3b3b;
    border-radius: 2px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
}
.board-gallery-type2 .comment-list-wrap{
    margin-top: 35px;
    border-top: 1px solid #e2e2e2;
}
.board-gallery-type2 .comment-list-wrap ul > li{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #e2e2e2;
    letter-spacing: -0.05em;
}
.board-gallery-type2 .comment-contop{
    width: 100%;
}
.board-gallery-type2 .comment-name{
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
}
.board-gallery-type2 .comment-date{
    margin-left: 10px;
    font-size: 1.5rem;
    color: #9e9e9e;
}
.board-gallery-type2 .comment-contop .view-cnt{
    margin-bottom: 0;
}
.board-gallery-type2 .comment-contents{
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}
.board-gallery-type2 .comment-contents .btn-wrap{
    flex: 0 0 auto;
    margin: 0;
    padding-left: 20px;
}
.board-gallery-type2 .btn.btn-comment{
    display: inline-block;
    min-width: 60px;
    margin: 2px;
    padding: 3px 0;
    border-radius: 3px;     
    border: 1px solid #4986ac;
    background-color: #fff;
    color: #4986ac;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.07em;
    text-align: center;
}
.board-gallery-type2 .btn-comment.btn-modify{
    border-color: #20366f;
    color: #20366f;
}
.board-gallery-type2 .btn-comment.btn-delete{
    border-color: #bd466a;
    color: #bd466a;
}
.board-gallery-type2 .comment-list-wrap li.comment-reply{
	padding-left: 48px;
    background-repeat: no-repeat;
    background-position: 10px 25px;
    background-image: url('/assets/image/board/gallery/ic_comment_reply_typeb.png');
}
.board-gallery-type2 .comment-reply .comment-write-wrap{
    width: 100%;
    padding: 0;
}
.board-gallery-type2 .comment-reply .comment-write-wrap .form-item{    
    height: 80px;
}
.board-gallery-type2 .comment-reply .comment-write-wrap .btn{
    flex: 0 0 auto;
    width: 110px;
    height: 80px;
    border-radius: 2px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
}

/* view::move */
.board-gallery-type2 .view-move{
    display: flex;
    width: 100%;
    margin-top: 70px;
}
.board-gallery-type2 .view-move-con{
    display: flex;
    align-items: center;
    padding: 17px 20px;
    font-size: 1.6rem;
    color: #8c8c8c;
    letter-spacing: -0.05em;
}
.board-gallery-type2 .view-move-con .tit{
    position: relative;
    width: 85px;
    padding: 0 23px;
    background-repeat: no-repeat;
    background-position: 0 center;
    font-weight: 600;
    transition: background 0.3s ease;
}
.board-gallery-type2 .view-move-con .tit:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 7px;
    width: 1px;
    height: 11px;
    background-color: #d6d6d6;
    transition: 0.3s ease;
}
.board-gallery-type2 .view-move-con .con{
    width: calc(100% - 85px);
    padding: 0 20px;
}
.board-gallery-type2 .view-move-con a{
    vertical-align: top;
}
.board-gallery-type2 .view-move-con:hover{
    background-color: #f9f9f9;
    color: #000;
}
.board-gallery-type2 .view-move-con:hover .tit:after{
    background-color: #000000;
}

.board-gallery-type2 .view-move.type1 .view-move-con{
    width: 50%;
    border: 1px solid #e2e2e2;
    transition: 0.3s ease;
}
.board-gallery-type2 .view-move.type1 .view-move-con + .view-move-con{
    border-left: 1px solid transparent;
}
.board-gallery-type2 .view-move.type1 .view-prev{
    border-radius: 4px 0 0 4px;
}
.board-gallery-type2 .view-move.type1 .view-prev .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_prev_typeb.png');
    background-size: 18px;
}
.board-gallery-type2 .view-move.type1 .view-prev:hover .tit{    
    background-image: url('/assets/image/board/gallery/ic_arrow_prev_on_typeb.png');
}
.board-gallery-type2 .view-move.type1 .view-prev .tit:after{
    right: 0;
}
.board-gallery-type2 .view-move.type1 .view-next{
    flex-direction: row-reverse;
    border-radius: 0 4px 4px 0;
    text-align: right;
}
.board-gallery-type2 .view-move.type1 .view-next .tit{
    background-position: right center;
    background-image: url('/assets/image/board/gallery/ic_arrow_next_typeb.png');
    background-size: 18px;
}
.board-gallery-type2 .view-move.type1 .view-next:hover .tit{    
    background-image: url('/assets/image/board/gallery/ic_arrow_next_on_typeb.png');
}
.board-gallery-type2 .view-move.type1 .view-next .tit:after{
    left: 0;
}
.board-gallery-type2 .view-move.type1 .view-move-con:hover{
    border-color: #8b8b8b;
}

.board-gallery-type2 .view-move.type2{
    flex-direction: column;
    border-top: 1px solid #e2e2e2;
}
.board-gallery-type2 .view-move.type2 .view-move-con .tit:after{
    right: 0;
}
.board-gallery-type2 .view-move.type2 .view-move-con{
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type2 .view-move.type2 .view-prev .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_top_typeb.png');
		background-size: 16px;
}
.board-gallery-type2 .view-move.type2 .view-prev:hover .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_top_on_typeb.png');
}
.board-gallery-type2 .view-move.type2 .view-next .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_bottom_typeb.png');
    background-size: 16px;
}
.board-gallery-type2 .view-move.type2 .view-next:hover .tit{
    background-image: url('/assets/image/board/gallery/ic_arrow_bottom_on_typeb.png');
}

/* write */
.board-gallery-type2 .write-contop{
    margin-bottom: 10px;
}
.board-gallery-type2 .help-text{
    font-size: 14px;
}
.board-gallery-type2 .write-wrap{
    border-top: 2px solid #3b3b3b;
}
.board-gallery-type2 .write-wrap > li{
    border-bottom: 1px solid #e2e2e2;
}
.board-gallery-type2 .write-wrap > li > div{
    line-height: 1.3;
}
.board-gallery-type2 .write-wrap .form-tit{
    background-color: #f7f7f7;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #000;
    text-align: center;
}
.board-gallery-type2 .write-wrap .form-con .btn-small{
    display: inline-block;
    padding: 6px 10px;
    margin: 2px;
    background-color: #575e71;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
}
.board-gallery-type2 .filebox label{
    background-color: #73767f;
}


/* =====================================

	* responsive

====================================== */
@media screen and (max-width: 1024px){
    /* Type A */
    /* list */
    .board-gallery-type1 .gall-tit{
        height: 43px;
    }
		.board-gallery-type1 .gall-list > li {
			position: relative;
			width: calc((100% - 20px) / 2);
		}

    /* view */
    /* .board-gallery-type1 .gall-rolling-wrap{
        max-width: 700px;
        text-align: right;
    }
    .board-gallery-type1 .gall-view-rolling{
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }
    .board-gallery-type1 .gall-cnt-wrap,
    .board-gallery-type1 .btn-gall{
        display: inline-block !important;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        vertical-align: middle;
    }
    .board-gallery-type1 .gall-cnt-wrap{
        float: left;
    }
    .board-gallery-type1 .gall-cnt-wrap .total{
        padding-top: 3px;
    }
    .board-gallery-type1 .gall-cnt-wrap, .btn-gall{
        margin: 0 5px;
    } */

    /* Type B */
    /* list */
    .board-gallery-type2 .gall-tit{
        height: 105px;
    }
    .board-gallery-type2 .gall-con{
        margin-top: 40px;
    }

    /* view */
    .board-gallery-type2 .gall-view-rolling{
        width: 100%;
        max-width: 100%;
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px){
    /* Type A */
    /* list */
    .board-gallery-type1 .sch-wrap{
        display: block;
        margin-bottom: 15px;
    }
    .board-gallery-type1 .sch-wrap .cnt{
        display: none;
    }
    .board-gallery-type1 .sch-wrap .form-item{
        height: 36px;
        font-size: 14px;
    }
    .board-gallery-type1 .sch-wrap .sch-cate{
        width: 90px;
    }
    .board-gallery-type1 .sch-wrap .sch-key {
        width: calc(100% - 187px);
    }
    .board-gallery-type1 .sch-wrap .btn-sch{
        width: 96px;
        height: 36px;
        background-size: 15px;
    }
    .board-gallery-type1 .sch-wrap:has(.btn-reset) .form-group {
			flex-wrap: wrap;
    }
    .board-gallery-type1 .sch-wrap:has(.btn-reset) .sch-key {
			width: calc(100% - 100px);
    }
    .board-gallery-type1 .sch-wrap:has(.btn-reset) .btn {
			width: calc((100% - 10px) / 2);
			height: 36px;
			font-size: 14px;
    }
		
    
    .board-gallery-type1 .gall-list{
        gap: 15px;
    }
    .board-gallery-type1 .gall-list > li{
        width: 100%;
    }
    .board-gallery-type1 .gall-list > li > a{
        height: auto;
    }
    .board-gallery-type1 .gall-list > li:hover .gall-text{
        opacity: 1;
    }
    .board-gallery-type1 .gall-img{
        height: 110px;
    }
    .board-gallery-type1 .gall-text{
        padding: 15px;
    }
    .board-gallery-type1 .gall-tit{
        height: auto;
        font-size: 14px;
    }
    .board-gallery-type1 .gall-con{
        margin-top: 5px;
        font-size: 12px;
    }
    .board-gallery-type1 .gall-con span + span:before{
        top: 3px;
        width: 1px;
        height: 9px;
    }
    .board-gallery-type1 .bbs-admin{
        display: none;
        top: 10px;
        right: 10px;
    }
    .board-gallery-type1 .gall-list .no-data{
        padding: 30px 15px;
        font-size: 14px;
    }

    .board-gallery-type1 .gall-list.n2 > li{
        width: calc((100% - 15px)/2);
    }
    .board-gallery-type1 .gall-list.n2 .gall-name{
        display: block;
        margin-bottom: 3px;
        width: 100%;
    }
    .board-gallery-type1 .gall-list.n2 .gall-con span + span{
        margin-left: 0;
        padding: 0 5px;
    }
    .board-gallery-type1 .gall-list.n2 .gall-con .gall-name + span{
        margin-left: -5px;
    }
    .board-gallery-type1 .gall-list.n2 .gall-name + span:before{
        display: none;
    }

    /* button */
    /* .board-gallery-type1 .btn-wrap{
        margin-top: 20px;
    } */
    .board-gallery-type1 .btn.btn-board{
        min-width: initial;
        padding: 7px 20px;
        font-size: 14px;
    }
    .board-gallery-type1 .board-view + .btn-wrap{
        text-align: center;
    }
    .board-gallery-type1 .btn-board.btn-list{
        float: none !important;
    }

    /* list::paging */
    .board-gallery-type1 .paging-wrap{
        margin-top: 30px;
    }
    .board-gallery-type1 .paging > li{
        width: 25px;
        height: 25px;
    }
    .board-gallery-type1 .paging > li > a{
        font-size: 14px;
    }
    .board-gallery-type1 .paging > li:not(.num){
        background-size: auto 10px;
    }
    .board-gallery-type1 .paging .prev{
        margin-right: 5px;
    }
    .board-gallery-type1  .paging .next{
        margin-left: 5px;
    }

    /* view */
    .board-gallery-type1 .view-contop{
        padding: 20px 15px;
    }
    .board-gallery-type1 .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .board-gallery-type1 .view-cnt{
        margin-bottom: 5px;
        font-size: 12px;
    }
    .board-gallery-type1 .view-cnt button + button{
        margin-left: 5px;
    }
    .board-gallery-type1 .view-cnt .icon{
        width: 20px;
        height: 20px;
        padding: 5px;
    }
    .board-gallery-type1 .view-cnt .icon img{
        max-width: 100%;
    }
    .board-gallery-type1 .view-cnt .cnt{
        margin-left: 3px;
    }
    .board-gallery-type1 .view-info > span{
        font-size: 14px;
    }
    .board-gallery-type1 .view-info > span + span:before{
        top: 6px;
        height: 10px;
    }
    .board-gallery-type1 .view-link{
        padding: 10px 0 0;
    }
    .board-gallery-type1 .view-link > a{
        padding-left: 15px;
        background-size: 10px;
        background-position: 0 6px;
        font-size: 13px;
    }
    .board-gallery-type1 .gall-rolling-wrap{
        /* padding: 0 15px;
        margin-bottom: 0; */
    }
    .board-gallery-type1 .view-contents{
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .board-gallery-type1 .view-attach{
        padding: 0 0 20px;
    }
    .board-gallery-type1 .view-attach-con{
        padding: 15px;
        border-radius: 3px;
        font-size: 14px;
    }
    .board-gallery-type1  .view-attach-con .con > a{
        padding-left: 20px;
        background-size: 10px;
        font-size: 12px; 
        line-height: 1.3;
    }
    .board-gallery-type1 .gall-view-wrap{
        /* width: calc(100% - 30px);
        margin: 20px auto;
        border-radius: 2px; */
    }
   	.gall-wrap .btn-img-down {
        right: 15px;
        bottom: 55px;
        width: 30px;
        height: 30px;
    }
		.gall-rolling-wrap {
			height: 40px;
			padding: 0;
		}
    /* .board-gallery-type1 .gall-cnt-wrap .current, 
    .board-gallery-type1 .gall-cnt-wrap .total{
        vertical-align: middle;
    }
    .board-gallery-type1 .gall-cnt-wrap .current{
        font-size: 22px;
    }
    .board-gallery-type1 .gall-cnt-wrap .total{
        padding-top: 0;
        font-size: 20px;
    }
    .board-gallery-type1 .btn-gall{
        width: 30px;
        height: 30px;
        margin: 2px;
    }
    .board-gallery-type1 .gall-view-rolling{
        margin-top: 10px; 
    }
    .board-gallery-type1 .gall-view-rolling .slick-slide{
        gap: 10px;
    }
    .board-gallery-type1 .gall-view-con > a{
        width: calc((100% - 40px)/5);
        height: 45px;
        border-radius: 2px;
    } */

    /* view::comment */
    .board-gallery-type1 .comment-wrap{
        margin-top: 30px;
        font-size: 14px;
    }
    .board-gallery-type1 .comment-wrap > .tit{
        padding: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .board-gallery-type1 .comment-write-wrap{
        gap: 5px;
        padding: 0;
    }
    .board-gallery-type1 .comment-write-wrap .form-item{
        height: 50px;
        padding: 10px;
        border-radius: 3px;
    }
    .board-gallery-type1 .comment-write-wrap .btn-submit{
        width: 70px;
        height: 50px;
        border-radius: 3px;
        font-size: 14px;
    }
    .board-gallery-type1 .comment-list-wrap{
        margin-top: 15px;
        border-radius: 3px;
    }
    .board-gallery-type1 .comment-list-wrap ul > li{
        padding: 15px 0;
    }
    .board-gallery-type1 .comment-name{
        font-size: 14px;
    }
    .board-gallery-type1 .comment-date{
        margin-left: 5px;
        font-size: 12px;
    }
    .board-gallery-type1 .comment-contents{
        flex-direction: column;
        align-items: start;
        width: 100%;
        margin-top: 5px;
        font-size: 14px;
    }
    .board-gallery-type1 .comment-contents .btn-wrap{
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
        text-align: right;
    }
    .board-gallery-type1 .btn.btn-comment{
        min-width: initial;
        padding: 3px 12px;
        font-size: 12px;
    }
    .board-gallery-type1 .comment-list-wrap li.comment-reply{
        padding-left: 20px;
        background-size: 13px;
        background-position: 0 17px;
    }
    .board-gallery-type1 .comment-reply .comment-write-wrap .form-item{
        height: 50px;
    }
    .board-gallery-type1 .comment-reply .comment-write-wrap .btn{
        width: 50px;
        height: 50px;
        border-radius: 3px;
    }

    /* view::move */
    .board-gallery-type1  .view-move{
        margin-top: 20px;
    }
    .board-gallery-type1 .view-move-con{
        padding: 8px 10px;
        font-size: 14px;
    }
    .board-gallery-type1 .view-move-con .tit{
        width: 65px;
        padding: 0 15px;
        background-size: 7px;
    }
    .board-gallery-type1 .view-move-con .tit:after{
        top: 6px;
        width: 1px;
        height: 10px;
    }
    .board-gallery-type1 .view-move-con .con{
        width: calc(100% - 65px);
        padding: 0;
    }
    .board-gallery-type1 .view-move .view-prev .con{
        padding-left: 15px;
    }
    .board-gallery-type1 .view-move .view-next .con{
        padding-right: 15px;
    }
    .board-gallery-type1 .view-move.type2 .view-move-con .con{
        padding: 0;
        padding-left: 15px;
    }
    
    .board-gallery-type1  .view-move.type1 .view-prev{
        border-radius: 3px 0 0 3px;
    }
    .board-gallery-type1 .view-move.type1 .view-next{
        border-radius: 0 3px 3px 0;
    }    
    .board-gallery-type1 .view-move.type2 .view-move-con .tit{
        background-size: 10px;
    }
    
    /* write */
    .board-gallery-type1 .help-text{
        font-size: 12px;
    }
    .board-gallery-type1 .write-wrap .form-tit,
    .board-gallery-type1 .write-wrap .form-con{
        text-align: left;
    }
    .board-gallery-type1 .write-wrap .form-con .btn-small{
        padding: 4px 8px;
        font-size: 12px;
    }

    /* Type B */
    /* list */
    .board-gallery-type2 .sch-wrap{
        display: block;
        margin-bottom: 15px;
    }
    .board-gallery-type2 .sch-wrap .cnt{
        display: none;
    }
    .board-gallery-type2 .sch-wrap .form-item{
        height: 36px;
        font-size: 14px;
    }
    .board-gallery-type2 .sch-wrap .sch-cate{
        width: 90px;
    }
    .board-gallery-type2 .sch-wrap .sch-key{
        width: calc(100% - 137px);
    }
    .board-gallery-type2 .sch-wrap .btn-sch{
        width: 36px;
        height: 36px;
        background-size: 15px;
    }
    .board-gallery-type2 .gall-list{
        gap: 15px;
    }
    .board-gallery-type2 .gall-list > li{
        width: 100%;
    }
    .board-gallery-type2 .gall-img{
        height: 150px;
    }
    .board-gallery-type2 .gall-tit{
        height: auto;
        font-size: 14px;
    }
    .board-gallery-type2 .gall-tit.ellipsis5{
        -webkit-line-clamp: 3;
    }
    .board-gallery-type2 .gall-info{
        height: 150px;
        padding: 25px 15px;
    }
    .board-gallery-type2 .gall-con{
        margin-top: 5px;
        font-size: 14px;
    }
    .board-gallery-type2 .gall-con span + span:before{
        top: 5px;
        width: 1px;
        height: 9px;
    }
    .board-gallery-type2 .bbs-admin{
        display: none;
        top: 10px;
        right: 10px;
    }
    .board-gallery-type2 .gall-list .no-data{
        padding: 25px 15px;
        font-size: 14px;
    }
    .board-gallery-type2 .gall-list .no-data img{
        width: 26px;
        margin-bottom: 10px;
    }
    .board-gallery-type2 .gall-list.n2 > li{
        width: calc((100% - 15px)/2);
    }
    .board-gallery-type2 .gall-list.n2 .no-data{
        width: 100%;
    }

    /* button */
    .board-gallery-type2 .btn-wrap{
        margin-top: 20px;
    }
    .board-gallery-type2 .btn.btn-board{
        min-width: initial;
        padding: 7px 20px;
        border-radius: 2px;
        font-size: 14px;
    }
    .board-gallery-type2 .board-view + .btn-wrap{
        text-align: center;
    }
    .board-gallery-type2 .btn-board.btn-list{
        float: none !important;
    }

    /* list::paging */
    .board-gallery-type2 .paging-wrap{
        margin-top: 30px;
    }
    .board-gallery-type2 .paging > li{
        width: 25px;
        height: 25px;
    }
    .board-gallery-type2 .paging > li > a{
        font-size: 14px;
    }
    .board-gallery-type2 .paging > li:not(.num){
        background-size: auto 10px;
    }
    .board-gallery-type2 .paging .prev{
        margin-right: 5px;
    }
    .board-gallery-type2 .paging .next{
        margin-left: 5px;
    }

    /* view */
    .board-gallery-type2 .view-contop{
        padding: 20px 15px;
    }
    .board-gallery-type2 .view-tit{
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.3;
    }
    .board-gallery-type2 .view-cnt{
        margin-bottom: 5px;
        font-size: 12px;
    }
    .board-gallery-type2 .view-cnt button + button{
        margin-left: 5px;
    }
    .board-gallery-type2 .view-cnt .icon img{
        max-width: 12px;
    }
    .board-gallery-type2 .view-cnt .cnt{
        margin-left: 3px;
    }
    .board-gallery-type2 .view-info > span{
        font-size: 14px;
    }
    .board-gallery-type2 .view-info > span + span:before{
        top: 6px;
        height: 10px;
    }
    .board-gallery-type2 .view-link{
        padding: 10px 0 0;
    }
    .board-gallery-type2 .view-link > a{
        padding-left: 15px;
        background-size: 10px;
        background-position: 0 5px;
        font-size: 13px;
    }
    .board-gallery-type2 .view-contents{
        padding: 20px 15px;
        font-size: 14px;
        line-height: 1.5;
    }
    .board-gallery-type2 .view-attach{
        padding: 0 15px;
        padding-bottom: 20px;
    }
    .board-gallery-type2 .gall-wrap{
        max-width: 700px;
        padding: 0 15px;
        margin: 25px auto 20px;
        border-radius: 5px;
    }
    .board-gallery-type2 .gall-view-wrap{
        margin: 0 auto;
        border-radius: 2px;
    }
    .board-gallery-type2 .gall-view-wrap .btn-img-down{
        right: 15px;
        bottom: 15px;
        width: 20px;
        height: 20px;
    }
    .board-gallery-type2 .gall-rolling-wrap{
        left: 50%;
        transform: translateX(-50%);
        max-width: 700px;
        width: calc(100% - 30px);
        height: 42px;
        padding: 0 15px;
        margin-bottom: 0;
        border-radius: 5px;
    }
    .board-gallery-type2 .gall-cnt-wrap .current, .gall-cnt-wrap .total{
        font-size: 1.3rem;
    }
    .board-gallery-type2 .gall-cnt-wrap .total{
        padding-top: 0;
    }
    .board-gallery-type2 .gall-progress-bar{
        width: calc(100% - 70px);
    }
    .board-gallery-type2 .btn-gall{
        width: 6px;
        height: 12px;
        margin-right: 4px;
    }
    .board-gallery-type2 .gall-view-rolling{
        margin-top: 10px; 
    }
    .board-gallery-type2 .gall-view-rolling .slick-slide{
        gap: 10px;
    }
    .board-gallery-type2 .gall-view-con > a{
        width: calc((100% - 40px)/5);
        height: 45px;
        border-radius: 2px;
    }
    .board-gallery-type2 .view-attach-con .con > a{
        padding: 10px;
        padding-left: 25px;
        background-size: 10px;
        background-position: 10px 13px;
        font-size: 12px;
        line-height: 1.3;
    }
    .board-gallery-type2 .view-attach-con .con > a + a{
        margin-top: 7px;
    }

		.btn-gall {
			width: 20px;
			height: 20px;
			background-size: auto 10px;
		}
		.gall-wrap {
			margin: 25px auto 20px;
		}
		.gall-rolling-wrap {
			gap: 10px;
		}
		.gall-cnt-wrap .bar {
			width: 15px;
		}

    /* view::comment */
    .board-gallery-type2 .comment-wrap{
        padding: 25px 15px;
        margin-top: 30px;
        font-size: 14px;
    }
    .board-gallery-type2 .comment-wrap > .tit{
        padding: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }
    .board-gallery-type2 .comment-write-wrap{
        gap: 5px;
        padding: 0;
    }
    .board-gallery-type2 .comment-write-wrap .form-item{
        height: 50px;
        padding: 10px;
        border-radius: 3px;
    }
    .board-gallery-type2 .comment-write-wrap .btn-submit{
        width: 70px;
        height: 50px;
        border-radius: 1px;
        font-size: 14px;
    }
    .board-gallery-type2 .comment-list-wrap{
        margin-top: 15px;
        border-radius: 3px;
    }
    .board-gallery-type2 .comment-list-wrap ul > li{
        padding: 15px 0;
    }
    .board-gallery-type2 .comment-name{
        font-size: 14px;
    }
    .board-gallery-type2 .comment-date{
        margin-left: 5px;
        font-size: 12px;
    }
    .board-gallery-type2 .comment-contents{
        flex-direction: column;
        align-items: start;
        width: 100%;
        margin-top: 5px;
        font-size: 14px;
    }
    .board-gallery-type2 .comment-contents .btn-wrap{
        width: 100%;
        padding-left: 0;
        margin-top: 10px;
        text-align: right;
    }
    .board-gallery-type2 .btn.btn-comment{
        min-width: initial;
        padding: 3px 12px;
        border-radius: 1px;
        font-size: 12px;
    }
    .board-gallery-type2 .comment-list-wrap li.comment-reply{
        padding-left: 20px;
        background-size: 13px;
        background-position: 0 17px;
    }
    .board-gallery-type2 .comment-reply .comment-write-wrap .form-item{
        height: 50px;
    }
    .board-gallery-type2 .comment-reply .comment-write-wrap .btn{
        width: 50px;
        height: 50px;
        border-radius: 1px;
    }

    /* view::move */
    .board-gallery-type2 .view-move{
        margin-top: 20px;
    }
    .board-gallery-type2 .view-move-con{
        padding: 8px 10px;
        font-size: 14px;
    }
    .board-gallery-type2 .view-move-con .tit{
        width: 65px;
        padding: 0 15px;
        background-size: 7px;
    }
    .board-gallery-type2 .view-move-con .tit:after{
        top: 6px;
        width: 1px;
        height: 10px;
    }
    .board-gallery-type2 .view-move-con .con{
        width: calc(100% - 65px);
        padding: 0;
    }
    
    .board-gallery-type2 .view-move.type1 .view-prev{
        border-radius: 3px 0 0 3px;
    }
    .board-gallery-type2 .view-move.type1 .view-prev .tit,
    .board-gallery-type2 .view-move.type1 .view-next .tit{
        background-size: 10px;
    }
    .board-gallery-type2 .view-move.type1 .view-prev .con{
        padding-left: 15px;
    }
    .board-gallery-type2 .view-move.type1 .view-next{
        border-radius: 0 3px 3px 0;
    }
    .board-gallery-type2 .view-move.type1 .view-next .con{
        padding-right: 15px;
    }
    .board-gallery-type2 .view-move.type2 .view-move-con .tit{
        background-size: 10px;
    }
    .board-gallery-type2 .view-move.type2 .view-move-con .con{
        padding-left: 15px;
    }


		/* .board-gallery-type1 .btn-wrap {
			text-align: center !important;
		} */
		.board-gallery-type1 .btn-wrap .btn-list {
			float: none !important;
		}
		.board-gallery-type1 .btn-wrap .btn-modify,
		.board-gallery-type1 .btn-wrap .btn-delete {
			display: none;
		}

    /* write */
    .board-gallery-type2 .help-text{
        font-size: 12px;
    }
    .board-gallery-type2 .write-wrap .form-tit,
    .board-gallery-type2 .write-wrap .form-con{
        text-align: left;
    }
    .board-gallery-type2 .write-wrap .con .btn-small{
        padding: 4px 8px;
        font-size: 12px;
    }
}
