@charset "utf-8";

.img-center {
    display: block;
    margin: 0 auto;
    width: 75%;
}


/*프로그램 안내*/
/*리스트*/
.search-wrap {
    padding: 40px 60px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: 1px solid #b4b4b4;
    background: #f9f9f9;
}

.search-wrap .item {
    display: flex;
    flex-wrap: wrap;
}

.search-wrap .item.type1 {
    gap: 35px;
}

.search-wrap .item.type2 {
    gap: 50px;
    margin-top: 35px;
}

.search-wrap .item.type1 dl {
    flex: 1
}

.search-wrap .item.type2 dl {
    display: flex;
    flex-wrap: wrap;
}

.search-wrap .item.type2 .program {
    align-items: center;
}

.search-wrap .type2 .week dt {
    padding-top: 8px;
}

.search-wrap dt {
    font-size: 20px;
    font-weight: 600;
    color: #006ec0;
}

.search-wrap .type1 dt {
    padding-bottom: 20px;
}

.search-wrap .type2 dt {
    padding-right: 30px;
}

.search-wrap dd {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.search-wrap .chk-list-box {
    overflow: hidden;
    width: 100%;
    height: 170px;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    background: #fff;
}

.search-wrap .chk-list-box .inner {
    overflow-y: auto;
    height: 100%;
    padding: 0 10px;
}

.search-wrap .chk-list-box li {
    border-bottom: 1px dashed #e3e2e2;
}

.search-wrap label {
    cursor: pointer;
}

.search-wrap label span:hover {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.search-wrap .chk-list-box span {
    min-height: 55px;
    padding: 0 38px 0 20px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.44em;
    color: #888888;
}

.search-wrap .chk-list-box input[type="checkbox"]:checked+span,
.search-wrap .chk-list-box span:hover {
    background-color: #f6fbff;
    color: #006ec0;
    background-image: url(../../../images/board/chk-ic.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 35px auto;
}

/*
.search-wrap input[type="checkbox"] {
    width: auto;
    height: auto;
    border: none;
    padding: 0;
}
*/

/* ✅ 기존 코드 지우고 이걸로 교체 */
.search-wrap .chk-list-box input[type="checkbox"] {
    position: absolute;
    left: -9999px;   /* 화면 밖으로 빼버리기 */
    opacity: 0;      /* 혹시 몰라서 투명처리도 */
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}



.search-wrap .program {
    flex: auto;
}

.search-wrap .type2 dd {
    flex: 1;
}

.search-wrap .week dd {
    gap: 10px;
}

.search-wrap .week label {
    position: relative;
    width: 62px;
    height: 62px;
    cursor: pointer;
}

.search-wrap .week span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 10px;
    border: 1px solid #b4b4b4;
    font-size: 18px;
    font-weight: 500;
    line-height: 62px;
    color: #888888;
    text-align: center;
    background: #fff;
}

.search-wrap .week input[type="checkbox"]:checked+span,
.search-wrap .week span:hover {
    border: 1px solid #006ec0;
    color: #006ec0;
    background: #f6fbff;
}

.search-wrap .txt {
    padding-top: 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.2px;
    line-height: 1.625em;
    color: #888888;
}

.search-wrap input[type="text"] {
    max-width: 550px;
    width: 100%;
    height: 55px;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.search-wrap input[type="text"]::placeholder {
    color: #888888;
}

.search-wrap .btn.sch {
    width: 260px;
    height: 60px;
    margin: 40px auto 0;
    border-radius: 10px;
    border: 1px solid #222222;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: #444444;
}

.search-wrap .btn.sch span {
    padding-left: 28px;
    background-image: url(../../../images/board/sch_icon.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
}

.info-box_kor {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 13px;
    border: 1px solid #dfdfdf;
    background-image: url(/images/board/date-info-ic.png);
    background-repeat: no-repeat;
    background-position: top 60px left 50px;
}

.info-box_kor .inner_kor {
    height: 210px;
    overflow-y: auto;
    padding: 40px 50px 40px 90px;
}

.info-box {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 13px;
    border: 1px solid #dfdfdf;
    background-image: url(/images/board/date-info-ic.png);
    background-repeat: no-repeat;
    background-position: top 60px left 50px;
}

.info-box .inner {
    height: 420px;
    overflow-y: auto;
    padding: 40px 50px 40px 218px;
}

.info-box.no-scroll .inner{
  height: auto;
  overflow: visible;
}

.info-box h4 {
    padding-bottom: 36px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.33em;
    /*color: #006ec0;*/
	color: #333;
}

.info-box h4 span {
    font-size: 23px;
    color: #e65d52;
}

.info-box ul+h4 {
    margin-top: 50px;
}

.info-box li {
    padding-left: 40px;
}

.info-box li+li {
    padding-top: 25px;
}

.info-box .tit {
    position: relative;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.42em;
    color: #444444;
}

.info-box .tit:before {
    content: '';
    position: absolute;
    top: 4px;
    left: -40px;
    width: 24px;
    height: 25px;
    background-image: url(/images/board/info-text-ic-new.png);
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: 0 0
}

.info-box .tit+.txt,
.info-box .tit+dl {
    padding-top: 10px;
}

.info-box .txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4em;
    color: #444444;
}

.info-box .col1 {
    color: #006ec0;
}

.info-box .col2 {
    color: #888888;
}

.info-box .col3 {
    color: #e65d52;
}
.info-box .col4 {
    color: #333;
}

.info-box .col-red {
    padding-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #e65d52;
}

.info-box dl {
    display: flex;
    font-size: 18px;
    font-weight: 500;
}

.info-box dl+dl {
    padding-top: 5px;
}

.info-box dt:after {
    content: '';
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 14px;
    background: #d6d6d6;
}

.info-box dt {
    position: relative;
    width: 58px;
    margin-right: 14px;
    color: #888888;
}

.info-box dd {
    flex: 1;
    color: #444444;
    word-break: break-all;
}

.board-list li+li {
    margin-top: 10px;
}

.board-list li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px;
    min-height: 155px;
    padding: 20px 55px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    transition: border 0.3s ease;
}

.board-list li a:hover {
    border: 1px solid #006ec0;
}

.board-list li label {
    display: inline-block;
    height: 46px;
    padding: 0 28px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 46px;
    background: #444444;
}

.board-list .box1 {
    flex: auto;
    max-width: 236px;
    text-align: center;
}

.board-list .box1 p {
    padding-bottom: 3px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    color: #006ec0;
}

.board-list .box1 span {
    font-size: 18px;
    font-weight: 500;
    line-height: 2.22em;
    color: #666666;
}

.board-list .box2 {
    flex: 1;
}

.board-list h5 {
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
    color: #444444;
}

.board-list .etc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.board-list .etc dl {
    display: flex;
    position: relative;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 500;
}

.board-list .etc dl:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #d6d6d6;
}

.board-list .etc dl:last-child:after {
    content: none;
}

.board-list .etc dl:last-child {
    padding-right: 0;
}

.board-list .etc dt {
    position: relative;
    padding-right: 15px;
    color: #888888;
}

.board-list .etc dd {
    color: #444444;
}

.youtube-btn {
	display: inline-block;
	padding: 16px 24px;
	margin-top: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	transition: all 0.2s ease;
}

.youtube-btn:hover {
	box-shadow: 0 6px 16px rgba(0,0,0,0.15);
	border-color: #ff0000;
}

.center {
	text-align:center;
}



/*조회*/
.board-view {
    border-top: 2px solid #006ec0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 50px;
}

.board-view .title-box {
    padding: 36px 0;
    border-bottom: 1px solid #e5e5e5;
}

.board-view h4 {
    font-size: 31px;
    font-weight: 500;
	margin-top: 50px;
    color: #000000;
}

.board-view .cont-box {
    padding: 20px 0
}

.board-view h5 {
    padding-bottom: 30px;
    font-size: 32px;
    font-weight: 500;
    color: #222222;
}

.board-view .cont-wrap {
    display: flex;
    align-items: center;
    /*flex-wrap: wrap;*/
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.board-view .cont-wrap.type1 {
    padding: 30px 0;
}

.board-view .cont-wrap.type2 {
    padding: 30px 0;
}

.board-view .type1 .img-box {
    width: calc(46% - 4px);
    max-width: 640px;
    height: 400px;
}

.board-view .type2 .img-box {
    width: 200px;
    height: 240px;
}

.board-view .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-view .info-text-box {
    width: 54%;
    padding-left: 35px;
}

.board-view .info-text-box dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 19px;
    font-weight: 500;
}

.board-view .info-text-box dl+dl {
    padding-top: 30px;
}

.board-view .info-text-box dt {
    position: relative;
    width: 115px;
    margin-right: 25px;
    color: #444444;
}

.board-view .info-text-box dt:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    height: 17px;
    border-right: 1px dashed #c9c9c9;
}

.board-view .info-text-box dd {
    flex: 1;
    line-height: 1.5;
    color: #666666;
}

.board-view .info-text-box dd li {}

.board-view .info-text-box dd li+li {
    padding-top: 7px
}

.board-view .cont-wrap+h5,
.board-view h5 {
    margin-top: 60px;
}

.board-view .cont-list li {
    text-indent: -10px;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #666666;
}

.board-view .text {
    padding-top: 25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #666666;
}

/* text box1 */
.txt_box{overflow-y:scroll; position:relative; margin-bottom:20px; height:210px; border:1px solid #dbdbdb;}

.sel_img {
    width: 83px;
    height: 59px;
    background: url('../../../images/article/sel_btn.gif') no-repeat center center;
    background-size: contain;
    cursor: pointer;
    border: none;
	vertical-align: middle;
}

.sel_img:hover {
    filter: brightness(0.9);
}

.sel_img:active {
    filter: brightness(0.8);
}



@media screen and (max-width:1400px) {
    .board-list li a {
        gap: 55px;
    }

    .board-list li a {
        padding: 20px 30px;
    }

    .board-list .etc dl {
        padding-right: 30px;
    }

    .board-list .etc dl:after {
        right: 15px
    }
}

@media screen and (max-width:1280px) {

    /*리스트*/
    .search-wrap {
        padding: 40px 20px;
    }

    .search-wrap .chk-list-box span {
        padding: 0 38px 0 15px;
        font-size: 17px;
    }

    .search-wrap .week label {
        width: 48px;
        height: 48px;
    }

    .search-wrap .week span {
        width: 48px;
        height: 48px;
        font-size: 17px;
        line-height: 48px;
    }

    .search-wrap input[type="text"] {
        padding: 0 20px;
    }

    .search-wrap .btn.sch {
        width: 240px;
        height: 60px;
        font-size: 18px;
    }

    .info-box {
        background-position: top 40px left 30px;
    }

    .info-box .inner {
        padding: 50px 50px 50px 175px;
    }

    .info-box h4 {
        padding-bottom: 30px;
        font-size: 26px;
    }

    .info-box h4 span {
        font-size: 20px;
    }

    .info-box li+li {
        padding-top: 20px;
    }

    .info-box .tit {
        font-size: 20px;
    }

    .info-box .txt {
        font-size: 17px;
    }

    .info-box dl {
        font-size: 17px;
    }

    .board-list li a {
        display: block;
        position: relative;
        padding: 20px 30px;
    }

    .board-list .box1 {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .board-list .box1 p {
        display: inline-block;
        padding-bottom: 0;
        padding-right: 5px;
        font-size: 18px;
    }

    .board-list .box1 span {
        font-size: 15px;
        line-height: 1.5;
    }

    .board-list h5 {
        padding-bottom: 12px;
        font-size: 20px;
    }

    .board-list .box1 span {
        font-size: 16px;
    }

    .board-list h5 {
        padding-top: 20px;
        font-size: 22px;
    }

    .board-list li label {
        position: absolute;
        top: 20px;
        right: 20px;
        height: 42px;
        padding: 0px 24px;
        font-size: 16px;
        line-height: 42px;
    }

    /*조회*/
    .board-view {
        margin-bottom: 40px;
    }

    .board-view h4 {
        font-size: 28px;
    }

    .board-view .cont-box {
        padding: 50px 0;
    }

    .board-view h5 {
        padding-bottom: 25px;
        font-size: 28px;
    }

    .board-view .cont-wrap.type2 {
        padding: 20px 0;
    }

    .board-view .type1 .img-box {
        height: 350px;
    }

    .board-view .type2 .img-box {
        width: 150px;
        height: 200px;
    }

    .board-view .info-text-box {
        padding-left: 60px;
    }

    .board-view .type2 .info-text-box {
        padding-left: 40px;
    }

    .board-view .info-text-box dl {
        font-size: 18px;
    }

    .board-view .info-text-box dt {
        margin-right: 10px;
    }

    .board-view .info-text-box dt:after {
        right: 15px;
    }

    .board-view .cont-wrap+h5,
    .board-view p+h5 {
        margin-top: 40px;
    }

    .board-view .cont-list li {
        font-size: 18px;
    }

    .board-view .text {
        padding-top: 15px;
        font-size: 16px;
    }
}

@media screen and (max-width:1080px) {

    /*리스트*/
    .search-wrap {
        padding: 30px 20px;
    }

    .search-wrap dt {
        font-size: 18px;
    }

    .search-wrap .item.type1 {
        gap: 20px;
    }

    .search-wrap .item.type2 {
        gap: 30px;
    }

    .search-wrap .type1 dt {
        padding-bottom: 15px;
    }

    .search-wrap .type2 dt {
        padding-right: 18px;
    }

    .search-wrap .chk-list-box span {
        min-height: 50px;
        padding: 0 33px 0 10px;
        font-size: 16px;
    }

    .search-wrap .chk-list-box input[type="checkbox"]:checked+span,
    .search-wrap .chk-list-box span:hover {
        background-position: right 10px center;
        background-size: 12px auto;
    }

    .search-wrap .txt {
        padding-top: 10px;
        font-size: 15px;
    }

    .search-wrap input[type="text"] {
        max-width: 100%;
        height: 50px;
    }

    .search-wrap .week label {
        width: 45px;
        height: 45px;
    }

    .search-wrap .week span {
        width: 45px;
        height: 45px;
        font-size: 16px;
        line-height: 45px;
    }

    .search-wrap .btn.sch {
        width: 100%;
        height: 50px;
        font-size: 16px;
        margin: 30px auto 0;
    }

    .info-box ul+h4 {
        margin-top: 30px;
    }

    .info-box .inner {
        padding: 45px 45px 45px 152px;
    }

    .info-box {
        background-size: 90px auto;
    }

    .info-box h4 {
        padding-bottom: 20px;
        font-size: 22px;
    }

    .info-box h4 span {
        font-size: 17px;
    }

    .info-box li {
        padding-left: 26px;
    }

    .info-box .tit {
        font-size: 18px;
    }

    .info-box .tit:before {
        top: 0;
        left: -26px;
        width: 20px;
        height: 21px;
        background-size: 20px auto;
    }

    .info-box .txt {
        font-size: 16px;
    }

    .info-box .tit+.txt,
    .info-box .tit+dl {
        padding-top: 5px;
    }

    .info-box .col-red {
        padding-top: 10px;
        font-size: 15px;
    }

    .info-box dl {
        font-size: 16px;
    }

    .board-list h5 {
        font-size: 20px;
    }

    .board-list .box1 {
        padding-right: 70px;
    }

    .board-list .box1 p {
        font-size: 18px;
    }

    .board-list li label {
        height: 40px;
        padding: 0px 20px;
        font-size: 15px;
        line-height: 40px;
    }

    /*조회*/
    .board-view {
        margin-bottom: 30px;
    }

    .board-view .title-box {
        padding: 25px 0;
    }

    .board-view h4 {
        font-size: 22px;
    }

    .board-view .cont-box {
        padding: 30px 0;
    }

    .board-view .cont-box {
        padding: 30px 0;
    }

    .board-view h5 {
        padding-bottom: 15px;
        font-size: 22px;
    }

    .board-view .cont-wrap+h5,
    .board-view p+h5 {
        margin-top: 30px;
    }

    .board-view .type1 .img-box {
        height: 300px;
    }

    .board-view .type2 .img-box {
        height: 180px;
    }

    .board-view .info-text-box {
        padding-left: 40px;
    }

    .board-view .info-text-box dl {
        font-size: 16px;
    }

    .board-view .info-text-box dl+dl {
        padding-top: 18px;
    }

    .board-view .info-text-box dt {
        width: 85px;
    }

    .board-view .cont-list li {
        font-size: 16px;
    }

}


@media screen and (max-width:767px) {

    /*리스트*/
    .search-wrap {
        padding: 20px;
    }

    .search-wrap .item.type1 dl {
        flex: auto;
        width: 100%;
    }

    .search-wrap dt {
        font-size: 17px;
    }

    .search-wrap .type1 dt {
        padding-bottom: 10px;
    }

    .search-wrap .type2 dt {
        padding-right: 14px;
    }

    .search-wrap .chk-list-box {
        height: auto;
        max-height: 205px;
        min-height: 102px;
    }

    .search-wrap .chk-list-box span {
        font-size: 15px;
    }

    .search-wrap input[type="text"] {
        height: 42px;
        padding: 0 15px;
        font-size: 17px;
    }

    .search-wrap .week span {
        width: 42px;
        height: 42px;
        font-size: 15px;
        line-height: 42px;
    }

    .info-box {
        background: none
    }

    .info-box .inner {
        height: 250px;
        padding: 14px 15px 25px;
    }

    .info-box h4 {
        margin-bottom: 5px;
        padding: 20px 0 18px 55px;
        font-size: 20px;
        background-image: url(/images/board/date-info-ic.png);
        background-repeat: no-repeat;
        background-size: 45px auto;
        background-position: 2px 50%;
    }

    .info-box .inner>ul {
        padding-left: 32px;
    }

    .info-box ul+h4 {
        margin-top: 20px;
    }

    .info-box li+li {
        padding-top: 15px;
    }

    .info-box .tit {
        font-size: 16px;
    }

    .info-box .txt {
        font-size: 15px;
    }

    .info-box .col-red {
        padding-top: 5px;
    }

    .info-box dt {
        width: 50px;
        margin-right: 10px;
    }

    .info-box dt:after {
        top: 5px;
    }

    .board-list li a {
        padding: 20px;
    }

    .board-list .box1 p {
        font-size: 17px;
    }

    .board-list .box1 span {
        display: block
    }

    .board-list h5 {
        padding-top: 8px;
        padding-bottom: 10px;
        font-size: 18px;
    }

    .board-list .etc dl {
        padding-right: 25px;
        font-size: 15px;
    }

    .board-list .etc dl:after {
        right: 10px;
    }

    .board-list .etc dt {
        padding-right: 12px;
    }

    .board-list li label {
        top: 15px;
        right: 15px;
        height: 35px;
        padding: 0px 15px;
        font-size: 15px;
        line-height: 36px;
    }

    /*조회*/
    .board-view .title-box {
        padding: 20px 0;
    }

    .board-view h4 {
        font-size: 20px;
    }

    .board-view .cont-box {
        padding: 20px 0;
    }

    .board-view .cont-wrap {
        padding-bottom: 20px;
    }

    .board-view h5 {
        padding-bottom: 12px;
        font-size: 20px;
    }

    .board-view .img-box {
        text-align: center;
    }

    .board-view .type1 .img-box {
        width: 100%;
        max-width: 100%;
        height: 230px;
    }

    .board-view .type2 .img-box {
        width: 100%;
        height: 165px;
        margin: auto;
    }

    .board-view .type2 .img-box img {
        width: auto
    }

    .board-view .info-text-box {
        width: 100%;
        padding: 20px 15px 0;
    }

    .board-view .type2 .info-text-box {
        padding: 20px 15px 0;
    }

    .board-view .info-text-box dl {
        font-size: 15px;
    }

    .board-view .info-text-box dl+dl {
        padding-top: 12px;
    }

    .board-view .info-text-box dt {
        width: 80px;
        margin-right: 0;
    }

    .board-view .info-text-box dt:after {
        right: 15px;
        height: 12px;
    }

    .board-view .cont-list li {
        font-size: 15px;
    }

    .board-view .cont-wrap+h5,
    .board-view p+h5 {
        margin-top: 20px;
    }
}