p {
    font-size: 20px;
}

/* スマホ */
@media screen and (max-width:480px) {
    /* スマホ向けサイトに適用されるCSSを記述 */
    p {
        font-size: 50px;
    }
}