/* tabmenu */
.tab_list{
    position: relative;
    display: flex;
    width: 100%;
}

.tab_list li{
    width: 50%;
}

.tab_list li button,
.tab_list li a{
    padding: 22px 10px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.9px;
    color: #999;
    border-bottom: 1px solid #ddd;
	display: inline-block;
}

.tab_list li button.this,
.tab_list li.active a{
    color: #FE493C;
    border-bottom: 2px solid #FE493C;
}

@media screen and ( max-width: 1023px ) {
    .tab_list li button,
    .tab_list li a{
        padding: 15px 10px;
    }
}

@media screen and ( max-width: 767px ) {
	.tab_list
	{
		flex-flow:row wrap;
	}
    .tab_list li button,
    .tab_list li a{
        padding: 13px 10px;
        font-size: 16px;
        line-height: 21px;
    }
}
/* tabmenu end */


/* 주간 LIST */
div.calendarCon {
    position: relative;
    display: block;
    width: 100%;
    margin: 30px 0 0;
    padding: 0px; 
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

div.calendarCon ul.calendarWeek {
    position: relative;
    /* margin: 0 auto; */
    padding: 0px;
    display: flex;
    justify-content: center;
}

div.calendarCon ul.calendarWeek li {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
div.calendarCon ul.calendarWeek li.left_btn{
    min-width: 30px;
}
div.calendarCon ul.calendarWeek li.right_btn{
    min-width: 30px;
}

div.calendarCon ul.calendarWeek li > a.calBtn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    letter-spacing: -0.5px;
    font-size: 0;
    width: 30px;
    height: 30px;
}

div.calendarCon ul.calendarWeek li > a.btnPrev:after {
    position: relative;
    content: '';
    color: #535353;
    width: 100%;
    height: 100%;
    background: url(/assets/ccd01/image/icon_arrow_left_more_black.svg) center center no-repeat;
    background-size: contain;
    display: inline-block;
    align-items: center;
    justify-content: center;
}
div.calendarCon ul.calendarWeek li > a.btnNext:after {
    position: relative;
    content: '';
    color: #535353;
    width: 100%;
    height: 100%;
    background: url(/assets/ccd01/image/icon_arrow_left_more_black.svg) center center no-repeat;
    background-size: contain;
    display: inline-block;
    align-items: center;
    justify-content: center;
    transform: rotate(180deg);
}

div.calendarCon ul.calendarWeek li > span {
    position: relative;
    display: block;
    font-size: 24px;
    padding: 0 20px;
    font-weight: 700;
}

div.calendarCon ul.calendarWeek li > span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    color: #777;
}

div.calendarCon ul.calendarMonth li > a.calBtn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: inline-flex;
}
p.btnPlan {
    position: relative;
    display: block;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

div.calendarCon p.btnPlan > a {
    background: #fff;
    border-radius: 5px;
    font-size: 14px;
    color: #010101;
    padding: 4px 10px 6px;
    border: 1px solid #4e4e4e;
    margin: 0 2px;
    box-shadow: 0 4px 5px #d9d9d9;
    cursor: pointer;
    position: relative;
    /* margin-top: 10px;
    margin-bottom: 15px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

div.calendarCon p.btnPlan > a:after {
    content: '\f1c1';
    position: relative;
    font-family: "FontAwesome";
    margin-left: 5px;
    font-size: 12px;
    transform: translateY(1px);
    display: inline-block;
}
.responsive_table{
    overflow: auto;
    width: 100%;
}
div.calendarCon .calendar_table {
    position: relative;
    width: 100%;    
    margin-top: 20px;
}

div.calendarCon .calendar_table caption {
    display: none;
}

div.calendarCon .calendar_table thead {
    border-radius: 5px;
    border-top: 1px solid #5b5b5b;
    border-bottom: 1px solid #e5e5e5;
}

div.calendarCon .calendar_table thead tr th {
    position: relative;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 0;
    line-height: 30px;
}

div.calendarCon .calendar_table thead tr th.sun { color: #ce382d; }
div.calendarCon .calendar_table thead tr th.sat { color: #2254c0; }

div.calendarCon .calendar_table tbody tr td {
    font-size: 15px;
    color: #bebebe;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
    padding: 0px;
    line-height: 50px;
}

div.calendarCon .calendar_table tbody tr td.circle span {
    color: #3a3a3a;
    position: relative;
}
div.calendarCon .calendar_table tbody tr td.circle span::before{
    content: '';
    position: absolute;
    top: 0px;
    right: -5px;
    width: 3px;
    height: 3px;
    background-color: #D66F50;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

div.calendarCon .calendar_table tbody tr td.today span {
    border: 1px solid #5b5b5b;
    padding: 0px 5px 1px;
    border-radius: 10px;
    margin-bottom: 4px;
    font-weight: bold;
}

div.schedule {
    position: relative;
    display: block;
    width: 100%;    
    margin: 20px 0 0;
}

div.schedule ul.scheduleList {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;    
}

div.schedule ul.scheduleList > li {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    overflow: hidden;
}

div.schedule ul.scheduleList > li > div.schDate {
    position: relative;    
    display: block;
    width: 100%;
    margin: 0px;
    padding: 15px 15px;
    background: #f9f9f9;
    font-size: 16px;
}

div.schedule ul.scheduleList > li > div.schDate > span {
    display: inline-block;
    margin-left: 10px;
    color: #5c5c5c;
    font-size: 15px;
}

div.schedule ul.scheduleList > li > div.schCon {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    clear: both;
    margin: 10px 20px;
    padding: 0;
    overflow: hidden;
    display: flex;
    gap: 40px;
}

div.schedule ul.scheduleList > li > div.schCon:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    top: 0px;
    left: 50%;
    z-index: 1;
}

div.schedule ul.scheduleList > li > div.schCon > div.schBox {
    display: block;
    width: calc(50% - 20px);
    padding: 9px 0 20px;
    font-size: 15px;
    font-weight: normal;
}
div.schedule ul.scheduleList > li > div.schCon > div.schBox{

}

div.schedule ul.scheduleList > li > div.schCon > div.schDiocese {

}

div.schedule ul.scheduleList > li > div.schCon > div.schBox h4 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 17px;
}
div.schedule ul.scheduleList > li > div.schCon > div.schBox h4 .schIcon{
    margin-bottom: -1px;
}

span.schIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-right: 7px;
    border-radius: 5px;
}
span.schIcon img { 
    width: 100%; 
    height: 100%;
}
/* span.iconBishop { background: #00b8e7; } */
span.iconDiocese { background: #184B44; } 
span.iconBishop { background: #D66F50; }
span.iconAnniversary { background: #000; }
span.iconFestive { background: #9E1F3D; }
span.iconEtc { background: #184B44; }

div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 0 0px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    font-size: 16px;
    line-height: 1.3;
}

div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li:after {
    /* position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    background: #595959;
    top: 10px;
    left: 0px;  */
}

div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li > a span,
div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList > ul > li > a span { 
    margin-right: 10px; 
}
div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul::after{
    display: none;
}


div.schedule ul.scheduleList > li.today {
    border: 1px solid #d66f50;
    /* box-shadow: 0px 5px 0px rgba(0,0,0,0.05); */
}

div.schedule ul.scheduleList > li.today > div.schDate {
    background-color: #FBF0ED;
    color: #D66F50;
    font-weight: 700;
}

div.schedule ul.scheduleList > li.today > div.schDate > span {
    color: #231915;
}

div.schedule ul.scheduleList > li.today > div.schCon > div.schBishop > h4 {

}

div.schedule ul.scheduleList > li.today > div.schCon > div.schDiocese > h4 {

}


div.monthContents {
    position: relative;
    display: block;
    width: 100%;    
    margin-top: 20px;
    border-top: 1px solid #535353;    
    border-bottom: 1px solid #e5e5e5;
    clear: both;
    display: flex;
}
div.monthContents .in_wrap{

}

div.monthContents div.monthCon {
    position: sticky;
    display: block;
    top: 135px;
    width: 350px;
    padding: 20px;
}

div.monthContents div.monthCon > div.monthDate {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    overflow: hidden;
}

div.monthContents div.monthCon > div.monthDate > select {
	min-width:inherit;
	height:inherit;
	color:#1e1e1e;
    padding: 0 35px 0 10px;
    line-height: 35px;
    font-size: 14px;
    border: 1px solid #c2c2c2;
    border-radius: 3px;
    background: url(/assets/ccd01/image/bbs_depth_arrow.png) no-repeat 84% 50% #FFF !important;
    background-size: 13px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 3px;
    cursor: pointer;
}

div.monthContents div.monthCon > table.monthCalendar {
    position: relative;
    margin: 20px auto 0;
    padding: 0px;
    width: 100%;
    text-align: center;    
}

div.monthContents div.monthCon > table.monthCalendar  thead th {
    font-family: 'NotoKrM', sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 25px;
    color: #2c2c2c;
    padding: 5px;  
}

div.monthContents div.monthCon > table.monthCalendar  thead th.sun { color: #ce382d; }
div.monthContents div.monthCon > table.monthCalendar  thead th.sat { color: #2254c0; }

div.monthContents div.monthCon > table.monthCalendar  tbody td {
    line-height: 29px;
    padding: 6px 5px;
    color: #a1a1a1;
}

div.monthContents div.monthCon > table.monthCalendar  tbody td > span {
    display: block;
    width: 34px;
    height: 31px;
    border-radius: 13px;
}

div.monthContents div.monthCon > table.monthCalendar  tbody td.circle > span {
    background-color: #fff;
    border: 1px dashed #D66F50;
    color: #3c3c3c;
    cursor: pointer;
}

div.monthContents div.monthCon > table.monthCalendar  tbody td.today > span {
    background-color: #D66F50;
    border: 0px;
    color: #FFF;
}

div.monthContents div.monthList {
    position: relative;    
    display: block;
    float: left;
    width: calc(100% - 350px);
    height: auto;
    border-left: 1px solid #e5e5e5;
    overflow: auto;
}

div.monthContents div.monthList > ul {
    position: relative;
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

div.monthContents div.monthList > ul > li {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}
div.monthContents div.monthList > ul > li[style*='display: block']:last-of-type{
    border-bottom: 1px solid #e5e5e5 !important;
}


div.monthContents div.monthList > ul > li.today {
    border-top: 1px solid #5b5b5b;
    border-top: 0;
    z-index: 10;
}

div.monthContents div.monthList > ul > li:last-child {
    border-bottom: 0px;
}



div.monthContents div.monthList > ul > li > div.monthDay {
    display: block;
    width: 100%;
    /* height: 45px; */
    background: #f5f5f5;
    color: #000000;
    font-size: 15px;
    padding-left: 20px;
    overflow: hidden;
    line-height: 1.2;
    padding: 15px;
}

div.monthContents div.monthList > ul > li.today > div.monthDay {
    background-color: #FBF0ED;
    color: #D66F50;
    font-weight: 700;
}

div.monthContents div.monthList > ul > li > div.monthDay > span {
    display: inline-block;
    float: left;
    font-size: 15px;
}

div.monthContents div.monthList > ul > li > div.monthDay > span:nth-child(2) {
	display: inline-block;
    width: calc(100% - 170px);
    margin-left: 20px;
    color: #3e3e3e;
    font-size: 15px;
    letter-spacing: -0.5px;
}
div.monthContents div.monthList > ul > li.today > div.monthDay > span:nth-child(2)
{

}

div.monthContents div.monthList > ul > li > div.monthSchedule {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox {
    position: relative;
    width: 100%;
    clear: both;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

div.monthContents div.monthList > ul > li.today > div.monthSchedule > div.monBishop > div.monTitle {

}

div.monthContents div.monthList > ul > li.today > div.monthSchedule > div.monDiocese > div.monTitle {
    color: #0070b4;
}

div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monTitle {
    position: relative;
    display: flex;
    width: 85px;
    float: left;
    line-height: 21px;
    font-weight: bold;
    padding-top: 2px;
    font-size: 16px;
}

div.monTitle span.schIcon {
    width: 21px;
    height: 21px;
}

div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList {
    position: relative;
    display: block;
    width: calc(100% - 90px);
    float: left;
    line-height: 21px;
}

div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList > ul > li {
    position: relative;
    margin-bottom: 3px;
    padding-left: 8px;
    color: #595959;
    font-size: 15px;
    line-height: 26px;
}

div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList > ul > li:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 2px;
    background: #595959;
    top: 12px;
    left: 0px; 
}
div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList > ul > li > a
{
	display:block;
	text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    font-size: 16px;
}


.scheduleDate { 
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 20px;    
}

.scheduleDate > p {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 5px;
    color: #414040;
    letter-spacing: -0.3px;
}

.scheduleDate > p > span {
    margin-right: 10px;
    padding: 0px 10px 1px;
    font-size: 13px;
    color: #D66F50;
    border: 1px solid #D66F50;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.scheduleDate > p:last-of-type{
    margin-bottom: 0;
}

.scheduleTxt {
    position: relative;
    display: block;
    width: 100%;
}
div.bbsViewTop div.bbsTitleInfo{

}
div.bbsViewTop div.bbsTitleInfo > span{
    display: flex;
    align-items: center;
}
div.bbsViewTop div.bbsTitleInfo > span.liturgical {
    margin-left: -15px;
}
div.bbsViewCon{
    padding: 25px 13px;
}



@media screen and (max-width:1220px) {
   
}

@media screen and (max-width:1110px) {
   
}

@media screen and (max-width:1023px) {
    
}
@media screen and (max-width:767px) {

    div.bbsViewTop div.bbsTitleInfo > span.liturgical {
        margin-left: 0px;
    }

    .scheduleDate > p > span {
        font-size: 14px;
        line-height: 21px;
        padding: 0 7px;
        margin-right: 10px;
        border-radius: 250px;
    }
    div.monthContents{
        flex-direction: column;
        border-bottom: 0;
    }

    div.monthContents div.monthCon {
        width: 100%;
        margin: 0 auto;
        max-width: 350px;
    }

    div.monthContents div.monthList {
        position: relative;
        display: block;
        float: left;
        width: 100%;
        height: auto;
        border-top: 1px solid #535353;
        border-left: 0px;
        overflow: auto;
    }
    div.calendarCon{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    p.btnPlan{
        margin-top: 15px;
    }
    div.calendarCon .responsive_table{
        padding-left: 15px;
        margin-left: -15px;
        width: calc(100% + 30px);
        padding-right: 15px;
    }
    div.calendarCon .calendar_table thead tr th{
        padding: 7px 0;
        font-size: 15px;
    }

    div.calendarCon .calendar_table tbody tr td{
        font-size: 14px;
    }
    div.bbsBottom{
        margin: 0 auto;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    div.calendarCon {
        margin: 30px 0 0;
    }
    div.calendarCon ul.calendarWeek li > span {
        font-size: 20px;
    }
    
    div.calendarCon ul.calendarWeek li > span:nth-child(2) {
        font-size: 14px;
    }
    
    div.calendarCon p.btnPlan > a {
        /* padding: 0px 18px 0px 38px;
        line-height: 31px;
        font-size: 13px;
        border-radius: 36px;
        margin: 15px 0 5px; */
    }
    
    div.calendarCon p.btnPlan > a:after {
        font-size: 14px;
    }
    div.schedule{
        margin-top: 15px;
    }
    div.schedule ul.scheduleList > li {
        margin-bottom: 15px;
    }

    div.schedule ul.scheduleList > li > div.schDate {
        padding: 10px 15px;
        font-size: 15px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    div.schedule ul.scheduleList > li > div.schDate > span {
        display: block;
        width: 100%;
        margin: 0;
        color: #5c5c5c;
        font-size: 14px;
        line-height: 1.2;
    }

    div.schedule ul.scheduleList > li > div.schCon {
        width: 100%;
        margin: 0px;
        padding: 15px;
        flex-direction: column;
        gap: 0;
    }

    div.schedule ul.scheduleList > li > div.schCon:after {
        display: none;
    }
    
    div.schedule ul.scheduleList > li > div.schCon > div.schBox {
        width: 100%;
        padding: 0px 0 0px;        
        font-size: 14px;
    }
    
    div.schedule ul.scheduleList > li > div.schCon > div.schBox:last-child {
        border: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #e5e5e5;

    }

    div.schedule ul.scheduleList > li > div.schCon > div.schBox h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox h4 + ul li:first-of-type{

    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox.schBishop h4{
        padding-bottom: 0;
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul{
        min-height: 40px;
        /* background-color: orange; */
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox.schBishop > ul > li:first-of-type{
        /* margin-top: 12px; */
        /* background-color: olivedrab; */
    }

    span.schIcon {
        width: 21px;
        height: 21px;
    }

    div.schedule ul.scheduleList > li > div.schCon > div.schDiocese {
        margin-left: 0px;
        padding-bottom: 0px;
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li {
        padding: 0 0 0 0px;
        font-size: 15px;
        /* background-color: orangered; */
    }
    div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li a{
        padding-top: 3px;
        display: inline-block;
    }

    div.schedule ul.scheduleList > li > div.schCon > div.schBox > ul > li:after {
        top: 9px;
        left: 7px;
    }
    div.monthContents div.monthList > ul > li[style="display: block;"] {
        border-top: 0;
    }
    div.monthContents div.monthList > ul > li > div.monthDay{
        padding: 10px 15px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    div.monthContents div.monthList > ul > li > div.monthDay > span:first-of-type{
        width: 100%;
    }
    div.monthContents div.monthList > ul > li > div.monthDay > span:last-of-type{
        width: 100%;
        margin-left: 0;
        font-size: 13px;
    }
    div.monthContents div.monthList > ul > li > div.monthSchedule{
        padding-bottom: 14px;
    }
    div.monthContents div.monthList > ul > li > div.monthSchedule > div.monBox > div.monList > ul > li > a{
        font-size: 15px;
    }
    div.calendarCon .calendar_table tbody tr td.today span{
        padding-top: 2px;
        padding-bottom: 2px;
    }
    div.monthContents div.monthList > ul > li:last-child{
        border-bottom: 1px solid #e5e5e5;
    }
}





/* 춘천교구  */
.bbsViewTop h3.viewTitle{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}
.bbsViewTop h3.viewTitle .ccTxt{
    color: #231915;
}
.bbsViewTop span.schIcon{
    margin-right: 0;
    /* transform: translateY(2px); */
}


