@charset "utf-8";

/*
-----------------------------------------------------------
	File Name   : import.css
	Description : 各CSSファイルの読み込み
-----------------------------------------------------------
*/

/* Reset css */
@import url("https://cdn.jsdelivr.net/npm/sanitize.css");

/* Base style */
@import url("common.css");

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* タブレット・PC用（769px以上） */
@import url("desktop.css") screen and (min-width: 769px);

/* スマホ用（768px以下） */
@import url("mobile.css") screen and (max-width: 768px);

/* meanmenu */
@import url("meanmenu.css") screen and (max-width: 768px);

