@charset "utf-8";
/*
	Site Name: 立川まんがぱーく
	Description: initial setting
	Version: 2013/05/28 22:59
	Author: Nagano Syouten Creative
*/

/*
===== CONTENTS ===========================================

	1: universal reset 
	2: body and base setting
		: general params
		: acronyms and abbreviations styles
	3: link setting

==========================================================
*/


/*
===== 1: universal reset =================================
*/
*{
	margin : 0;
	padding : 0;
	font-family : Arial, Helvetica, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	_font-family : Arial, Helvetica, sans-serif; /* IE 6 */
	*font-family : Arial, Helvetica, sans-serif; /* IE 7 */
}
html {
	overflow-y: scroll;
}
*{margin:0;padding:0;}
html>body{
	width : auto;
}
div{
    min-height:1%;
}
div:after{/*for modern browser*/
    content:".";
    display : block;
    height :0px;
    clear : both;
    visibility : hidden;
    font-size: 0;/*これで解決させる*/
}
* html div{
    /*\*/height:1%;/*for WinIE*/
    display:inline-table;/*for MacIE*/
}
/*
===== 2: body and base setting ===========================
*/
body{
	text-align : center;/* box centering */
	margin : 0 auto;
	padding : 0;
	width : 100%;
	height : 100%;
	color : #000;
	background : #FFF;
	font : 62.5% Arial, Helvetica, sans-serif;
       line-height : 1.5;
	font-weight: normal;
}
#container{
	width : 100%;
	height : auto;
	margin : 0 auto;
	padding : 0 0 0 0;
	position : relative;
	font-size : 100%;
	text-align : center;/* box centering */
	background : url(./img/common/hback.jpg) 0 0 repeat-x;  /*DEL */
}
/* general params
--------------------*/
img {
	border: none;/* img do not want a border */
	vertical-align: bottom;
      -ms-interpolation-mode: bicubic;
}
li { list-style: none; }/* link do not want a dot */
/* acronyms and abbreviations styles 
-------------------------------------*/
p{
	font-size : 1.3em;
	margin-bottom : 1.5em;
}
acronym,abbr{cursor:help;}
/*
===== 3: form setting ===========================
*/
select{ padding-right:10px; }
*+html select{padding-right:0;}/* for IE7&Opera */
* html select{padding-right:0;}/* for IE6 */

input, select {
    vertical-align:middle;
}

/*
===== 4: link setting ===========================
*/
a{
	color : #C53634;
	text-decoration: none;
}
a:hover{
	color : #C53634;
	text-decoration: underline;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}