body {
    background: #fff;
}

.top_baner {
    position: relative;
}

.top_baner img {
    width: 100%;
    height: auto;
}

.top_baner_text_area {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    margin: 0;
}


#site-header {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    position: fixed;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    z-index: 100;
}

#site-body {
    background: aliceblue;
    color: rgb(0, 0, 0);
    display: flex;
    padding: 60px 5px 50px;
    justify-content: space-between;
    width: 100%;
    z-index: 0;
}

.site-header-title {
    padding: 10px;
    background: #E5F9EE;
    color: green;
    text-align: center;
}

#site-footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    color: #000;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: flex-end;
}

.title_label {
    font-weight: bold;
}

.quetion-card {
    margin: 5px;
}

.custom-file {
    overflow: hidden;
}

.custom-file-label {
    white-space: nowrap;
}

.list_err_input {
    background-color: pink;
}

#confirm_msg {
    height: 120px;
    color: #000;
    background-color: #fff;
}

.footer_copy {
    margin: 0 auto;
    text-align: center;
    font-size: small;
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;

}

#payment_style_inf {
    padding: 10px;
    font-size: small;
    background-color: antiquewhite;
}

.alert {
    padding: 0.5rem;
    font-size: small;
}


td {
    vertical-align: middle;
    padding: 15px;
}

.a_btn {
    display: block;
    width: 100%;
    padding: 5px 0;
    margin: auto;
    background: #73c800;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 5px;
}

.a_btn:hover {
    background: #225f0d;
}

.b_btn {
    /*display: block;
    width: 100%;*/
    padding: 5px 20px;
    background: #4969f7;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
}

.b_btn:hover {
    background: #041356;
}

a.c_btn {
    color: whitesmoke;
}

.c_btn {
    display: block;
    width: 100%;
    padding: 5px 0;
    margin: 5px 0;
    background: #2f878a;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
}

.c_btn:hover {
    background: #b0f1f3;
    color: #123536;
}

.container {
    width: 650px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    border-color: lightgrey;
    border-style: solid;
    background-color: white;
}

.r_row {
    display: flex;
    width: 100%;
    margin: 0;
}

th.tb_1 {
    padding: 15px;
    width: 20%;
    background-color: #dcf0c3;
    text-align: center;
    border-top: #23A53B solid;
    border-width: 0.2px;
}

td.tb_1 {
    padding: 15px;
    text-align: left;
    border-top: #23A53B solid;
    border-width: 0.2px;
    width:80%;
}

.br-sp {
    display: none;
}

.txt_shadow {
    text-shadow:
        0.5px 0.5px 0 #fff,
        -0.5px 0.5px 0 #fff,
        -0.5px -0.5px 0 #fff,
        0.5px -0.5px 0 #fff;
}




.pc {
    display: block;
    width: 100%;
}

.sp {
    display: none;
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
        width: 100%;
    }

    #site-header {
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        /*position: fixed;*/
        justify-content: space-between;
        width: 100%;
        /*top: 5px;*/
        height: 50px;
    }

    #site-body {
        background: aliceblue;
        color: rgb(0, 0, 0);
        display: flex;
        padding: 60px 5px 80px;
        justify-content: space-between;
        width: 100%;
    }

    th.tb_1 {
        padding: 0 5px;
        width: 100%;
        background-color: #dcf0c3;
        text-align: center;
        border: #EEE solid;
        border-width: 0.2px;
        display: block;
        border-collapse: collapse;
    }

    td.tb_1 {
        padding: 15px;
        width: 100%;
        text-align: left;
        border: #EEE solid;
        border-width: 0.2px;
        display: block;
        border-collapse: collapse;
    }

    .br-sp {
        display: block;
    }

}