@charset "utf-8";
/*
Author: Koji Sato
*/

/*=======================================================
基本設定
=======================================================*/
* {
    margin: 0;
    padding: 0;
}
*,
*:before,
*:after {
    box-sizing: border-box;
    font-style: normal;
    box-shadow: none;
    outline: none;
    line-break: strict;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-tap-highlight-color: transparent;
}
*,
*:focus,
a:focus {
    outline: none;
}
a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
body {
    background: #fcfcfc;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
    letter-spacing: 0.06em;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    font-feature-settings: "palt";
    color: #444;
}
body,
html {
    height: 100%;
}
body > footer {
    position: sticky;
    top: 100vh;
}
article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
    display: block;
}
table {
    border-collapse: separate;
    border-spacing: 0;
}
ul,
ol {
    list-style: none;
}
p,
li,
dt,
dd,
th,
td {
    -ms-line-break: strict;
    line-break: strict;
    word-break: break-word;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
picture {
    line-height: 0;
}
picture img {
    vertical-align: top;
}
input,
button,
select,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: inherit;
    letter-spacing: inherit;
    outline: none;
}
input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #fff inset;
}
input[type="checkbox"] {
    display: none;
}
input[type="radio"] {
    display: none;
}
button,
textarea {
    font-family: inherit;
    font-size: 100%;
}
/************************
common
*************************/
.ly_cont {
    padding: 64px 0 80px;
}
.ly_cont_inner {
    max-width: 1064px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.ly_cont__col {
    display: flex;
    gap: 32px;
}
.ly_cont_main {
    max-width: 700px;
    flex: 1;
}
.ly_aside {
    flex: 0 1 292px;
    height: 100%;
    position: sticky;
    top: 100px;
}
.ly_lower {
    padding-top: 80px;
}
.ly_lower .ly_cont {
    padding: 40px 0 80px;
}
.ly_lower_mv {
    background: url(../images/mv_bg.jpg) bottom center/cover no-repeat;
    height: 180px;
    display: flex;
    align-items: center;
    position: relative;
}
.ly_lower_mv::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}
.el_lower_headTtl {
    display: flex;
    flex-direction: column;
    color: #fcfcfc;
    gap: 8px;
}
.el_lower_headTtl > span {
    font-size: 28px;
    display: inline-block;
    border-bottom: 1px solid #fcfcfc;
    padding-bottom: 2px;
    align-self: flex-start;
}
.el_lower_headTtl::after {
    content: "Bookmarks";
    font-size: 16px;
    font-weight: normal;
}
.txt_bold {
    font-weight: bold;
}
.txt_lg {
    font-size: 1.25em;
}
@media screen and (max-width: 1023px) {
    .ly_cont {
        padding: 32px 0 56px;
    }
    .ly_cont__col {
        flex-direction: column;
    }
    .ly_cont_main {
        max-width: 100%;
    }
    .ly_aside {
        flex: 100%;
    }
    .ly_archive .ly_aside {
        order: 1;
        position: static;
    }
    .ly_archive .ly_cont_main {
        order: 2;
    }
    .ly_lower {
        padding-top: 60px;
    }
    .el_lower_headTtl > span {
        font-size: 24px;
    }
    .el_lower_headTtl::after {
        font-size: 14px;
    }
}
/************************
header
*************************/
.ly_head {
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(252, 252, 252, 0.9);
    box-shadow: 0 1px 3px 3px rgba(0, 0, 0, 0.1);
}
.bl_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.bl_head_logo {
    max-width: 108px;
    width: 100%;
}
.bl_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}
.bl_nav_item {
    height: 100%;
}
.bl_nav_item > form {
    height: 100%;
    cursor: pointer;
}
.bl_nav_link {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    padding-top: 24px;
    position: relative;
}
.bl_nav_link > i {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
}

@media screen and (max-width: 767px) {
    .ly_head {
        height: 60px;
    }
    .bl_head_logo {
        max-width: 76px;
    }
    .bl_nav_link {
        font-size: 10px;
        width: 64px;
        padding-top: 28px;
    }
    .bl_nav_link > i {
        top: 12px;
    }
}
/* mv */
.bl_mv {
    background: url(../images/mv_bg.jpg) top center/cover no-repeat;
    height: 390px;
    position: relative;
    z-index: 0;
}
.bl_mv_ttl {
    width: 288px;
    position: absolute;
    top: 170px;
    left: 20px;
}
@media screen and (max-width: 750px) {
    .bl_mv {
        background-image: url(../images/mv_bg_sp.jpg);
        background-position: right;
        height: 330px;
    }
    .bl_mv_ttl {
        width: 232px;
        top: 144px;
    }
}
/************************
footer
*************************/
.ly_foot {
    background: #505050;
}
.bl_foot_copyright {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4d5fc3;
    color: #fff;
    font-size: 14px;
}
@media screen and (max-width: 767px) {
    .bl_foot {
        display: block;
    }
    .bl_foot_logo {
        font-size: 32px;
        width: 100%;
        margin-bottom: 16px;
    }
    .bl_footNav {
        width: 100%;
    }
}

/************************
一覧メイン
*************************/
.bl_archive_head {
    margin-bottom: 0.5em;
}
.el_hitNum {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bl_archive_head .back {
    max-width: 240px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: #4d5fc3;
    color: #fcfcfc;
    margin: 40px auto;
}
.bl_archive_item:not(:first-of-type) {
    margin-top: 24px;
}
.bl_archive_item {
    border: 1px solid #b3b3b3;
    border-top: 4px solid #4d5fc3;
    position: relative;
}
.bl_archive_inner {
    padding: 0 16px;
}
.bl_archive_ttl {
    padding: 24px 0;
    border-bottom: 1px solid #b3b3b3;
}
.bl_archive_ttl .word {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #4d5fc3;
    line-height: 1.4;
}
.bl_archive_ttl .company_name {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.5em;
    padding-left: 1.2em;
    position: relative;
}
.bl_archive_ttl .company_name::before {
    content: "\f1ad";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}
.bl_archive .bl_media {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.bl_archive .bl_media_imgWrapper {
    max-width: 280px;
    width: 100%;
}
.bl_archive .bl_media_body {
    flex: 1;
}

.bl_archive_def > div {
    display: flex;
    flex-wrap: wrap;
}
.bl_archive_def > div:not(:first-of-type) {
    padding-top: 8px;
}
.bl_archive_dttl {
    width: 120px;
    font-weight: bold;
    color: #4d5fc3;
    padding-left: 16px;
    position: relative;
}
.bl_archive_dttl::before {
    content: "";
    width: 8px;
    height: 10px;
    border-bottom: 2px solid #4d5fc3;
    border-right: 2px solid #4d5fc3;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(45deg);
}
.bl_archive_ddata {
    flex: 1;
}

.bl_archive_bottom {
    border-top: 1px solid #b3b3b3;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 16px;
}
.bl_archive_endDate {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
}
.bl_archive_endDate .label {
    padding: 0 8px;
    background: #4d5fc3;
    color: #fff;
    border-radius: 4px;
    text-align: center;
    margin-right: 8px;
}
.bl_archive_endDate > i {
    margin-right: 2px;
}
.bl_archive_btnList {
    display: flex;
    align-items: center;
    gap: 16px;
}
.bl_archive_btn {
    display: block;
    width: 160px;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}
.bl_archive_btn.favorite.remove {
    border: none;
    background: #EB5C1E;
    color: #fff;
}
.bl_archive_btnItem .favorite {
    border: 1px solid #b3b3b3;
    background: #fcfcfc;
}
.bl_archive_btnItem .favorite > i {
    margin-right: 4px;
}
.bl_archive_btnItem .more {
    background: #4d5fc3;
    color: #fcfcfc;
    position: relative;
}
.bl_archive_btnItem .more::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fcfcfc;
    border-right: 2px solid #fcfcfc;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%) rotate(45deg);
}

/* ページネーション */
.bl_pagination {
    margin-top: 32px;
}
.bl_pagination_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.bl_pagination_list > li {
    font-size: 16px;
    font-weight: bold;
    background: #eee;
    border-radius: 2px;
}
.bl_pagination_list > li > a,
.bl_pagination_list > li > span {
    width: 24px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bl_pagination_list .active {
    background: #4d5fc3;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .bl_archive_ttl {
        font-size: 18px;
    }
    .bl_archive .bl_media_imgWrapper {
        max-width: 100%;
    }
    .bl_archive .bl_media {
        gap: 16px;
    }
    .bl_archive_dttl {
        width: 104px;
    }
    .bl_archive_bottom {
        gap: 16px;
        padding: 16px 8px;
    }
    .bl_archive_endDate {
        width: 100%;
        order: 2;
    }
    .bl_archive_btnList {
        width: 100%;
        justify-content: center;
        gap: 8px;
        order: 1;
    }
    .bl_archive_btnItem {
        width: 100%;
    }
    .bl_archive_btnItem > a {
        width: 100%;
        font-size: 13px;
    }
}

/************************
aside
*************************/
.bl_aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.bl_search {
    border: 1px solid #b3b3b3;
    border-radius: 4px;
}
.bl_search_inner {
    border-bottom: 1px solid #b3b3b3;
}
.bl_search_item:not(:first-of-type) {
    border-top: 1px solid #b3b3b3;
}
.bl_search_item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
}
.bl_search_item .text {
    width: 100%;
    font-weight: bold;
}
.accordion_toggle {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
}
.accordion_toggle::before,
.accordion_toggle::after {
    content: "";
    background: #444;
    width: 16px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.accordion_toggle::after {
    opacity: 1;
    transform: translateY(-50%) rotate(90deg);
}
.accordion_toggle.is_active::before {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.accordion_toggle.is_active::after {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.3s ease;
}
.bl_checkbox_item > label {
    cursor: pointer;
}
.el_searchTag {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}
.el_searchTag > li {
    font-size: 12px;
    padding: 0 8px;
    background: #eee;
    border-radius: 4px;
}
.el_searchTag > li > i {
    margin-right: 2px;
}

/* チェックボックス */
.bl_checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.bl_checkbox_item {
    width: calc((100% - 8px) / 2);
}
.job_categories .bl_checkbox_item {
    width: 100%;
}
.bl_checkbox_input + span {
    position: relative;
    padding-left: 24px;
}
.bl_checkbox_input + span::before {
    content: "";
    background: #fff;
    width: 16px;
    height: 16px;
    border: 1px solid #B0AB99;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.bl_checkbox_input + span::after {
    content: "";
    display: block;
    background: transparent;
    border-bottom: 2px solid #4d5fc3;
    border-right: 2px solid #4d5fc3;
    width: 8px;
    height: 16px;
    position: absolute;
    left: 5px;
    top: -4px;
    transform: rotate(42deg);
    opacity: 0;
}
.bl_checkbox_input:checked + span::after {
    opacity: 1;
}
/* キーワード検索 */
.bl_keywordSearch {
    position: relative;
    width: 100%;
}
.bl_keywordSearch .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
}
.bl_keywordSearch > input {
    width: 100%;
    height: 48px;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    padding: 0 16px 0 40px;
}
/* 検索ボタン */
.bl_search_btn {
    max-width: 260px;
    width: 100%;
    height: 40px;
    display: block;
    border-radius: 4px;
    background: #4d5fc3;
    color: #fcfcfc;
    margin: 16px auto;
}
/* クリアボタン */
.bl_search_btn__clear {
    max-width: 260px;
    width: 100%;
    height: 40px;
    display: block;
    border-radius: 4px;
    border: 1px solid #505050;
    margin: 16px auto;
}
/* 詳細ページのCTA */
.bl_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.bl_cta_item {
    width: 100%;
}
.bl_cta_btn {
    width: 100%;
    height: 48px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bl_cta_btn.apply {
    background: #4d5fc3;
    color: #fcfcfc;
    position: relative;
}
.bl_cta_btn.apply::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fcfcfc;
    border-right: 2px solid #fcfcfc;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%) rotate(45deg);
}
.bl_cta_btn.favorite {
    border: 1px solid #444;
    color: #444;
}
.bl_cta_btn .fa-star {
    margin-right: 8px;
}
.bl_cta_btn.favorite.remove {
    background: #EB5C1E;
    color: #fff;
    border: none;
}
/* 会社情報 */
.bl_companyInfo {
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    margin-top: 16px;
}
.bl_companyInfo_ttl {
    padding: 16px;
    border-bottom: 1px solid #b3b3b3;
    background: #eee;
}
.bl_companyInfo_ttl::before {
    content: "\f1ad";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    margin-right: 8px;
}
.bl_companyInfo_def {
    padding: 16px;
}
.bl_companyInfo_def > div {
    padding-bottom: 4px;
}
.bl_companyInfo_def > div:not(:first-of-type) {
    padding-top: 4px;
}
.bl_companyInfo_dttl {
    font-weight: bold;
    padding-left: 12px;
    position: relative;
}
.bl_companyInfo_dttl::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #444;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
@media screen and (max-width : 767px){

}

/************************
求人詳細ページ
*************************/
.bl_breadCrumbs {
    margin-top: 8px;
}
.bl_breadCrumbs_list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bl_breadCrumbs_item {
    font-size: 12px;
}
.bl_breadCrumbs_item:not(:first-of-type)::before {
    content: "＞";
    margin-right: 4px;
}
.bl_breadCrumbs_item .fa-house {
    font-size: 14px;
}

.bl_jobOffer_ttl {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 8px;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: bold;
    color: #4d5fc3;
    line-height: 1.4;
}
.bl_jobOffer_freeTxt {
    margin-top: 1em;
}

.bl_jobOffer .el_secTtl {
    font-size: 18px;
    color: #4d5fc3;
    padding-left: 1.5em;
    margin-bottom: 8px;
    position: relative;
}
.bl_jobOffer .el_secTtl::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4d5fc3;
    position: absolute;
    top: 4px;
    left: 0;
}
.bl_jobOffer .el_secTtl::after {
    content: "";
    width: 8px;
    height: 10px;
    border-bottom: 2px solid #fcfcfc;
    border-right: 2px solid #fcfcfc;
    position: absolute;
    top: 7px;
    left: 6px;
    transform: rotate(45deg);
}

.bl_jobContent {
    margin-top: 24px;
}

.bl_detail {
    margin-top: 24px;
}
.bl_detail_def {
    border: 1px solid #b3b3b3;
}
.bl_detail_item {
    display: flex;
    flex-wrap: wrap;
}
.bl_detail_item:not(:last-of-type) {
    border-bottom: 1px solid #b3b3b3;
}
.bl_detail_dttl {
    flex: 0 1 160px;
    font-weight: bold;
    background: #eee;
    padding: 16px 8px 16px 16px;
    border-right: 1px solid #b3b3b3;
}
.bl_detail_ddata {
    flex: 1;
    padding: 16px 8px 16px 16px;
}
@media screen and (max-width : 767px){
    .bl_detail_dttl {
        flex: 100%;
        border-right: none;
        border-bottom: 1px solid #b3b3b3;
    }
    .bl_detail_ddata {
        flex: 100%;
    }
}

/************************
応募フォーム
*************************/
.bl_entry {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0 64px;
}
.bl_companyToEntry {
    margin-bottom: 24px;
}
.bl_companyToEntry_ttl {
    font-size: 18px;
    font-weight: bold;
    color: #fcfcfc;
    background: #4d5fc3;
    border-radius: 4px 4px 0 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bl_companyToEntry_ddata {
    border: 1px solid #b3b3b3;
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bl_companyToEntry_ddata .job_offer_ttl {
    font-size: 16px;
    font-weight: bold;
}
.bl_form {
    padding: 40px;
    background: #eee;
}
.bl_form_item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.bl_form_item:not(:first-of-type) {
    margin-top: 24px;
}
.bl_form_ttl {
    width: 30%;
    display: flex;
    align-items: center;
    position: relative;
}
.bl_form_ttl.el_require::after {
    content: "必須";
    font-size: 12px;
    background: #E65032;
    color: #fcfcfc;
    padding: 0 4px;
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
}
.bl_form_input {
    width: 70%;
    height: 40px;
    border: 1px solid #b3b3b3;
    background: #fcfcfc;
    border-radius: 4px;
    padding: 0 16px;
}
.bl_form_textarea {
    width: 70%;
    height: 240px;
    border: 1px solid #b3b3b3;
    background: #fcfcfc;
    border-radius: 4px;
    padding: 16px;
    resize: none;
}
.bl_radioWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.bl_radioWrapper > label {
    cursor: pointer;
}
.bl_radio + span {
    position: relative;
    padding-left: 32px;
}
.bl_radio + span::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #b3b3b3;
    background: #fcfcfc;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.bl_radio + span::after {
    content: "";
    width: 12px;
    height: 12px;
    background: #4d5fc3;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.bl_radio:checked + span::after {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.bl_form_btn {
    max-width: 240px;
    width: 100%;
    height: 48px;
    background: #4d5fc3;
    font-size: 16px;
    font-weight: bold;
    color: #fcfcfc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
}
.el_validationTxt {
    width: 100%;
    padding-left: 30%;
    display: block;
    color: #E65032;
}

/* 確認画面 */
.bl_confirmData {
    width: 70%;
}
.confirm .bl_form_btnWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.confirm .bl_form_btn {
    margin: 0;
}
.confirm .bl_form_btn.back {
    width: 120px;
    background: #b3b3b3;
    color: #444;
}

/* サンクス画面 */
.bl_thanks_ttl {
    margin-bottom: 16px;
}
.bl_thanks_txt {
    margin-bottom: 32px;
}
.bl_thanks_btn {
    max-width: 260px;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    background: #4d5fc3;
    color: #fcfcfc;
    margin: 32px auto 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width : 767px){
    .bl_companyToEntry_ttl {
        font-size: 16px;
        min-height: 40px;
    }
    .bl_companyToEntry_ddata {
        padding: 16px;
    }
    .bl_companyToEntry_ddata .job_offer_ttl {
        font-size: 14px;
    }
    .bl_form {
        padding: 32px 16px;
    }
    .bl_form_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .bl_form_ttl {
        width: 100%;
    }
    .bl_form_input,
    .bl_form_textarea {
        width: 100%;
    }
    .bl_form_ttl.el_require::after {
        right: 0;
    }
    .bl_form_btn {
        margin-top: 24px;
    }
    .bl_confirmData {
        width: 100%;
    }
    .confirm .bl_form_btn {
        width: calc(70% - 16px);
    }
    .confirm .bl_form_btn.back {
        width: 30%;
    }
}
