@charset "utf-8";
/* CSS Document */

/* 前提 */

body{
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #034A96;
}

/* 全画面表示CSS */

.areaMapWrap01 {
width:100%;
background: url(/en/Exhibition/img/booth_mt2wpart.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: 2vw;
	display: block;
	width: 15vw;
	height: 8vh;
	content: "";
	background-image:url("/ja/Exhibition/img/EXEDYlogo_RGB.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* returnBtn */

li.returnBtn {
  position: absolute;
	top: 43vw;
	left: 79vw;
	width: 16vw;
	height: 6.15vw;
	z-index: 1;
}

li.returnBtn a img {
	opacity: 0.6;
	-webkit-opacity: 0.6;
}

li.returnBtn a:hover img {
	opacity: 1;
	-webkit-opacity: 1;
  transition: 0.6s;
}

.fadein {
    opacity: 0;
    animation: fadein 0.6s ease forwards;
}

@keyframes fadein {
from {
    opacity: 0;
    transform: translateX(10px);
}
to {
    opacity: 1;
    transform: translateX(0);
}
}

.link01 {animation-delay: 0s;}
.link02 {animation-delay: 0.6s;}
.link03 {animation-delay: 1.2s;}
.link04 {animation-delay: 1.8s;}
.link05 {animation-delay: 2.4s;}
.link06 {animation-delay: 3s;}


/* 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;
}

