/* ------------------------------------- 
 *
 *	< class/id要素の書く順番 >
 *	考え方的には外の要素(displayやmargin)から徐々に中の要素(font,背景など)に落とし込んで行く感じです。
 *	text-alignだけは中央寄せとかに使う場合があるので、最初のほうにあります。
 *	▼キモになる要素 
 *  display: ;
 *	float: ;
 *	height: px;
 *  width: px;
 *  margin: 0px 0px 0px 0px;
 *  padding: 0px 0px 0px 0px;
 *  text-align: ;
 *  ▼ボーダー
 *	border: 1px solid #000000;
 *  (top,right,bottom,leftの順番で)
 *	▼フォント関連要素
 *  text-indent: ;
 *	font-size: "px" or "%";
 *	font-family: Verdana, Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "MS UI Gothic", sans-serif;
 *  font-weight
 *	line-height: 160%;
 *  color: #000000;
 *	▼背景 
 *  background-image: url();
 *  background-repeat: ;
 *	background-position: ;
 *	▼その他の要素
 *  overflow: hidden;
 *  clear: both;
 *
 * ------------------------------------- */
 
/* UAによる差異をなくすCSS･初期化･いじる必要なし */
@import url(./default.css);


/* ------------------------------------- 
 *  common css (li, hタグなどの設定)
 * ------------------------------------- */
@import url(./common.css);


/* ------------------------------------- 
 *  header css
 * ------------------------------------- */
@import url(./header.css);


/* ------------------------------------- 
 *  contents css
 *  3カラム,2カラムを選んで要素を追加していきます
 * ------------------------------------- */
@import url(./3contents.css);
/* @import url(2contents.css); */
/* @import url(1contents.css); */


/* ------------------------------------- 
 *  footer css
 * ------------------------------------- */
@import url(./footer.css);


/* ------------------------------------- 
 *  particular css（独自タグ） 
 * ------------------------------------- */
@import url(./sp.css);