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

/* 前提 */

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

/* 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: 2vh;
	left: 2vw;
	display: block;
	width: 12vw;
	height: 8vh;
	content: "";
	background-image:url("/ja/Exhibition/img/EXEDYlogo_RGB.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* TopSection */

.TopSection {
	border: 1px solid #034A96;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
	margin: 20px 40px 40px;
	padding: 15px;
	opacity: 0.8;
}


/* container */

.tiles {
	padding-top: 14vh;
	background-image: url("/ja/Exhibition/img/BoothBack.jpg");
	background-size:auto;
	background-position: center;
	background-attachment: fixed;
}

.booth {
	background-image: url("/ja/Exhibition/img/BoothBack.jpg");	
	background-size: cover;
}

.town {
	background-image: url("/ja/Exhibition/img/TownBack.jpg");
	background-size: cover;
}

.graphic {
	background-image: url("/ja/Exhibition/img/GraphicBack.jpg");
	background-size: cover;
}

.tiles h2.tp_lv3_02 {
	margin: 20px;
}

.tiles .tile {
  display: inline-block;
  margin: 5px 0px 15px 30px;
  text-align: left;
  opacity: .99;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 51, 153, 0.05);
}

.tiles .tile:before {
  content: '';
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 51, 204, 0.7) 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 204, 0.7) 100%);
  width: 100%;
  height: 80%;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-transition-property: top, opacity;
          transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.tiles .tile img {
  display: block;
  max-width: 100%;
  border: 2px solid #ddd;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tiles .tile .details {
  font-size: 16px;
  padding: 20px;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.tiles .tile .details span {
  display: block;
  opacity: 0;
  position: relative;
  top: 100px;
  -webkit-transition-property: top, opacity;
          transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.tiles .tile .details .title {
  line-height: 1.4;
  font-weight: 600;
  font-size: 14.5px;
}
.tiles .tile .details .info {
  line-height: 1.3;
  margin-top: 5px;
  font-size: 11.5px;
}
.tiles .tile:hover:before,
.tiles .tile:hover span {
  opacity: 1;
}
.tiles .tile:hover:before {
  top: 20%;
}
.tiles .tile:hover span {
  top: 0;
}
.tiles .tile:hover .title {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.tiles .tile:hover .info {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.tiles span.caption {
	display: none;
}

/* 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;
}


@media screen and (max-width: 750px) {
	
.header .HPLink {
	top: 0vh;
	left: 1vw;
}

.TopSection {
	border: 1px solid #034A96;
	background-color: #fff;
	position: relative;
	margin: -30px 40px 40px;
	padding: 15px;
	opacity: 0.8;
}
	
.TopSection .tp_txt {
	font-size: 11px;
}
	
.tiles {
	margin: 0 auto;
	text-align: center;
	background-size: cover;

}
	
.booth {
	background-image: url("/ja/Exhibition/img/BoothBack.jpg");	

	background-size: 350%;
}
	
.tiles .tile {
	margin: 0 5px 20px 5px;
	width: 170px;
}
	
.header .HPLink {
	position: absolute;
	top: 0.3vh;
	left: 2vw;
	display: block;
	width: 25vw;
	height: 8vh;
}


	
.tiles span.caption {
	display: block;
	margin-top: 5px;
	font-weight: bold;
	text-align: center;
	line-height: 120%;
}


}