@charset "utf-8";

/*PC向け*/
@import url(common.css) screen and (min-width: 1024px);
@import url(module.css) screen and (min-width: 1024px);
@import url(contents.css) screen and (min-width: 1024px);

/*タブレット向け*/
/*
@import url(common_tb.css) screen and (min-width: 768px) and (max-width:1023px);
@import url(module_tb.css) screen and (min-width: 768px) and (max-width:1023px);
@import url(contents_tb.css) screen and (min-width: 768px) and (max-width:1023px);
*/

/*スマホ向け*/
@import url(common_sp.css) screen and (max-width: 1023px);
@import url(module_sp.css) screen and (max-width: 1023px);
@import url(contents_sp.css) screen and (max-width: 1023px);

/*印刷*/
@import url(common.css) print;
@import url(module.css) print;
@import url(contents.css) print;
@media print {
  body {
    width: 1000px !important;
    /*
    transform: scale(0.67);
    -moz-transform: scale(0.67);
    -webkit-transform: scale(0.67);
    transform-origin: 0 0;
    */
  }
}
