@charset "UTF-8";
/* CSS Document */
/*20190705form css*/


.form_tbl table {
    width: 100%;
    border: none;
}
.form_tbl th {
    display: block;
    width: 100%;
    border: none!important;
    background: #ff9100;
    color: #fff;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
}
.form_tbl td {
    display: block;
    width: 100%;
    border: none!important;
    margin-bottom: 13px;
}
.confirmation_area .form_tbl td{
    display: block;
    width: 100%;
    border: none!important;
    margin-bottom: 13px;
    margin-left: 6%;
}
.form_tbl input, select, textarea {
    text-indent: 1em;
    padding: 20px 8px;
    width: 100%;
    line-height: 1.5;
}
.checkboxbtn{
    background: #38c28f;
    margin: 20px auto;
    padding: 3% 3% 3% 10%;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    border-radius: 40px;
    color: #fff;
    width: 50%;
    position: relative;
}

/* 元々のチェックボックス（非表示） */
.checkboxbtn input[type="checkbox"]{
    display: none;
}
/* チェックボックスの代わりを成すラベル */
.checkboxbtn input[type="checkbox"]+label{
    display: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
}
/* ラベルの左に表示させる正方形のボックス□ */
.checkboxbtn input[type="checkbox"]+label::before{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: -6px;
    top: 50%;
    border: 1px solid;
    /* border-color:  #585753; 枠の色変更 お好きな色を */
    background-color: #FFF; /* 背景の色変更 お好きな色を */
}
/* チェックが入った時のレ点 */
.checkboxbtn input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: -4px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: #ff6700;/* チェックの色変更 お好きな色を */
}

.form_tbl input#tel {
    text-indent: 1em;
    padding: 20px 0;
    width: 100%;
}
.form_tbl input#zip {
    text-indent: 1em;
    padding: 10px 0;
    width: 100%;
}
.form_tbl input#date1 {
    text-indent: 1em;
    padding: 10px 0;
    width: 37%;
}
.form_tbl input#time1 {
    text-indent: 1em;
    padding: 10px 0;
    width: 37%;
}
.form_tbl input, select, textarea {
    border-radius: 0 0 8px 8px;
    border: 1.5px solid #ff9100;
}
.form_tbl input.radio {
    width: inherit;
}
label span.must {
    font-size: 70%;
    margin-left: 10px;
    color: #fff;
    background: #ff4700;
    padding: 2px 10px 3px;
    font-size: 13px;
    margin-bottom: 2px;
    border-radius: 30px;
    border: 2px solid #fff;
}
.submitbtn {
    text-align: center;
    margin-top: 20px;
}
input[type=submit] {
    width: auto !important;
    padding: 4% 4% 4% 0;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    background: #ff6700;
    border: 1.5px solid #ff9100;
    border-radius: 3%;
    box-shadow: 5px 4px 5px rgb(0 0 0 / 25%);
    font-size: 20px;
    font-weight: bold;
    margin-top: 5%;
}
.backbtn {
    width: 290px;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 40px;
    font-weight: bold;
    padding: 16px 5px 15px 5px;
    text-align: center;
    /* padding: 0.25em 0.5em; */
    text-decoration: none;
    color: #FFF;
    background: #ff6700;
    border: solid 1px #ff6700;
    border-radius: 10px;
    box-shadow: 5px 4px 5px rgb(0 0 0 / 25%);
    text-align: center;
}
.backbtn a:visited {
    color: #fff;
}
.backbtn a:link {
    color: #fff;
}

.confirmation_area .form_tbl th{
    width: 90%;
    margin: 0 auto;
    border-radius: 0;
}

input, select {
    -webkit-appearance: none;
    appearance: none;
}

@media only screen and (min-width:740px) {
    .checkboxbtn{
        width: 40%;
    }
    .checkboxbtn input[type="checkbox"]+label::before{
        left: -32px;
    }
    .checkboxbtn input[type="checkbox"]+label{
        padding-left: 0;
    }
    input[type=submit]{
        padding: 2% 3% 2% 0;
    }
    
    /* チェックが入った時のレ点 */
.checkboxbtn input[type="checkbox"]:checked+label::after{
    content: "";
    position: absolute;
    display: block;
    box-sizing: border-box;
    width: 18px;
    height: 9px;
    margin-top: -9px;
    top: 50%;
    left: -31px;
    transform: rotate(-45deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color: #ff6700;/* チェックの色変更 お好きな色を */
}

}