@charset "utf-8";
/* CSS Document */

/************************************************
 import css 【PC】
************************************************ */
@import url("common.css") screen and (min-width: 1080px);
@import url("common.css") print and (min-width: 1080px);

@import url("about.css") screen and (min-width: 1080px);
@import url("about.css") print and (min-width: 1080px);

/************************************************
 import css【タブレット】
************************************************ */
@import url("common.css") screen and (min-width:480px) and (max-width:1079px);
@import url("common.css") print and (min-width:480px) and (max-width:1079px);

@import url("about.css") screen and (min-width:480px) and (max-width:1079px);
@import url("about.css") print and (min-width:480px) and (max-width:1079px);

/************************************************
 import css【スマートフォン】
************************************************ */
@import url("common_sp.css") screen and (max-width:479px);
@import url("common_sp.css") print and (max-width:479px);

@import url("about_sp.css") screen and (max-width:479px);
@import url("about_sp.css") print and (max-width:479px);