@charset "utf-8";
/* CSS Document */


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

このスタイルシート

・cssの初期化　基本
・cssの初期化　サイト用



【覚書1】
━━━━━━━━━━━━━━━━━━━
強調文字・文字装飾・マージン指定　等
使いまわせるものは「common.css」へ記入してある


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






/*--------------------------------------------------------------------
common
cssの初期化　基本
--------------------------------------------------------------------*/


* {
	margin: 0;
	padding: 0;
	font-size:12px;
	color:#FFFFFF;
}

html, body {
	margin: 0;
	padding: 0;
	font-size:14px;
	/*font-size: 100%;*/
}

h1, h2, h3, h4, h5, h6, address, div, blockquote, p, pre, ul, ol, li, dl, dt, dd, hr {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size:14px;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	line-height:1.8;
}

table, caption, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size:12px;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

span, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, sub,
sup, q, br, ins, del, a, img, object, iframe {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: inherit;
	font-size: 14px;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}



/*--------------------------------------------------------------------
common
cssの初期化　サイト用
--------------------------------------------------------------------*/


* {
	padding:0;
	font-size: 14px;
	line-height: 140%;
	margin: 0;
	background-image: none;
}

body {
	position: relative;
}

a {
	color:#ffffff;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

a img {
	border:none;
}

hr {
	clear: both;
	height: 1px;
}

strong {
}

li {
	list-style-type: none;
}




/* ==============================================
 ユーティリティ
=============================================== */
/* フロート回り込み解除
----------------------------------------------- */
.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: ".";
}
.clearfix {
	display: block; /* for IE8 */
}
.clear {
    clear: both;
}






/*リンク画像を半透明にする*/
a img.linkimg
{
	background:none!important;
}

a:hover img.linkimg
{
	opacity:0.6;
	filter:alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	background:none!important;
} 


/*余白*/
.pt_50 {
	padding-top:50px;
}



