@charset "UTF-8";
/* -------------------------------------------------------------------
	Default CSS

	Reset Browser Default CSS
	Set Font Size and Font Family
	Set display Hyper Link

------------------------------------------------------------------- */

/* ----------------------------------------
	Reset CSS 
---------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	text-indent: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
h1,h2,h3,h4,h5,h6 {
	line-height: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
img{
	vertical-align:bottom;
}


/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* ----------------------------------------
	General CSS 
---------------------------------------- */
body {
	color: #333333;
	font-family: sans-serif;
	font-size: 75%;
	line-height: 1.6em;
}

/* Except IE */
:root *> body {
    font-size:9pt;
}

/* IE6 Only */
* html body {
	font-family: "ＭＳ Ｐゴシック" , sans-serif;
}

/* IE7 and IE8 Only */
body {
	font-family/*\**/:"メイリオ" , sans-serif\9;
}


/* ----------------------------------------
	FORM 
---------------------------------------- */
input{
	margin:0;
	padding:0;
}

input{
	vertical-align:middle;
	padding:2px;
}
input.radio,
input.checkbox{
	padding:0;
}

select{
	padding:1px;
	margin:0;
}
* html select{
	vertical-align:middle;
}

textarea{
	margin:0;
}


/* ----------------------------------------
	Link
---------------------------------------- */
a {
	color: #444444;
	text-decoration: underline;
}
a:visited {
	color: #666666;
	text-decoration: underline;
}
a:hover {
	color: #111111;
	text-decoration: none;
}

