@charset "UTF-8";

html,
body {
	height: 100%;
	background: #000;
}

img {
	vertical-align: top;
}

.bg {
    width: 100%;
    height: 100%;
    position: relative;
	display: flex;
}
.bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.bg main {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	line-height: 1;
}

.bg main p {
	position: absolute;
	top: 210px;
	left: 0;
	width: 100%;
	text-align: center;
}

.bg main h1 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	text-align: center;
	margin-top: 100px;
}

.bg main address {
	position: absolute;
	bottom: 40px;
	left: 85px;
}

.bg main ul {
	position: absolute;
	bottom: 40px;
	right: 85px;
}

@media screen and (max-width:767px) {

	.bg main p {
		top: 175px;
	}
	
	.bg main p img {
		width: 290px;
		height: 35px;
	}

	.bg main h1 {
		margin-top: 80px;
	}
	
	.bg main h1 img {
		width: 196px;
		height: 40px;
	}

	.bg main address {
		position: absolute;
		bottom: 20px;
		left: 50%;
		text-align: center;
		width: 310px;
		margin-left: -155px;
	}
	
	.bg main address br {
		display: none;
	}
	
	.bg main address img {
		width: auto;
		height: 10px;
	}
	
	.bg main address img:first-child {
		margin-right: 5px;
	}

	.bg main ul {
		position: absolute;
		bottom: 50px;
		right: 50%;
		margin-right: -155px;
		width: 310px;
		text-align: right;
	}	
	
	.bg main ul li {
		height: 10px;
	}	
	.bg main ul img {
		width: auto;
		height: 10px;
		vertical-align: top;
	}

}