@charset "utf-8";

html {
	background: #000;
}

html body {
	font-family: 'Oswald', sans-serif;
}

html body * {
	box-sizing: border-box;
}

header {
	position: relative;
	z-index: 10;
	padding: 30px;
	background: rgba(0,0,0,0.5);
}

header h1 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	font-style: italic;
	letter-spacing: -0.04em;
}

.background {
	opacity: 0.4;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.background * {
	width: 100vw;
	height: 100vh;
}

.background::after {
	opacity: 0.2;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: transparent url('../img/pattern.png') repeat 0 0;
}

.background .image {
	width: 100%;
	height: 100%;
}

.background .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 8.0s transform linear;
}

.background .image.slick-current img {
	transform: scale(1.1);
}

#mainContents {
	width: 100%;
	max-width: 980px;
	position: relative;
	z-index: 10;
	margin: 0 auto;
	padding: 50px 30px 0;
}

#mainContents p {
	text-align: center;
	font-size: 32px;
	letter-spacing: 0.05em;
	color: #fff;
}

.video {
	width: 100%;
	max-width: 980px;
	margin: 0 auto 50px;
}

.video iframe {
	width: 100%;
}

/*---------------------- responsive styles -----------------------*/
@media screen and (max-width:768px) {
	.video iframe {
		height: 50vw;
	}
}

/*---------------------- responsive styles -----------------------*/
@media screen and (max-width:480px) {
	header {
		padding: 15px;
	}
	
	header h1 {
		font-size: 6.0vw;
	}

	.background::after {
		opacity: 0.5;
		background-size: 2px 2px;
	}

	#mainContents p {
		font-size: 5.0vw;
	}

	
}