@charset "UTF-8";
/* CSS Document */

/* ---------- COMMON ---------- */

/* ---------- Mobile / Tablet ---------- */
@media(max-width:1022px){}

/* ---------- Mobile ---------- */
@media(max-width:737px) {
    section dl{
        margin-bottom: 25px;
    }

    section dl dt{
        margin-bottom: 5px;
    }
}

/* ---------- Portlate ---------- */
@media(max-width:567px) {}

/* ---------- Tablet / PC ---------- */
@media (min-width: 738px) {
    section dl{
        display: table;
    }

    section dl dt,
    section dl dd{
        font-weight: 400;
        display: table-cell;
    }
}

/* ---------- Tablet ---------- */
@media(max-width:1030px) and (min-width: 737px){
    section dl{
        margin-bottom: 30px;
    }

    section dl dt{
        width: 125px;
    }
}

/* ---------- PC ---------- */
@media(min-width:1031px){
    article section{
        margin-left: auto;
        margin-right: auto;
        max-width: 1170px;
    }

    section dl{
        margin-bottom: 40px;
    }

    section dl dt{
        width: 160px;
    }
}