/* about_us/index.html用のcssファイル */

.background{
    position: fixed;
    top: 0;
    z-index: -100;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
}
.background-img{
    position: fixed;
    top: 0;
    z-index: -200;
}


.detail-scription{
    font-family: "Noto Serif JP", serif;
    margin-bottom: 5vh;
}

/* 偶数段落を右寄せするため */
.script-block:nth-child(even){
    margin-left: 35vw;
}

.script-block{
    margin: 8vw 5vw;
    width: 55vw;
}
.script-content{
    margin-left: 3vw;
    font-size: 4vmin;
    font-weight: bold;
}

.detail-scription button{
    font: 1.5em "Fira Sans", sans-serif;
    background-color: lightgray;
    color: black;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    width: 4em;
    border-radius: 0.3em;
    border: black solid 1px; 
    padding: 0;
}
.detail-scription button a{
    width: 100%;
}

@media screen and (max-width:980px) {
    .detail-scription{
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
    .script-block{
        margin: 5vw auto;
        width: 80vw;
    }
    .script-block:nth-child(even){
        margin: 5vw auto;
    }
    .detail-scription button{
        font-size: 4vmin;
    }
}