@charset "UTF-8";

/*------------------利用の流れ調整------------------*/
.block_table_8 table {
    width: 100%;
    border: 1px solid #000;
    padding: 28px;
    position: relative;
}
.block_table_8 table:before {
    content: "";
    display: block;
    background: #000;
    width: 40px;
    height: 1px;
    position: absolute;
    transform: rotate(-45deg);
    top: 23px;
    left: -6px;
    transform-origin: top left;
    z-index: 1;
}
.block_table_8 table:after {
    content: "";
    display: block;
    background: #000;
    width: 40px;
    height: 1px;
    position: absolute;
    transform: rotate(-45deg);
    bottom: 23px;
    right: -6px;
    transform-origin: bottom right;
}
.block_table_8 table tbody {
    display: grid;
    gap: 3rem;
}
.block_table_8 table tr {
    width: 100%;
    display: grid;
    justify-items: center;
    position: relative;
}
.block_table_8 table tr:after {
    content: "";
    border-right: 1px solid #000;
    width: 1px;
    height: 20px;
    position: absolute;
    margin: auto;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -2.5rem;
}
.block_table_8 table tr:last-child:after {
    content: none;
}
.block_table_8 table th {
    width: 100%!important;
    padding: 6px 0;
}