
/*-----------------------------------------------------------------------/
	Site Name: 
	Description: initial setting & style import
	Version: 1.1
	Author: AdTECHNICA
/*----------------------------------------------------------------------*/


/*-----------------------------------------------------------------------/
	CONTENTS
	1: body and base setting
		: general params
		: acronyms and abbreviations styles
	2: form setting
	3: link setting
/*----------------------------------------------------------------------*/

/*-----------------------------------------------------------------------/
	1: body and base setting
/*----------------------------------------------------------------------*/

/*--------------------------------------------/
	基本フォントサイズ(bodyに指定する値)が12pxの場合
	表示したいサイズ	|	指定するサイズ
-----------------------------------------------
		10px		|		84%
		11px		|		92%
		12px		|		100%
		13px		|		109%
		14px		|		117%
		15px		|		125%
		16px		|		134%
		17px		|		142%
		18px		|		150%
		19px		|		159%
		20px		|		167%
		21px		|		175%
		22px		|		184%
		23px		|		192%
		24px		|		200%
		25px		|		209%
		26px		|		217%
/--------------------------------------------*/

body {
	font-family:'Verdana','Arial','メイリオ','Meiryo','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','Osaka','ＭＳ Ｐゴシック',sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	background: #FFF ;
	color: #333;
}

/* for IE6 */
* html body {
    font-size: 75%;
}

/* for IE7 */
*:first-child+html body {
    font-size: 75%;
}

/* general params
--------------------*/
h1, h2, h3, h4, h5, h6,
div, p, pre, ul, ol, dl, dt, dd,
address, form, blockquote{
	margin: 0;
	padding: 0;
	line-height:140%;
	display: block;
}
table {margin: 0;empty-cells: show; font-size:1.2em;}
caption,th{text-align: left;}
img {border: none;}
q:before,q:after{content: '';}
abbr,acronym{border: 0;}
li { list-style: none; }/* link do not want a dot */

/* sup subタグはFirefoxだと上にいきすぎる */
sup,
sub {
	vertical-align: baseline;
	position: relative;
}

sup {
	top: -4px
}

sub {
	top: 4px
}

hr {
border:solid #666;
border-width:1px 0px 0px 0px;
height:1px;
overflow:hidden;
margin:5px 0;
clear:both;
} 

/* hX setting */

h1{font-size:200%;}
h2{font-size:167%;}
h3{font-size:150%;}
h4{font-size:134%;}
h5{font-size:117%;}
h6{font-size:109%;}

/* Show firefox scrollbar */
html{overflow:-moz-scrollbars-vertical;}

/*-----------------------------------------------------------------------/
	2: form setting
/*----------------------------------------------------------------------*/
input,text-area{font-size:100%;}
option{ padding-right:10px; }
*+html option{padding-right:0;}/* for IE7&Opera */
* html option{padding-right:0;}/* for IE6 */

/*For IE5-7, 上部に1pxの空白ができる為*/ 
input {
	_margin: -1px 0;
}

/*-----------------------------------------------------------------------/
	3: link setting
/*----------------------------------------------------------------------*/

/* CSSで画像置換した際にfirefoxはリンクの線が出てしまう、のでそれを消す */
a{outline:none;}


a:hover{
	color: #FF6666;
	text-decoration:none;
}
a:active{
	color: #FF6666;
}
