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

/*改行*/
.only-sp{
 display: none;
}
.only-pc{
 display: inline;
}


@media only screen and (max-width: 768px) {
.only-pc{
  display: none;
}
.only-sp{
 display: block;
}
}











