@charset "utf-8";


/* --------------------------------

	* Reset Style Sheet {


		* last update 10.2/20
		* author : nakaya;
	
	}
	
--------------------------------

	* Contents
	
	1. Universal Selector 
	2. Structure Module
	3. Hyper Text Module
	4. List Module
	5. Tables Module
	6. Image Module
	7. Text + Presentation Module
	8. Forms Module
	
	
--------------------------------- */



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

	 1. Universal Selector
 
============================================================================================================*/

/*
* html body {
	font-family: "ＭＳ Ｐゴシック", Osaka, san-serif;
}
*/


* {
	/*background-color	: transparent;*/
	margin				: 0;
	padding				: 0;
	font-size			: 100.01%;
	font-style			: normal;
}


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

	 2. Structure Module
 
============================================================================================================*/

html {
	overflow-y		: scroll; /* for FireFox scrollbar */
	height			: 100%;
}

body {
	background-color: #FFF;
	height			: 100%;
	font-size		: 11px;
	font-family		: arial,helvetica;
	color			: #545563;
	letter-spacing	: 0.04em;
	line-height		: 138%;
	/font-size		: 10px;
}




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

	 3. Hyper Text Module
 
============================================================================================================*/

a {
	text-decoration	: none;
}

a:link {
	color: #545563;
	text-decoration: none;
}

a:visited {
	color: #545563;
	text-decoration: none;
}

a:hover {
	color: #68BDA0;
	text-decoration	: underline;
}


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

	  4. List Module

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

ul {
	list-style	: none;
	margin:0;
	padding:0;
}
li {
	margin:0;
	padding:0;
}
dt {
	display	: block;
	width	: auto;
}

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

	  5. Tables Module

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

table {
	border			: none;
	border-collapse	: collapse;
	border-spacing	: 0;
	font-size		: 100%;
}

td, 
th { /* セルの規定値をmiddleからtopに変更 */
	vertical-align	: top;
}

th {
	font-weight		: normal ;
	text-align		: left ;
}

caption {
	text-align		: left;
}

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

	  6. Image Module

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

/*  イメージをボックス上に接させる。
	safariでおかしくなるのでtopをdefault。場合によりbottomにすることも
-----------------------------------*/

img { 
	background-color	: transparent;
	vertical-align		: top;
}

a img {
	border	: none;
}

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

	  7. Text + Presentation Module

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

/*  ------------------------------------------------------------------

	Text(inline) + Presentation Module

---------------------------------------------------------------------*/
br {
	letter-spacing	: normal;
}

abbr {
	border-bottom	: 1px dashed #999;
	cursor			: help;
}

pre, 
code, 
samp, 
kbd, 
var {
	font-family		: Monaco, 'Andale Mono', "Courier New", Courier, monospace;
}

kbd {
	border: 1px solid #999999;
	padding: 0.2em 0.4em;
	text-transform: uppercase;
	font-size: 83%;
}

dfn {
	font-weight: bold;
}

cite {
	font-weight: bold;
}

sup, 
sub {
	font-size		: 75% ;
}

hr {
	height			: 1px;
}


/*  selected text
-----------------------------------*/

::selection {
	background		: #68BDA0;
	color			: #fff;
}

::-moz-selection {
	background		: #68BDA0;
	color			: #fff;
}



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

	8. Forms Module + Replaced Elemnt

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

input, 
textarea, 
select, 
option, 
optgroup {
	vertical-align		: middle;
	font				: 99%/1.6 arial,helvetica;
}
textarea, 
select, 
option, 
optgroup {
	background-color	: #FFF;
}



/* IE7でinput（置換要素）がズームされない問題を解決 */
input {
	zoom: 1;
}
/* ie7 hack IE7でlabelがズームされない問題 */
*:first-child+html label {
	zoom: 1;
}

select {
	min-width		: 2em;
}

option, 
optgroup {
	padding-right	: 0.4em;
	color: inherit; /* for Opera(Operaは継承してくれない)*/
}

fieldset {
	border			: none;
}

legend {
	display			: none;
}

/*  input & label & option mousePointer
-----------------------------------*/
label[for], 
input[type="checkbox"], 
input[type="radio"], 
input[type="button"], 
input[type="image"], 
input[type="reset"], 
input[type="submit"], 
select, 
option {
	cursor	: pointer;
}

optgroup {
	cursor	: default;
}


