@charset "utf-8";
/* CSS Document */

header{
	width:100%;
	/*position:fixed;*/
	z-index:99;
	font-family: 'Montserrat', sans-serif;
	height: 75px;
	display:flex;
	align-items:center;
	top: 0;
	background: #000;
	/*background: rgba(0,0,0,0.9);*/
}

header #navi{
	width: 100%;
	margin: auto;
}

/*header h1{
	width:23%;
	max-width:140px;
}*/

header ul{
	max-width: 1200px;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-around;
	align-items:center;
	margin: auto;
}

header ul li{
	letter-spacing:1px;
	font-size: 13px;
	font-weight: 600;
}

header ul li img{
	max-width: 80px;
}

header ul li i{
	font-size: 22px;
}

header ul li a{
	color: #fff;
}

/* 固定 */
.fixed {
    position: fixed;
    top: 0;
    padding: 25px 0;
    width: 100%;
    z-index: 1000;
	background: #000;
	/*background: rgba(0,0,0,0.9);*/
}







/*
フッターCSS
------------------------------------------------------------------------------------*/

#footer{
	background: #f6f6f6;
	padding: 80px 0 30px;
}

#footer .inner{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	max-width: 1000px;
	margin: auto;
	letter-spacing: 2px;
}

#footer ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: end;
	font-size: 20px;
	font-weight: 600;
}

#footer ul li{
	font-size: 16px;
	border-right: 1px solid #000;
	padding-right: 15px;
	margin-left: 15px;
	line-height: 1.2;
}

#footer ul li:last-child{
	border: none;
}

#copyright{
	font-size: 12px;
	margin-top: 15px;
	text-align: right;
	width: 100%;
}


@media only screen and (max-width:560px) { 
	#footer{
		padding-top: 60px;
	}
	
	#footer .inner{
		display: block;
	}
	#footer .inner .f-logo{
		max-width: 80px;
		margin: auto;
	}
	#footer ul{
		display: block;
		margin: 50px auto 20px
	}
	#footer ul li{
		margin: 0 auto 30px;
		border: none;
	}
	#footer ul li i{
		font-size: 30px;
	}
	#copyright{
		margin-top: 40px;
		text-align: center;
	}
}







