@charset "UTF-8";

.flex-container {
    display: flex;
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    width: 100%;
    padding-left: 1rem;
}

.line {
    width: 100%;
    /* 線の幅 */
    border-top: 1px solid black;
    /* 線のスタイル */
    height: 0;
    /* 線の高さ（不要なので0に設定） */
}

.nocef {
    width: 165px;
    height: 230px;
    color: #bfbfbf;
    border: 2px solid;
    border-style: dashed;
    border-color: #bfbfbf;
    border-radius: 1rem;
}

.nav-link.active {
    background-color: rgb(32, 145, 185) !important;
    color: #fff !important;
}

.table_learning_history_summary {
    /* width: 100%;*/
    border-collapse: collapse;
}

.table_learning_history_summary thead th {
    background-color: #f2f2f2;
    color: gray;
}

.table_learning_history_summary th,
.table_learning_history_summary td {
    border: 1px solid #a6a6a6;
}

.table_learning_history_summary tr th {
    border-top: none;
    border-bottom: none;
}

.table_learning_history_summary tr td {
    border-top: none;
}

.table_learning_history_summary tr th:first-of-type,
.table_learning_history_summary tr td:first-of-type {
    border-left: none;
}

.table_learning_history_summary tr th:last-of-type,
.table_learning_history_summary tr td:last-of-type {
    border-right: none;
}

.table_learning_history_summary tr .training_select dl {
    margin: 0;
    color: gray;
}

.table_learning_history_summary tr .training_select dl dt {
    font-weight: bold;
    font-size: 1rem;
    display: block;
}

.table_learning_history_summary tr .training_select dl dd {
    font-size: 0.8rem;
    display: block;
    margin: 0;
}

.table_learning_history_summary tr .training_select dl dd a {
    display: block;
    color: gray;
    text-decoration: none;
}

.table_learning_history_summary tr .training_select dl dd a:hover {
    opacity: .9;
}

.table_learning_history_summary tr .training {
    width: 30%;
}

.table_learning_history_summary tr .detail {
    width: 10%;
}

.table_learning_history_summary tr .record_graph {
    width: 50%;
}

.table_learning_history_summary tr .grade_standard {
    width: 10%;
}

.table_learning_history_summary tr .training_select .speed_comprehend_training dd .active {
    background-color: #2091B9;
    color: white;
}

.table_learning_history_summary tr .training_select .reading_comprehend_training dd .active {
    background-color: #D73C3C;
    color: white;
}

.table_learning_history_summary tr .training_select .thinking_training dd .active {
    background-color: #76BD18;
    color: white;
}

.table_learning_history_summary tr .training_select .speed_reading_certification dd .active {
    background-color: #DB6F21;
    color: white;
}

.table_learning_history_summary tr .training_select .speed_comprehension_test_exercises dd .active {
    background-color: #00A569;
    color: white;
}

.table_learning_history_summary tr .training_select .speed_comprehension_test dd .active {
    background-color: #2091B9;
    color: white;
}

.table_learning_history_summary tr .training_select .speed_reading_comprehension_test dd .active {
    background-color: #D73C3C;
    color: white;
}

.table_learning_history_summary tr .record_graph canvas {
    width: 100% !important;
}

/* personal score CSS */
/* グラフページのCSS */
.marker_first_record,
.text_first_record,
.marker_personal_best,
.text_personal_best,
.marker_latest_record,
.text_latest_record,
.marker_record_update,
.text_record_update,
.equal {
    display: inline-block;
    vertical-align: middle;
}

.marker_first_record,
.marker_personal_best,
.marker_latest_record {
    width: 3rem;
    height: 1rem;
    margin-left: .5rem;
}

.text_first_record,
.text_personal_best,
.text_latest_record {
    margin-right: .5rem;
}

.marker_first_record {
    background-color: #afe4ff;
}

.marker_personal_best {
    background-color: #ffcccc;
}

.marker_latest_record {
    background-color: #ffe285;
}

.marker_record_update {
    color: red;
}