/*display:noneの表示設定*/
.display-none{display: none;}
.display-on{}

/*レスポンシブの表示設定*/
@media screen and (max-width: 415px) {
.pc{display: none}
}
@media screen and (max-width: 1024px) {
.pc1024{display: none}
}
@media screen and (min-width: 1025px) {
.sma1024{display: none}
}
@media screen and (min-width: 414px) {
.sma{display: none}
}
