@charset "UTF-8";

/* ===================================================================
各cssファイル読み込み用
=================================================================== */


/* default style - リセット
----------------------------------------------------------- */
@import url("default.css");


/* media queries
----------------------------------------------------------- */
/* for 960px - */
@import url("style.css") only screen and (min-width:960px);

/* for 700px - 960px */
@import url("style2.css") only screen and (min-width:700px) and (max-width: 960px);

/* for 480px - 700px */
@import url("style3.css") only screen and (min-width:480px) and (max-width: 700px);

/* for - 480px */
@import url("style4.css") only screen and (max-width:480px);