/* iOS特有スタイルをリセット */
input[type=submit] {
    -webkit-appearance: none;
    border-radius: 0;
}

/* 必須項目 */
/* .required::after{
    content:"＊";
} */

#form input,
#form textarea{
    width: 100%;
    border: none;
    /* background-color: #EAEAEA; */
}

#form input{
    background-color: rgba(255,255,255,0);
    border-bottom: 1px solid #000;
    padding: 10px 0px;
}

#form textarea{
    height: 250px;
    padding: 5px 10px;
    border: 1px solid #000;
}

#form dl dt{
    margin-top:20px;
}

#form .form_understand{
    margin-top: 30px;
}

#form .form_understand span label{
    display: flex;
    align-items: center;
    justify-content: center;
}

#form .form_understand span label input{
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.wp_form_check form .form_understand{
    display: none;
}

/* ボタンエリア */
#form .btn_area{
    width: 200px;
    margin: 30px auto;
}

#form .btn_area input{
    background-color: #fff;
    color: #000;
    border-radius: 0px;
    border: 1px solid #000;
    transition: .3s;
}

#form .btn_area .btn:last-child{
    margin-top:10px
}

.sent_btn{
    width: 200px;
    margin: 30px auto 0;
    background-color: #fff;
}
.sent_btn p{
    text-align: center;
    padding: 5px 0;
    color: #000;
}

/* 完了ページ */
.thanks_page .top_btn{
    width: 200px;
    margin: 30px auto;
}
.thanks_page .top_btn p{
    padding: 10px 0;
    background-color: #fff;
    color: #000;
    border-radius: 0px;
    border: 1px solid #000;
    transition: .3s;
    text-align: center;
}

.google-cal iframe{
    width: 100%;
}
.google-cal iframe .calendarTitle{
    display: none;
}

@media screen and (min-width: 768px){
    #form dl dt{
        margin-top:50px;
        margin-bottom:10px;
    }
    #form .btn_area{
        width: 200px;
    }
    #form .btn_area input:hover,
    .thanks_page .top_btn p:hover{
        background-color: #000;
        color: #fff;
    }
    .top_btn{
        width: 300px;
    }
    .wp_form_check{
        width: 600px;
        margin: 50px auto 0;
    }
    .wp_form_check form dl{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .wp_form_check form dl dt:not(:first-of-type){
        margin-top: 30px;
    }
    .wp_form_check form dl dt:not(:first-of-type):not(:last-of-type){
        margin-top: 30px;
    }
    .wp_form_check form dl dt:not(:last-of-type){
        width: 40%;
    }
    .wp_form_check form dl dd:not(:last-of-type){
        width: 60%;
    }
    .wp_form_check form dl dt:last-of-type,
    .wp_form_check form dl dd:last-of-type{
        width: 100%;
    }
    .wp_form_check form dl dt br{
        display: block;
    }
}