@font-face {
   font-family: 'Roboto Slab';
   src: url('font/RobotoSlab-VariableFont_wght.ttf') format("truetype");
}

.logo img{
	width: 100px;
	height: auto;
	margin: auto;
}

video{
	width: 100%;
	
}

a {
  color: black;
  text-decoration: none;
}

h1{
	text-align: center;
	font-size: 40px;
	font-family: 'Robot Slab', serif;
	font-weight: 1px;
	line-height: 1.2;
	letter-spacing: 1px;
}
h1 span{
	font-size: 15px;
	text-align: center;
}

h2{
	padding-top: 40px;
	font-family: 'Robot Slab', serif;
	font-size: 30px;
	text-align: center;
}

h2 rt {
	font-size: 5px;
	font-family: 'Robot Slab', serif;
}

table{
	margin-right: auto;
	margin-left: auto;
}

rt{
	font-size: 3px;
	font-family: 'Robot Slab', serif;

}

td,th{
	border-bottom: 1px solid  #000000;
}

h3{
	padding-top: 30px;
	font-family: 'Robot Slab', serif;
	font-size: 20px;
	text-align: center;
}

table tr td img{
	width: 350px;
	height: auto;
}

.brand-img {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}
.brand-img img {
  height: auto;
  transition: transform .6s ease;/* ゆっくり変化させる */
  width: 100%;
}
.brand-img:hover img {
  transform: scale(1.1);/* 拡大 */
}



.globalNavi li{
  padding-bottom: 5px;
  position: relative;
}
.globalNavi li::before {
  background: #ff0000;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 3);
  transition: transform .4s;
}
.globalNavi li:hover::before {
  transform-origin:top;
  transform: scale(1, 1);
}