@charset "UTF-8";

/*------------------------------------------------------------
    ◆読み込みHTML
    /skillmatrix.html
------------------------------------------------------------*/
.matrixTitle {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--main-blue);
    margin-top: 27px;
}
.matrixTitle + .notesList {
    margin-top: 10px;
}
.matrixScrollText {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 15px;
}
.matrixScrollText img {
    vertical-align: -3px;
    padding: 0 5px;
}
@media print, screen and (min-width: 770px) {
    .matrixTitle {
        font-size: 2.0rem;
        margin-top: 40px;
    }
    .matrixTitle + .notesList {
        margin-top: 8px;
    }
    .matrixScrollText {
        display: none;
    }
}

.matrixTableWrap {
    width: 100%;
    height: 70vh;
    margin-top: 10px;
    overflow: auto;
}
@media print, screen and (min-width: 770px) {
    .matrixTableWrap {
        height: auto;
        margin-top: 20px;
        overflow: visible;
    }
}

.matrixTable {
    width: 858px;
    border-collapse: separate;
}
@media print, screen and (min-width: 770px) {
    .matrixTable {
        width: 880px;
    }
}

.matrixTable_col1 {
    width: 26.3%;
}
.matrixTable_col2 {
    width: 6.7%;
}

.matrixTable thead tr {
    position: sticky;
    top: 0;
    z-index: 2;
} 
@media print, screen and (min-width: 770px) {
    .matrixTable thead {
        height: 62px;
    }
    .matrixTable thead tr.fixed {
        position: fixed;
        width: 880px;
        top: 85px;
    } 
}


.matrixTable thead th {
    font-size: 1.1rem !important;
    font-weight: 500;
    line-height: 1.455;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    padding: 7px;
    background-color: var(--main-blue);
    word-break: break-all;
}
.matrixTable thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}
.matrixTable thead th:not(:last-child) {
    border-right: solid 1px #fff;
}
@media print, screen and (min-width: 770px) {
    .matrixTable thead th:first-child {
        width: 26.3%;
    }
    .matrixTable thead th:not(:first-child) {
        width: 6.7%;
    }
}

.matrixTable tbody th,
.matrixTable tbody td {
    vertical-align: middle;
    border-right: solid 1px var(--main-blue);
    border-bottom: solid 1px var(--main-blue);
    background-color: #fff;
}
.matrixTable tbody th:first-child,
.matrixTable tbody td:first-child {
    border-left: solid 1px var(--main-blue);
}

.matrixTable tbody th {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.455;
    text-align: left;
    word-break: break-all;
    position: sticky;
    left: 0;
    z-index: 1;
}
.matrixTable tbody th p {
    font-size: 1.0rem;
    padding: 3px 5px;
}
.matrixTable tbody td {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center;
    color: var(--main-blue);
}

.matrixTable_profile {
    display: flex;
}
.matrixTable_profile img {
    width: 80px;
    height: 80px;
}
.matrixTable_profile .name {
    display: block;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 2px;
}

.matrixTable tbody .outside th,
.matrixTable tbody .outside td {
    background-color: #FFFBE9;
}

