@media only screen and (min-width: 600px) {
    /*--------------------------------
    各フォント設定 (タブレット・PC)
    ---------------------------------*/
    p {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 959px) {
    /*--------------------------------
    各フォント設定 (スマホ)
    ---------------------------------*/
    p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 26px;
    }
}