@charset "UTF-8";

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


初期化設定スタイルシート
init.css

Copyright (C) All rights reserved.

内容
1.タグ初期化設定
2.共通設定
	リンク要素

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



/***********************************************************
	1.タグ初期化設定
***********************************************************/
html{
	height: 100%;
	margin-bottom: 1px;
}

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

img {
	border: 0;
	vertical-align: bottom;
}

h1,h2,h3,h4,h5,h6 {
	clear: none;
}

h1,h2,h3,h4,h5,h6,p,pre,blockquote,address,ul,dl,ol,th,strong,em {
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
}

ul,dl,ol {
	list-style-type: none;
	list-style-position: outside;
	text-indent: 0;
}

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

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

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

pre,code,kbd,samp,tt {
	font-family: monospace;
}



/***********************************************************
	2.共通設定
***********************************************************/
/* リンク要素
------------------------------*/
a:link {
	color: #B5141D;
	text-decoration: none;
}
a:visited {
	color: #B5141D;
	text-decoration: none;
}
a:hover {
	color: #B5141D;
	text-decoration: underline;
}
a:active {
	color: #B5141D;
	text-decoration: underline;
}

/* 回り込み解除
------------------------------*/
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}
