@charset "UTF-8";
/* CSS Document */
/*20190705form css*/

#content{
}

.form_tbl table {
    width: 100%;
    border: none;
}
.form_tbl th {
    display: block;
/*    width: 100%;*/
    border: none!important;
    background: #ff6e00;
    color: #fff;
    font-size: 16px;
    padding: 2% 0 2% 15px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 1%;
}
.form_tbl td {
    display: block;
    width: 100%;
    border: none!important;
    margin-bottom: 13px;
}
.form_tbl input, select, textarea {
    text-indent: 1em;
    padding: 10px 0;
    width: 100%;
    border-radius: 8px;
}

.form_tbl input.date1 {
    text-indent: 1em;
    padding: 10px 0;
    width: 37%;
    margin-bottom: 10px;
}
.form_tbl input.time1,input.time2 {
    text-indent: 1em;
    padding: 10px 0;
    width: 37%;
}
.form_tbl input, select, textarea {
    border: 1px solid #ddd;
}
.form_tbl input.radio {
    width: inherit;
}
label {
    color: #fff;
}
label span.must {
    color: #4d301e;
    background: #ffc500;
    padding: 2px 10px 0px;
    font-size: 13px;
    margin: 0px 10px 2px; 
    border-radius: 50px;
}
.submitbtn {
    text-align: center;
    margin-top: 20px;
}
input[type=submit] {
    -webkit-appearance: none;
    width: auto !important;
    padding: 15px 30px 12px 12px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    background: linear-gradient(to bottom, #32a23a, #149a11);
    border: solid 1px #32a23a;
    border-radius: 8px;
    box-shadow: 0px 6px 0px 0px #0f5813;
    font-size: 20px;
    font-weight: bold;
}
.backbtn {
    width: 290px;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 40px;
    font-weight: bold;
    padding: 16px 5px 15px 5px;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    background: linear-gradient(to bottom, #fb7000, #eb5200);
    border: solid 1px #ce5c00;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 6px 0px 0px #833a00;
}
.backbtn a:visited {
    color: #fff;
}
.backbtn a:link {
    color: #fff;
}


/*スクロール*/
.suc{
    height: 150px;
    overflow-y: scroll;
    border-color: #d6d6d6;
    border-style: solid;
    border-width: 1px;
    padding: 20px 13px 15px 20px;
    font-size: 12px;
    margin: 10px 0;
}
/* スクロールの幅の設定 */
.suc::-webkit-scrollbar {
width: 5px;
height: 5px;
}

/* スクロールの背景の設定 */
.suc::-webkit-scrollbar-track {
border-radius: 3px;
box-shadow: 0 0 3px #fff inset;
}

/* スクロールのつまみ部分の設定 */
.suc::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #d6d6d6;
}


@media (max-width: 740px) { 
    .form_tbl th {
        width: 100%;
        padding: 3% 0 3% 15px;
    }
    .form_tbl input, select, textarea{
        width: 100%;
    }
    .submitbtn {
        margin-top: 0;
    }
}