@charset "UTF-8";
.flow_wrap {
    overflow: hidden;
}
.stplst_wrap {
    padding: 40px 0;
}
.stplst {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}
.stplst li {
    background: #fff;
    border: 2px solid #23406F;
    border-radius: 40px;
    box-sizing: border-box;
    height: 50px;
    width: 50px;
    color: #23406F;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    font-size: 20px;
    position: relative;
    transition: opacity .2s ease-out, all .2s ease-out;
}
.stplst li.is-on {
    background: #23406F;
    color: #fff;
}
.stplst li::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #23406F;
    top: 50%;
    right: -32px;
    z-index: 9;
    margin-top: -1px;
}
.stplst li:last-child::before {
    display: none;
}
.request_wrap {
    overflow: hidden;
    transition: height 0.3s ease;
    position: relative;
    height: 317px;
}
.request_inner {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    will-change: transform;
}
.request_in {
    flex: 0 0 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}
.reqForm_wrap {
    padding: 0 16px;
}
#step4 .reqForm_ttl ,
#step5 .reqForm_ttl {
    margin: 0 -16px;
}
.form_in {
    padding: 40px 0 0 0;
}
#step4 .form_in ,
#step5 .form_in {
    padding: 0;
}
.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 30px;
}
.checkbox-item label {
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #23406F;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 17px;
    color: #23406F;
    transition: opacity .2s ease-out, all .2s ease-out;
    padding: 0 10px;
}
.q-kome {
    text-align: center;
    font-size: 16px;
    color: #FF2D55;
    font-weight: bold;
    margin-bottom: 30px;
}
.formBtn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-direction: column;
}
.form-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF2D55 ;
    width: 260px;
    height: 60px;
    padding: 0 30px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    box-sizing: border-box;
}
.form-btn.is-send a {
    width: 420px;
}
.form-btn.is-prv a {
    width: 160px;
    height: 40px;
    background: #F3F3F3 ;
    color: #393939;
    font-size: 14px;
}
.form-btn a:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -12px;
    background: url(../svg/arw_free.svg) no-repeat center / 100% auto;
    z-index: 1;
    transition: all .2s ease-out;
}
.form-btn.is-prv a:before {
    left: 20px;
    transform: rotate(180deg);
}
.bd_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.error-message {
    text-align: center;
    margin-top: 10px;
    color: #FF2D55;
}
.q-contents.is-ver2 {
    margin: 40px auto 0;
}
.reqForm-lnk {
    text-align: center;
    margin-top: 40px;
}
.reqForm-lnk a {
    color: #23406F;
}
.checkbox-item input[type="checkbox"]:checked + label ,
.checkbox-item input[type="radio"]:checked + label {
    background: #23406F;
    color: #fff;
}
@media (min-width: 767px) {
    .flow_wrap {
        width: 700px;
    }
    .checkbox-item label:hover {
        background: #23406F;
        color: #fff;
    }
    .form-btn a:hover {
        opacity: 0.7;
    }
    .q-contents {
        width: 490px;
        margin: 0 auto;
    }
    .reqForm-lnk a:hover {
        text-decoration: none;
    }
}
@media only screen and (max-width:767px) {
    .stplst_wrap {
        padding: 40px 0 10px;
    }
    .stplst {
        gap: 0 15px;
    }
    .stplst li {
        height: 36px;
        width: 36px;
        font-size: 16px;
    }
    .stplst li::before {
        width: 18px;
        right: -19px;
    }
    .request_wrap {
        height: 233px;
    }
    .flex-box {
        gap: 10px 10px;
    }
    .checkbox-item {
        width: 48%;
    }
    .checkbox-item label {
        width: 100%;
        font-size: 14px;
        padding: 0 5px;
    }
    .form_in {
        padding: 25px 0 0 0;
    }
    .q-contents.is-ver2 {
        margin: 25px auto 0;
    }
    .bd_wrap {
        gap: 10px;
    }
    .bd_wrap select {
        font-size: 13px;
    }
    .reqForm_ttl {
        font-size: 18px;
        padding: 20px 15px 18px;
        line-height: 1.2;
    }
    .formBtn_wrap {
        gap: 15px;
        margin-top: 30px;
    }
    .form-btn.is-send {
        width: 100%;
    }
    .form-btn.is-send a {
        width: 100%;
        font-size: 16px;
    }
}
@media only screen and (max-width:360px) {
    .checkbox-item label {
        font-size: 13px;
    }
}
