/* ブラウザの横幅が641px以上の場合 */

@import url("main_style.css") screen and (min-width: 641px);

/* 横幅641px以上の場合、ロールオーバ等の設定のため、画像のスタイルシートは別に読み込む */
@import url("image_style.css") screen and (min-width: 641px);


/* ブラウザの横幅が640px以下の場合 */
@import url("smart_style.css") screen and (max-width: 640px);