
/* ストライプ背景　*/
.stripe{
    
    display: grid;
    background:repeating-linear-gradient(90deg, #d5f0e8 0, #d5f0e8 15px, #ffffff 0px, #ffffff 54px);
    margin-top: -200px;
}







/* 文字の背景の白　*/
div.bg-rgba p {margin: 0;}

div.bg-rgba {
    background-color:rgba(255,255,255,0.6);
    width: 500px;
    height: 200px;
    margin: auto;
    text-align: center;
}

div.bg-rgba p {margin: 0;}



/* ストライプ区切りの白　*/
div.bg-aaa {
    background-color:rgb(255 255 255 / 54%);
    width: 1000px;
    
    margin: auto;
    text-align: center;
}

/* ストライプ区切りのベタ白　*/
div.bg-white {
    background-color:rgb(255 255 255);
    width: 1200px;

    margin: auto;
    text-align: center;
}



