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

/* 前提 */

body{
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #034A96;
}

/* 全画面表示CSS */

.areaMapWrap01 {
width:100%;
background: url(../jpg/booth.jpg) left top no-repeat;
background-size: 100% auto;
}

.areaMap01 {
    width: 100%;
    height: auto;
}

/* header 


.header {
margin: 0;
padding: 0;
position: absolute;
z-index: 10;
width: 100%;
height: auto;
animation-name: fadein;
animation-duration: 3s;
}

@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(-30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
  
.header h1 img {
  width: 100%;
  height: auto;
}

.header .HPLink {
	position: absolute;
	top: 3vh;
	left: 83vw;
	display: block;
	width: 15vw;
	height: 8vh;
	content: "";
	background-image:url("/cn/Exhibition/img/EXEDYlogo_white.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

*/

/* footer */

footer {
  background-color: #034A96;
  margin: 0;
  padding: 20px;
  min-height: 100%;
}

footer .copyright {
  color: #fff;
  text-align: left;
  float: left;
  clear: both;
}

footer ul.footer_menu li a {
  color:#fff;
  float: right;
  margin: 0 10px;
}

footer ul.footer_menu li a:hover {
  color: #99ccff;
  transition: 0.5s;
}

