@charset "utf-8";
/* =====================================

	* board

    CSS CONTENTS :
    01. list
    02. list::effect
    03. button
    04. list::paging
    05. view
    06. view::comment
    07. view::move
    08. write
    
====================================== */
/* reset **/
.cf:after{display: block;content: '';clear: both;}
.hide{overflow: hidden;position: absolute;width: 1px;height: 1px;margin: -1px;clip: rect(0 0 0 0);}

/* ellipsis */
.ellipsis,
.ellipsis2,
.ellipsis3,
.ellipsis4,
.ellipsis5{
	overflow: hidden;
	display: block;
	display: -webkit-inline-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
    word-break: break-all;
}
.ellipsis{
	display: inline-block;
	max-width: 100%;
	white-space: nowrap;
}
.ellipsis2{
	-webkit-line-clamp: 2;
}
.ellipsis3{
	-webkit-line-clamp: 3;
}
.ellipsis4{
	-webkit-line-clamp: 4;
}
.ellipsis5{
	-webkit-line-clamp: 5;
}
.ellipsis6{
	-webkit-line-clamp: 6;
}
.ellipsis7{
	-webkit-line-clamp: 7;
}
.ellipsis8{
	-webkit-line-clamp: 8;
}
.ellipsis9{
	-webkit-line-clamp: 9;
}
.ellipsis10{
	-webkit-line-clamp: 10;
}

.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}

.required{
    color: #d22c2c !important;
}
.text-red{
    color: #d22c2c !important;
}
.link,
.link *,
.link:hover,
.link:active,
.link:focus{
    color: #3c84ff !important;
    text-decoration: underline;
}

/* radio, checkbox */
.radio-wrap,
.checkbox-wrap{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.radio-wrap.full,
.checkbox-wrap.full{
    flex-direction: column;
    align-items: start;
}
.radio-wrap.text-center,
.checkbox-wrap.text-center{
    justify-content: center;
}
.radio-group:has(input:disabled),
.radio-group input[type="radio"]:disabled,
.checkbox-group:has(input:disabled),
.checkbox-group input[type="checkbox"]:disabled{
    opacity: 0.3;
}
.radio-group,
.checkbox-group{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
}
.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"]{
    margin-left: -28px !important;
}
.cst .radio-group input[type="radio"],
.cst .checkbox-group input[type="checkbox"]{
    appearance: none;
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 100%;
    margin-top: -5px;
    margin-right: 12px;
    vertical-align: middle;
    transition: 0.3s ease;
    cursor: pointer;
}
.cst .checkbox-group input[type="checkbox"]{
    border-radius: 2px;
    border-color: #d1d1d1;
    background-repeat: no-repeat;
    background-position: center;
}
.cst .radio-group input[type="radio"]:checked{
    border-color: #20366f;
}
.cst .radio-group input[type="radio"]:checked:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #20366f;
}
.cst .checkbox-group input[type="checkbox"]:checked{
    border-color: #20366f;
}
.cst .checkbox-group input[type="checkbox"]:checked:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 1px;
    left: 2px;
    border-right: 2px solid #20366f;
    border-bottom: 2px solid #20366f;
    height: 70%;
    width: 30%;
    transform: rotate(50deg) translateY(-20%) translateX(-10%);
}

.write-wrap .form-item{
    width: 100%;
}
.form-item{
    display: inline-block;
    max-width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d2d2d2;
    border-radius: 2px;
    background-color: #fff;
    vertical-align: middle;
}
textarea.form-item{
    height: auto;
    padding: 10px;
}
.form-item::placeholder{
    color: #c4c4c4;
}

/* input file custom */
.filebox{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.filebox .upload-name{
    width: calc(100% - 125px);
}
.filebox label{
    width: 115px;
    padding: 8px 0;
    color: #fff;
    background-color: #585858;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
}
.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}
.filebox .attach-file{
    flex: 1 1 auto;
    width: 100%;
}
.filebox + *{
    display: inline-block;
    vertical-align: middle;
}
.attach-file .file_del{
    display: inline-block;
    margin-top: -3px;
    margin-left: 5px;
    vertical-align: middle;
}

.mt-10{
    margin-top: 10px;
}

/* list */
.board-vod-type1,
.board-vod-type1 *{
    box-sizing: border-box;
}

.sch-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.sch-wrap .cnt{
    font-size: 17px;
    letter-spacing: -0.05em;
}
.sch-wrap .form-item{
    height: 40px;
    font-size: 15px;
}
.sch-wrap .sch-cate{
    width: 100px;
}
.sch-wrap .sch-key{
    width: 300px;
    margin-left: 5px;
}
.sch-wrap .btn-sch{
    width: 40px;
    height: 40px;
    margin-left: -4px;
    background-color: #144393;
    background-repeat: no-repeat;
    background-image: url('/image/board/vod/ic_sch.png');
    background-position: center;
    border-radius: 3px;
}
.board-vod-type1 .vod-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}
.board-vod-type1 .vod-list > li{
    position: relative;
    width: calc((100% - 40px)/3);
    border: 1px solid #e2e2e2;
}
.board-vod-type1 .vod-list > li > a{
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.3s ease;
}
.board-vod-type1 .vod-list > li:hover > a{
    box-shadow: 0 20px 24px rgba(149,149,149,0.2);
}
.board-vod-type1 .vod-list > li:hover .gall-tit{
    color: #20366f;
}
.board-vod-type1 .gall-img{
    display: block;
    position: relative;
    width: 100%;
    height: 245px;
    border-bottom: 1px solid #e2e2e2; 
    background-color: #fafafa;
}
.board-vod-type1 .gall-img:before,
.board-vod-type1 .gall-img:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.board-vod-type1 .gall-img:before{
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.3);
}
.board-vod-type1 .gall-img:after{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/image/board/vod/ic_play.png');
}
.board-vod-type1 .gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.board-vod-type1 .gall-text{
    padding: 25px;
    letter-spacing: -0.05em;
}
.board-vod-type1 .gall-tit{
    display: block;
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
}
.board-vod-type1 .gall-con{
    position: absolute;
    left: 0;
    bottom: 25px;
    margin-top: auto;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 500;
}
.board-vod-type1 .gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.board-vod-type1 .gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.board-vod-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-vod-type1 .vod-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.board-vod-type1 .bbs-admin{
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
.board-vod-type1 .bbs-admin .btn{
    vertical-align: top;
}
.board-vod-type1 .bbs-admin .btn > span{
    line-height: initial;
    padding: 0;
    width: auto;
    height: auto;
    border: 0;
    font-size: 1px;
}
.board-vod-type1 .bbs-admin .form-item{
    width: 65px;
    height: 27px;
    margin: 2px;
    padding: 0 3px;
    border-color: #565656;
    background-color: #fff;
    font-size: 14px;
    vertical-align: top;
}
.board-vod-type1 .bbs-admin .btn.btn-modify,
.board-vod-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-vod-type1 .bbs-admin .btn.btn-modify{
    background-image: url('/image/board/vod/ic_modify.png');
}
.board-vod-type1 .bbs-admin .btn.btn-delete{
    background-image: url('/image/board/vod/ic_delete.png');
    background-color: #565656;
}
.board-vod-type1 .vod-list .no-data{
    display: block;    
    width: 100% !important;
    padding: 70px 15px;
    border-top: 2px solid #0b2a56;
    border-left: 0;
    border-right: 0;
    font-size: 20px;
    font-weight: 600;
    color: #0b2a56;
    letter-spacing: -0.05em;
    text-align: center;
}
.board-vod-type1 .vod-list > li:hover .gall-img:before{
    opacity: 1;
}

/* list::effect */
.board-vod-type1 .ef01,
.board-vod-type1 .ef02,
.board-vod-type1 .ef03,
.board-vod-type1 .ef04{
    position: relative;
}
.board-vod-type1 .ef01 > a,
.board-vod-type1 .ef02 > a,
.board-vod-type1 .ef03 > a,
.board-vod-type1 .ef04 > a{
    width: 100%;
    height: 100%;
}
.board-vod-type1 .ef01 > a{
    position: relative;
}
.board-vod-type1 .ef01 > a:before, 
.board-vod-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-vod-type1 .ef01 > a:after{
	opacity: 0;
	border-color: #20366f;
    border-width: 3px;
	transform: translateY(-6px) translateX(6px);
}
.board-vod-type1 .ef01 > a:hover:before, 
.board-vod-type1 .ef01 > a:focus:before{
	opacity: 0;
	transform: translateY(5px) translateX(-5px);
}
.board-vod-type1 .ef01 > a:hover:after, 
.board-vod-type1 .ef01 > a:focus:after{
	opacity: 1;
	transform: translateY(0px) translateX(0px);
}
.board-vod-type1 .ef02{
	overflow: hidden;
	position: relative;
    z-index: 1;
	padding: 0;
    transition: 0.3s ease;
}
.board-vod-type1 .vod-list .ef02{
    border: 0;
}
.board-vod-type1 .ef02:before,
.board-vod-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-vod-type1 .ef02:after{
    border: 0;
	border-top: 3px solid #20366f;
    top: auto;
    right: auto;
    bottom: 0;
    left: -50%;
}
.board-vod-type1 .ef02:hover:before,
.board-vod-type1 .ef02:hover:after{
    width: 100%;
    height: 20px;
}
.board-vod-type1 .ef02 > a{
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.board-vod-type1 .ef02 > a:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
}
.board-vod-type1 .ef02:hover > a:before{
    border-color: #20366f;
    border-width: 3px;
}
.board-vod-type1 .ef02 .bbs-admin{
    z-index: 1;
}
.board-vod-type1 .ef03:before,
.board-vod-type1 .ef03:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    width: 0;
    height: 3px;
    background-color: #20366f;
}
.board-vod-type1 .ef03:before{
    top: 0;
    left: 0;
    transition: 0.2s ease;
}
.board-vod-type1 .ef03:after{
    right: 0;        
    transition: 0.2s ease 0.2s;
}
.board-vod-type1 .ef03 > a:before,
.board-vod-type1 .ef03 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    width: 3px;
    height: 0;
    background-color: #20366f;
}
.board-vod-type1 .ef03 > a:before{
    bottom: 0;
    left: 0;
    transition: 0.2s ease 0.3s;
}
.board-vod-type1 .ef03 > a:after{
    top: 0;
    right: 0;    
    transition: 0.2s ease 0.1s;
}
.board-vod-type1 .ef03:hover:before{
    width: 100%;
}
.board-vod-type1 .ef03 > a:hover:after{
    height: 100%;
}
.board-vod-type1 .ef03:hover:after{
    width: 100%;    
}
.board-vod-type1 .ef03 > a:hover:before{
    height: 100%;
}
.board-vod-type1 .ef03:hover .gall-img{
    z-index: -1;
}

.board-vod-type1 .ef04:before,
.board-vod-type1 .ef04:after,
.board-vod-type1 .ef04 > a:before,
.board-vod-type1 .ef04 > a:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    z-index: 1;
    background-color: #20366f;
    transition: 0.3s ease;
}
.board-vod-type1 .ef04:before,
.board-vod-type1 .ef04:after{
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
}
.board-vod-type1 .ef04 > a:before,
.board-vod-type1 .ef04 > a:after{
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
}
.board-vod-type1 .ef04 > a:after{
    right: 0;
}
.board-vod-type1 .ef04:hover:before,
.board-vod-type1 .ef04:hover:after{
    width: calc(100% + 30px);
}
.board-vod-type1 .ef04:hover > a:before,
.board-vod-type1 .ef04:hover > a:after{
    height: calc(100% + 30px);
}

/* button */
.board-vod-type1.board-wrap .btn-wrap{
    margin-top: 30px;
}
.board-vod-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-vod-type1 .board-view + .btn-wrap{
    text-align: right;
}
.board-vod-type1 .btn.btn-board{
    display: inline-block;
    min-width: 115px;
    padding: 9px 20px;
    margin: 4px;
    border-radius: 3px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.07em;
    text-align: center;
}
.board-vod-type1 .btn.btn-list{
    background-color: #fff;
    border-color: #3c568a;
    color: #3c568a;
}
.board-vod-type1 .btn.btn-modify{
    background-color: #20366f;
    border-color: #20366f;
    color: #fff;
}
.board-vod-type1 .btn.btn-delete{
    background-color: #bd466a;
    border-color: #bd466a;
    color: #fff;
}
.board-vod-type1 .btn.btn-cancel{
    background-color: #585858;
    border-color: #585858;
    color: #fff;
}
.board-vod-type1 .btn.btn-write{
    background-color: #20366f;
    border-color: #20366f;
    color: #fff;
}
.board-vod-type1 .btn.btn-reply{
    background-color: #4986ac;
    border-color: #4986ac;
    color: #fff;
}

/* list::paging */
.paging-wrap{
    margin-top: 40px;
    text-align: center;
}
.paging{
    display: inline-block;
    vertical-align: top;
    text-align: center;
}
.paging > li{
    overflow: hidden;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 1px;
    border-radius: 50%;
    vertical-align: top;
    transition: 0.3s ease;
}
.paging > .num:hover,
.paging > .num.on,
.paging > .num:hover > a,
.paging > .num.on > a{
    background-color: #f3f3f3;
    font-weight: 600;
    color: #000000;
}
.paging > li > a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0;
    font-size: 18px;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease;
}
.paging > li:not(.num):hover{
    background-color: none;
}
.paging .first{
    background-image: url('/image/board/vod/ic_first.png');
}
.paging .first:hover{    
    background-image: url('/image/board/vod/ic_first_on.png');
}
.paging .prev{
    margin-right: 15px;
    background-image: url('/image/board/vod/ic_prev.png');
}
.paging .prev:hover{
    background-image: url('/image/board/vod/ic_prev_on.png');
}
.paging .next{
    margin-left: 15px;
    background-image: url('/image/board/vod/ic_next.png');
}
.paging .next:hover{    
    background-image: url('/image/board/vod/ic_next_on.png');
}
.paging .last{    
    background-image: url('/image/board/vod/ic_last.png');
}
.paging .last:hover{
    background-image: url('/image/board/vod/ic_last_on.png');
}

/* view */
.board-vod-type1 .board-view{
    letter-spacing: -0.05em;
}
.board-vod-type1 .view-contop{
    padding: 20px 25px;
    background-color: #f6f9ff;
    border-top: 2px solid #20366f;
    border-bottom: 1px solid #bbbbbb;
    font-size: 15px;
}
.board-vod-type1 .view-contop + .view-contents{
    border-top: 0;
}
.board-vod-type1 .view-tit{
    font-size: 25px;
    font-weight: 600;
    color: #20366f;
    text-align: center;
    letter-spacing: -0.05em;
}
.board-vod-type1 .view-contop:not(:has(.view-cnt)) .view-tit{
    margin-bottom: 10px;
}
.board-vod-type1 .view-cnt{
    margin-bottom: 10px;
}
.board-vod-type1 .view-cnt button + button{
    margin-left: 10px;
}
.board-vod-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-vod-type1 .view-cnt .cnt{
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}
.board-vod-type1 .view-info > span{
    display: inline-block;
    position: relative;
    vertical-align: top;
}
.board-vod-type1 .view-info > span + span{
    padding-left: 8px;
    margin-left: 6px;
}
.board-vod-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-vod-type1 .view-info > span strong{
    font-weight: 600;
}
.board-vod-type1 .view-link{
    padding: 20px 25px 0;
}
.board-vod-type1 .view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('/image/board/vod/ic_view_link.png');
    font-weight: 500;
    color: #000;
    word-break: break-all;
    vertical-align: top;
}
.board-vod-type1 .view-contents{
    padding: 25px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 18px;
    font-weight: 500;
}
.board-vod-type1 .board-view:has(.view-attach) .view-contents{
    border-bottom: 0;
}
.board-vod-type1 .view-contents *{
    font: inherit;
}
.board-vod-type1 .view-contents img{
    max-width: 100%;
}

.board-vod-type1 .view-attach{
    padding: 0 25px 40px;
    border-bottom: 1px solid #e2e2e2;
}
.board-vod-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: 15px;
    letter-spacing: -0.05em;
}
.board-vod-type1 .view-attach-con .con > a{
    display: block;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: 0 3px;
    background-image: url('/image/board/vod/ic_file2.png');
    transition: 0.3s ease;
    word-break: break-all;
}
.board-vod-type1 .view-attach-con .con > a:hover{
    background-image: url('/image/board/vod/ic_file2_on.png');
}
.board-vod-type1 .view-attach-con .con > a + a{
    margin-top: 5px;
}

.board-vod-type1 .view-contents .video-wrap{
    max-width: 700px;
    margin: 30px auto;
}
.board-vod-type1 .video{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 62.5%;
}
.board-vod-type1 .video > iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* view::comment */
.board-vod-type1 .comment-wrap{
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.3;
}
.board-vod-type1 .comment-wrap > .tit{
    padding: 0 25px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.07em;
}
.board-vod-type1 .comment-write-wrap{
    display: flex;
    gap: 15px;
    padding: 0 25px;
    font-size: 16px;
    line-height: 1.4;
}
.board-vod-type1 .comment-write-wrap .form-item{
    height: 80px;
    padding: 20px;
    border-color: #e7e7e7;
    border-radius: 5px;
}
.board-vod-type1 .comment-write-wrap .btn-submit{
    flex: 0 0 auto;
    width: 135px;
    height: 80px;
    background-color: #20366f;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}
.board-vod-type1 .comment-list-wrap{
    margin-top: 35px;
    border-top: 1px solid #e2e2e2;
}
.board-vod-type1 .comment-list-wrap ul > li{
    display: flex;
    flex-wrap: wrap;
    padding: 35px 30px;
    border-bottom: 1px solid #e2e2e2;
    letter-spacing: -0.05em;
}
.board-vod-type1 .comment-contop{
    width: 100%;
}
.board-vod-type1 .comment-name{
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.board-vod-type1 .comment-date{
    margin-left: 10px;
    font-size: 15px;
    color: #9e9e9e;
}
.board-vod-type1 .comment-contop .view-cnt{
    margin-bottom: 0;
}
.board-vod-type1 .comment-contop .view-cnt .icon{
    border: 1px solid #d9dde4;
}
.board-vod-type1 .comment-contents{
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}
.board-vod-type1 .comment-contents .btn-wrap{
    flex: 0 0 auto;
    margin: 0;
    padding-left: 20px;
}
.board-vod-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-vod-type1 .btn-comment.btn-modify{
    border-color: #20366f;
    color: #20366f;
}
.board-vod-type1 .btn-comment.btn-delete{
    border-color: #bd466a;
    color: #bd466a;
}
.board-vod-type1 .comment-list-wrap li.comment-reply{
    padding-left: 50px;
    background-repeat: no-repeat;
    background-position: 25px 38px;
    background-image: url('/image/board/vod/ic_comment_reply.png');
}
.board-vod-type1 .comment-reply .comment-write-wrap{
    width: 100%;
    padding: 0;
}
.board-vod-type1 .comment-reply .comment-write-wrap .form-item{    
    height: 80px;
}
.board-vod-type1 .comment-reply .comment-write-wrap .btn{
    flex: 0 0 auto;
    width: 110px;
    height: 80px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* view::move */
.board-vod-type1 .view-move{
    display: flex;
    width: 100%;
    margin-top: 70px;
}
.board-vod-type1 .view-move-con{
    display: flex;
    align-items: center;
    padding: 17px 20px;
    font-size: 16px;
    color: #8c8c8c;
    letter-spacing: -0.05em;
}
.board-vod-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-vod-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-vod-type1 .view-move-con .con{
    width: calc(100% - 80px);
    padding: 0 20px;
}
.board-vod-type1 .view-move-con a{
    vertical-align: top;
}
.board-vod-type1 .view-move-con:hover{
    background-color: #f6f9ff;
    color: #000;
}
.board-vod-type1 .view-move-con:hover .tit:after{
    background-color: #000000;
}

.board-vod-type1 .view-move.type1 .view-move-con{
    width: 50%;
    border: 1px solid #e2e2e2;
    transition: 0.3s ease;
}
.board-vod-type1 .view-move.type1 .view-move-con + .view-move-con{
    border-left: 1px solid transparent;
}
.board-vod-type1 .view-move.type1 .view-prev{
   border-radius: 4px 0 0 4px;
}
.board-vod-type1 .view-move.type1 .view-prev .tit{
    background-image: url('/image/board/vod/ic_arrow_prev.png');
}
.board-vod-type1 .view-move.type1 .view-prev:hover .tit{    
    background-image: url('/image/board/vod/ic_arrow_prev_on.png');
}
.board-vod-type1 .view-move.type1 .view-prev .tit:after{
    right: 0;
}
.board-vod-type1 .view-move.type1 .view-next{
    flex-direction: row-reverse;
    border-radius: 0 4px 4px 0;
    text-align: right;
}
.board-vod-type1 .view-move.type1 .view-next .tit{
    background-position: right center;
    background-image: url('/image/board/vod/ic_arrow_next.png');
}
.board-vod-type1 .view-move.type1 .view-next:hover .tit{    
    background-image: url('/image/board/vod/ic_arrow_next_on.png');
}
.board-vod-type1 .view-move.type1 .view-next .tit:after{
    left: 0;
}
.board-vod-type1 .view-move.type1 .view-move-con:hover{
    border-color: #859cc8;
}

.board-vod-type1 .view-move.type2{
    flex-direction: column;
    border-top: 1px solid #e2e2e2;
}
.board-vod-type1 .view-move.type2 .view-move-con .tit:after{
    right: 0;
}
.board-vod-type1 .view-move.type2 .view-move-con{
    border-bottom: 1px solid #e2e2e2;
}
.board-vod-type1 .view-move.type2 .view-prev .tit{
    background-image: url('/image/board/vod/ic_arrow_top.png');
}
.board-vod-type1 .view-move.type2 .view-prev:hover .tit{
    background-image: url('/image/board/vod/ic_arrow_top_on.png');
}
.board-vod-type1 .view-move.type2 .view-next .tit{
    background-image: url('/image/board/vod/ic_arrow_bottom.png');
}
.board-vod-type1 .view-move.type2 .view-next:hover .tit{
    background-image: url('/image/board/vod/ic_arrow_bottom_on.png');
}

/* write */
.board-vod-type1 .write-contop{
    margin-bottom: 10px;
}
.board-vod-type1 .help-text{
    font-size: 14px;
}
.board-vod-type1 .write-wrap{
    border-top: 2px solid #0b2a56;
    margin: 0;
    padding: 0;
    list-style: none;
}
.board-vod-type1 .write-wrap > li{
    display: table;
    width: 100%;
    border-bottom: 1px solid #ccc;
    table-layout: fixed;
}
.board-vod-type1 .write-wrap > li > div{
    display: table-cell;
    min-height: 50px;
    padding: 10px 25px;
    line-height: 1.3;
    vertical-align: middle;
}
.board-vod-type1 .write-wrap .form-tit{
    width: 20%;
    height: 100%;
    background-color: #f8f8f8;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.03em;
    text-align: center;
}
.board-vod-type1 .write-wrap .form-con{
    width: 80%;
    font-size: 16px;
    background-color: #fff;
}
.board-vod-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;
}
.board-vod-type1 .write-wrap > li:not(:has(.form-tit)) .form-con{
    width: 100%;
}
.board-vod-type1 .filebox label{
    padding: 7px 0;
    border-radius: 2px;
}