@charset "utf-8";
/* CSS Document */


.wrap {
	width:100%;
	margin:0 auto;
	position:relative;
}
.box {
	padding:0 10px;
}

.box .visual {
	margin-bottom:10px;
}
.box .visual img {
	width:100%;
}

.box .btn1 {
	width: 33.3%;
	float:left;
	margin-bottom:10px;
}
.box .btn1 img {
	width:100%;
	height:100%;
}


.wrap_bg {
	margin:0 auto;
	overflow:hidden;
	background:#eff1f6;
	padding:15px 10px;
	margin-bottom: 20px;
}
.wrap_bg img {
	width:100%;
}



/* 탭 */
* { box-sizing: border-box; }
.tabs {
    display: flex;
    flex-wrap: wrap;
}
.tabs label {
    width: 46%;
    order: 1;
    display: block;
    padding: 10px 20px;
    margin: 5px 0 0 10px;
    text-align: left;
    font-weight: bold;
    color: #acb1be;
    cursor: pointer;
    transition: background ease 0.2s;
    border: 1px solid #e3e6eb;
    border-radius: 7px;
	background: url('../img/plus_btn.gif') #FFF;
    background-position: center right;
    background-repeat: no-repeat;
}
/* 박스배경 */
.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 18px 20px 10px 20px;
    background: #FFF;
	border:1px solid #e3e6eb;
	border-radius:7px;
	margin: 5px 10px 0 10px;
}
.tabs input[type="radio"] {
    display: none;
}
/* 탭 눌렀을때 컬러 */
.tabs input[type="radio"]:checked + label {
    color: #1359a7;
	background: /*url('../img/plus_btn.gif')*/ #e3e6eb;
    background-position: center right;
    background-repeat: no-repeat;
}
.tabs input[type="radio"]:checked + label + .tab {
    display: block;
}


/* 공지사항 내용 */

.notice_list {
    /*border-bottom: 1px dashed #dedede;*/
}
.notice_list ul {
    overflow-y: auto;
    overflow-x: hidden;
	list-style:none;
	margin:0;
	padding:0;
}
.notice_list ul li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #dedede;
    color: #656565;
	line-height:33px;
	font-size: 14px;
	letter-spacing:-0.5pt;
}
.notice_list ul li a {
    width: 240px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #232323;
	line-height:25px;
	font-size:14px;
}
.notice_list ul li span.cont {
    font-size: 15px;
    font-weight: 600;
    color: #232323;
	letter-spacing:-0.5pt;
	margin-right:10px;
	display:inline-block;
}
.notice_list ul li span.date {
	float:right;
	line-height:25px;
}


/* 일정관리 내용 */
.schedule_list {
    /*border-bottom: 1px dashed #dedede;*/
}
.schedule_list ul {
    overflow-y: auto;
    overflow-x: hidden;
	list-style:none;
	margin:0;
	padding:0;
}
.schedule_list ul li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #dedede;
    color: #656565;
	line-height:33px;
	font-size: 15px;
	letter-spacing:-0.5pt;
}
.schedule_list ul li a {
    width: 240px;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #656565;
	line-height:25px;
	font-size:14px;
}
.schedule_list ul li span.period {
    font-size: 15px;
    font-weight: 600;
    color: #232323;
	letter-spacing:-0.5pt;
	margin-right:10px;
}