.is-style-custom-style tr > th:first-child,
.is-style-custom-style tr > td:first-child{
    background-color: #FC7000;
    color: #fff;
    font-weight: bold;
}

ul.is-style-list-style{
    position: relative;
    padding: 50px 30px 20px 30px;
    background: #F8F8F8;
    list-style: none;
    margin: 0;
}
ul.is-style-list-style::before {
    content: 'この記事のポイント';
    position: absolute;
    font-size: 18px;
    font-weight: bold;
    background: #555555;
    color: #fff;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 20px;
}
ul.is-style-list-style > li{
    font-size: 16px;
    position: relative;
    padding-left: 25px;
    margin-top: 15px;
}
ul.is-style-list-style > li::before {
    font-family: 'icomoon';
    content: "\e90b";
    color: #FC7000;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 5px;
}

@media all and (max-width: 834px) {
    ul.is-style-list-style{
        padding: 40px 20px 20px 20px;
    }

    ul.is-style-list-style::before{
        font-size: 14px;
        padding: 7px 20px;
    }
    ul.is-style-list-style > li{
        font-size: 14px;
    }
}