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

a img {
border: none;
max-width: 100%; 
height:auto;
}

table {
  width: 100%;
  table-layout:fixed;
}
table td img {
  max-width: 100%;
}

@media screen and (max-width: 1200px) {
  /* PC用のスタイル */
  table td img {
    height:auto;
  }
}
@media screen and (max-width: 480px) {
  /* スマホ用のスタイル */
table td img {
    height:auto;
  }
}