.form {
    background-color:#fff;
}
.form_custom {
    border:1px solid #dbdbdb;
    margin-bottom:80px;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"],
.form select,
.form textarea {
    width:100%;
    height:40px;
    border:1px solid #dbdbdb;
    border-radius:5px;
    padding:5px 15px;
    font-size:16px;
    box-sizing: border-box;
}
.form textarea {
    min-height: 80px;
    resize: vertical;
    padding-top: 10px;
}
.form ul {
    margin-bottom:10px;
    padding-left: 44px;
    padding-top: 40px;
}
.form ul li,
.form ul li dl {
    display:flex;
    align-items: center;
}
.form ul li dl {
    width:50%;
    margin-bottom:20px;
}
.form ul li:last-child dl {
    width:100%;
}
.form dl dt {
    color:#000;
    font-size:18px;
    font-weight:700;
    width:100px;
    text-align:left;
}
.form dl dd {
   width:calc(100% - 168px);
}
.form input[type="image"]{
    margin-top:10px;
    margin-bottom:40px;
}
.form .agree {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:20px;
    font-size:17px;
}
.form .agree input[type="checkbox"] {
    margin-right:10px;
    width:20px;
    height:20px;
}
.form .agree a {
    text-decoration: underline;
    color:#063174;
    font-weight:700;
}