/*【開始】画像100%  */
@media only screen and (max-width: 784px) {
   #header img {
       width:100% !important;
   }
   #content img {
       width:100% !important;
   }
   #content_nosidebar img {
       width:100% !important;
   }
   #sidebar img {
       width:100% !important;
   }
   #footer img {
       width:100% !important;
   }
}
/*【終了】画像100% */


/*【開始】テーブルスクロール*/
.scroll-table {
  overflow: auto;
  white-space: nowrap;
}
/*【終了】テーブルスクロール*/


/*スマホだけ文字改行*/
.hidden-pc {
    display: none;
}

@media screen and (max-width: 767px) {
    .hidden-pc {
        display: block;
    }

    .hidden-sp {
        display: none;
    }
}
