@charset "UTF-8";

/* ===================================================================
各cssファイル読み込み用
=================================================================== */


/* default style - リセット
----------------------------------------------------------- */
@import url("default.css");


/* media queries
----------------------------------------------------------- */
/* for 1150px - */
@import url("style1.css") only screen and (min-width:1100px);

/* for 768px - 1149px */
@import url("style2.css") only screen and (min-width:771px) and (max-width: 1099px);

/* for 481px - 767px */
@import url("style3.css") only screen and (min-width:481px) and (max-width: 770px);

/* for - 480px */
@import url("style4.css") only screen and (max-width:480px);
