@charset "utf-8";

/* 水泡コンテナ */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

/* 水泡の基本スタイル */
.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0;
    animation: rise linear infinite;
}

/* 水泡の上昇アニメーション */
@keyframes rise {
    0% {
        bottom: -100px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        bottom: 100vh;
        opacity: 0;
    }
}

/* 水泡のサイズバリエーション */
.bubble.small {
    width: 8px;
    height: 8px;
}

.bubble.medium {
    width: 15px;
    height: 15px;
}

.bubble.large {
    width: 25px;
    height: 25px;
}

/* 速度バリエーション（アニメーション時間） */
.bubble.speed-1 {
    animation-duration: 8s;
}

.bubble.speed-2 {
    animation-duration: 10s;
}

.bubble.speed-3 {
    animation-duration: 12s;
}

.bubble.speed-4 {
    animation-duration: 14s;
}

.bubble.speed-5 {
    animation-duration: 16s;
}

/* 不透明度バリエーション */
.bubble.opacity-1 {
    background: rgba(255, 255, 255, 0.3);
}

.bubble.opacity-2 {
    background: rgba(255, 255, 255, 0.4);
}

.bubble.opacity-3 {
    background: rgba(255, 255, 255, 0.5);
}

.bubble.opacity-4 {
    background: rgba(255, 255, 255, 0.6);
}