/*fv関係*/
.fvwarp {
    height: 10px;
}

/*コンテンツ*/
.mainbox {
    color: #707070;
}

.artcleset {
    counter-reset: count 0;
}

.artcleset .titleset:before {
    content: "Article" counter(count)" ";
    counter-increment: count 1;
}

.mainbox .title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #222222;
    padding-left: 1em;
    text-indent: -1em;
}

.mainbox .title::before {
    border: 3px solid #4BA3E3;
    width: 18px;
    height: 18px;
    content: "";
    display: inline-block;
    border-radius: 50%;
    vertical-align: baseline;
    margin-right: 0.3em;
}

.mainbox .subtitle {
    font-weight: bold;
}

.mainbox .bold {
    font-weight: bold;
}

.mainbox .end {
    color: #000;
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {
    .mainbox {
        width: 90%;
        margin: auto;
    }

    .artcleset .titleset:before {
        white-space: pre;
        content: "Article" counter(count)"\A";
    }

    .mainbox .title {
        font-size: 25px;
        padding-left: 0;
        text-indent: 0;
    }

    p {
        font-size: 12px;
    }

    .mainbox .title::before {
        display: none;
    }
}