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

/*-----------------------------------------
reset
-----------------------------------------*/

/*--ブラウザのデフォルトマージンをリセット--*/
* { margin: 0px; padding: 0px; }

/*--スクロールバーを常に表示--*/
html { margin-bottom:1px; height:100%;}
html {overflow-x:hidden;}
@media screen and (max-width: 949px){html {overflow-x:auto;}}

/*--リンク時の枠点線を非表示--*/
a:focus { overflow: hidden;}

/*--イメージの枠線を非表示--*/
img { border: 0;}

/*--区切り線のデフォルトをリセット--*/
hr { display:none;}

/*--リストのデフォルトをリセット--*/
ul, li, dl, dt, dd { list-style: none;}

/*-----------------------------------------
float
-----------------------------------------*/

/*--要素を右へ配置--*/
.right { float:right;}

/*--要素を左へ配置--*/
.left { float:left;}

/*--<後述>回り込みをリセット--*/
.cl { clear: both;}

/*--<先述>回り込みをリセット/モダンブラウザ--*/
.cf:before, .cf:after { content:""; display:table; }
.cf:after { clear:both; }

/*--<先述>回り込みをリセット/IE 6・7--*/
.cf { zoom:1; }


/*-----------------------------------------
text/FONT
-----------------------------------------*/

/*--基本のフォント設定--*/
body {
	font-family: AquaKana, "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Sans-serif;
	/*font-size: 100.01%;*/
	font-size: 75%;
	color:#666666;
	line-height:1.3em;
}

/*--p 行間--*/
p { line-height: 125%;}

/*--em 強調 設定--*/
em { font-style: normal; font-weight: bold; color: #A44A9F;}

/*--strong 強調 設定--*/
strong { line-height: 135%; letter-spacing: 0px;}

/*--見出し要素のリセット--*/
h1,h2,h3,h4,h5 { font-size: 100%;}


/*-----------------------------------------
.wrapper
-----------------------------------------*/

.wrapper{
	text-align: left;
}
