<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* -------------------------- */
/* ------テーブル点下線あり------ */
/* -------------------------- */


@media screen and (max-width: 951px) {
    .table_scroll{
        width: 100%;
        overflow: scroll; /*スクロールさせる*/
        white-space: nowrap;
    }
}

.table_01{
    width:100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin: -10px 0 15px 0;
}

.table_01 th,
.table_01 td{ position: relative;font-size: 0.9rem; padding:5px;}

.table_01 th::after,
.table_01 td::after{
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 99%;
    height: 1px;
    border-bottom: dotted 1px #B3B3B3;
}

.table_01 th{
    width: 20%;
    vertical-align: top;
    text-align: left;
    background: #EBEFEA;
    font-size: 0.9rem;
font-weight: normal;
}

.table_01 td{width: 75%; padding: 0 0 0 2.5%;}

@media screen and (max-width: 751px) {
    .table_01 th{ width: 30%;}
    .table_01 td{ width: 65%;}
}



/* -------------------------- */
/* --------テーブル白黒------- */
/* -------------------------- */

.table_02{
    width:100%;
    border-collapse: collapse;
}

.table_02 th,
.table_02 td{
    font-size: 0.9rem;
    padding:8px 10px;
    border: 1px solid #666666;
}

.table_02 tr.table_item{background: #E6E6E6; text-align: center;}
.table_02 tr.table_line th{background: #808080; color: #fff;  text-align: center;}
.table_02 tr.table_line td{background: #fff;}
.table_02 tr.table_line td a{
width: 100%;
display: block;
background-color: #11BA71;
color: #fff;
padding: 3px 10px;
line-height: 1.1rem;
text-align: center;
box-sizing: border-box;
transition: 0.5s;
}

.table_02 tr.table_line td a:hover{
background-color: #009245;
}



/* -------------------------- */
/* --------テーブル緑------- */
/* -------------------------- */
.table_03{
width: 100%;
border-collapse:collapse;
font-size: 0.9rem;
}
.table_03 th{
background-color: #EBEFEA;
white-space: nowrap;
color: #009245;
font-weight: normal;
padding: 10px;
vertical-align: top;
}
.table_03 td{
padding: 10px;
word-wrap: break-word;
text-align: ;
}

.table_03 th,
.table_03 td{
border: solid #808080;
border-width: 1px 0 1px 0;
border-collapse:collapse;
box-sizing: border-box;
}


/* -------------------------- */
/* --------交互の色------- */
/* -------------------------- */
.table_bgc{
border: solid #808080;
border-width: 1px 0 1px 0;
}
.table_bgc td{
border: solid #E6E6E6;
border-width: 0 1px 0 0;
text-align: center;
}
.table_bgc tr:nth-child(odd) td{ background: #F2F2F2;}</pre></body></html>