/* none active */

.selection-group{
    display: inline-block;
    padding-left: 10px;
}
.selection-group_txt{
    text-align: center;
    margin: 10px 0px 20px;
    color: #008955;
    font-weight: bold;
}
.send-label {
    color: #008956;
    background: #fff;
    border: 1px solid #008956;
    margin: 0px 1.5% 3%;
    order: -1;
    width: 46%;
    font-size: 15px;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
}
.send-label::before,
.send-label::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 17px;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.send-label::before{
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #008956;
}
.send-label::after{
    left: 23px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 4px solid transparent;
	border-left: 4px solid #fff;
}
.send-label a,
.send-label a:hover{
    color: #008956;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: block;
}


/* active */

.selection-group input[type="radio"]:checked + label {
	color: #008956;
    background: #daede7;
    border: 1px solid #daede7;
}
.selection-group input[type="radio"]:checked + label::before {
	background: #fff;
}
.selection-group input[type="radio"]:checked + label::after {
	border-left: 4px solid #008956;
}
/* ラジオボタン非表示 */
.send-switch {
    display: none;
}

/* check page */
#formWrap{
    width: 100%;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto; 
}
#formWrap h4{
    color: #ec1000;
    width: 100%;
    background: #fff;
}
#formWrap h3{
    text-align: center;
    box-sizing: border-box;
}

@media screen and (max-width: 640px) {
    .selection-group{
        padding-left: 0px;
    }
    .send-label {
        width: 97%;
    }
    .selection-group_txt{
        padding: 0 7% 0 5%;
    }
    .form_box table th{
        width: 100%;
        box-sizing: border-box;
    }
    .form_box table td {
        width: 100%;
        padding: 15px 0px 15px 15px;
        box-sizing: border-box;
    }
    div.btn_area input.submit_btn{
        width: 40%;
        margin-bottom: 30px;
    }
}