@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;
	font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", sans-serif;
}

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: #0066cc;*/
  text-decoration: none;
}
a:visited {
/*  color: #cc6699;*/
}
a:hover {
  text-decoration: underline;
}
a:active {
/*  color: #cc6699;*/
  text-decoration: underline;
}

