/* ステップフォームのヘッダー */
.stepform__header {
    width: 100%;
    height: 100px;
    background: #fff;
    border-top: 8px solid var(--primary--color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px -1px 10px 0px rgba(0, 0, 0, 0.1);
}

.stepform__header .logo_wrap {
    margin: 0 auto 0 8vw;
}

.stepform__header .logo_wrap img {
    display: block;
    height: 60px;
}

@media screen and (max-width: 768px) {
    .stepform__header {
        height: 80px;
    }

    .stepform__header .logo_wrap img {
        height: 40px;
    }
}

/* 戻るボタン */
.is_pagebackbt {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
