@charset "utf-8";

/*========= レイアウトのためのCSS ===============*/

#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a {
    color: #333;
}

/*========= particle js を描画するエリア設定 ===============*/


#confetti {
    margin-top: 40px;
    height: 100%;
}

#main-logo {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    text-align: center;
}

#main-logo img {
    width: 80%;
    margin: 2% 0 0 0;
}

#particles-js {
    position: absolute;
    /*描画固定*/
    z-index: 2;
    width: 100%;
    height: 100%;
}

#wrapper {
    position: relative;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 1;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 103%;
}

#wrapper2 {
    position: absolute;
    /*描画を#particles-jsよりも上にするためposition:relative;を指定*/
    z-index: 2;
    /*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
    width: 100%;
    height: 100%;
}

#wrapper img {
    width: 100%;
}