﻿/* 2段階で表示を切り替える場合の指定 */
@media screen and (min-width: 1080px) {}                        /*PC表示*/
@media screen and (max-width: 1079px) {}                        /*スマホ表示*/

/* 3段階で表示を切り替える場合の指定 */
@media screen and (min-width: 801px) {}                         /*PC表示*/
@media screen and (min-width: 501px) and (max-width: 800px) {}  /*中間表示*/
@media screen and (max-width: 500px) {}                         /*スマホ表示*/

