#bubble-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px; /* 初期位置 */
  border-radius: 50%;
  background-color: transparent; /* 背景色を透明に */
}
