/*CSSリセット*/
@import url("css/reset.css");

/*ヘッダー用*/
@import url(css/header/wide.css) screen and (min-width: 1250px);
@import url(css/header/small.css) screen and (max-width: 1249px);

/*フッター用*/
@import url(css/footer/pc.css) screen and (min-width: 768px);
@import url(css/footer/sp.css) screen and (max-width: 767px);

/*共通*/
@import url(css/common/pc.css) screen and (min-width: 768px);
@import url(css/common/sp.css) screen and (max-width: 767px);

/*トップ用*/
@import url(css/index/pc.css) screen and (min-width: 768px);
@import url(css/index/sp.css) screen and (max-width: 767px);

/*service用*/
@import url(css/service/pc.css) screen and (min-width: 768px);
@import url(css/service/sp.css) screen and (max-width: 767px);

/*cms用*/
@import url(css/cms/pc.css) screen and (min-width: 768px);
@import url(css/cms/sp.css) screen and (max-width: 767px);

/*下層その他*/
@import url(css/others/pc.css) screen and (min-width: 768px);
@import url(css/others/sp.css) screen and (max-width: 767px);


/*プリント用／PC用と同じ*/
@import url(css/header/wide.css) print;
@import url(css/footer/pc.css) print;
@import url(css/common/pc.css) print;
@import url(css/index/pc.css) print;
@import url(css/service/pc.css) print;
@import url(css/cms/pc.css) print;
@import url(css/others/pc.css) print;
