﻿/*
** グローバルセレクタでmargin/paddingなどを初期化する
*/
*
{
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
}

/*
** 要素を指定してmargin/paddingを初期化する
*/
html, body, div, 
h1, h2, h3, h4, h5, h6, 
p, pre, blockquote, address, 
ul, ol, dl, dt, dd, 
table, th, td, 
form, fieldset
{
  margin: 0;
  padding: 0;
}


/*
** 表(テーブル)のボーダー表示方法の違いを解決する  
*/
table
{
  border-collapse: collapse;
  border-spacing: 0;
}

/*
** イメージのリンクボーダーの非表示化
*/
img
{
	border: 0;
	border:medium none;
	border-style: none;
	margin: 0px;
	padding: 0px;
	text-decoration: none;
}

/*
** clrfix設定
*/
.clrfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clrfix {
  min-height: 1px;
}

* html .clrfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}
a {
	outline: none;
}
