.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#video1 {
  opacity: 1; /* 最初に表示される動画 */
}

/* 網掛け（グレー半透明） */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* グレー */
	z-index: 0;
	pointer-events: none;
}

.bg-image {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/bg.jpg') center center / cover no-repeat;
  z-index: -1;
}


/* コンテンツ（ロゴなど） */
.content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding-top: 20vh;
}

.logo {
	width: 200px;
	opacity: 0;
	animation: fadeIn 1s ease-in-out forwards;
}

/* フェードイン効果 */
@keyframes fadeIn {
	to {
		opacity: 1;
	}
}
