/***** 工業用マグネトロン style *****/
.ind-magnetron {
    & table {
        border-collapse: collapse;
    }

    & th,
    & td {
        border: solid 2px var(--tos-gray-25);
        vertical-align: middle;
        text-align: center;
    }

    & th {
        border-bottom: none;
    }

    @media all and (max-width: 1100px) {
        .table-scrollable {
            overflow-x: auto;
            white-space: nowrap;
        }
    }
}

/*** 英語版 ***/
.eng {

    /* テーブルスクロールバーの上部への付与 */
    .table-scrollable {
        overflow-x: auto;
        white-space: nowrap;
    }
    table {
        table-layout: fixed;
        width: 1260px;

        & th,
        & td {
            white-space: normal;
            word-break: break-word;     
        }
    }
    .scroll-bar-top {
        overflow-x: auto;
    }
    .scroll-top-inner {
        width: 1200px;
        height: 3px;
    }
    .scroll-wrap {
        overflow-x: auto;
        max-width: 100%;
    }
     /* /テーブルスクロールバーの上部への付与 */

}
/***** /工業用マグネトロン style *****/