/* 共通cssには以下のみ記載 */

/* PCサイズ */
@media screen and (min-width:1021px) { 
    /*　画面サイズが1021pxからはここを読み込む　*/

/* bodyの構造と色 */

body {
    min-width: 0;
    min-height: 0;
}


/* マージン */
.content_wrap_rd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
}


/* ボタン */
.button_normal_rd {
    display: flex;
    flex: 1;
    justify-content: center;
    width: 30%;
    margin: 0 auto;
}

.button_normal_rd button {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    background-color: #000;
    border-radius: 15px;
    border-color: #000;
    border-style: none;
    width: 100%;
    height: auto;
    padding: 10px;
}

.button_normal_rd a {
    font-size: 20px;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}


/* フッター */
.copyright {
    position: fixed;
    bottom: 0;
    color: #FFF;
    text-align: center;
    font-weight: lighter;
    letter-spacing: 2px;
    background-color: rgba(0 0 0 / 100%);
    max-width: 2600px;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 999;
}

}





/* SPサイズ */
@media screen and (max-width:1020px) { 
    /*　画面サイズが1020pxまではここを読み込む　*/

    body {
        min-width: 0;
        min-height: 0;
    }

    /* マージン */
    .content_wrap_rd {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 150px;
}

    /* ボタン */
    .button_normal_rd {
        display: flex;
        flex: 1;
        justify-content: center;
        width: 70%;
        margin: 0 auto;
    }
    
    .button_normal_rd button {
        display: flex;
        flex: 1;
        flex-direction: row;
        justify-content: center;
        background-color: #000;
        border-radius: 15px;
        border-color: #000;
        border-style: none;
        width: 100%;
        height: auto;
        padding: 10px;
    }
    
    .button_normal_rd a {
        font-size: 20px;
        color: #FFF;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
    }


    /* フッター */
    .copyright {
        position: fixed;
        bottom: 0;
        color: #FFF;
        text-align: center;
        font-weight: lighter;
        letter-spacing: 2px;
        background-color: rgba(0 0 0 / 100%);
        width: 100%;
        padding: 1.5rem 0;
        z-index: 999;
    }

}