@charset "UTF-8";

/* 共通
========================================================= */

/* フォントスタイル
----------------------------------------------------*/
html{
	font-size: 62.5%; /* 1em = 10px */
}
body{
	font-size:13px;
	font-size:1.3rem;
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	line-height:1.7;
	color:#222;
}

/* for IE6, 7 */
.ie6 body,.ie6 input,.ie6 textarea,
.ie7 body,.ie7 input,.ie7 textarea {
	font-family: "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

small{
	font-size:11px;
	font-size:1.1rem;
}

/* ベースリンクカラー
----------------------------------------------------*/
a:link{
	text-decoration:underline;
	color: #0044cc;
}
a:visited{
	color: #a80000;
}
a:hover{
	color:#000;
}
a:active{
}

/* 角丸
----------------------------------------------------*/
.border-radius{
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	border-radius: 10px 10px 10px 10px;
}

/* box-shadow
----------------------------------------------------*/
.box-shadow{
	-webkit-box-shadow: 0px 0px 5px rgba(100%,100%,100%,.8);
	-moz-box-shadow: 0px 0px 5px rgba(100%,100%,100%,.8);
	box-shadow: 0px 0px 5px rgba(100%,100%,100%,.8);
}

/* 透明
----------------------------------------------------*/
.alpha{
	filter: alpha(opacity=30);
	-moz-opacity:0.30;
	opacity:0.30;
}

/* clerfix -micro clearfix
----------------------------------------------------*/
.inner:before,
.inner:after,
.cf:before,
.cf:after{
    content:"";
    display:block;
    overflow:hidden;
}
.inner:after,
.cf:after {
    clear:both;
}
 
/* For IE 6/7 (trigger hasLayout) */
.inner,
.cf {
    zoom:1;
}

/* 画像回りこみ
----------------------------------------------------*/
.imgR {  float: right;  margin: 0 0 13px 13px;}
.imgL {  float: left;  margin: 0 13px 13px 0;}
.imgTXT {
	overflow:hidden;  /* テキスト回りこみなし */
}

/* テキスト行位置
----------------------------------------------------*/
.tC{  text-align: center;}
.tR {  text-align: right;}

/*  非表示
----------------------------------------------------*/
.nodisplay{
	display: none;
}

/*  画像置換
----------------------------------------------------*/
.txt-hide{
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.ie6 .txt-hide{	text-indent: -9999px;}

/*  ハイライトカラー
----------------------------------------------------*/
/*
*::selection {	background: #333;	color: #fff;	text-shadow: none;}
*::-moz-selection {	background: #333;	color: #fff;	text-shadow: none;}
*/