@charset "UTF-8";

@import url('resp_main.css') screen and (max-width : 768px);
/*〜767pxまでのCSSを記述*/

@import url('resp_sp.css') screen and (max-width : 322px);
/*〜319pxまでのCSSを記述*/

@import url('resp_spl.css') screen and (min-width : 323px) and (max-width : 480px);
/* ここに320px〜479pxまでのCSSを記述*/ 

@import url('resp_tb.css') screen and (min-width : 481px) and (max-width : 768px);
/* ここに479px〜1023pxまでのCSSを記述*/ 


@import url('../style.css') screen and (min-width : 769px);
/* ここに768px〜1023pxまでのCSSを記述*/ 

@import url('other.css') screen and (min-width : 1049px);
/* ここに1024px以上のCSSを記述*/ 

