@charset "UTF-8";

/*/////////////////////////////////////////////////////////////

------------------------------------------------------------
[Base]
	0. All
	1. HTML, Body, Anchor
	2. Other
	
	90. For IE 6 & 7
	99. Clearfix
		
//////////////////////////////////////////////////////////////*/


/* ------------------------------------------------------------
	0. All
------------------------------------------------------------ */

body, div,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre, code, p, blockquote, th, td,
form, fieldset, legend, input, select, textarea {
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------
	1. HTML, Body, Anchor
------------------------------------------------------------ */
html {
	overflow-y: scroll;
}
body {
	color: #333;
	font-family: Arial, Helvetica, "Meiryo","メイリオ", sans-serif;
	font-size: 13px;
	line-height: 1.3;
}

/* ---------------
EXAMPLES FONT-SIZE
------------------
 77% = 10px
 85% = 11px
 93% = 12px
100% = 13px
108% = 14px
116% = 15px
124% = 16px
131% = 17px
139% = 18px
147% = 19px
154% = 20px
162% = 21px
170% = 22px
177% = 23px
185% = 24px
193% = 25px
200% = 26px
--------------- */

a {
	outline: none;
}

a:link{
	color:#3399cc;
	text-decoration:none;
}
a:visited{
	color:#2C6D99;
	text-decoration:none;
}
a:hover{
	color:#3399cc;
	text-decoration:underline;
}

/* ------------------------------------------------------------
	2. Others
------------------------------------------------------------ */

/*  2-1. Inline-level Elements
------------------------------------------------- */
img {
	border: none;
	vertical-align: middle;
}

object {
	vertical-align: middle;
	outline: none;
}

address, caption, cite, code, dfn, th, var {
	font-weight: normal;
	font-style: normal;
}

em, strong {
	font-weight: bold;
	font-style: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

fieldset {
	border: none;
}

input, textarea, select, label {
	font-size: 100%;
	font-family: inherit;
}

label {
	cursor: pointer;
}

textarea {
	overflow: auto;
}

/*  2-2. Block-level Elements
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	line-height: 1;
}

hr {
	display: none;
}

q:before, q:after {
	content: '';
}

abbr, acronym {
	border: none;
	font-variant: normal;
}

pre, code {
	font-family: monospace;
}

ul, ol {
	list-style: none;
}

/*  2-3. Table
------------------------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	font-family: inherit;
}

caption, th, td {
	text-align: left;
	vertical-align: top;
}


/* ------------------------------------------------------------
	90. For IE 6 & 7
------------------------------------------------------------ */

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

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

/* --- for ie7: page zoom bug fix --- */
*:first-child+html body,
*:first-child+html br { letter-spacing: 0; }





/* ------------------------------------------------------------
	Classes
------------------------------------------------------------ */


/* ------------------------------------------------------------
	99. Clearfix
------------------------------------------------------------ */

.group:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	font-size: 0.1em;
	line-height: 0;
}

.group {
	display: inline-block;
}

/* exclude MacIE5 \*/
* html .group {
	height: 1%;
}

.group{
	display: block;
}
/* end: exclude MacIE5 */
