.application-top-area a {
    display: block;
    color: #212529;
}

/* ステップバー */
.step-bar {
    display: flex;
    flex-wrap: wrap;
}

.step-bar .item {
    position: relative;
    width: 20%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #FFF;
    color: #C5C5C5;
}

.step-bar .item:not(:last-child)::before,
.step-bar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid #FFF;
    margin: auto;
}

.step-bar .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #E5E5E5;
}

@media screen and (max-width: 767px) {
    .step-bar .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0 10px 12px;
    }

    .step-bar .item:not(:last-child)::before {
        border-width: 25px;
        border-left-width: 12px;
    }

    .step-bar .item:not(:last-child)::after {
        border-width: 25px;
        border-left-width: 12px;
        border-left-color: #FFF;
    }
}

/* active */

.step-bar .item.active {
    z-index: 1;
    background: #3F3F95;
    color: #FFF;
    left: 1px;
}

.step-bar .item.active:not(:last-child)::after {
    border-left-color: #3F3F95;
}

.step-bar .item.active:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #E5E5E5;
}

/* ラジオボタン */
input[type=radio] {
    display: none;
}

.radio-icon {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #3F3F95;
}

.radio-icon:before {
    position: absolute;
    left: -32px;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/images/radio-off.svg");
    background-size: contain;
}

input[type=radio]:checked+.radio-icon:before {
    position: absolute;
    left: -32px;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/images/radio-on.svg");
    background-size: contain;
}

/* チェックボックス */
input[type=checkbox] {
    display: none;
}

.checkbox-icon {
    position: relative;
    font-size: 16px;
}

.checkbox-icon:before {
    position: absolute;
    left: -32px;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/images/check-off.svg");
    background-size: contain;
}

input[type=checkbox]:checked+.checkbox-icon:before {
    position: absolute;
    left: -32px;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("/images/check-on.svg");
    background-size: contain;
}

/* フォームボタン */
.form-btn-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.form-btn {
    width: 240px;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: #3F3F95 solid 1px;
    border-radius: 100px;
}

.btn-next {
    color: #FFF;
    background-color: #3F3F95;
    border: #3F3F95 solid 1px;
    margin-bottom: 16px;
}

.btn-next:hover {
    color: #3F3F95;
    background-color: #FFF;
}

.btn-prev {
    font-size: 20px;
    font-weight: 600;
    color: #3F3F95;
}

.btn-prev:hover {
    color: #3F3F95;
}
