@charset "utf-8";

/*===================================================
*
*	base style sheet
*
*	Font-size Adjustment [ base::12px ]
*
*	84%  = 10px	|	134% = 16px	|	184% = 22px
*	92%  = 11px	|	142% = 17px	|	192% = 23px
*	100% = 12px	|	150% = 18px	|	200% = 24px
*	109% = 13px	|	159% = 19px	|	209% = 25px
*	117% = 14px	|	167% = 20px	|	217% = 26px
*	125% = 15px	|	175% = 21px	|
*
*
*	1. base style
*		1-1. universal selector
*		1-2. body
*	2. element style
*		2-1. anchor
*		2-2. text
*		2-3. list
*		2-4. form
*		2-5. object
*		2-6. table
*
====================================================*/

/* ---------------------------------------
 1. base style
----------------------------------------*/

/*
 1-1. universal selector
---------------------------------*/

* {
	zoom: 1;
}

/*
 1-2. body
---------------------------------*/

html {
	overflow-y: scroll;
}

body {
	font-size: 12px;
	font-family: "ヒラギノ角ゴ Pro W3",'メイリオ',Meiryo,"ＭＳ Ｐゴシック", Osaka;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	text-align :left;
	color: #333;
	/* background: url(/images/header/bg-win.jpg) top center repeat-x; */
	background: url(/images/header/bg-sp.jpg) top center repeat-x;
}

* html body {
	font-size: 75%;
	font-family: "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, san-serif;
}

*:first-child+html body {
	font-size: 75%;
	font-family: "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Osaka, san-serif;
}

/* ---------------------------------------
 2. element style
----------------------------------------*/

/*
 2-1. anchor
---------------------------------*/

a {
	zoom: normal;
	color: #105EB3;
	text-decoration: none;
}

a:hover {
	color: #105EB3;
	text-decoration: underline;
}

a:visited {
	color: #105EB3;
}



/*
 2-2. text
---------------------------------*/

h1,h2,h3,h4,h5,h6,p {
	margin: 0;
	padding: 0;
	font-size: 100%;
}

pre {
	font-family: "Osaka－等幅", monospace;
}

strong {
	font-weight: bold;
}

code {
	font-family: "Osaka－等幅", monospace;
}

cite, em, i {
	font-style: italic;
}

abbr,
acronym {
	border-bottom: 1px dotted #999;
	cursor: help;
}

address {
	font-style: normal;
}

strong,del,ins,q {
	zoom: normal;
}

code {
	display:block;
	margin:10px 0;
	padding:10px ;
	background:#FFE ;
	border:1px solid #CCC;
}

.red {
	color:#C00;
}

.blue {
	color:#039;
}

.gray {
	color:#666;
}


/*
 2-3. list
---------------------------------*/

ul,ol {
	list-style: none;
}

ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
}

/*
 2-4. form
---------------------------------*/

form {
	margin: 0;
	padding: 0;
}

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

legend {
	color:#000;
}

input,
textarea {
	font-family: Arial, Helvetica, sans-serif;
}

input {
	line-height: 1.2;
}

textarea {
	padding: 0.2em;
}

optgroup {
	font-style: normal;
	background: #CCC;
}

option {
	background: #FFF;
}



/*
 2-5. object
---------------------------------*/

img {
	border: none;
	vertical-align: bottom;
}

object {
	vertical-align: bottom;
}

/*
 2-6. table
---------------------------------*/

table {
	border-collapse: collapse;
	font-size: inherit;
	font: 100%;
}

table td,th {
/*
	border: 1px solid #000;
*/
	padding: 5px;
}

table th {
	background: #DDD;
	font-weight: bold;
	text-align: center;
}