﻿@charset "UTF-8";

/*/////////////////////////////////////////////////////////////

Reset HTML

//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	All of use tags
------------------------------------------------------------ */

html {width:100%;height:100%;}

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;
}

/* ------------------------------------------------------------
	about "HTML","Body","Anchor" tags
------------------------------------------------------------ */

body {
	font-family: sans-serif;
	font-size: 12px;
	line-height: 150%;
}

/* ---------------
FONT-SIZE
------------------
 83% = 10px
 92% = 11px
100% = 12px
108% = 13px
108% = 14px
117% = 15px
125% = 16px
142% = 17px
150% = 18px
158% = 19px
167% = 20px
175% = 21px
183% = 22px
192% = 23px
200% = 24px
--------------- */

a:link {
	color: #fff;
	text-decoration: underline;
}

a:visited {
	color: #999;
}

a:hover,
a:active  {
	background-color:#666;
	text-decoration: none;
}

/* ------------------------------------------------------------
	2. Other tags
------------------------------------------------------------ */

/*  2-1. Inline-level Elements
------------------------------------------------- */
img {
	border: none;
	vertical-align: bottom;
}

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;
	vertical-align: middle;
}

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;
}


/*  3-1. Cliearfix
------------------------------------------------- */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}