@charset "UTF-8";
/* base.css */

html {
  overflow-y: scroll;
 }
  


body{
	color: #512b18;
	font-size: 13px;
	height:auto;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	letter-spacing: 0.03em;
	line-height: 1.48;
	word-wrap: break-word;
	word-break: normal;

}



*{
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}






/* link
   ========================================================================== */

a,
a:link,
a:visited{
	text-decoration:none;
    vertical-align:baseline;
    color: inherit;
}


a {
	-moz-transition: 0.2s ease-in ;
	-webkit-transition: 0.2s ease-in ;
	-o-transition: 0.2s ease-in ;
	-ms-transition: 0.2s ease-in ;
}


a:hover {
	opacity: 0.5;
}

a.nohover:hover {
	opacity: 1;
}






/* float
   ========================================================================== */
.fr {
  float: right;
}

.fl {
  float: left;
}



/* text
   ========================================================================== */
.texl {
	text-align: left;
}

.texc {
	text-align: center;
}

.texr {
	text-align: right;
}



/* clearfix
   ========================================================================== */
.clr {
	/zoom : 1;
}
.clr:after {
	content : ' ';
	display : block;
	clear : both;
	height:0;
}
.clearboth{
	clear: both !important;
}


