
/* ====================================
   共通　研修制度テーブル
==================================== */

.training-table-wrap{
    overflow-x:auto;
    margin:40px 0;
}


/* ====================================
   新卒　研修制度テーブル
==================================== */

.training-table{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
    table-layout:auto;
    font-size:14px;
    line-height:1.8;
}

.training-table th,
.training-table td{
    border:1px solid #d8d8d8;
    padding:16px;
    vertical-align:middle;
    word-break:normal;
    overflow-wrap:anywhere;
}

/* 上部ヘッダー */
.training-table thead th{
    background:#005f7d;
    color:#fff;
    text-align:center;
    font-weight:700;
}

.training-table thead tr:first-child th{
    height:58px;
}

.training-table thead tr:nth-child(2) th{
    height:58px;
}

/* 左上空白 */
.training-table .corner-blank{
    background:transparent !important;
    border:none !important;
    width:13%;
    padding:0;
}

/* 左見出し */
.training-table tbody th{
    background:#6797b9;
    color:#fff;
    text-align:center;
    font-weight:700;
    white-space:nowrap;
    width:13%;
}

/* 本文 */
.training-table tbody td{
    background:#fff;
}

/* 縦結合セル */
.skill-cell,
.compliance-cell{
    vertical-align:top !important;
}

/* 行高さ */
.training-table tbody tr{
    height:110px;
}

.compliance-cell strong{
    display:block;
    margin-bottom:4px;
}

/* スマホ・タブレット対応 */
@media (max-width:768px){

    .training-table{
        min-width:1100px;
    }

    .training-table th,
    .training-table td{
        padding:12px;
        font-size:13px;
    }
    
}