.basic-table {
	border-top: 2px solid #222;
}
.basic-table th {
	font-weight: 600;
	height: 8.2rem;
	border-bottom: 2px solid #ddd;
}
.basic-table td {
	height: 7.5rem;
	border-bottom: 1px solid #ddd;
	text-align: center;
	font-size: 1.8rem;
	padding: 1.4rem 1rem;
	line-height: 1.6;
}
.td-left {
	text-align: left !important;
}
.col1 {
	width: 13.3%;
}
.col2 {
	
}
.col3 {
	width: 20.6%;
}
.basic-table.mobile {
	display: none;
}
.basic-table .list {
	padding: 2rem 1rem;
	border-bottom: 0.1rem solid #ddd;
}
.basic-table.mobile .top {
	display: flex;
    margin-bottom: 0.8rem;
	font-size: 1.6rem;
}
.basic-table .date {
	flex-shrink: 0;
}
.basic-table .name {
	position: relative;
	padding-left: 1rem;
	margin-left: 1rem;
}
.basic-table .name::before {
	content: '';
    position: absolute;
    top: 0.1rem;
    left: 0;
    width: 1px;
    height: 1.3rem;
    background-color: #222;
}
.basic-table .title {
	font-size: 1.8rem;
	line-height: 1.6;	
}
.basic-table.mobile .data_none {
	text-align: center;
}

/* 미디어쿼리 */
@media screen and (max-width: 1024px) {
	.basic-table.pc {
		display: none;
	}
	.basic-table.mobile {
		display: block;
	}
}