/* CSS Document */
/*-----PC-----*/
@media screen and (min-width: 961px) {
  #contents {
    margin: 0;
    padding: 0;
    background-color: #ffe826;
    text-align: center;
  }
  #contents img {
    vertical-align: bottom;
  }
}
/*-----Tablet-----*/
@media screen and (min-width: 521px) and (max-width: 960px) {
  #contents {
    margin: 0;
    padding: 0;
    background-color: #ffe826;
    text-align: center;
  }
  #contents img {
    vertical-align: bottom;
  }
}
/*-----SP-----*/
@media screen and (max-width: 520px) {
  #contents {
    margin: 0;
    padding: 0;
    background-color: #ffe826;
    text-align: center;
  }
  #contents img {
    vertical-align: bottom;
  }
}