@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
    
====================================== */
/* list */
.vod-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.vod-list > li{
    position: relative;
    width: calc((100% - 40px)/3);
    border: 1px solid #e2e2e2;
}
.vod-list > li > a{
    display: block;
    position: relative;
    transition: 0.3s ease;
}
.vod-list > li:hover > a{
    box-shadow: 0 20px 24px rgba(149,149,149,0.2);
}
.vod-list > li:hover .gall-tit{
    color: #162694;
}
.gall-img{
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    border-bottom: 1px solid #e2e2e2; 
    background-color: #fafafa;
}
.gall-img:before,
.gall-img:after{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}
.gall-img:before{
    opacity: 0.1;
    background-color: rgba(0, 0, 0, 0.3);
}
.gall-img:after{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../image/ic_play.png');
}
.gall-img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gall-text{
    padding: 25px;
    letter-spacing: -0.05em;
}
.gall-tit{
    height: 47px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.3;
}
.gall-con{
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 500;
}
.gall-con span{
    display: inline-block;
    position: relative;
    line-height: 1.3;
    vertical-align: top;
}
.gall-con span + span{ 
    padding-left: 10px;
    margin-left: 8px;
}
.gall-con span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 4px;
    left: 0;
    width: 2px;
    height: 11px;
    background-color: #c7d0df;
}
.vod-list .btn-admin{
    margin-top: 25px;
    text-align: center;
}
.bbs-admin{
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
.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;
}
.bbs-admin .btn.btn-modify,
.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;
}
.bbs-admin .btn.btn-modify{
    background-image: url('../image/ic_modify.png');
}
.bbs-admin .btn.btn-delete{
    background-image: url('../image/ic_delete.png');
    background-color: #565656;
}
.vod-list .no-data{
    display: block;    
    width: 100% !important;
    border-top: 2px solid #20366f;
    border-left: 0;
    border-right: 0;
    padding: 50px 0;
    font-size: 2rem;
    font-weight: 300;
    background-color: #f6f8fc;
}
.vod-list .no-data img{
    margin: 0 auto 20px;
}
.vod-list > li:hover .gall-img:before{
    opacity: 1;
}

/* list::effect */
.ef01,
.ef02,
.ef03,
.ef04{
    position: relative;
}
.ef01 > a,
.ef02 > a,
.ef03 > a,
.ef04 > a{
    width: 100%;
    height: 100%;
}
.ef01 > a{
    position: relative;
}
.ef01 > a:before, 
.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;
}
.ef01 > a:after{
	opacity: 0;
	border-color: #162694;
    border-width: 3px;
	transform: translateY(-6px) translateX(6px);
}
.ef01 > a:hover:before, 
.ef01 > a:focus:before{
	opacity: 0;
	transform: translateY(5px) translateX(-5px);
}
.ef01 > a:hover:after, 
.ef01 > a:focus:after{
	opacity: 1;
	transform: translateY(0px) translateX(0px);
}
.ef02{
	overflow: hidden;
	position: relative;
    z-index: 1;
	padding: 0;
    transition: 0.3s ease;
}

/* button */
.board-wrap .btn-wrap{
    margin-top: 20px;
}
.btn-admin .btn.btn-modify,
.btn-admin .btn.btn-delete{
    width: 27px;
    height: 27px;
    margin: 1px;
    border: 1px solid transparent;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-admin .btn.btn-modify{
    border-color: #7d7d7d;
    background-color: #fff;
    background-image: url('../image/ic_modify.png');
}
.btn-admin .btn.btn-delete{    
    border-color: #565656;
    background-color: #565656;
    background-image: url('../image/ic_delete.png');
}
.board-view + .btn-wrap{
    text-align: right;
}

.btn.btn-list{
    background-color: #fff;
    border-color: #9f9f9f;
    color: #191919;
}
.btn.btn-modify{
    background-color: #f7f8ff;
    border-color: #162694;
    color: #162694;
}
.btn.btn-delete{
    background-color: #fff;
    border-color: #e21a52;
    color: #e21a52;
}
.btn.btn-cancel{
    background-color: #8b8b8b;
    border-color: #8b8b8b;
    color: #fff;
}
.btn.btn-write{
    background-color: #162694;
    border-color: #162694;
    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: 35px;
    height: 35px;
    margin: 1px;
    border-radius: 3px;
    border: 1px solid transparent;
    vertical-align: top;
    transition: 0.3s ease;
}
.paging > .num:hover,
.paging > .num.on,
.paging > .num:hover > a,
.paging > .num.on > a{
    font-weight: 700;
    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: 1.8rem;
    font-weight: 500;
    color: #b3b3b3;
    transition: 0.3s ease;
}
.paging > li:not(.num){
    background-repeat: no-repeat;
    background-position: center;
    border-color: #cecece;
    background-color: #fff;
    transition: 0.3s ease;
}
.paging > li:not(.num):hover{
    background-color: #f7f7f7;
}
.paging .first{
    background-image: url('../image/ic_first.png');
}
.paging .prev{
    margin-right: 15px;
    background-image: url('../image/ic_prev.png');
}
.paging .next{
    margin-left: 15px;
    background-image: url('../image/ic_next.png');
}
.paging .last{    
    background-image: url('../image/ic_last.png');
}

/* view */
.board-view{
}
.view-contop{
    padding: 20px 25px;
    background-color: #f6f8fc;
    border-top: 2px solid #3b3b3b;
    border-bottom: 1px solid #bbbbbb;
    font-size: 1.7rem;
}
.view-contop + .view-contents{
    border-top: 0;
}
.view-tit{
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 500;
}
.view-attr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    line-height: 1;
}
.view-info > span{
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 1.5rem;
}
.view-info > span + span{
    padding-left: 8px;
    margin-left: 6px;
}
.view-info > span + span:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    background-color: #d9d1d1;
}
.view-info > span strong{
    font-weight: 600;
}
.view-contop .view-cnt{
    margin-bottom: 0;
}
.view-link > a{
    display: inline-block;
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: 0 center;
    background-image: url('../image/ic_view_link.png');
    color: #000;
    word-break: break-all;
    vertical-align: top;
}
.view-contents{
    overflow-x: auto;
    min-height: 400px;
    padding: 30px 15px;
    border-bottom: 1px solid #e2e2e2;
    font-size: 1.7rem;
}
.board-view:has(.view-attach) .view-contents{
    border-bottom: 0;
}
.view-contents *{
    font: inherit;
}
.view-contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
.video-wrap {
    flex-shrink: 0;
    width: 480px;
}
.video-container {
    position: relative;
    height: 0;
    padding-bottom: 177.78%
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-wrap + .editor-contents {
    width: 100%;
}
.view-contents img{
    max-width: 100%;
}

.view-attach{
    padding: 0 15px 20px;
    border-bottom: 1px solid #e2e2e2;
}
.view-attach-con{
    font-size: 1.7rem;
}
.view-attach-con .con > a{
    display: block;
    padding: 13px 20px;
    padding-left: 50px;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: 20px 15px;
    background-image: url('../image/ic_file2.png');
    line-height: 1.3;
    color: #000;
    transition: 0.3s ease;
    word-break: break-all;
}
.view-attach-con .con > a + a{
    margin-top: 10px;
}
.view-attach-con .con > a:hover{
    border-color: #9f9f9f;
}


/* write */
.write-wrap{
    border-top: 2px solid #3b3b3b;
}
.write-wrap .form-tit{
    background-color: #f6f8fc;
    color: #191919;
}
