/*basic*/

.form.form_renewal {
    max-width: 1024px;
    width: 100%;
    margin: 40px auto;
}

.form.form_renewal h2 {
    margin: 0 auto 40px;
    font-size: 26px;
    color: #ed6f00;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .form.form_renewal {
        margin: 4% auto;
    }
    .form.form_renewal h2 {
        font-size: 24px;
    }
}


/*background*/

.form_bg_red {
    background: #b30003;
}

.form_bg_navy {
    background: #130e51;
}


/*font color*/

.form_font_red,
.form_font_red:link,
.form_font_red:hover,
.form_font_red:visited {
    color: #b30003;
}

.form_font_red::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    right: 0;
    margin-top: -6px;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #b30003;
}

.form_font_navy,
.form_font_navy:link,
.form_font_navy:hover,
.form_font_navy:visited {
    color: #130e51;
}

.form_font_navy::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    right: 0;
    margin-top: -6px;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #130e51;
}

.form.form_renewal ul.formlist li>div {
    margin: 0 auto;
    height: auto;
    min-height: auto;
    border: none;
}

.form.form_renewal ul.formlist li>div:last-child {
    border-right: none;
    border-bottom: none;
}

.form.form_renewal ul.formlist>li:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.form.form_renewal ul.formlist li.chkbx {
    float: none;
    display: inline-block;
}

.form.form_renewal ul.formlist li input {
    margin: 0 auto;
}

.form.form_renewal ul.formlist li input[type="radio"],
.form.form_renewal ul.formlist li input[type="checkbox"] {
    position: relative;
    top: 3px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

@media screen and (max-width: 767px) {
    /*[fix] 既存CSSから謎のブレイクポイントに対して対応*/
    .form.form_renewal ul.formlist li.height_03 .itemname,
    .form.form_renewal ul.formlist li.height_03 .itemform2 {
        min-height: auto !important;
    }
    .form ul.formlist li.height_03 .itemname,
    .form ul.formlist li.height_03 .itemform2 {
        line-height: inherit;
    }
}

.form.form_renewal input[type="tel"],
.form.form_renewal ul.formlist li>div.itemform_add_search input[type="text"] {
    width: 50%;
}

.form.form_renewal ul.formlist .formlist--txt {
    margin-bottom: 10px;
}

.form.form_renewal li div.itemname {
    width: 25%;
    box-sizing: border-box;
    background: none;
}

.form.form_renewal li div.itemform {
    width: 75%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .form.form_renewal li div.itemname {
        width: 30%;
    }
    .form.form_renewal li div.itemform {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    /*[fix] 既存CSSから謎のブレイクポイントに対して対応*/
    .form.form_renewal li div.itemname,
    .form.form_renewal li div.itemform {
        width: 100%;
    }
}


/*input type(text,tel,textarea)*/

.form.form_renewal input[type="text"] {
    width: 100%;
}

.form.form_renewal textarea {
    min-height: 200px;
}

.form.form_renewal input[type="tel"],
.form.form_renewal input[type="text"],
.form.form_renewal input[type="email"],
.form.form_renewal textarea {
    width: 100%;
    cursor: pointer;
    margin: 0;
    padding: 15px 12px;
    border: 1px solid #ccc;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    font-weight: normal;
    background: #fff;
}


/*required & un required*/

.form.form_renewal .item_required,
.form.form_renewal .item_unrequired {
    margin-left: 5px;
}


/*first view,title*/

.form_title {
    max-width: 1024px;
    width: 100%;
    margin: 40px auto 0;
}

.form_title h2 {
    margin: 0 auto 20px;
    font-size: 34px;
    color: #130e51;
    text-align: center;
}

.form_title .form_title__inner .form_title__notice {
    padding: 20px 40px;
    color: #fff;
    font-size: 20px;
    box-sizing: border-box;
}

.form_title .form_title__inner .form_title__notice ul li {
    float: left;
}

.form_title .form_title__inner .form_title__notice ul li:first-of-type {
    width: 60%;
    margin-right: 2%;
    text-align: center;
    padding-top: 20px;
}

.form_title .form_title__inner .form_title__notice ul li:last-of-type {
    width: 38%;
}

.form_title .form_title__inner .form_title__notice .form_title__inner--btn {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    background: #fff;
    box-sizing: border-box;
}

.form_title .form_title__inner .form_title__notice .form_title__inner--btn a {
    position: relative;
    display: block;
}

.form_title .form_title__inner .form_title__notice .form_title__inner--btn a:link,
.form_title .form_title__inner .form_title__notice .form_title__inner--btn a:hover,
.form_title .form_title__inner .form_title__notice .form_title__inner--btn a:visited {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .form_title {
        margin: 4% auto 0;
    }
    .form_title h2 {
        margin: 0 auto 2%;
        font-size: 28px;
    }
    .form_title .form_title__inner .form_title__notice {
        padding: 2% 4%;
    }
    .form_title .form_title__inner .form_title__notice ul li:first-of-type {
        float: none;
        width: 100%;
        margin: 0 auto 2%;
        padding-top: 0;
    }
    .form_title .form_title__inner .form_title__notice ul li:last-of-type {
        float: none;
        width: 100%;
    }
    .form_title .form_title__inner .form_title__notice .form_title__inner--btn {
        margin: 0 auto;
    }
}

@media screen and (max-width: 640px) {
    .form_title h2 {
        font-size: 22px;
    }
    .form_title .form_title__inner .form_title__notice {
        padding: 4%;
        font-size: 16px;
    }
    .form_title .form_title__inner .form_title__notice .form_title__inner--btn {
        padding: 4%;
    }
}