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

/* --- デザインの基本設定（ここを各サイトに合わせてカスタマイズする） --- */
:root {
    --form-base-text-color: #333;
    --form-accent-color: #74B0D7; /* ボタンや必須マークなど */
    --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: #666;
    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 #34495E;
}

/*.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 #35485c;
}

.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: url("https://nishiki-match.com/wp-content/uploads/2025/11/タイトル背景.png") no-repeat;
	border-bottom: 2px solid #35485c;
	border-top: 2px solid #35485c;
    background-size: cover;
    background-position: center center;
}

.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: url("https://nishiki-match.com/wp-content/uploads/2025/11/タイトル背景.png") no-repeat;
	border-bottom: 2px solid #35485c;
	border-top: 2px solid #35485c;
    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 {
    width: 416px;
    line-height: 0;
    margin-bottom: 0 !important;
}

.header_logo h1 img {
    width: 100%;
}

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

.main-area{
    margin: -140px 0 0;
    padding: 270px 0 0;
    background: url(../images/img-nishiki-mainv.png) no-repeat;
    background-position: center top;
    background-size: cover;
    height: 700px;
    box-sizing: border-box;
    text-align: center;
}

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

@media (max-width:768px) {
    .main-area{
        margin: 0px 0 0;
        padding: 140px 0 0;
        background: url(../images/img-nishiki-mainv.png) 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: 24px;
    font-weight: bold;
    color: #34495e;
    text-align: center;
    text-align: center;
    line-height: 1.5;
}
.main-catch {
    margin: 0 auto;
    padding: 2px;
    font-size: 50px;
    font-weight: bold;
    color: #366e94;
    text-align: center;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media (max-width:768px) {

.sp-maincatch-bg{
    margin: 10px 0 0;
    padding: 20px 5px;
    width: 100%;
    background: #34495e;
}

.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: #fff;
}
    .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: #fff;
}
}

.page-bg{
    margin: 0;
    padding: 0;
    width: 100%;
    background: url(../images/img-page-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}

.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: left;
    max-width: 850px;
}

.matching-illust{
    margin: 30px auto 0;
    padding: 0;
    max-width: 700px;
}

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

.lead-text-02{
    margin: 30px 0 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #34495E;
}

.top-touroku-base{
    margin: 0;
    padding: 50px 0 80px;
    background: url(../images/img-touroku-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    text-align: center;
    color: #fff;
    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: #34495E;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

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

.top-touroku-base a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #34495E;
    border-right: 3px solid #34495E;
    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: #34495E;
}

.menu-heading{
    margin: 0;
    padding: 30px 0;
    width: 100%;
    background: #34495E;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

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

}

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

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

@media (max-width:768px) {
.service-base li{
    margin: 0;
    padding: 0;
    position: relative;
    width: 50%;
    list-style: none;
    text-align: center;
    background-color: #34495e;
    display: inline-block;
}
}

.service-base li img{
    width: 100%;
    height: auto;
    opacity: 0.5;
    display: block;
}

.service-base li .service-text{
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #74b2d8ad;
    border: 1px solid #fff;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    letter-spacing: 5px;
    width: 70%;
}

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

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

.tokuchou-base li{
    margin: 0;
    padding: 0;
    position: relative;
    width: 33.33%;
    list-style: none;
    text-align: center;
}

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

.tokuchou-base li .tokuchou-text{
    margin: 0 auto;
    padding: 30px;
    text-align: left;
    font-size: 18px;
    color: #34495e;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    width: 100%;
    box-sizing: border-box;
    background: #ffffffd4;
}

.tokuchou-base li .tokuchou-text .title{
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: bold;
}

@media (max-width: 1350px) {
    .tokuchou-base li .tokuchou-text .title{
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: bold;
}
.tokuchou-base li .tokuchou-text {
    padding: 15px;
    font-size: 16px;
}
}

@media (max-width:768px) {
.tokuchou-base{
    margin: 0;
    padding: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
}

.tokuchou-base li{
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    list-style: none;
    text-align: center;
}
}

.tokuchou-base li:nth-of-type(2) .tokuchou-text {
    border: 1px solid #34495e;
}

@media (max-width:768px) {
.tokuchou-base li:nth-of-type(2) .tokuchou-text {
    border-top: 1px solid #34495e;
    border-right: none;
    border-bottom: 1px solid #34495e;
    border-left: none;
}

}

.guide-flow{
    margin: 0px auto;
    padding: 70px 0;
    max-width: 1100px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.guide-flow li{
    margin: 0;
    padding: 30px;
    border: 1px solid #34495e;
    text-align: left;
    background: #fff;
    width: 30%;
    list-style: none;
    position: relative;
}

.guide-flow li .guide-title{
    margin: 0 0 20px;
    padding: 0 0 5px;
    font-size: 24px;
    font-weight: bold;
    color: #4085af;
    text-align: center;
    border-bottom: 1px solid #4085af;
}

@media (max-width:768px) {
.guide-flow{
    margin: 0px auto;
    padding: 30px 0;
    width: 90%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.guide-flow li{
    margin: 10px 0;
    padding: 30px;
    border: 1px solid #34495e;
    text-align: left;
    background: #fff;
    width: 100%;
    list-style: none;
    position: relative;
}
}

/* ラベル部分 左上に表示 */
.guide-flow li::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 5em solid transparent;
    border-left: 5em solid #34495e;
    /* ラベルの色はここで変更 */
    position: absolute;
    z-index: 1;
}

.guide-flow li:nth-of-type(1)::after {
    content: "01";
    display: block;
    top: 0px;
    color: #fff;
    /* 文字色はここで変更 */
    left: 6px;
    position: absolute;
    z-index: 2;
    font-size: 28px;
    font-weight: bold;
}

.guide-flow li:nth-of-type(2)::after {
    content: "02";
    display: block;
    top: 0px;
    color: #fff;
    /* 文字色はここで変更 */
    left: 6px;
    position: absolute;
    z-index: 2;
    font-size: 28px;
    font-weight: bold;
}

.guide-flow li:nth-of-type(3)::after {
    content: "03";
    display: block;
    top: 0px;
    color: #fff;
    /* 文字色はここで変更 */
    left: 6px;
    position: absolute;
    z-index: 2;
    font-size: 28px;
    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;
}

.menu-header-container .menu li a:hover,
.footer_menu_wrap li a:hover {
    color: #74b1d8;
}