@charset "UTF-8";
/* CSS Document */
html{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	
font-size:62.5%;
-webkit-text-size-adjust: 100%;
}


/* Layout
=======================================*/

#container{
}

/* Link
=======================================*/

a:link{	
-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

a:visited{
}

a:hover{
	opacity:0.7;
}

body a:hover{
  text-decoration: none;
}

/* Header
=======================================*/

header{
}

/* Navigation
=======================================*/

nav{
}

/* Footer
=======================================*/

footer{
}




/* CSS3
=======================================*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;
}

/* 汎用
=======================================*/

.flR {
	float: right;
}
.flL {
	float: left;
}
.tC {
	text-align: center;
}
.tR {
	text-align: right;
}


