footer {
	width: 100%;
	height: 202px;
	position: fixed;
	bottom: 0;
	z-index: 0;
	background-color: #30373f;
	text-align: center;
}

body {
	font-family: 'Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
	margin: 0;
	padding: 0;
	display: block;
    position: relative;
    z-index: 1;
	background-color: #000;
	
}

footer nav{
  float: right;
  position:relative;
	font-size: 15px;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
}

footer li{
  display: inline-block;
  margin-right: 45px;
}

footer a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: white;
}

footer a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #E61717;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
footer a:hover::after {
  transform: scale(1, 1);
}
footer nav .active a{
color: #f9d8ae;
}
footer #fimg{
	background: url(../img/rsc.png);
  background-repeat: repeat-x;
	background-position: center center;
	width: 100%;
	height: auto;
	position: absolute;
	padding-bottom: 75px;
	bottom: 0;
	opacity: 0.2;
}
footer #logo{
	background: url(../img/logo.png);
	background-repeat: no-repeat;
	position: absolute;
	margin-left: 20px;
	padding-top: 180px;
	width: 100px;
	height: auto;
	bottom: 0;
	opacity: 0.7;
}
@media screen and (max-width: 1080px){
	footer{
		height: 0px !important;
		display:none !important;
	}
	body{
		margin-bottom: 0px !important;
	}
	.Content{
		display: none !important;
	}
}
@media screen and (max-width: 768px){
	footer nav{
		display: none;
	}
	footer #fimg{
		display: none;
	}
	footer #logo{
		display: none;
	}
	footer{
		height: 0;
	}
	.sc2{
		display: none;
	}

}
/*IE10.11 Hack----------------------------*/
@media all and (-ms-high-contrast:none) {
	footer {
		width: 100%;
		height: 202px;
		position: fixed;
		bottom: 0;
		z-index: 0;
		background-color: #30373f;
		text-align: center;
	  display: none;
	}
}