@charset "UTF-8";


/*******************************

flow

*******************************/

/*-----------------------------
アンカーリンクのリスト
-----------------------------*/
ol.flow {
    text-align: left;
    list-style-type: decimal!important;
    margin-bottom: 0;
}

ol.flow li {
    display: list-item;
    float: left;
    padding-right: 10px;
    margin-left: 30px;
    line-height: 2;
    font-weight: bold;
}

/*-----------------------------
テーブルWrapのDiv
-----------------------------*/
.tableWrap {
    margin: 50px 0;
}

@media screen and (max-width: 767px) {
    .tableWrap {
        max-width: 960px;
        overflow: auto;
    }
}


/*-----------------------------
テーブル
-----------------------------*/
/*** table ***/
.f-table01 {
    width: 100%;
    font-size: 1vw;
}
@media screen and (max-width: 767px) {
    .f-table01 {
        width: 960px;
        font-size: 14px;
    }
}
@media screen and (min-width: 1300px) {
    .f-table01 {
        font-size: 16px;
    }
}

/*** thead ***/
.f-table01 thead {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.f-table01 thead th {
    padding: 10px;
    font-weight: bold;
    vertical-align: middle;
}

/*** th td ***/
.f-table01 th,
.f-table01 td {
    text-align: center;
}

table td {
    padding: 0 10px;
    vertical-align: middle;
}

/*** tbody ***/
.tbody {
    border-bottom: 2px solid #fff;
}

/*** 見出しのth ***/
.f-table01 .f01 {
    background: #dbdbdb;
    font-weight: bold;
    vertical-align: middle;
    padding: 0 10px;
    width: 120px;
    border-right: 2px solid #fff;
    border-left: 2px solid #fff;
}

@media screen and (max-width: 767px) {
    .f-table01 .f01 {
        font-size: 12px;
        min-width: 90px;
    }
}
@media screen and (min-width: 1300px) {
    .f-table01 .f01 {
        font-size: 14px;
    }
}

/*** 見出しのナンバー ***/
.f-table01 .f01 span {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
    width: 23px;
    height: 23px;
    padding-top: 3px;
    margin: 0 auto 10px;
    border-radius: 50%;
    font-size: 11px;
}
@media screen and (min-width: 1300px) {
    .f-table01 .f01 span {
        font-size: 11px;
    }
}

/*** 東名興産中間処理のtd ***/
.f-table01 .f02 {
    background: #eaecf2;
    white-space: nowrap;
}

/*** 他社中間処理・最終処理のtd ***/
.f-table01 .f03 {
    background: #eaf3e9;
    white-space: nowrap;
}

.f-table01 .f03:nth-last-child(1) {
    border-right: 2px solid #fff;
}


/*** 角括弧(右)のついたリスト ***/
ul.flist01 {
    float: left;
    border-right: 1px solid #000;
    position: relative;
    margin: 10px 0;
    text-align: left;
}

ul.flist01:before {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
}

ul.flist01:after {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    right: 0;
    bottom: 0;
}

ul.flist01 li {
    padding: 2px 10px;
}


/*** 角括弧(左)をつけるためのcss ***/
.b-l {
    border-left: 1px solid #000;
    position: relative;
}

.b-l-top:before {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.b-l-bottom:after {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
}

/*** 角括弧(右)をつけるためのcss ***/
.b-r {
    border-right: 1px solid #000;
    position: relative;
}

.b-r-top:before {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
}

.b-r-bottom:after {
    content: '';
    display: block;
    height: 1px;
    width: 5px;
    background: #000;
    position: absolute;
    right: 0;
    bottom: 0;
}


/*** 矢印(右側) ***/
.arrow-r:after {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: auto;
    margin-left: 10px;
    position: absolute;
    height: 25px;
    top: 0;
    bottom: 0;
    font-size: 16px;
}

/*** 矢印(左側) ***/
.arrow-l {
    padding-left: 20px!important;
}
.arrow-l:before {
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: auto;
    margin-right: 10px;
    position: absolute;
    height: 25px;
    top: 0;
    bottom: 0;
    left: 0;
    font-size: 16px;
}


/*** テーブル内のテキストを囲うdiv ***/
.f-table01 div {
    position: relative;
    float: left;
    padding: 10px;
}

/*** ボーダー・白バックのテキスト ***/
.f-table01 span.box {
    display: inline-block;
    border: 1px solid #000;
    background: #fff;
    padding: 5px;
    font-weight: bold;
}

/*** 赤文字 ***/
.red {
    color: #ff0000;
}

/*** テキストを右側に寄せる ***/
.floatr {
    margin-right: 30px;
    float: right!important;
}
