@charset "UTF-8";
.list-table,
.list-table *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.list-table > tbody > tr > th{
    white-space: nowrap;
}
.list-table > tbody > tr > th,
.list-table > tbody > tr > td{
    vertical-align: top;
}
.list-table > tbody > tr > td{
    padding-left: 2em;
    padding-bottom: 2em;
}
.tac{
    text-align: center;
}
.tar{
    text-align: right;
}
.pl1{
    padding-left: 1em;
}
.ti{
    text-indent: -1em;
    padding-left: 1em;
}
.list-table-box{
    background: #ffeaea;
    line-height: 1.2em;
    border: solid 1px #999;
    padding: 1em;
}
.arrow-r{
    display: block;
    background: #d3003f;
    position: relative;
    padding: 0.5em 1em;
    color: #fff;
}
.arrow-r::after{
    content: "";
    display: block;
    height: 0px;
    width: 0px;
    position: absolute;
    right: -10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-style: solid;
    border-width: 17px 0 17px 10px;
    border-color: transparent transparent transparent #d3003f;
}
@media all and (max-width: 414px){
    .u-img{
        max-width: 100%;
        height: auto;
    }
    .list-table,
    .list-table *{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .list-table,
    .list-table > thead,
    .list-table > tbody,
    .list-table > thead > tr > th,
    .list-table > tbody > tr > th,
    .list-table > tbody > tr > td{
        display: block;
    }
    .arrow-r::after{
        display: none;
    }
    .list-table > tbody > tr > th{
        white-space: nowrap;
    }
    .list-table > tbody > tr > th,
    .list-table > tbody > tr > td{
        vertical-align: top;
    }
    .list-table > tbody > tr > td{
        padding-left: 0em;
        margin-top: 1em;
        padding-bottom: 2em;
    }
}