/* =================================================================
   Biz-Matching System Styles
   Version: 1.0
   ================================================================= */

/* --- デザインの基本設定（ここを各サイトに合わせてカスタマイズする） --- */
:root {
    --form-base-text-color: #333;
    --form-accent-color: #24a537; /* ボタンや必須マークなど */
    --form-danger-color: #ed6161;
    --form-label-bg-color: #f7f7f7;
    --form-bg-color: #ffffff;
    --form-border-color: #e0e0e0;
    --form-font-family: sans-serif;
    
    /* レイアウト設定 */
    --form-label-width: 200px; /* ラベルの幅 */
    --form-section-padding: 24px;
    --form-row-padding: 16px;
    --form-gap: 16px; /* 項目間の隙間 */
}

/* =================================================================
   Page Layout Styles
   ================================================================= */

.bzmp-page-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
.bzmp-page-layout {
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0;
    }
}


/* メインコンテンツエリア */
.bzmp-main-content {
    flex: 2;
    min-width: 0;
}

/* サイドバーエリア */
.bzmp-sidebar {
    flex: 1;
    min-width: 280px;
}

/* [カスタマイズ用] メインとサイドバーを入れ替える */
.bzmp-page-layout.is-reversed {
    flex-direction: row-reverse;
}

/* ページヘッダー（進捗バーなど） */
.bzmp-page-header {
    margin-bottom: 24px;
}

.bzmp-page-description {
    margin-top: 20px;
    padding: 1.5em;
    background-color: var(--form-label-bg-color);
    border-radius: 8px;
    border-left: 5px solid var(--form-accent-color);
}

/* =================================================================
   Form Styles
   ================================================================= */

/* フォーム全体のコンテナ */
.bzmp-form-container {
    font-family: var(--form-font-family);
    color: var(--form-base-text-color);
}

/* 項目グループ */
.bzmp-form-section {
    /*background-color: #fff;*/
    border: 0px solid var(--form-border-color);
    border-radius: 0px;
    margin-bottom: 24px;
    overflow: hidden;
}

.bzmp-form-section-title {
    background-color: #1a822a;
    padding: 12px var(--form-section-padding);
    margin: 0;
    font-size: 18px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid var(--form-border-color);
}

/* 各入力行 */
.bzmp-form-row {
    display: flex;
    padding: 0;
    border-bottom: 1px solid var(--form-border-color);
    gap: var(--form-gap);
    align-items: center;
}

.bzmp-form-section .bzmp-form-row:last-child {
    border-bottom: none;
}
@media (max-width: 768px) {
    .bzmp-form-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
}

/* ラベル（項目名） */
.bzmp-form-label {
    width: var(--form-label-width);
    flex-shrink: 0;
    font-weight: bold;
    background-color: none;
    padding: 30px 10px;
    border-radius: 0px;
    width: 230px;
    line-height: 1.5;
    font-size: 15px;
    box-sizing: border-box;
}

.bzmp-form-label br{
    display: none;
}

.bzmp-form-label .red {
    font-size: 10px;
    color: #fff;
    background: #d9534f;
    border-radius: 20px;
    margin: 0 0 0 20px;
    white-space: nowrap;
}

.bzmp-form-label .normal { 
    font-size: 10px;
    color: #fff;
    background: #777;
    border-radius: 20px;
    margin: 0 0 0 20px;
    padding: 2px 10px;
}

@media (max-width: 768px) {
    .bzmp-form-label {
        width: auto;
    }
}

/* 入力コントロール部分 */
.bzmp-form-control {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: var(--form-gap);
    align-items: center;
    padding:20px 20px 20px 0;

}

.bzmp-form-control span{
    font-size: 12px;
    writing-mode: horizontal-tb !important;
    width: 70px;
    box-sizing: border-box;
}

.bzmp-form-control.is-horizontal {
    flex-wrap: nowrap;
}
.bzmp-form-control.is-horizontal > * {
    flex-grow: 1;
}

/* フォーム要素の共通スタイル */
.bzmp-form-control input[type="text"],
.bzmp-form-control input[type="date"],
.bzmp-form-control input[type="datetime-local"],
.bzmp-form-control textarea,
.bzmp-form-control select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--form-border-color);
    border-radius: 4px;
    box-sizing: border-box;
}

.bzmp-form-control .select_wrap {
    flex: 1;
    min-width: 180px;
}

/* 操作ボタンエリア */
.bzmp-form-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--form-border-color);
}

.bzmp-form-row{
    background: #f4f4f4;
}


.bzmp-form-row:nth-of-type(1),
.bzmp-form-row:nth-of-type(3),
.bzmp-form-row:nth-of-type(5),
.bzmp-form-row:nth-of-type(7){
    background: #fff;
}

button#bzmp_work_attachment_file_delete_all,
button#bzmp_work_attachment_movie_delete,
button#work_edit_next,
button#work_edit_save,
button#work_delete_edit_save,
button#work_edit_modify,
button#work_edit_cancel,
button#bzmp_apply_attachment_file_delete_all,
button#bzmp_apply_attachment_movie_delete,
button#apply_edit_next,
button#apply_edit_modify,
button#apply_edit_save,
button#apply_delete_edit_save,
button#apply_edit_cancel,
button#apply_confirm_submit,
button#apply_confirm_back {
    border: 1px solid #74b1d8;
    border-radius: 25px;
    background: #fff;
    transition: 0.5s;
    color: #74b1d8;
}

button#bzmp_work_attachment_file_delete_all:hover,
button#bzmp_work_attachment_movie_delete:hover,
button#work_edit_next:hover,
button#work_edit_save:hover,
button#work_delete_edit_save:hover,
button#work_edit_modify:hover,
button#work_edit_cancel:hover, 
button#bzmp_apply_attachment_file_delete_all:hover,
button#bzmp_apply_attachment_movie_delete:hover,
button#apply_edit_next:hover,
button#apply_edit_modify:hover,
button#apply_edit_save:hover,
button#apply_delete_edit_save:hover,
button#apply_edit_cancel:hover,
button#apply_confirm_submit:hover,
button#apply_confirm_back:hover {
    background: #74b1d8;
    color: #fff;
}


.bzmp-page-header .progressbar {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.bzmp-page-header .progressbar .item {
    position: relative;
    width: 33%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    line-height: 1.5;
    background: #fff;
    color: #999999;
    border-bottom: 5px solid #ccc;
}

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

.bzmp-page-header .progressbar .item:not(:last-child)::before {
    margin-left: 0px;
    border-left-color: #FFF;
}

/* 会員登録　プログレスバー　active */
.bzmp-page-header .progressbar .item.active {
    z-index: 1;
    background: #fff;
    background-size: 10%;
    color: #34495E;
    font-weight: bold;
    border-bottom: 5px solid #1a822a;
}

/*.bzmp-page-header .progressbar .item.active:not(:last-child)::after {
    border-left-color: #126E82;
}*/

.bzmp-page-header .progressbar .item.active:not(:last-child)::before {
    border-left: none;
}

@media screen and (max-width: 767px) {
    .bzmp-page-header .progressbar .item {
        font-size: 11px;
        line-height: 1.4;
        padding: 10px 0;
    }

    .bzmp-page-header .progressbar .item:not(:last-child)::before,
    .bzmp-page-header .progressbar .item:not(:last-child)::after {
       display: none;
    }
}

#bzmp_work_attachment_file_list{
    margin: 0;
}

@media screen and (max-width: 1198px) {
.is-horizontal{
    display: block
}
}

@media screen and (max-width: 991px){
.bzmp-form-row {
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        padding: 0;
        border-bottom: 1px solid var(--form-border-color);
        gap: var(--form-gap);
    }
.bzmp-form-label{
    padding: 15px 10px 0;
}
.bzmp-form-control {
    padding: 0px 20px 20px 20px;

}

}

.sidebar-login:nth-child(-n+2){
    border: 0px solid #1a822a;
}

.sidebar-login:nth-of-type(2){
    margin: 30px 0 0;
}

.sidebar h4.sidebar,
.recommended-guides h4.mg-popular-guides-title{
    background: #f5f5f5;
    border-bottom: none;
    padding: 5px 15px;
}
.menu-sidebar-container{
    padding: 0 30px 0 0;
}

.sidebar .recommended-guides{
    margin: -15px 0 0;
}

.sidebar .recommended-guide li{
    margin: 0 30px 0 0;
}

.page_title{
    margin: 0;
    padding: 10px 0;
    max-width: 100%;
   	background: #f9fdd6;
	border-bottom: 2px solid #1a822a;
	border-top: 2px solid #1a822a;
}

.page_title h2,{
    border-bottom: none !important;
    font-size: 30px;
    color: #000;
    margin: 1px 0 0;
}

h2.page-title{
    margin: 0 0 50px;
    padding-left: 30px;
    max-width: 100%;
    background: #f9fdd6;
	border-bottom: 2px solid #1a822a;
	border-top: 2px solid #1a822a;
    background-size: cover;
    background-position: center center;
	font-size: 30px;
    color: #000;
	text-align: left;
}

/*通知設定枠内*/
body.page-template-page-work_top #notify_email_options_container {
    background: #fff;
}

body.page-template-page-work_top .bzmp_notify_list_item_title_label {
    color: #1f6e8b;
    padding: 0 0 3px;
    border-bottom: 1px solid #1f6e8b;
}

body.page-template-page-work_top .bzmp_notify_list_item_status_label {
    color: #1f6e8b;
    padding: 20px 0 3px;
    border-bottom: 1px solid #1f6e8b;
}

body.page-template-page-work_top .bzmp-shortcode-content {
    padding: 0 !important;
}

body.page-template-page-work_top #bzmp_work_list {
    padding: 10px;
}

body.page-template-page-work_top #bzmp_work_list div,
body.page-template-page-work_list #bzmp_work_list div,
body.page-template-page-work_view .bzmp_work_view_item div,
body.page-template-page-apply_confirm .bzmp_apply_view_item div,
body.page-template-default #bzmp_work_list div
 {
    margin-bottom: 0;
}

body.page-template-page-work_top .bzmp_work_list_item,
body.page-template-page-work_list .bzmp_work_list_item{
    border: 1px solid #35485c !important;
    padding: 0;
}

body.page-template-page-work_top .bzmp_work_list_item .bzmp-form-row{
    background: #fff;
}

body.page-template-page-work_top .bzmp-form-row .bzmp-form-value{
    overflow-wrap: anywhere;
}

body.page-template-page-work_top .bzmp_notify_list .bzmp_notify_list_item .bzmp-form-row{
    background: #fff;
    border-bottom:1px solid #e0effc;
}
@media screen and (max-width: 991px) {

body.page-template-page-work_top #bzmp_work_list>.bzmp-form-section {
        padding: 16px;
}
body.page-template-page-work_top .bzmp-form-row .bzmp-form-label {
    background: #e6e6e6;
    width: 100%;
    text-align: center;
}

}
@media screen and (max-width: 768px) {
body.page-template-page-work_top .bzmp-form-row .bzmp-form-label{
    padding: 8px 0;
    background: #e6e6e6;
}
/*body.page-template-page-work_top .bzmp-form-row .bzmp-form-control .bzmp-form-value{
    margin: -15px 0 0;
}*/
body.page-template-page-work_top .bzmp-form-row .bzmp-form-control {
    margin: -15px 0 0;
}
}

body.page-work_list #bzmp_work_list>.bzmp-form-section:first-of-type {
	background-color: #f5f5f5;
    border: 1px solid #35485c;
    box-shadow: none;
    padding: 16px;
    margin-bottom: 30px;
}

#bzmp_worklist_search_reset,
#bzmp_worklist_search_submit {
    border: 1px solid #74b1d8;
    border-radius: 25px;
    background: #fff;
    transition: 0.5s;
    color: #74b1d8;
}

#bzmp_worklist_search_reset:hover,
#bzmp_worklist_search_submit:hover {
    background: #74b1d8;
    color: #fff;
}

#bzmp_work_list .bzmp_work_list_item .bzmp-form-row:nth-of-type(odd){
	background-color: #fff !important;
	margin: 0;
}

body.page-template-page-work_list h3.bzmp-form-section-title{
    margin: 0 0 20px;
}

body.page-work_list #bzmp_work_list>.bzmp-form-section:first-of-type .bzmp-form-actions {
    background-color: transparent;
    padding-top: 24px;
    margin-top: 16px;
    border-top: 0px solid rgb(224, 224, 224);
}

body.page-work_list #bzmp_work_list>.bzmp-form-section:first-of-type .bzmp-form-label {
    padding-top: 8px;
    padding-bottom: 8px;
    width: 22%;
}

@media screen and (max-width: 991px) {
body.page-work_list #bzmp_work_list>.bzmp-form-section:first-of-type .bzmp-form-label {
    padding-top: 8px;
    padding-bottom: 8px;
    width: 100%;
    text-align: center;
    }
body.page-work_list #bzmp_work_list>.bzmp-form-section:first-of-type .bzmp-form-control {
    padding-top: 0;
    padding-bottom: 8px;
}
#bzmp_work_list .bzmp_work_list_item .bzmp-form-row {
    background-color: #fff !important;
    margin: 0;
    text-align: center;
    padding: 10px 0;
}

body.page-template-page-work_list .bzmp-form-row .bzmp-form-control {
    padding: 0;
    display: inline-block;
}

body.page-template-page-work_list .bzmp_work_list_item .bzmp-form-row .bzmp-form-label{
    padding-top: 8px;
    padding-bottom: 0 !important;
}
body.page-template-page-work_view .bzmp_work_view_item div {
    text-align: center;
}
body.page-template-page-work_view .bzmp_work_view_item div {
    margin-bottom: 0;
}
body.page-template-page-work_view .bzmp_work_view_item .bzmp-form-control{
    padding-top: 0;
    padding-bottom: 8px;
    display: inline-block;
}
body.page-template-page-work_view .bzmp_work_view_item div[class$="_label"]{
    background: none;
}
}

.work_view_btn .btn {
    display: inline-block;
    height: 50px;
    text-align: center;
    background-color: #74b1d8;
    color: #fff;
    border: 1px solid #74b1d8;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    outline: none;
    border-radius: 26px;
    margin: 0px 5px;
    padding: 5px 15px;
}

.work_view_btn .btn:hover {
    background-color: #fff;
    color: #74b1d8;
    border: 1px solid #74b1d8;
}

body.page-template-default .bzmp_work_list_item{
    padding: 0;
}

/* =================================================================
   マイページ
   ================================================================= */
body.um-own-profile .um-cover {
    background: #e0effc;
    border: 1px solid #3ba1da;
}
body.um-own-profile .um-profile.um .um-profile-headericon a {
    color: #3ba1da;
}
body.um-own-profile .um-profile-nav {
    background: #e0effc;
    border: 1px solid #3ba1da;
}
body.um-own-profile .um-profile-nav-item a {
    color: #3ba1da !important;
}
body.um-own-profile .um-profile-nav-item a:hover {
    background: #3ba1da;
    color: #fff !important;
}
body.um-own-profile .um-profile-nav-item.active a {
    color: #fff !important;
}

/*　ロゴの横幅サイズ*/
.header_logo {
    padding: 0px;
    text-align: center;
    margin: 0 0 0 -12px;
}

.header_logo h1 {
    margin-bottom: 0 !important;
    padding: 10px 0;
    width: 350px;
    line-height: 0;
    
}

.header_logo h1 img {
    width: 100%;
}

@media (max-width: 1240px) {
.header_logo h1 {
        width: 250px;
        line-height: 0;
        margin-bottom: 0 !important;
    }
}

.main-area{
    margin: 0 auto;
    padding: 100px 0 0;
    width: 100%;
    background: url(../images/img-mainvisual.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    height: 800px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 992px) {
.main-area {
        margin: 0;
        padding: 100px 0 0;
}
}

@media (max-width:768px) {
    .main-area{
        margin: 0px 0 0;
        padding: 80px 0 0;
        background: url(../images/img-mainvisual.jpg) no-repeat;
        background-position: center top;
        background-size: cover;
        height: 60vh;
        box-sizing: border-box;
        text-align: center;
    }
}

.sub-catch{
    margin: 0;
    padding: 2px;
    font-size: 28px;
    font-weight: bold;
    color: #124170;
    text-align: center;
    text-align: center;
    line-height: 1.5;
}
.main-catch {
    margin: 10px auto 0;
    padding: 2px;
    font-size: 50px;
    font-weight: bold;
    color: #124170;
    text-align: center;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (max-width:768px) {

.sub-catch{
    margin: 0px auto;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-align: center;
    line-height: 1.5;
    width: 90%;
    color: #124170;
}
    .main-catch {
    margin: 5px auto 0;
    padding: 0;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
    width: 90%;
    color: #124170;
}
}

.toppage-bg01{
    margin: 0;
    padding: 0 10px 70px;
    background: url(../images/img-topbg-01.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
    box-sizing: border-box;
}

.page-base{
    margin: 0 auto;
    padding: 70px 10px;
    max-width: 1200px;
}

.page-base-02{
    margin: 0 auto;
    padding: 30px 10px 70px;
    max-width: 1200px;
}

@media (max-width:768px) {
.page-base,
.page-base-02{
    margin: 0 auto;
    padding: 40px 0px;
    max-width: 90%;
}
}

.lead-text{
    margin: 30px auto 0;
    padding: 0;
    text-align: center;
    font-size: 20px;
    max-width:1200px;
}

.bg-green{
    background: #f9fed7;
}

.text-green{
    color: #1a8d2d;
}

.text24{
    font-size: 24px;
}

.ylw-marker {
    background: linear-gradient(transparent 60%, #fff781 60%);
}

.matching-illust{
    margin: 50px auto 0;
    padding: 50px;
    background: #fff;
    max-width: 800px;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px #20a53493;
}

.matching-illust img{
    width: 100%;
    height: auto;
}

.lead-text-02{
    margin: 25px 0 0;
    padding: 0;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #20a533;
}

.top-touroku-base{
    margin: -1px 0 0;
    padding: 50px 0 80px;
    background: url(../images/img-touroku-bg.jpg) no-repeat;
    background-position: center bottom;
    background-size: cover;
    text-align: center;
    color: #124170;
    font-size: 24px;
    font-weight: bold;
}

.top-touroku-base .button a {
    background: #fff;
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px auto 0;
    max-width: 250px;
    padding: 5px 25px;
    font-family: "Noto Sans Japanese";
    color: #124170;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

.top-touroku-base a:hover {
    background: #ffffffa6;
    color: #124170;
}

.top-touroku-base a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #1a822a;
    border-right: 3px solid #1a822a;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 47%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.button a:hover:after {
    border-color: #24a537;
}

.menu-heading{
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: bold;
    color: #124476;
    text-align: center;
}

@media (max-width:768px) {
    .menu-heading{
        font-size: 26px;
    }

}

.service-base{
    margin: 50px auto 0;
    padding: 0;
    max-width: 900px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-base li:nth-child(-n+4) {
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    width: 25%;
    list-style: none;
    text-align: center;
    display: inline-block;
}

.service-base li{
    margin: 0;
    padding: 0;
    position: relative;
    width: 25%;
    list-style: none;
    text-align: center;
    display: inline-block;
}

@media (max-width:768px) {
.service-base li:nth-child(-n+4),
.service-base li{
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    width: 50%;
    list-style: none;
    text-align: center;
}
}

.service-base li img{
    width: 60%;
    height: auto;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.service-base li .service-text{
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #124476;
}

@media (max-width:768px) {
    .service-base li .service-text{
        font-size: 18px;
        top: 30%;
        letter-spacing: 2px;
    }
}

.merit-base{
    margin: 150px auto 0;
    padding: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}

.merit-base li{
    margin: 0;
    padding: 100px 20px 20px;
    border: 1px solid #A3CD11;
    background: #fff;
    width: 30%;
    box-sizing: border-box;
    list-style: none;
    position: relative;
}

@media (max-width:768px) {
.merit-base li{
    margin: 0 auto 130px;
    padding: 100px 20px 20px;
    border: 1px solid #A3CD11;
    background: #fff;
    width: 90%;
    box-sizing: border-box;
    list-style: none;
    position: relative;
}
.merit-base li:last-child {
    margin: 0 auto;
    padding: 100px 20px 20px;
    border: 1px solid #A3CD11;
    background: #fff;
    width: 90%;
    box-sizing: border-box;
    list-style: none;
    position: relative;
}
}

.merit-base li .number{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 60px;
    font-style: italic;
    color: #A3CD11;
    line-height: 1.0;
    position: absolute;
    top: -65px;
    left: 0px;
    z-index: 2;
}

.merit-base li .image_circle_01 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url("../images/img-merit-01.jpg");
    background-size: cover;
    background-position: 45% center;
    position: absolute;
    top:-100px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}
.merit-base li .image_circle_02 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url("../images/img-merit-02.jpg");
    background-size: cover;
    background-position: 45% center;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}
.merit-base li .image_circle_03 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: url("../images/img-merit-03.jpg");
    background-size: cover;
    background-position: 20% center;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}

@media (max-width:768px) {
.merit-base li .number{
    font-size: 50px;
}

.merit-base li .image_circle_01,
.merit-base li .image_circle_02,
.merit-base li .image_circle_03 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
}


.merit-base li .merit-title{
    margin: 20px 0 10px;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
}

.guide-base{
    margin: 50px auto 0;
    padding: 0;
    max-width: 800px;
}

.guide-base li{
    margin: 0 auto;
    padding: 30px 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 2px 2px 5px #ccc;
}

.guide-base li.arrow {
    margin: 0 auto;
    padding: 0;
    padding: 20px 0;
    text-align: center;
    width: 50px;
    background: none;
    box-shadow: none
}

.guide-base li.arrow img{
    width: 100%;
    height: auto;
}

.guide-base li .number{
    margin: 0;
    padding: 0;
    text-align: center;
    width: 17%;
}

.guide-base li .number img{
    width: 100%;
    height: auto;
}

.guide-base li .guide-text{
    margin: 0;
    padding: 0;
    text-align: left;
    width: 75%;
}

.guide-base li .guide-text .title{
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
.guide-base li {
    margin: 0 auto;
    padding: 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 2px 2px 5px #ccc;
}
.guide-base li.arrow {
    margin: 0 auto;
    padding: 0;
    padding: 20px 0;
    text-align: center;
    width: 30px;
    background: none;
    box-shadow: none
}

.guide-base li.arrow img {
    width: 100%;
    height: auto;
}

.guide-base li .number {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 50%;
}

.guide-base li .number img {
    width: 100%;
    height: auto;
}

.guide-base li .guide-text {
    margin: 10px 0 0;
    padding: 0;
    text-align: left;
    width: 100%;
}

.guide-base li .guide-text .title {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
}
}

@media screen and (max-width: 480px) {
.bzmp-form-control span {
    font-size: 12px;
    writing-mode: horizontal-tb !important;
    width: 50px;
    box-sizing: border-box;
}

.bzmp_apply_view_item_score_value,
.bzmp_apply_view_item_result_value{
    margin: 0 0 0 10px;
}
}

h2.text-center {
    display: inline-block;
	padding-left: 30px;
}