@charset "utf-8";

.course-outline {
    margin-bottom: 1.5rem;
}

.course-outline ul {
    list-style: circle;
    margin-left: 15px;
    margin-bottom: 15px;
}

.course-outline table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.course-outline table tbody {
    border: 2px solid #00843b;
}
.course-outline table tr {
    background-color: #f5f8e8;
    border-bottom: dashed 1.5px #00843b;
}
.course-outline table tr:nth-child(even) {
    background-color: #fff;
}
.course-outline table tr:first-child {
    border-bottom: none;
}

.course-outline table th,
.course-outline table td {
    padding: 1rem;
}
.course-outline table th {
    background-color: #00843b;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.course-outline .course-title {
    width: 30%;
}

/* モニター幅960px以下 */
@media only screen and (max-width:960px){

}

/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:767px){
    .course-outline table tr {
        display: flex;
        flex-wrap: wrap;
        border-bottom: dashed 1.5px #00843b;
    }
    .course-outline table tr:first-child {
        border-bottom: dashed 1.5px #00843b;
    }
    .course-outline table tr:last-child {
        border-bottom: none;
    }
    .course-outline table tr:nth-child(odd) {
        background-color: #fff;
    }
    .course-outline table tr:nth-child(even) {
        background-color: #f5f8e8;
    }
    .course-outline .course-title,
    .course-outline table th {
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .course-outline table td {
        width: 75%;
    }
    .course-outline table th,
    .course-outline table td {
        padding: .5rem;
    }
}

/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){

}