@charset "utf-8";
/* --------------------------------
会員募集ページ

ボタンの個数を .cts-box と同じ要素にclassで指定

ボタンが3つの時：.btn3pieces
ボタンが2つの時：.btn2pieces
ボタンなし（ページが1種類）の時：.btn1pieces

-------------------------------- */

/* --------------- ボタンここから --------------- */

.msp-tblbox {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    width: 93%;
    margin-left: 3.5%;
}

.msp-hd {
    position: relative;
    top: 10px;
}

.msp-ft {
    margin-bottom: 40px;
}


/*ボタン3つここから*/

.btn3pieces .msp-cellbox {
    display: table-cell;
    width: 33.3%;
}

.btn3pieces .msp-tblbox .msp-cellbox:nth-child(1) {
    padding-right: 2%;
}

.btn3pieces .msp-tblbox .msp-cellbox:nth-child(2) {
    padding-left: 1%;
    padding-right: 1%;
}

.btn3pieces .msp-tblbox .msp-cellbox:nth-child(3) {
    padding-left: 2%;
}

/*ボタン3つここまで*/

/*ボタン2つここから*/

.btn2pieces .dl-cellbox {
    display: table-cell;
    width: 50%;
}

.btn2pieces .dl-tblbox .dl-cellbox:nth-child(1) {
    padding-right: 2%;
}

/*ボタン2つここまで*/

/*ボタンなしここから*/

.btn1pieces .dl-cellbox {
    display: none !important;
}

/*ボタンなしここまで*/

.msp-cellbox a {
    display: block;
    box-shadow: inset 2px 1px 1px rgba(255, 255, 255, 0.7), 2px 1px 1px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    background-color: #EEEEEE;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-size: calc( 1vw + 12.8px);
    text-align: center;
    position: relative;
}

.msp-hd a {
    height: 62px;
    line-height: 22px;
    font-size: 13px;
    font-size: calc( 1vw + 9.8px);
    padding-top: 5px;
}

.msp-ft a {
    height: 58px;
    line-height: 22px;
    font-size: 13px;
    font-size: calc( 1vw + 9.8px);
    padding-top: 8px;
}

.msp-cellbox a.msp-n-on {
    box-shadow: inset 2px 1px 1px rgba(255, 255, 255, 0.4), 2px 1px 1px rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    z-index: 50;
}

.msp-cellbox a.msp-nav1.msp-n-on {
    background-color: #24249F;
    /*紺*/
}

.msp-cellbox a.msp-nav2.msp-n-on {
    background-color: #D83888;
    /*ピンク*/
}

.msp-cellbox a.msp-nav3.msp-n-on {
    background-color: #969649;
    /*ゴールド*/
}

.msp-cellbox a::before {
    content: "";
    display: block;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 2px solid #AAAAAA;
    border-right: 2px solid #AAAAAA;
    position: absolute;
    left: 5px;
}

.msp-hd .msp-cellbox a::before {
    top: 22px;
}

.msp-ft .msp-cellbox a::before {
    top: 28px;
}

.msp-cellbox a.msp-n-on::before {
    -ms-transform: rotate(0deg);
    /*cg-n-onでない時のリセット*/
    -webkit-transform: rotate(0deg);
    /*cg-n-onでない時のリセット*/
    transform: rotate(0deg);
    /*cg-n-onでない時のリセット*/
}

.msptxt {
    display: inline-block;
    white-space: none;
}

.txt-narrow {
    display: inline-block;
    transform: scale(0.8, 1);
    overflow: visible;
}

.msp-hd .msp-cellbox a.msp-n-on::before {
    content: "";
    display: block;
    position: absolute;
    border-top: 9px solid rgba(0, 0, 0, 0.6);
    border-right: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid transparent;
    top: 61px;
    left: 42%;
    left: calc( 50% - 7px);
}

.msp-ft .msp-cellbox a.msp-n-on::before {
    content: "";
    display: block;
    position: absolute;
    border-top: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(0, 0, 0, 0.6);
    border-left: 9px solid transparent;
    top: auto;
    bottom: 56px;
    left: 42%;
    left: calc( 50% - 7px);
}

.msp-hd a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50px;
    left: 0px;
    background: #CCCCCC;
}

.msp-hd a.msp-n-on::after {
    background: transparent;
    /*cg-n-onでない時のリセット*/
    width: auto;
    /*cg-n-onでない時のリセット*/
    height: auto;
    /*cg-n-onでない時のリセット*/
}

.msp-hd .msp-cellbox a.msp-n-on::after {
    content: "";
    display: block;
    position: absolute;
    border-right: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid transparent;
    top: 61px;
    left: 40%;
    left: calc( 50% - 9px);
}

.msp-hd .msp-cellbox a.msp-nav1.msp-n-on::after {
    border-top: 9px solid #24249F;
    /*紺*/
}

.msp-hd .msp-cellbox a.msp-nav2.msp-n-on::after {
    border-top: 9px solid #D83888;
    /*ピンク*/
}

.msp-hd .msp-cellbox a.msp-nav3.msp-n-on::after {
    border-top: 9px solid #969649;
    /*ゴールド*/
}

.msp-ft .msp-cellbox a.msp-n-on::after {
    content: "";
    display: block;
    position: absolute;
    border-top: 9px solid transparent;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    top: auto;
    bottom: 56px;
    left: 40%;
    left: calc( 50% - 9px);
}

.msp-ft .msp-cellbox a.msp-nav1.msp-n-on::after {
    border-bottom: 9px solid #24249F;
    /*紺*/
}

.msp-ft .msp-cellbox a.msp-nav2.msp-n-on::after {
    border-bottom: 9px solid #D83888;
    /*ピンク*/
}

.msp-ft .msp-cellbox a.msp-nav3.msp-n-on::after {
    border-bottom: 9px solid #969649;
    /*ゴールド*/
}

.msp-tblbox {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    width: 93%;
    margin-left: 3.5%;
}


/* --------------- ボタンここまで --------------- */

/* --------------- メインカラー設定ここから--------------- */

.mcolor-blue .btn-cmn {
    background: #24249F;
}
.mcolor-blue .mbspd-ttl,
.mcolor-blue .mbspi-1 {
    color: #24249F;
}
.mcolor-blue .mbspd-fee-2box {
    color: #24249F;
    border: 1px solid #24249F;
}
.mcolor-blue .mbsp-sttl::after {
    background: transparent url(../img/common/cmn-separator-blue.png) center / 85px 5px no-repeat;
}
.mcolor-blue .mbsp-inq-wrap {
    border: 2px solid #6565BC;
}
.mcolor-blue .mbspd-list-1 li::after {
    background: #24249F;
}


.mcolor-pink .btn-cmn {
    background: #D83888;
}
.mcolor-pink .mbspd-ttl,
.mcolor-pink .mbspi-1 {
    color: #E42C88;
    /*鮮やかめ*/
}
.mcolor-pink .mbspd-fee-2box {
    color: #E42C88;
    /*鮮やかめ*/
    border: 1px solid #D83888;
}
.mcolor-pink .mbsp-sttl::after {
    background: transparent url(../img/common/cmn-separator-pink.png) center / 85px 5px no-repeat;
}
.mcolor-pink .mbsp-inq-wrap {
    border: 2px solid #E473AB;
}
.mcolor-pink .mbspd-list-1 li::after {
    background: #D83888;
}


.mcolor-gold .btn-cmn {
    background: #969649;
}
.mcolor-gold .mbspd-ttl,
.mcolor-gold .mbspi-1 {
    color: #969649;
}
.mcolor-gold .mbspd-fee-2box {
    color: #969649;
    border: 1px solid #969649;
}
.mcolor-gold .mbsp-sttl::after {
    background: transparent url(../img/common/cmn-separator-gold.png) center / 85px 5px no-repeat;
}
.mcolor-gold .mbsp-inq-wrap {
    border: 2px solid #B5B57F;
}
.mcolor-gold .mbspd-list-1 li::after {
    background: #969649;
}

@media (min-width: 740px) {
    .mbsp-btn-phone::after {
        content: "";
        display: block;
        width: 22px;
        height: 22px;
        background: transparent url(../img/common/icon-phone-gold.png) center / 22px 22px no-repeat;
        position: absolute;
        top: 6px;
        left: 0px;
    }
    .mcolor-blue .mbsp-btn-phone {
        color: #24249F;
    }
    .mcolor-blue .mbsp-btn-phone::after {
        background: transparent url(../img/common/icon-phone-blue.png) center / 22px 22px no-repeat;
    }
    .mcolor-pink .mbsp-btn-phone {
        color: #E42C88;
    }
    .mcolor-pink .mbsp-btn-phone::after {
        background: transparent url(../img/common/icon-phone-pink.png) center / 22px 22px no-repeat;
    }
    .mcolor-gold .mbsp-btn-phone {
        color: #969649;
    }
    .mcolor-gold .mbsp-btn-phone::after {
        background: transparent url(../img/common/icon-phone-gold.png) center / 22px 22px no-repeat;
    }
}/*end min-width: 740px*/


/* --------------- メインカラー設定ここまで --------------- */

.mbsp-main-bg {
    width: 100%;
    height: 220px;
    height: calc( 37vw + 75px);
    background: transparent url(../img/both/membership/mbsp-top-smp.jpg) center center / cover no-repeat;
}

.mbsp-ttl span {
    display: block;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.7em;
}

.mbspt1 {
    font-size: 16px;
    font-size: calc( 2.1vw + 8px);
}
.mbspt2 {
    font-size: 28px;
    font-size: calc( 3.7vw + 14px);
}
.mbsp-ttl {
    display: block;
    padding-top: 62px;
    /*69px*/
    padding-top: calc( 13.57vw + 12.8px);
    /*13.57vw + 18.8px*/
}
.mbsp-top-tbl {
    display: table;
    width: 100%;
    margin-bottom: 30px;
}
.mbsp-top-cell {
    display: table-cell;
    width: 50%;
}
.mbsp-top-tbl .mbsp-top-cell:nth-child(1) {
    padding-left: 4.5%;
    padding-right: 1.75%;
}
.mbsp-top-tbl .mbsp-top-cell:nth-child(2) {
    padding-left: 1.75%;
    padding-right: 4.5%;
}
.mbspt-name {
    display: block;
    text-align: center;
    font-size: 17px;
    font-size: calc( 1.5vw + 11px);
    color: #969649;
    font-weight: 500;
    padding: 28px 0 61px 0;
    position: relative;
}
.mbspt-name::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: transparent url(../img/common/cmn-separator-b.png) center center / contain no-repeat;
    position: absolute;
    top: 83px;
    top: calc( 1.5vw + 74px);
    left: 0px;
}
.mbspt-copy {
    display: block;
    font-size: 15px;
    font-size: calc( 0.5vw + 12.5px);
    font-weight: 500;
    padding-bottom: 20px;
}
.mbspt-txt {
    display: block;
    font-size: 14px;
    line-height: 1.5em;
}
.mbsp-top-outline {
    text-align: center;
    font-size: 20px;
    font-size: calc( 1.5vw + 14px);
    font-weight: 400;
    line-height: 1.7em;
    position: relative;
    padding: 36px 0 36px 0;
    margin-bottom: 30px;
}
.mbsp-top-outline::before {
    content: "";
    display: block;
    width: 100%;
    height: 19px;
    position: absolute;
    background: transparent url(../img/both/membership/mbsp-deco-upper.png) top center / 88px 19px no-repeat;
    top: 0px;
    left: 0px;
}
.mbsp-top-outline::after {
    content: "";
    display: block;
    width: 100%;
    height: 19px;
    position: absolute;
    background: transparent url(../img/both/membership/mbsp-deco-lower.png) top center / 88px 19px no-repeat;
    bottom: 0px;
    left: 0px;
}
.mbsp-dtl-cts {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: -2px;
    border-top: 2px solid #CCCCCC;
    /*background: #F4F4F4;*/
background: rgb(244,244,244); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(244,244,244,1) 0%, rgba(255,255,255,1) 100%); 
background: -webkit-linear-gradient(top,  rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%); 
background: linear-gradient(to bottom,  rgba(244,244,244,1) 0%,rgba(255,255,255,1) 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}
.mbsp-dtl-in-bg {
    padding-top: 10px;
    width: 100%;
    margin: 0 auto;
    background: #FFFFFF;
    position: relative;
}
.mbsp-dtl-ttl-bg {
    background: rgb(239, 243, 245);
    background: -moz-linear-gradient(top, rgba(239, 243, 245, 1) 0%, rgba(226, 233, 237, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(239, 243, 245, 1) 0%, rgba(226, 233, 237, 1) 100%);
    background: linear-gradient(to bottom, rgba(239, 243, 245, 1) 0%, rgba(226, 233, 237, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eff3f5', endColorstr='#e2e9ed', GradientType=0);
    padding: 26px 0px;
    position: relative;
    margin-top: 30px;
    text-align: center;
}
.mbsp-dtl-ttl-bg::before {
    content: "";
    display: block;
    background: transparent url(../img/common/bg-marble.png) repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
.mbsp-dtl-ttl-bg::after {
    content: "";
    display: block;
    background: #FFFFFF;
    width: 96%;
    width: calc( 100% - 12px);
    height: 96%;
    height: calc( 100% - 12px);
    position: absolute;
    top: 0px;
    left: 0px;
    margin: 6px;
    opacity: 0.7;
}
.mbspd-ttl,
.mbspd-fee-wrap,
.mbsp-inq-wrap,
.mbsp-btn-tbl {
    position: relative;
    z-index: 2;
}
.mbspd-ttl {
    font-size: 21px;
    font-size: calc( 2.0vw + 14.6px);
    text-align: center;
    font-weight: 500;
    padding: 0px 0px 10px 0px;
}
.mbspd-fee-wrap {
    font-weight: 500;
}
.mbspd-fee-wrap span {
    line-height: 27px;
    line-height: calc( 2.5vw + 19px);
}
.mbspd-fee-2box {
    display: inline-block;
    padding: 0px 4px;
    padding: 0px 1.25%;
    margin-left: 4px;
    margin-left: 1.25%;
}
.mbspd-fee-1-1,
.mbspd-fee-1-3,
.mbspd-fee-2-2 {
    font-size: 15px;
    font-size: calc( 1vw + 11.8px);
    position: relative;
    top: 3px;
}
.mbspd-fee-1-2,
.mbspd-fee-2-1 {
    font-size: 25px;
    font-size: calc( 2.5vw + 17px);
}
.mbsp-inq-wrap {
    padding: 20px 0px;
    font-weight: 500;
    text-align: center;
}
.hd-inq {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-left: 3.125%;
    margin-right: 3.125%;
}
.ft-inq {
    margin-top: 60px;
    margin-bottom: 60px;
}
.mbspi-2 {
    font-size: 15px;
    font-size: calc( 1.5vw + 10.2px);
}
.mbspi-1,
.mbspi-3,
.mbspi-2s {
    font-size: 13px;
    font-size: calc( 1vw + 9.8px);
}
.mbspi-1 {
    padding-bottom: 6px;
}
.mbspi-2s {
    position: relative;
    top: 3px;
    left: 1px;
}
.mbsp-btn-tbl {
    display: table;
    width: 93%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
}
.mbsp-btn-row {
    display: table-row;
    width: 100%;
}
.mbsp-btn-cell {
    display: table-cell;
    width: 50%;
}
.mbsp-btn-cell:nth-child(1) {
    padding-right: 1.5%;
}
.mbsp-btn-cell:nth-child(2) {
    padding-left: 1.5%;
}
.mbsp-btn-cell .btn-cmn {
    line-height: 58px;
}
.mbsp-phone {
    display: inline-block;
    width: 18px;
    /*22px*/
    height: 18px;
    /*22px*/
    position: relative;
    top: -2px;
    left: -3px;
}
.mbsp-mail {
    display: inline-block;
    width: 18px;
    /*22px*/
    height: 12px;
    /*14px*/
    position: relative;
    top: -2px;
    left: -3px;
}


.mbspd-tbl-1,
.mbspd-tbl-2 {
    width: 100%;
}

.mbspd-tbl-1 th,
.mbspd-tbl-1 td {
    padding: 4px;
}
.mbspd-tbl-2 th,
.mbspd-tbl-2 td {
    text-align: center;
}
.mbspd-tbl-1 th {
    white-space: nowrap;
    text-align: center;
    width: 30%;
}
.mbspd-tbl-1 td {
    width: 70%;
}
.mbspd-tbl-2 th {
    width: 50%;
}
.mbspd-tbl-2 caption {
    font-weight: 400;
    padding-bottom: 10px;
    text-align: center;
    font-size: 17px;
}
.mbspd-list-1 {
    display: block;
}
.mbspd-list-1 li {
    display: block;
    padding-left: 1em;
    position: relative;
    min-height: 30px;
    padding-bottom: 26px;
}
.mbspd-list-1 li:last-child {
    padding-bottom: 0px;
}
.mbspd-list-1 li::after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
    left: 0px;
}
.mbspd-list-2 li {
    padding-bottom: 10px;
}
.mbspd-list-2 li:last-child {
    padding-bottom: 0px;
}

/* --------------- ボタンここから 360～500 --------------- */

@media (min-width: 360px) {
    .msp-cellbox a::before {
        left: 7px;
    }
}/*end min-width: 360px*/

@media (min-width: 420px) {
    .msptxt-t {
        transform: scale(1, 1);
    }
    .msp-cellbox a::before {
        left: 10px;
    }
}/*end min-width: 420px*/

@media (min-width: 460px) {
    .msp-hd a,
    .msp-ft a {
        font-size: 15px;
    }
    .txt-narrow {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        padding-left: 4px;
    }
    .msp-cellbox a::before {
        left: 7px;
    }
}/*end min-width: 460px*/

@media (min-width: 500px) {
    .cg-cellbox a::before {
        left: 28%;
        left: calc( 50% - 2.5em);
    }
    .txt-narrow {
        padding-left: 0px;
        display: inline;
    }
    .msp-cellbox a::before {
        left: 10px;
        left: 2vw;
        left: calc( 6vw - 24px);
    }
}/*end min-width: 500px*/

/* --------------- ボタンここまで 360～500  --------------- */

@media (min-width: 360px) {
    .hd-inq {
        width: 88%;
        width: calc( 40% + 160px);
        margin-left: auto;
        margin-right: auto;
    }
    .mbsp-btn-tbl {
        width: 88%;
    }
}/*end min-width: 360px*/

@media (min-width: 640px) {
    .mbspi-2s {
        top: 4px;
    }
}/*end min-width: 640px*/

@media (min-width: 740px) {
    .mbsp-main-bg {
        height: 350px;
        height: calc( 37vw + 75px);
        background: transparent url(../img/both/membership/mbsp-top-tab.jpg) center center / cover no-repeat;
    }
    .mbsp-ttl {
        padding-top: 116px;
        padding-top: calc( 17.33vw - 12px);
    }
    .mbsp-ttl span {
        line-height: 1.8em;
    }
    .mbspt1 {
        font-size: 24px;
        font-size: calc( 0.3vw + 22px);
    }
    .mbspt2 {
        font-size: 42px;
        font-size: calc( 1vw + 33px);
    }
    .mbsp-top-tbl {
        margin-bottom: 60px;
    }
    .mbsp-top-tbl .mbsp-top-cell:nth-child(1) {
        padding-left: 3.5%;
        padding-right: 1.75%;
    }
    .mbsp-top-tbl .mbsp-top-cell:nth-child(2) {
        padding-left: 1.75%;
        padding-right: 3.5%;
    }
    .mbspt-copy {
        text-align: center;
        font-size: 17px;
        font-size: calc( 0.3vw + 14.7px);
    }
    .mbspt-name {
        padding: 38px 0 88px 0;
        font-size: 22px;
        font-size: calc( 0.5vw + 19px);
    }
    .mbspt-name::after {
        height: 7px;
        background: transparent url(../img/common/cmn-separator-b.png) center / 85px 5px no-repeat;
        top: 110px;
        top: calc( 0.5vw + 104px);
    }
    .mbspt-copy {
        padding-bottom: 24px;
    }
    .mbsp-top-outline::before {
        height: 29px;
        background: transparent url(../img/both/membership/mbsp-deco-upper.png) top center / 136px 29px no-repeat;
    }
    .mbsp-top-outline::after {
        height: 29px;
        background: transparent url(../img/both/membership/mbsp-deco-lower.png) top center / 136px 29px no-repeat;
    }
    .mbsp-top-outline {
        text-align: center;
        font-size: 20px;
        font-size: calc( 0.35vw + 23.3px);
        font-weight: 400;
        line-height: 1.7em;
        position: relative;
        padding: 56px 0 56px 0;
        margin-bottom: 50px;
    }
    .mbspt-txt {
        font-size: 15px;
        line-height: 1.7em;
    }
    .mbsp-dtl-ttl-bg {
        padding: 36px 0px 50px 0px;
    }
    .mbspd-ttl {
        padding: 0px 0px 12px 0px;
    }

    .mbsp-mail {
        left: -7px;
    }
    .hd-inq {
        margin-top: 28px;
    }
    .ft-inq {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .mbsp-inq-wrap {
        padding: 20px 0px 28px 0px;
        width: 500px;
    }
    .mbspi-1,
    .mbspi-3,
    .mbspi-2s {
        font-size: 18px;
    }
    .mbspi-2 {
        font-size: 22px;
    }
    .mbspi-2s {
        top: 5px;
        left: 3px;
    }
    .mbsp-btn-phone {
        box-shadow: none !important;
        border-radius: 0px !important;
        background: transparent !important;
        height: auto !important;
        text-align: left !important;
    }
    .mbsp-phone {
        display: none !important;
    }
    .mbsp-phone-txt {
        font-size: 30px;
        padding-left: 30px;
    }
    .mbsp-btn-phone,
    .mbsp-btn-mail {
        height: 36px !important;
        line-height: 36px !important;
    }
    .mbsp-dtl-ttl-bg {
        margin-top: 40px;
    }
    .mbspd-tbl-1 th {
        width: 20%;
    }
    .mbspd-tbl-1 td {
        width: 80%;
        padding: 4px 10px;
    }
    .mbspd-list-1{
        width:45em;
        white-space: nowrap;
        overflow: visible;
        margin-left:auto;
        margin-right: auto;
        position: relative;
        left:2em;
    }
    .max-700 {
    max-width:700px;
    white-space: nowrap;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
}
}/*end min-width: 740px*/

@media (min-width: 800px) {
    /* --------------- ボタンここから --------------- */
    .msp-ft {
        margin-bottom: 60px;
    }
    /* --------------- ボタンここまで --------------- */
}/*end min-width: 800px*/

@media (min-width: 860px) {
    .mbsp-main-bg {
        height: 406px;
        height: calc( 15.8vw + 270px);
    }
    .mbsp-ttl {
        padding-top: 143px;
        padding-top: calc( 6.73vw + 85.5px);
    }
}/*end min-width: 860px*/

@media (min-width: 960px) {
    /* --------------- ボタンここから --------------- */
    .msp-hd a,
    .msp-ft a {
        font-size: 16px;
    }
    .msp-hd a {
        line-height: 44px;
    }
    .msp-ft a {
        line-height: 44px;
    }

    .msp-tblbox,
    .msp-cts {
        width: 88%;
        margin-left: 6%;
    }
    .msp-cts {
        z-index: 30;
    }
    .msp-ft {
        margin-top: 40px;
    }
    .msp-hd a::before {
        top: 24px !important;
    }
    .msp-cellbox a::before {
        left: 20px;
        left: calc( 50% - 110px);
    }
    .msp-hd .msp-cellbox a.msp-n-on::before {
        top: 61px !important;
    }
    /* --------------- ボタンここまで --------------- */
    .mbsp-dtl-ttl-bg {
        padding: 46px 0px 60px 0px;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 60px;
    }
    .mbspd-ttl {
        padding: 0px 0px 20px 0px;
    }
    .hd-inq {
        margin-top: 36px;
    }
    .ft-inq {
        margin-top: 80px;
        margin-bottom: 80px;
    }
    .mbsp-dtl-in-bg {
        width: 88%;
    }
}/*end min-width: 960px*/

@media (min-width: 1122px) {
    .mbsp-pcwidth {
        width: 972px;
    }
    .mbspd-ttl {
        font-size: 38px;
    }
    .mbspd-fee-1-2,
    .mbspd-fee-2-1 {
        font-size: 46px;
        letter-spacing: 1px;
    }
    .mbspd-fee-1-1,
    .mbspd-fee-1-3,
    .mbspd-fee-2-2 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    .mbspd-fee-2box {
        padding: 0px 14px;
        margin-left: 14px;
    }
    .mbspd-fee-1-1 {
        padding-right: 6px;
    }
    .mbspd-fee-wrap span {
        line-height: 50px;
    }
    .ft-inq {
        margin-bottom: 100px;
    }
    .mbsp-dtl-ttl-bg {
        margin-top: 60px;
    }
}/*end min-width: 1122px*/

@media (min-width: 1180px) {
    .mbsp-main-bg {
        background: transparent url(../img/both/membership/mbsp-top-pc.jpg) center center / cover no-repeat;
    }
}/*end min-width: 1180px*/

@media (min-width: 1280px) {
    /* --------------- ボタンここから --------------- */
    .msp-ft {
        margin-bottom: 80px;
    }
    /* --------------- ボタンここまで --------------- */
    .mbsp-top-tbl .mbsp-top-cell:nth-child(1) {
        padding-left: 0;
        padding-right: 0;
    }
    .mbsp-top-tbl .mbsp-top-cell:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
    }
    .mbspt-txt {
        text-align: center;
    }
    .mbspt-name {
        padding: 48px 0 108px 0;
        font-size: 22px;
        font-size: calc( 0.5vw + 19px);
    }
    .mbspt-name::after {
        top: 130px;
        top: calc( 0.5vw + 124px);
    }
    .mbspt-copy {
        padding-bottom: 30px;
    }
    .mbsp-top-tbl {
        margin-bottom: 70px;
    }
    .mbsp-top-outline {
        margin-bottom: 60px;
    }
}/*end min-width: 1280px*/

@media (min-width: 1472px) {
    /* --------------- ボタンここから --------------- */
    .msp-tblbox,
    .msp-cts {
        width: 1280px;
        margin-left: auto;
        margin-right: auto;
    }
    /* --------------- ボタンここまで --------------- */
    .mbspt-txt {
        font-size: 16px;
    }
    .mbsp-top-tbl {
        margin-bottom: 80px;
        width: 1408px;
        margin-left: auto;
        margin-right: auto;
    }
    .mbsp-dtl-in-bg {
        width: 1280px;
    }
}/*end min-width: 1472px*/

@media (min-width: 1600px) {
    .mbsp-top-tbl {
        width: 88vw;
    }

}/*end min-width: 1600px*/