﻿@charset "UTF-8";



@import "reset.css";/*リセット*/
@import "basic.css";/*基本レイアウト・デザイン*/
/*@import "jqMini.css";/*画面遷移用*/

/*@import "smartphone.css";*//*ページ独自のスタイルまとめ*/
@import "tablet.css" only screen and (min-width: 480px) and (max-width: 979px);/*テストカラー緑*/
@import "desktop.css" only screen and (min-width: 980px);/*テストカラー黄色*/

/*@import "flicksimple.css";*/


#pc header2 {
	background-color: #cccccc;/*灰色*/
	background: -webkit-gradient(linear,center top,center bottom,from(#ffffff),to(#cccccc));
	background: -webkit-linear-gradient(top, #ffffff, #cccccc);
	background: -moz-gradient(linear,center top,center bottom,from(#ffffff),to(#cccccc));
	background: -o-gradient(linear,center top,center bottom,from(#ffffff),to(#cccccc));
	background: -ms-gradient(linear,center top,center bottom,from(#ffffff),to(#cccccc));
	background: linear-gradient(top, #ffffff, #cccccc);
	-pie-background: linear-gradient(#ffffff, #cccccc);
	behavior: url(/js/PIE.htc);/*絶対パス*//*IEにCSS3*/
}
#android header2 {
	background-color: blue;/*青*/
}
#iphone header2 {
	background-color: red;/*赤*/
}