@charset "UTF-8";

/* 共通部分 ------------------------- */
html {
	font-size: 100%;
}
body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
	line-height: 1.7;
	color: #000
}
a {
	text-decoration: none;
	color: #000;
}
ul {
	list-style-type: none;
}
.wrapper {
	margin: 0 auto;
	padding: 0 10%;
}

header {
	background-color: #fff;
	opacity: 0.9;
	position: static;
	z-index: 10;
}

.title-container {
	min-height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: static;
}

.video {
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	z-index: -2;
}
video {
	width: 100%;
	position: fixed;
	top: -30px;
	left: 0;
	z-index: -1;
}

.greet {
	display: block;
	height: 31%;
	position: fixed;
	top: 21%;
	right: 100px;
	z-index: 4;
	opacity: 0.925;
}

.contents-container {
	position: fixed;
	bottom: 70px;
	z-index: 5;
	width: 100%;
	height: fit-content;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.music-player {
	width: 75%;
	opacity: 0.8;
}
.music-player iframe {
	display: block;
}

/* ボタン */
.button {
	padding: 0 10px;
	margin: 20px 0 0 20px;
	font-size: 1.375rem;
	background: #fff;
	color: #000;
	opacity: 0.8;
	border-radius: 30px;
	padding: 10px 30px;
}
.button:hover {
	background: rgb(255, 255, 255);
	opacity: 1;
}


/* footer ------------------------- */
footer {
	width: 100%;
	height: 30px;
	text-align: right;
	padding: 0;
	position: fixed;
	bottom: 0;
}
footer p {
	font-size: 0.875rem;
	color: #fff
}