
/*탭 스타일*/
.tab-wrap {
    display: flex;
    /*justify-content: stretch;*/
    /*gap: 12px;*/
    margin-bottom: 30px;
}
.tab-wrap button {
    cursor: pointer;
    flex: 1;
    padding: 2% 0;
    border: 1px solid #000;
    background-color: #fff;
    font-size: 1.2em;
}
.tab-wrap button.active {
    background-color: #000;
    color: #fff;
}
.tab-container > div {
    display: none;
    line-height: 1.5;
}
.tab-container > div.active {
    display: block;
}

.tab-container {
    text-align: left;
}

.tab-container h3 {
    font-size: 1.3em;
    margin: 40px 0 0;
    text-align: center;
}

.tab-container table {
    width: 100%;
    border: 1px solid #e1e1e1;
    margin: 30px 0;
}

.tab-container table td {
    border: 1px solid #e1e1e1;
}

.tab-container table th {
    border-right: 1px solid #e1e1e1;
    background-color: #f6f6f6;
    font-size: 1.2em;
    padding: 20px 15px;
}
.g-bar{
    border-top: 2px solid #159422;
}
.o-bar{
    border-top: 2px solid #fc9a00;
}

.tab-container table tr {

}
.tab-container table td {
    padding: 15px 15px;
    text-align: left;
}
.tab-container table tr:nth-child(2n){
    background-color: #f6f6f6;

}

/*강의 페이지*/
.tab-container .speakers {
    text-align: center;
    margin: 80px 0;
}

.tab-container .speakers > h3 {
    margin: 10px 0;
}

.tab-container .speakers > p {
    text-align: left;
}

.tab-container .speakers .sp-photo {
    max-width: 200px;
    margin: 0 auto;
}