/*-------------------------------------------------------------

 contact - CSS

-------------------------------------------------------------*/
.imput_box{
    padding: 5px;
    border: 1px solid #ffefd1;
    font-size: 18px;
}
.imput_box.w50{ width: 50%; }
.imput_box.w70{ width: 70%; }
.imput_box.w100{ width: 100%; }
/* テキストエリア ----- */
.textarea_box{
    width: 100%;
    height: 150px;
    border: 1px solid #ffefd1;
}
/* 必須 ----- */
.required{
    display: inline-block;
    padding: 1px 5px;
    background-color: #f00;
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
    border-radius: 5px;
}
/* セレクト ----- */
.select_style select{
    padding: 5px;
    border: 1px solid #ffefd1;
    font-size: 18px;
}
/* ラジオボタン ----- */
.radio_style{
    display: none;
}
.radio_style + label{
    padding-left: 22px;
    position:relative;
    margin-right: 22px;
}
.radio_style + label::before{
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 13px;
    height: 13px;
    border: 1px solid #ff940a;
    border-radius: 50%;
}
.radio_style:checked + label{
    color: #ff940a;
}
.radio_style:checked + label::after{
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 11px;
    height: 11px;
    background: #ff940a;
    border-radius: 50%;
}
/* 病院見学選択用 ------- */
#visit_item01, #visit_item02{
    display: none;
}
#visit_item01.active, #visit_item02.active{
    display: table-row;
}
/* ボタン装飾 */
.contact_btn{
    width: 100%;
    margin: 20px 0;
    text-align: center;
}
.contact_btn .btn_style{
    width: 50%;
    max-width: 400px;
    text-align: center;
    background-color: #ff940a;
    color: #fff;
    padding: 15px;
    border: solid 1px #ff940a;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
}
.contact_btn .btn_style:hover{
    background-color: #fff;
    color:#ff940a;
}
@media screen and (max-width: 599px) {
    .imput_box.w50{ width: 100%; }
    .imput_box.w70{ width: 100%; }
    .imput_box.w100{ width: 100%; }
    .select_style select{ width: 100%; }
    .contact_btn .btn_style{
        width: 80%;
        padding: 10px;
    }

}

