@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      import.css
 Author:         A Matsubara
 Style Info:     各CSSファイル読み込み用
----------------------------------------------------------- */
/*
各デバイスのブレイクポイント
PC：950px〜1200pxが最適な範囲
タブレット：768(600)px〜834pxが最適な範囲
スマートフォン：375(360)px〜414pxが最適な範囲
*/

/* default Style - デフォルト(PC優先)
----------------------------------------------------------- */
@import url("./style.css");

/* responsive Style
----------------------------------------------------------- */
/* PC用 */
/*@import url("./style.css") screen and (min-device-width:1200px); 
@import url("./style.css") screen and (min-width:801px) ;*/

/* タブレット用  デバイスの横サイズが 768px以下　*/
@import url("./style_tablet.css") screen and  ( max-width:768px);

/* スマートフォン用  デバイスの横サイズが 360 - 414px 以下　
@import url("./style_mobile.css") screen and (max-device-width:760px);
@import url("./style_tablet.css") screen and  (max-width:429px);
@import url("./style_mobile.css") screen and  (max-width:429px);*/

/* print
----------------------------------------------------------- 
@import url("print.css");*/

