@charset "UTF-8";

/* *******************************************************************************************
* 
*	Base
*
******************************************************************************************* */

html,body{
	width: 100%;
	height: 100%;
}
body, div, form, input, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, hr{
	margin: 0;
	padding: 0;
}
article, aside, footer, header, nav, section {
	margin: 0;
	padding: 0;
	display: block;
}
body{
    font-family: "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ", meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	color: #000;
	font-size: 16px;
	line-height: 1;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
a{
	color: inherit;
}
a:link, a:visited{
	text-decoration:none;
}
img{
	vertical-align: top;
	border:none;
}
ul{
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
.clear{
	overflow: hidden;
	_zoom:1;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.fit{
	width: 100%;
	height: auto;
}
.links{
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}
.links:hover{
	opacity: .6;
}
.transition{
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s;
}

@media screen and (max-width : 768px){
	.links{
		-webkit-transition: none 0s;
		-moz-transition: none 0s;
		-ms-transition: none 0s;
		transition: none 0s;
	}
	.links:hover{
		opacity: 1;
	}
}

