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

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

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 #61AA1D;
    border-radius: 25px;
    background: #fff;
    transition: 0.5s;
    color: #61AA1D;
}

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: #61AA1D;
    color: #fff;
}


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

.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: #61AA1D;
    font-weight: bold;
    border-bottom: 5px solid #61AA1D;
}

/*.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: 768px) {
    .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: 1px solid #61AA1D;
}

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

.sidebar h4.sidebar,
.recommended-guides h4.mg-popular-guides-title{
    background: #F6FFF0;
    border-bottom: 1px solid #61AA1D !important;
    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://tripley-matching.com/wp-content/uploads/2025/11/img-bg-01.png) ;
	background-size: 10px;
}

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

h2.page-title{
    margin: 0 0 50px;
    width: 100%;
    background: url(https://tripley-matching.com/wp-content/uploads/2025/11/img-bg-01.png);
    background-size: 10px;
    font-size: 30px;
    color: #000;
    }

/*通知設定枠内*/
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: #61AA1D;
    padding: 0 0 3px;
    border-bottom: 1px solid #61AA1D;
}

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

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 #61AA1D !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 #F6FFF0;
}

@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: #F6FFF0;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    padding: 16px;
    margin-bottom: 30px;
}

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

#bzmp_worklist_search_reset:hover,
#bzmp_worklist_search_submit:hover {
    background: #61AA1D;
    color: #fff;
}

/*#bzmp_work_list .bzmp_work_list_item .bzmp-form-row {
    background-color: #F6FFF0 !important;
    margin: 0;
}*/

#bzmp_work_list .bzmp_work_list_item .bzmp-form-row:nth-of-type(odd){
    background-color: #F6FFF0 !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: #E0F0FC !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: #61AA1D;
    color: #fff;
    border: 1px solid #61AA1D;
    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: #61AA1D;
    border: 1px solid #61AA1D;
}

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

/* =================================================================
   マイページ
   ================================================================= */
body.um-own-profile .um-cover {
    background: #F6FFF0;
    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: #F6FFF0;
    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;
}

.green{
    color: #61AA1D;
}

.about-title{
    margin: 0 auto;
    padding: 0;
    max-width: 700px;
}

.about-title img {
    width: 100%;
    height: auto;
}

.about-leadtext {
    margin: 30px auto 0;
    padding: 0;
    font-size: 18px;
    max-width: 700px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .about-leadtext {
        margin: 0 auto;
        padding: 0;
        font-size: 18px;
        max-width: 100%;
        text-align: left;
    }
}

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

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

.top-btn-shinki a {
    background: #61AA1D;
    border-radius: 40px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px auto 0;
    max-width: 400px;
    padding: 15px 25px;
    font-family: "Noto Sans Japanese";
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    font-size: 24px;
    box-sizing: border-box;
}

.top-btn-shinki a:hover {
    background: #7ccf2f;
    color: #FFF;
}

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

.top-btn-shinki a:hover:after {
    border-color: #FFF;
}

.page-bg-green{
    background:#f7fff1;
    width: 100%;
}

.page-bg-orange{
    background: #fff1dd;
    width: 100%;
}

.page-green {
    margin: 0 auto;
    padding: 0 10px;
    background: url(../images/img-bg-square.png) repeat-y;
    background-size: contain;
    background-position: center top;
    max-width: 1400px;
}

.page-green-02 {
    margin: 0 auto;
    padding: 0 10px;
    background: url(../images/img-bg-triangle.png) repeat-y;
    background-size: contain;
    background-position: center top;
    max-width: 1400px;
}

.page-orange {
    margin: 0 auto;
    padding: 150px 10px 30px;
    background: url(../images/img-bg-circle.png) repeat-y;
    background-size: contain;
    background-position: center top;
    max-width: 1400px;
}

@media screen and (max-width: 991px) {
    .page-green,
    .page-green-02
     {
        margin: 0 auto;
        padding: 0;
        background-size: cover;
        width: 90%;
    }
    .page-orange {
    margin: 0 auto;
    padding: 50px 0 30px;
    background: url(../images/img-bg-circle.png) repeat-y;
    background-size: cover;
    background-position: center top;
    width: 90%;
}
}

.service-tokucho{
    margin: 0 auto;
    padding: 0;
    width: 700px;
}

@media screen and (max-width: 991px) {
    .service-tokucho {
        margin: 0 auto;
        padding: 0;
        width: 60%;
    }
}

@media screen and (max-width: 480px) {
.service-tokucho {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    }
}

.service-tokucho img{
    width: 100%;
    height: auto;
}

.s-tokucho-base{
    margin: 0 auto;
    padding: 0 10px 80px;
    max-width: 1200px;
    list-style: none;
    box-sizing: border-box;
}

.s-tokucho-base li{
    margin: 120px 0 0 auto;
    padding: 50px 0;
    position: relative;
    background-image: linear-gradient(90deg, #74cf20, transparent);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 1160px;
    min-height: 325px;
}

.s-tokucho-base li.second {
    margin: 120px auto 0 0;
    padding: 50px 0;
    position: relative;
    background-image: linear-gradient(-90deg, #74cf20, transparent);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 1160px;
    min-height: 325px;
}

.s-tokucho-base li .point-title {
    position: absolute;
    left: -30px;
    top: -45px;
}

.s-tokucho-base li.second .point-title-second {
    position: absolute;
    right: -30px;
    top: -45px;
}

.s-tokucho-base li .title {
    margin: 40px 0 0;
    padding: 10px;
    text-align: left;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    background: #465B2E;
    display: inline-block;
    color: #fff080
}

.s-tokucho-base li .title-second {
    margin: 0;
    padding: 10px;
    text-align: left;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    background: #465B2E;
    display: inline-block;
    color: #fff080;
    position: absolute;
    top: 80px;
    right: 0;
}

.s-tokucho-base li .text {
    margin: 30px 0 0 30px;
    padding: 0;
    text-align: left;
    font-size: 18px;
    display: block;
}

.s-tokucho-base li .text-second{
    margin: 30px 30px 0 0;
    padding: 0;
    text-align: left;
    font-size: 18px;
    display: block;
    position: absolute;
    top: 150px;
    right: 0;
    width: 45%;
}

.s-tokucho-base li .illust{
    position: absolute;
    right: 0px;
    top: 0;
    width: 400px;
}

.s-tokucho-base li .illust-second {
    position: absolute;
    left: 0px;
    top: 0;
    width: 500px;
}

.s-tokucho-base li .illust img,
.s-tokucho-base li .illust-second img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 991px) {
.s-tokucho-base{
    margin: 0 auto;
    padding: 0 10px 50px;
    max-width: 1200px;
    list-style: none;
    box-sizing: border-box;
}

.s-tokucho-base li{
    margin: 80px 0 0 auto;
    padding: 50px 0;
    position: relative;
    background-image: linear-gradient(90deg, #74cf20, transparent);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 1160px;
    min-height: 325px;
}

.s-tokucho-base li.second {
    margin: 80px auto 0 0;
    padding: 50px 0;
    position: relative;
    background-image: linear-gradient(-90deg, #74cf20, transparent);
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 1160px;
    min-height: 325px;
}

.s-tokucho-base li .point-title {
    width: 60%;
    position: absolute;
    left: 10px;
    top: -25px;
}

.s-tokucho-base li .point-title img{
    width: 100%;
    height: auto;
}

.s-tokucho-base li.second .point-title-second {
    width: 60%;
    position: absolute;
    right: 10px;
    top: -25px;
}

.s-tokucho-base li .point-title-second img {
    width: 100%;
    height: auto;
}

.s-tokucho-base li .title {
    margin: 0px 0 0;
    padding: 10px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #465B2E;
    display: block;
    color: #fff080
}

.s-tokucho-base li .title-second {
    margin: 0;
    padding: 10px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #465B2E;
    display: inline-block;
    color: #fff080;
    position: absolute;
    top: 50px;
    right: 0;
}

.s-tokucho-base li .text {
    margin: 30px auto 0;
    padding: 0;
    text-align: left;
    font-size: 16px;
    display: block;
    width: 90%;
}

.s-tokucho-base li .text-second{
    margin: 120px auto 0;
    padding: 0;
    text-align: left;
    font-size: 16px;
    display: block;
    position:static;
    width: 90%;
}

.s-tokucho-base li .illust{
    position: relative;
    right: 0px;
    top: 0;
    margin: 30px auto 0;
    width: 80%;
}

.s-tokucho-base li .illust-second {
    position: relative;
    left: 0px;
    top: 0;
    margin: 30px auto 0;
    width: 80%;
}

.s-tokucho-base li .illust img,
.s-tokucho-base li .illust-second img{
    width: 100%;
    height: auto;
}
}

.t-merit-heading{
    margin: 0;
    padding: 60px 0 40px;
    width: 100%;
    background: #E8AB51;
    color: #fff;
    text-align: center;
    position: relative;
}

.t-merit-heading .en-title{
    margin: 0 auto;
    padding: 0;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 20px;
    font-family: "Roboto", sans-serif;
    border-bottom: 3px solid #fff;
    line-height: 0.6;
    width: 90%;
}

.t-merit-heading .title {
    margin: 20px auto 0;
    padding: 0;
    font-size: 30px;
    font-weight: bold;
}

.t-merit-heading .btm-01{
    position: absolute;
    text-align: center;
    margin: 0 auto;
    bottom: -60px;
    right: 0;
    left: 0;
    width: 220px;
}

@media screen and (max-width: 991px) {
.t-merit-heading{
    margin: 0;
    padding: 30px 0 20px;
    width: 100%;
    background: #E8AB51;
    color: #fff;
    text-align: center;
    position: relative;
}

.t-merit-heading .en-title{
    margin: 0 auto;
    padding: 0;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 15px;
    font-family: "Roboto", sans-serif;
    border-bottom: 3px solid #fff;
    line-height: 0.6;
    width: 90%;
}

.t-merit-heading .title {
    margin: 15px auto 0;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
}

.t-merit-heading .btm-01{
    position: absolute;
    text-align: center;
    margin: 0 auto;
    bottom: -25px;
    right: 0;
    left: 0;
    width: 100px;
}
}

.t-merit-heading .btm-01 img{
    width: 100%;
    height: auto;
}

.t-merit-list{
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
    list-style: none;
}

.t-merit-list li{
    margin: 0 0 50px;
    padding: 0;
}

.t-merit-list li .heading{
    margin: 0;
    padding: 0;
    background: #E8AB51;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: left;
    position: relative;
    height: 80px;
}

.t-merit-list li .heading .num{
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 80px;
    font-weight: bold;
    position: absolute;
    bottom: -5px;
    left: 30px;
    line-height: 1.0;
}

.t-merit-list li .heading .title {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 150px;
}
.t-merit-list li .heading-02 {
    margin: 0;
    padding: 0;
    background: #9BD367;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: left;
    position: relative;
    height: 80px;
}

.t-merit-list li .heading-02 .num {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 80px;
    font-weight: bold;
    position: absolute;
    bottom: -5px;
    left: 30px;
    line-height: 1.0;
}

.t-merit-list li .heading-02 .title {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 150px;
}

.t-merit-text{
    margin: 0;
    padding: 30px;
    background: #fff;
    width: 100%;
    border-radius: 0 0 20px 20px;
    text-align: left;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.t-merit-text .left {
    margin: 0 auto;
    padding: 0;
    width: 10%;
}

.t-merit-text .left img {
    width: 100%;
    height: auto;
}

.t-merit-text .right {
    margin: 0;
    padding: 0;
    width: 85%;
    text-align: left;
    font-size: 16px;
}

@media screen and (max-width: 480px) {
.t-merit-list li .heading{
    margin: 0;
    padding: 0;
    background: #E8AB51;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: left;
    position: relative;
    height: 80px;
}

.t-merit-list li .heading .num{
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 60px;
    font-weight: bold;
    position: absolute;
    bottom: -5px;
    left: 10px;
    line-height: 1.0;
}

.t-merit-list li .heading .title {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 90px;
}
.t-merit-list li .heading-02 {
    margin: 0;
    padding: 0;
    background: #9BD367;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: left;
    position: relative;
    height: 80px;
}

.t-merit-list li .heading-02 .num {
    margin: 0 20px 0 0;
    padding: 0;
    font-size: 60px;
    font-weight: bold;
    position: absolute;
    bottom: -5px;
    left: 10px;
    line-height: 1.0;
}

.t-merit-list li .heading-02 .title {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    left: 90px;
}

.t-merit-text{
    margin: 0;
    padding: 30px;
    background: #fff;
    width: 100%;
    border-radius: 0 0 20px 20px;
    text-align: left;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
}


.t-merit-text .left{
    margin: 0 auto;
    padding: 0;
    width: 50%;
}

.t-merit-text .left img{
    width: 100%;
    height: auto;
}

.t-merit-text .right {
    margin: 20px 0 0;
    padding: 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
}
}

.lineup-base{
    margin: 100px 0 0;
    padding: 0 0 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lineup-base li {
    margin: 0 0 50px;
    padding: 0;
    width: 48%;
    list-style: none;
}

.lineup-base li .lineup-title{
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background: #61AA1D;
    text-align: left;
    border-radius: 12px 12px 0 0;
    max-width: 250px;
    text-align: center;
}

.lineup-base li .lineup-textbox{
    margin: 0;
    padding: 30px;
    text-align: left;
    background: #fff;
    border: 1px solid #61AA1D;
    background: #fff;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
.lineup-base{
    margin: 50px 0 0;
    padding: 0 0 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap:nowrap;
}

.lineup-base li {
    margin: 0 0 30px;
    padding: 0;
    width: 100%;
    list-style: none;
}

.lineup-base li .lineup-title{
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: #61AA1D;
    text-align: left;
    border-radius: 12px 12px 0 0;
    max-width: 200px;
    text-align: center;
}

.lineup-base li .lineup-textbox{
    margin: 0;
    padding: 20px;
    text-align: left;
    background: #fff;
    border: 1px solid #61AA1D;
    background: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}
}

.lineup-base li .lineup-text-01,
.lineup-base li .lineup-text-02,
.lineup-base li .lineup-text-03,
.lineup-base li .lineup-text-04,
.lineup-base li .lineup-text-05,
.lineup-base li .lineup-text-06,
.lineup-base li .lineup-text-07,
.lineup-base li .lineup-text-08
{
    margin: 0;
    padding: 0;
}

.lineup-base li .lineup-text-01::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-01.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-02::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-02.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-03::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-03.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-04::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-04.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-05::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-05.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-06::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-06.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-07::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-07.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}
.lineup-base li .lineup-text-08::before {
    content: "";
    width: 150px;
    height: 150px;
    background-image: url('../images/img-tmenu-08.svg');
    background-position: center;
    background-size: contain;
    position: absolute;
    bottom: 5px;
    right: 20px;
    opacity: 0.2;
    z-index: -1;
}

.lineup-base li .lineup-category{
    margin: 15px 10px 0 0;
    padding: 3px 10px;
    font-size: 13px;
    color: #61AA1D;
    text-align: center;
    border: 1px solid #61AA1D;
    border-radius: 20px;
    display: inline-block;
    min-width: 80px;
}
.guide-base{
    margin:0;
    padding: 0;
    width: 100%;
    background: url(../images/img-guide-bg.jpg);
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
}

.guide-title{
    margin: 0 auto;
    padding: 0;
    max-width: 700px;
}

.guide-title img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
.guide-title{
    margin: 0 auto;
    padding: 0;
    max-width: 90%;
}
}

.triple-guide{
    margin: 80px auto 0;
    padding: 0;
    max-width: 1000px;
}

.triple-guide li{
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}

.triple-guide li.stepbox01{
    margin: 0;
    padding: 50px 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    background: url(../images/icon-flow.svg) no-repeat;
    background-position: 4.5% 20px;
}

.triple-guide li.stepbox02 {
    margin: 0;
    padding: 50px 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    background: url(../images/icon-flow.svg) no-repeat;
    background-position: 4.5% 10px;
}


.triple-guide li .step,
.triple-guide li .stepbox01 .step,
.triple-guide li .stepbox02 .step{
    margin: 0;
    padding: 0;
    width: 12%;
}

.triple-guide li .step img,
.triple-guide li .stepbox01 .step img{
    width: 100%;
    height: auto;
}

.triple-guide li .guidetext,
.triple-guide li .stepbox01 .guidetext,
.triple-guide li .stepbox03 .guidetext{
    margin: 0;
    padding: 20px;
    font-size: 18px;
    background: #fff;
    border: 1px solid #61AA1D;
    border-radius: 20px;
    text-align: left;
    box-sizing: border-box;
    width: 85%;
}

@media screen and (max-width: 768px) {
.triple-guide li.stepbox01{
    background-position: 8% 20px;
}

.triple-guide li.stepbox02 {
    background-position: 8% 10px;
}

.triple-guide li .step,
.triple-guide li .stepbox01 .step,
.triple-guide li .stepbox02 .step{
    margin: 0;
    padding: 0;
    width: 20%;
}
.triple-guide li .guidetext,
.triple-guide li .stepbox01 .guidetext,
.triple-guide li .stepbox03 .guidetext {
    margin: 0;
    padding: 20px;
    font-size: 18px;
    background: #fff;
    border: 1px solid #61AA1D;
    border-radius: 20px;
    text-align: left;
    box-sizing: border-box;
    width: 75%;
}
}

@media screen and (max-width: 480px) {

.triple-guide{
    margin: 50px auto 0;
    padding: 0;
    max-width: 1000px;
}

.triple-guide li{
    margin: 0;
    padding: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.triple-guide li.stepbox01{
    margin: 0;
    padding: 50px 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    background: none;
}

.triple-guide li.stepbox02 {
    margin: 0;
    padding: 50px 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    background: none
}


.triple-guide li .step,
.triple-guide li .stepbox01 .step,
.triple-guide li .stepbox02 .step{
    margin: 0 auto;
    padding: 0;
    width: 20%;
}

.triple-guide li .step img,
.triple-guide li .stepbox01 .step img{
    width: 100%;
    height: auto;
}

.triple-guide li .guidetext,
.triple-guide li .stepbox01 .guidetext,
.triple-guide li .stepbox03 .guidetext{
    margin: 20px 0 0;
    padding: 20px;
    font-size: 16px;
    background: #fff;
    border: 1px solid #61AA1D;
    border-radius: 20px;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
}
}


.flow-icon{
    margin: 0;
    padding: 0;
    text-align: left;
}

/*-----------------------
　　　　　　　　　　　　　　　　　　footer
-----------------------*/

footer {
    background-color: #f1f1f1;
    padding: 0 0 5px;
    clear: both;
    border-bottom: 10px solid #61AA1D;
}

.footer-btnbase{
    margin: 0;
    padding: 30px 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;

}

/*会員登録ボタン・ログインボタン　*/
.footer-btnbase .btn.btn_member {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: #61AA1D;
    color: #fff !important;
    padding: 10px 0;
    font-size: 16px;
    margin: 0 10px;
    border-radius: 0;
    width: 250px;
    height: 45px;
    text-align: center;
}

.footer-btnbase .btn.btn_login {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: #F77E16;
    color: #fff !important;
    padding: 10px 0;
    font-size: 16px;
    border-radius: 0;
    width: 250px;
    height: 45px;
    text-align: center;
}

.footer-btnbase .btn.btn_member:hover {
    background: #7ccf2f;
}

.footer-btnbase .btn.btn_login:hover {
    background-color: #f59a4b;
}

.footerbox{
    margin: 0 auto 30px;
    padding: 0 10px;
    max-width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    box-sizing: border-box;
}

.footerbox .footer-logo{
    margin: 0;
    padding: 0;
    width: 200px;
}

.footerbox .footer-logo img{
    width: 100%;
    height: auto;
}

.footerbox .footer-menu{
    margin: 0;
    padding: 0;
    width: 80%;
    position: relative;
}

@media screen and (max-width: 1000px) {
    .footerbox .footer-logo{
    margin: 0;
    padding: 0;
    width: 150px;
}
}

.footerbox .footer-menu .menu-footer-container .menu{
    margin: 30px 0 0;
    padding: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    list-style: none;
    position: absolute;
    bottom: 0;
}

@media screen and (max-width: 1000px) {
.footerbox .footer-menu{
    margin: 0;
    padding: 0;
    width: 80%;
    position: relative;
}

.footerbox .footer-menu .menu-footer-container ul li {
    font-size: 12px;
}
}

@media screen and (max-width: 768px) {
.footerbox{
    margin: 0 auto 10px;
    padding: 0 10px;
    max-width: 1200px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
}

.footerbox .footer-logo{
    margin: 0 auto;
    padding: 0 0 370px;
    width: 200px;
}

.footerbox .footer-logo img{
    width: 100%;
    height: auto;
}

.footerbox .footer-menu{
    margin: 50px 0 0;
    padding: 0;
    width: 100%;
    position: relative;
}
.footerbox .footer-menu .menu-footer-container .menu {
    margin: 30px 0 0;
    padding: 0;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    list-style: none;
    position: absolute;
    bottom: 0;
}

.footerbox .footer-menu .menu-footer-container ul li {
    margin: 10px 0;
    padding: 0 0 10px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

}

@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;
}
}

.menu-header-container .menu li a:hover{
    color: #61AA1D;
}