body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

#ocean {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #005f80, #001d2e); /* 深海風の背景 */
  overflow: hidden;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明のオーバーレイ */
  display: none; /* 最初は非表示 */
}

#content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1000;
}

h1 {
  font-size: 3rem;
}

button {
  font-size: 2rem;
  padding: 15px 30px;
  background-color: #ff7f50; /* オレンジ色のボタン */
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff6347; /* ホバー時の色 */
}

#bubbleContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 気泡の下でボタンがクリックできるようにするため */
  z-index: 500;
}

.bubble {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none; /* マウスイベントを透過 */
  animation: bubbleRise linear infinite;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}




