@charset "utf-8";

/*----------共通----------*/

body {
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 16px;
	line-height: 1.9;
	color: #000;
	margin: 0;
	padding: 0;
	width: 100%;
	background: url("../images/bg.png") repeat center top #000;
}
	@media screen and (max-width: 619px){
		body {
			background: url("../images/bg.png") repeat center top / 66px auto #000;
		}
	}

p,img,dl,dt,dd,ul,li,h1,h2,h3 {
	margin: 0;
	padding: 0;
}
img {
	border: 0;
}
ul,li {
	list-style-type: none;
}
a:link,
a:visited {
	color: #0012e6;
	font-weight: bold;
}
a:hover,
a:active {
	text-decoration: none;
	opacity: 0.7;
	transition: 0.3s;
}
.f_clr {
    clear: both;
    margin: 0;
    padding: 0;
    width: auto;
}
/*clearfix hack*/
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */
	
/*----------wraper----------*/

.wholeBox {
	width: 1300px;
	margin: 0 auto;
}
	@media screen and (max-width: 619px){
		.wholeBox {
			width: 100%;
			margin: 0;
		}
	}

/*----------全体----------*/

#container {
	width: 980px;
	float: left;
	position: relative;
}
	@media screen and (max-width: 619px){
		#container {
			width: 100%;
			float: none;
		}
	}
	
/*----------メニュー----------*/

#navi {
	position: absolute;
	width: 260px;
	top: 325px;
}
#navi ul li {
	margin-bottom: 13px;
	font-size: 0;
}
#navi ul li a:hover {
	opacity: 1;
}
#navi ul li a:hover img {
	animation: swing 0.4s;
}
	@media screen and (max-width: 619px){
		#navi {
			position: static;
			width: auto;
		}
		#navi ul {
			display: flex;
			margin: 0 3% 5%;
			justify-content: space-between;
			flex-wrap: wrap;
		}
		#navi ul li {
			width: 49%;
			margin-bottom: 1%;
		}
		#navi ul li a:hover img {
			animation: swing 0;
		}
	}
	