/*--------------------------
		base.css
--------------------------*/

@import url("reset.css");
@import url("common.css");
@import url("content.css");

/* PC */
/*@import url("common.css") screen and (min-width: 960px);
@import url("content.css") screen and (min-width: 960px);*/

/* MOBILE */
/*@import url("m-common.css") screen and (max-width: 960px);
@import url("m-content.css") screen and (max-width: 960px);*/

/*
@media only screen and (min-width: 960px) {
	@import url("common.css");
	@import url("content.css");
}
@media only screen and (max-width: 960px) {
	@import url("common-m.css");
	@import url("content-m.css");
}
/*
・599pxまではスマホ
・600px～959pxまではタブレット
・960px～1280pxまでは通常のデスクトップ
・1281px以上は、横幅の広いデスクトップ
*/
