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

html{
	font-size:62.5%;/*16px×62.5%=10px*/
}
*{
	box-sizing: border-box;
}
.sp{
	display: none;
}
body{
	font-size: 1.6rem;
}
#Page{
	position: relative;
	height: 100vh;
	padding: 10vh 10vw;	
}

/*---------------------------
 *	position
 --------------------------*/

.left{
	position: absolute;
	z-index: 5;
	top: 13vh;
	left: 11vw;
}
.info{
	position: absolute;
	z-index: 10;
	bottom: 13vh;
	left: 0;
	padding: 2vw 12vw 2vw 11vw;
	color: #ffffff;
	background: rgba(157,157,157,0.3); 
}
.right{
	position: absolute;
	top: 13vh;
	right: 11vw;
}
.serif{
	font-family: 'Noto Serif JP', serif;
}

/*---------------------------
 *	left
 --------------------------*/

.copy{
	margin-bottom: 9vh;
}
dl{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: center;
	padding-bottom: 14px;
}
dl:first-child{
	padding-left: 120px;
}
dl:nth-child(2){
	padding-left: 60px;
}
dl dd{
	font-size: 2.8rem;
	color: #fff;
	padding-right: 6px;
}
dl dt{
	font-family: 'Lato', sans-serif;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 1.6px;
}
dl dt span{
	color: #35C5FF;
}
.logo{
	margin-bottom: 5vh;
}
.subtitle{
	font-size: 1.8rem;
	color: #FFFFFF;
	margin-bottom: 7vh;
}
.subtitle span{
	color: #A9ECFF;
}

/*---------------------------
 *	info
 --------------------------*/

.company{
	font-size: 1.6rem;
	padding-bottom: 15px;
}
.info_text{
	padding-bottom: 10px;
}
.mail{
	letter-spacing: 0.1em;
}

/*---------------------------
 *	right
 --------------------------*/

li{
	padding-bottom: 2vw;
}
li p{
	text-align: right;
}
.nav_en{
	font-family: 'Lato', sans-serif;
	font-size: 1.6rem;
	letter-spacing: 2px;
	color:#fff;
	padding-bottom: 0.8vw;
}
.nav_ja{
	font-size: 1.3rem;
	color: #fff;
}
.nav_ja::after{
	content: '';
  	display: block;
  	height: 1px;
  	width: 0%;
  	background: #ff1787;
  	position: absolute;
  	bottom: 0;
  	left: 10%;
  	transition: .3s;
}


/*---------------------------
 *	video
 --------------------------*/

#video-area{
	position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
#video{
	position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.box{
	opacity: 0;
}
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
    	opacity: 0;
		transform: translateY(70px);
	}
	to {
    	opacity: 1;
		transform: translateY(0);
	}
}
.delay-time01{
	animation-delay: 0.5s;
}
.delay-time02{
	animation-delay: 0.8s;
}
.delay-time03{
	animation-delay: 1s;
}
.delay-time04{
	animation-delay: 1.3s;
}

@media screen and  (max-width:750px){
	
	.sp{
		display: block;
	}
	.left{
		top: 10vh;
		left: 4vw;
	}
	.info{
		padding: 3vw 5vw 3vw 4vw;
	}
	.right{
		top: 11vh;
		right: 4vw;
	}

	/*---------------------------
	 *	left
	 --------------------------*/

	.copy{
		margin-bottom: 10vh;
	}
	dl{
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		align-items: center;
		padding-bottom: 14px;
	}
	dl:first-child{
		padding-left: 60px;
	}
	dl:nth-child(2){
		padding-left: 30px;
	}
	dl dd{
		font-size: 2.0rem;
		padding-right: 6px;
	}
	dl dt{
		font-size: 1.3rem;
		letter-spacing: 0.87px;
	}
	.logo{
		margin-bottom: 5vh;
	}
	.logo img{
		width: 55%;	
	}
	.subtitle{
		font-size: 1.3rem;
	}

	/*---------------------------
	 *	info
	 --------------------------*/

	.company{
		font-size: 1.3rem;
		padding-bottom: 13px;
	}
	.info_text{
		font-size: 1.3rem;
		padding-bottom: 10px;
	}
	.mail{
		font-size: 1.3rem;
	}	

	/*---------------------------
	 *	right
	 --------------------------*/

	li{
		padding-bottom: 5vh;
	}
	.nav_en{
		font-size: 1.3rem;
		letter-spacing: 1.75px;
		padding-bottom: 1vh;
	}
	.nav_ja{
		font-size: 1.2rem;
	}	
	
}
