﻿@charset "UTF-8";
/* CSS Document */


/*フロー矢印なしバージョンのリスト*/
.blockList02 {
    overflow: hidden;
}

    .blockList02 > dt {
        display: flex;
        align-items: center;
        margin-bottom: 25px;
        border-top: 1px solid #ff222d;
        border-bottom: 1px solid #ff222d;
        font-size: 2.0rem;
        font-weight: bold;
    }

        .blockList02 > dt::before {
            width: 60px;
            color: #ff222d;
            font-family: "Oswald",sans-serif;
            font-size: 3.0rem;
            text-align: center;
        }

    .blockList02 > dd {
        position: relative;
        margin-bottom: 80px;
    }

    .blockList02 > dt {
        counter-increment: cnt;
    }

        .blockList02 > dt::before {
            content: counter(cnt);
        }

    .blockList02 > dd:last-of-type::after {
        content: normal;
    }





@media only screen and (max-width: 767px) {
    .blockList02 > dt {
        margin-bottom: 15px;
        font-size: 1.4rem;
    }

        .blockList02 > dt::before {
            font-size: 2.4rem;
        }

    .blockList02 > dd {
        margin-bottom: 40px;
    }
}