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

header {
    width: 100%;
    height:70px;
    z-index: 9999;
    background-color: #F8F8F8;
	position: fixed;
}
header a {
    color:#000;
    text-decoration: none;
}
/*メニュー枠*/
.header-wrap {
    width: 100%;
    height:70px;
    max-width: 1200px;
    border-bottom: 1px #E7E7E7 solid;
	display: flex;
	justify-content: space-between;
	align-items: center;
    margin: 0 auto;
	padding-inline: 20px; 
}
/*ロゴ*/
.logo {
    top:10px;
    left:20px;
    z-index:1001;
	height: 50px;
	width: auto;
}

footer {
    width:100%;
    padding:25px 20px;  
    color:#F4F4F4;
    font-size: 0.8em;
    line-height: 100%;
    background: #0A1027;
	background: -moz-linear-gradient(top, #666, #333);
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));
	background: -o-linear-gradient(top, #666, #333);
}
footer .container {
    width:100%;
    max-width:1200px;
    margin: 0 auto;
}
footer a {
    color:#fff;
    text-decoration: none;
}

/*ロゴ*/
.flogo {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
.flogo {
    margin-bottom: 0;
	margin-right: 30px;
}
footer .container {
    display: flex;
	align-items: center;
}	
}