@charset "utf-8";

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

p {
  text-align: center;
}

div {
  text-align: center;
}

.spoff {
  display: block;
}

.pcoff {
  display: none;
}

@media screen and (max-width: 768px) {

  .spoff {
    display: none;
  }
  
  .pcoff {
    display: block;
  }

}
/*------ max-width:480px ------*/
@media screen and (max-width: 480px) {

  .spoff {
    display: none;
  }
  
  .pcoff {
    display: block;
  }

}