@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", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	color: #000;
	font-size: 14px;
	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;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.fit{
	width: 100%;
	height: auto;
}
.links,
.transition{
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.transition-long{
	-webkit-transition: all 1.5s ease;
	transition: all 1.5s ease;
}
.links:hover{
	opacity: .6;
}
.lineLink{
	text-decoration: underline !important;
}

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

