/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
    z-index: 1;
    position: relative;
    height: 100%;
    /* コンテナの高さ */
    width: 100%;
    /* コンテナの横幅 */
    overflow-x: hidden;
    overflow-y: hidden;
    /* コンテナからはみ出した要素を隠す */
}

/* 桜の花びらのスタイル */
.petal {
  z-index: -5;
    position: absolute;
    background-color: #ffc0cb;
    /* 花びらの色 */
    border-radius: 150% 0 150% 0;
    animation: animate-petal 35s linear;
}
/* 30変えた */

.petal::after {
    content: "";
    position: absolute;
    top: -14%;
    left: -10%;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffc0cb;
    border-radius: 150% 0 150% 0;
    transform: rotate(15deg);
}

/* 花びらが降るアニメーション */
@keyframes animate-petal {
    0% {
        top: 0;
        opacity: 0;
        transform: rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 100%;
        transform: rotate(1000deg);
    }
}

.logo-box{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.logo-resize{
    width: 450px;
}
.title-container img{
    z-index: 2;
}
.logo-box img{
    z-index: 2;
}





